From e6ef7e945f5ca4dfbf6e8e909b3c72f8f72221d0 Mon Sep 17 00:00:00 2001 From: mazoon Date: Sun, 13 Mar 2016 13:53:17 +0400 Subject: [PATCH 01/43] Add simple line breaking support - Add absolute x and y positions - Add udcn library - Add alignment feature (left, right, center) Closes #50 Closes #57 --- .gitmodules | 4 + src/Makefile.am | 3 + src/raqm.c | 488 ++++++++++++++++++++++++++++++-- src/raqm.h | 29 ++ src/ucdn | 1 + tests/cursor_position1.test | 20 +- tests/cursor_position2.test | 20 +- tests/cursor_position3.test | 20 +- tests/cursor_position4.test | 20 +- tests/cursor_position_GB3.test | 12 +- tests/cursor_position_GB4.test | 18 +- tests/cursor_position_GB5.test | 18 +- tests/cursor_position_GB8a.test | 8 +- tests/cursor_position_GB9.test | 20 +- tests/cursor_position_GB9a.test | 6 +- tests/features-arabic.test | 26 +- tests/features-kerning.test | 26 +- tests/features-ligature.test | 30 +- tests/languages-sr-ru.test | 8 +- tests/languages-sr.test | 4 +- tests/multi-fonts.test | 42 +-- tests/multi-fonts2.test | 8 +- tests/scripts-backward-ltr.test | 70 ++--- tests/scripts-backward-rtl.test | 70 ++--- tests/scripts-backward.test | 70 ++--- tests/scripts-forward-ltr.test | 32 +-- tests/scripts-forward-rtl.test | 32 +-- tests/scripts-forward.test | 32 +-- tests/test1.test | 38 +-- tests/test1_LTR.test | 38 +-- tests/test1_RTL.test | 38 +-- tests/test2.test | 30 +- tests/test2_LTR.test | 30 +- tests/test2_RTL.test | 30 +- tests/test3.test | 56 ++-- tests/test3_LTR.test | 56 ++-- tests/test3_RTL.test | 56 ++-- tests/test4.test | 36 +-- tests/test4_LTR.test | 36 +-- tests/test4_RTL.test | 36 +-- tests/test5.test | 20 +- tests/test5_LTR.test | 20 +- tests/test5_RTL.test | 20 +- tests/xyoffset.test | 10 +- 44 files changed, 1075 insertions(+), 612 deletions(-) create mode 100644 .gitmodules create mode 160000 src/ucdn diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..737af4b5 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "src/ucdn"] + path = src/ucdn + url = https://github.com/grigorig/ucdn.git + ignore = dirty diff --git a/src/Makefile.am b/src/Makefile.am index c8b33945..7bc8cad6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,6 +6,9 @@ check_LTLIBRARIES = libraqm-test.la libraqm_la_SOURCES = \ raqm.c \ raqm.h \ + ucdn/ucdn.h \ + ucdn/ucdn.c \ + ucdn/unicodedata_db.h \ $(NULL) include_HEADERS = \ diff --git a/src/raqm.c b/src/raqm.c index a2b85f2f..9d2a6e05 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -33,6 +33,7 @@ #include #include +#include "ucdn/ucdn.h" #include "raqm.h" #if FRIBIDI_MAJOR_VERSION >= 1 @@ -191,11 +192,15 @@ struct _raqm { _raqm_flags_t flags; int ft_loadflags; + + int line_width; + raqm_alignment_t alignment; }; struct _raqm_run { int pos; int len; + int line; hb_direction_t direction; hb_script_t script; @@ -307,6 +312,10 @@ raqm_create (void) rq->ft_loadflags = -1; + rq->line_width = 2147483647; + + rq->alignment = RAQM_ALIGNMENT_LEFT; + return rq; } @@ -766,12 +775,62 @@ raqm_set_freetype_load_flags (raqm_t *rq, return true; } +/** + * raqm_set_line_width: + * @rq: a #raqm_t. + * @width: the line width. + * + * Sets the maximum line width for the paragraph, so that when the width is + * exceeded, a breaking line mechanism is applied. + * + * Return value: + * %true if no errors happened, %false otherwise. + * + * Since: 0.2 + */ +bool +raqm_set_line_width (raqm_t *rq, int width) +{ + if (!rq) + return false; + + rq->line_width = width; + + return true; +} + +/** + * raqm_set_paragraph_alignment: + * @rq: a #raqm_t. + * @alignment: paragraph alignment. + * + * Sets the paragraph alignment. + * + * Return value: + * %true if no errors happened, %false otherwise. + * + * Since: 0.2 + */ +bool +raqm_set_paragraph_alignment (raqm_t *rq, raqm_alignment_t alignment) +{ + if (!rq) + return false; + + rq->alignment = alignment; + + return true; +} + static bool _raqm_itemize (raqm_t *rq); static bool _raqm_shape (raqm_t *rq); +static bool +_raqm_line_break (raqm_t *rq); + /** * raqm_layout: * @rq: a #raqm_t. @@ -809,6 +868,9 @@ raqm_layout (raqm_t *rq) if (!_raqm_shape (rq)) return false; + if (!_raqm_line_break (rq)) + return false; + return true; } @@ -849,10 +911,6 @@ raqm_get_glyphs (raqm_t *rq, *length = count; - if (rq->glyphs) - free (rq->glyphs); - - rq->glyphs = malloc (sizeof (raqm_glyph_t) * count); if (!rq->glyphs) { *length = 0; @@ -861,34 +919,14 @@ raqm_get_glyphs (raqm_t *rq, RAQM_TEST ("Glyph information:\n"); - count = 0; - for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + for (size_t i = 0; i < *length; i++) { - size_t len; - hb_glyph_info_t *info; - hb_glyph_position_t *position; - - len = hb_buffer_get_length (run->buffer); - info = hb_buffer_get_glyph_infos (run->buffer, NULL); - position = hb_buffer_get_glyph_positions (run->buffer, NULL); - - for (size_t i = 0; i < len; i++) - { - rq->glyphs[count + i].index = info[i].codepoint; - rq->glyphs[count + i].cluster = info[i].cluster; - rq->glyphs[count + i].x_advance = position[i].x_advance; - rq->glyphs[count + i].y_advance = position[i].y_advance; - rq->glyphs[count + i].x_offset = position[i].x_offset; - rq->glyphs[count + i].y_offset = position[i].y_offset; - rq->glyphs[count + i].ftface = rq->text_info[info[i].cluster].ftface; - - RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance: %d\tfont: %s\n", - rq->glyphs[count + i].index, rq->glyphs[count + i].x_offset, - rq->glyphs[count + i].y_offset, rq->glyphs[count + i].x_advance, - rq->glyphs[count + i].ftface->family_name); - } - - count += len; + RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance: %d\tx_position:" + " %d\ty_position: %d\tfont: %s\n", + rq->glyphs[i].index, rq->glyphs[i].x_offset, + rq->glyphs[i].y_offset, rq->glyphs[i].x_advance, + rq->glyphs[i].x_position, rq->glyphs[i].y_position, + rq->glyphs[i].ftface->family_name); } if (rq->flags & RAQM_FLAG_UTF8) @@ -1036,6 +1074,394 @@ _raqm_reorder_runs (const FriBidiCharType *types, return runs; } +enum break_class +{ + // input types + OP = 0, // open + CL, // closing punctuation + CP, // closing parentheses (from 5.2.0) (before 5.2.0 treat like CL) + QU, // quotation + GL, // glue + NS, // no-start + EX, // exclamation/interrogation + SY, // Syntax (slash) + IS, // infix (numeric) separator + PR, // prefix + PO, // postfix + NU, // numeric + AL, // alphabetic + ID, // ideograph (atomic) + IN, // inseparable + HY, // hyphen + BA, // break after + BB, // break before + B2, // break both + ZW, // ZW space + CM, // combining mark + WJ, // word joiner + + // used for Korean Syllable Block pair table + H2, // Hamgul 2 Jamo Syllable + H3, // Hangul 3 Jamo Syllable + JL, // Jamo leading consonant + JV, // Jamo vowel + JT, // Jamo trailing consonant + + // these are not handled in the pair tables + SA, // South (East) Asian + SP, // space + PS, // paragraph and line separators + BK, // hard break (newline) + CR, // carriage return + LF, // line feed + NL, // next line + CB, // contingent break opportunity + SG, // surrogate + AI, // ambiguous + XX, // unknown +}; + +// Define some short-cuts for the table +#define oo DIRECT_BREAK // '_' break allowed +#define SS INDIRECT_BREAK // '%' only break across space (aka 'indirect break' below) +#define cc COMBINING_INDIRECT_BREAK // '#' indirect break for combining marks +#define CC COMBINING_PROHIBITED_BREAK // '@' indirect break for combining marks +#define XX PROHIBITED_BREAK // '^' no break allowed_BRK + +enum break_action { + DIRECT_BREAK = 0, // _ in table, oo in array + INDIRECT_BREAK, // % in table, SS in array + COMBINING_INDIRECT_BREAK, // # in table, cc in array + COMBINING_PROHIBITED_BREAK, // @ in table CC in array + PROHIBITED_BREAK, // ^ in table, XX in array +}; + +static bool * +_raqm_find_line_break (raqm_t *rq) +{ + size_t length = rq->text_len; + enum break_class current_class; + enum break_class next_class; + enum break_action *break_actions; + enum break_action current_action; + bool *break_here; + + enum break_action break_pairs[][JT+1] = { + // 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 + // OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class + /*OP*/ { XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, CC, XX, XX, XX, XX, XX, XX }, // OP open + /*CL*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CL close + /*CP*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CL close + /*QU*/ { XX, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // QU quotation + /*GL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // GL glue + /*NS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // NS no-start + /*EX*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // EX exclamation/interrogation + /*SY*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // SY Syntax (slash) + /*IS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // IS infix (numeric) separator + /*PR*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, SS, oo, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, SS }, // PR prefix + /*PO*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // NU numeric + /*NU*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // AL alphabetic + /*AL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // AL alphabetic + /*ID*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // ID ideograph (atomic) + /*IN*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // IN inseparable + /*HY*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // HY hyphens and spaces + /*BA*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // BA break after + /*BB*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // BB break before + /*B2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, XX, XX, cc, XX, oo, oo, oo, oo, oo }, // B2 break either side, but not pair + /*ZW*/ { oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, XX, oo, oo, oo, oo, oo, oo, oo }, // ZW zero width space + /*CM*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CM combining mark + /*WJ*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // WJ word joiner + /*H2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, // Hangul 2 Jamo syllable + /*H3*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, // Hangul 3 Jamo syllable + /*JL*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, oo }, // Jamo Leading Consonant + /*JV*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, // Jamo Vowel + /*JT*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, // Jamo Trailing Consonant + }; + + break_actions = malloc (sizeof (enum break_action) * length); + break_here = malloc (sizeof (bool) * length); + + current_class = ucdn_get_resolved_linebreak_class(rq->text[0]); + next_class = ucdn_get_resolved_linebreak_class(rq->text[1]); + + // handle case where input starts with an LF + if (current_class == LF) + current_class = BK; + + // treat NL like BK + if (current_class == NL) + current_class = BK; + + // treat SP at start of input as if it followed WJ + if (current_class == SP) + current_class = WJ; + + // loop over all pairs in the string up to a hard break or CRLF pair + for (size_t i = 1; (i < length) && (current_class != BK) && (current_class != CR || next_class == LF); i++) + { + next_class = ucdn_get_resolved_linebreak_class(rq->text[i]); + + // handle spaces explicitly + if (next_class == SP) { + break_actions[i-1] = PROHIBITED_BREAK; // apply rule LB 7: � SP + continue; + } + + if (next_class == BK || next_class == NL || next_class == LF) { + break_actions[i-1] = PROHIBITED_BREAK; + current_class = BK; + continue; + } + + if (next_class == CR) + { + break_actions[i-1] = PROHIBITED_BREAK; + current_class = CR; + continue; + } + + // lookup pair table information in brkPairs[before, after]; + current_action = break_pairs[current_class][next_class]; + break_actions[i-1] = current_action; + + if (current_action == INDIRECT_BREAK) // resolve indirect break + { + if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == SP) // if context is A SP * B + break_actions[i-1] = INDIRECT_BREAK; // break opportunity + else // else + break_actions[i-1] = PROHIBITED_BREAK; // no break opportunity + } + + else if (current_action == COMBINING_PROHIBITED_BREAK) // this is the case OP SP* CM + { + break_actions[i-1] = COMBINING_PROHIBITED_BREAK; // no break allowed + if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) != SP) + continue; // apply rule 9: X CM* -> X + } + + else if (current_action == COMBINING_INDIRECT_BREAK) // resolve combining mark break + { + break_actions[i-1] = PROHIBITED_BREAK; // don't break before CM + if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == SP) + { + break_actions[i-1] = PROHIBITED_BREAK; // legacy: keep SP CM together + if (i > 1) + break_actions[i-2] = ((ucdn_get_resolved_linebreak_class(rq->text[i-2]) == SP) ? INDIRECT_BREAK : DIRECT_BREAK); + } else // apply rule 9: X CM * -> X + continue; + } + + current_class = next_class; + } + + for(size_t i = 0; i < length; i++) + { + if (break_actions[i] == INDIRECT_BREAK || break_actions[i] == DIRECT_BREAK ) + { + break_here[i] = true; + } + else + break_here[i] = false; + } + + free (break_actions); + return break_here; +} + +static int +_raqm_logical_sort(const void *a,const void *b) +{ + raqm_glyph_t *ia = (raqm_glyph_t *)a; + raqm_glyph_t *ib = (raqm_glyph_t *)b; + +return ia->cluster - ib->cluster; +} + +static int +_raqm_visual_sort(const void *a,const void *b) +{ + raqm_glyph_t *ia = (raqm_glyph_t *)a; + raqm_glyph_t *ib = (raqm_glyph_t *)b; + + if (ia->line == ib->line) + { + return ia->visual_index - ib->visual_index; + } + + else + { + return ia->line - ib->line; + } +} + +static bool +_raqm_line_break (raqm_t *rq) +{ + int count = 0; + int glyphs_length = 0; + int current_x = 0; + int line_space; + int current_line = 0; + int align_offset = 0; + + int i = 0; + int j = 0; + int k = 0; + + bool *break_here = NULL; + + /* finding possible breaks in text */ + break_here = _raqm_find_line_break(rq); + + /* counting total glyphs */ + for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + count += hb_buffer_get_length (run->buffer); + + glyphs_length = count; + + rq->glyphs = malloc (sizeof (raqm_glyph_t) * count); + if (!rq->glyphs) + { + return false; + } + + /* populating glyphs */ + count = 0; + for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + { + size_t len; + hb_glyph_info_t *info; + hb_glyph_position_t *position; + + len = hb_buffer_get_length (run->buffer); + info = hb_buffer_get_glyph_infos (run->buffer, NULL); + position = hb_buffer_get_glyph_positions (run->buffer, NULL); + + for (i = 0; i < (int)len; i++) + { + rq->glyphs[count + i].index = info[i].codepoint; + rq->glyphs[count + i].cluster = info[i].cluster; + rq->glyphs[count + i].x_advance = position[i].x_advance; + rq->glyphs[count + i].y_advance = position[i].y_advance; + rq->glyphs[count + i].x_offset = position[i].x_offset; + rq->glyphs[count + i].y_offset = position[i].y_offset; + rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; + rq->glyphs[count + i].visual_index = count + i; + rq->glyphs[count + i].line = 0; + } + + count += len; + } + + /* Sorting glyphs to logical order */ + qsort(rq->glyphs, glyphs_length, sizeof(raqm_glyph_t), _raqm_logical_sort); + + /* Line breaking */ + current_x = 0; + current_line = 0; + for (i = 0; i < glyphs_length; i++) + { + rq->glyphs[i].line = current_line; + current_x += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; + + if (current_x > rq->line_width) + { + while (!break_here[rq->glyphs[i].cluster] && i >= 0) + { + i--; + } + + /* Next line cannot start with a white space */ + if (rq->text[rq->glyphs[i + 1].cluster] == 32) + { + for (j = i + 1; rq->text[rq->glyphs[j].cluster] == 32; j++) + { + rq->glyphs[j].line = current_line; + } + i = j - 1; //skip those + } + + /* Handeling glyphs for the same character */ + if (rq->glyphs[i + 1].cluster == rq->glyphs[i].cluster) + { + for (k = i + 1; rq->glyphs[k].cluster == rq->glyphs[i].cluster; k++) + { + rq->glyphs[j].line = current_line; + } + i = k - 1; //skip those + } + + current_line ++; + current_x = 0; + } + } + + /* Sorting glyphs back to visual order */ + qsort(rq->glyphs, glyphs_length, sizeof(raqm_glyph_t), _raqm_visual_sort); + + /* calculating positions */ + current_line = 0; + current_x = 0; + for (i = 0; i < glyphs_length; i++) + { + line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs(rq->text_info[rq->glyphs[i].cluster].ftface->descender)); + + if (rq->glyphs[i].line != current_line) + { + current_x = 0; + current_line = rq->glyphs[i].line; + } + + rq->glyphs[i].x_position = current_x + rq->glyphs[i].x_offset; + rq->glyphs[i].y_position = rq->glyphs[i].y_offset + rq->glyphs[i].line * line_space; + + current_x += rq->glyphs[i].x_advance; + } + + /* handeling alighnment */ + if (rq->alignment != RAQM_ALIGNMENT_LEFT) + { + if (rq->alignment == RAQM_ALIGNMENT_RIGHT) + { + current_line = -1; + for (i = glyphs_length - 1; i >= 0; i--) + { + if (rq->glyphs[i].line != current_line) + { + current_line = rq->glyphs[i].line; + align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + { + rq->glyphs[j].x_position += align_offset; + } + } + i = j + 1; + } + } + + if (rq->alignment == RAQM_ALIGNMENT_CENTER) + { + current_line = -1; + for (i = glyphs_length - 1; i >= 0; i--) + { + if (rq->glyphs[i].line != current_line) + { + current_line = rq->glyphs[i].line; + align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + { + rq->glyphs[j].x_position += align_offset; + } + } + i = j + 1; + } + } + } + + free (break_here); + return true; +} + static bool _raqm_itemize (raqm_t *rq) { diff --git a/src/raqm.h b/src/raqm.h index f1decdd9..61edd460 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -31,6 +31,7 @@ #include #include +#include #include #include FT_FREETYPE_H @@ -67,6 +68,22 @@ typedef enum RAQM_DIRECTION_TTB } raqm_direction_t; +/** + * raqm_alignment_t: + * @RAQM_ALIGNMENT_RIGHT: Paragraph is right aligned. + * @RAQM_ALIGNMENT_LEFT: Paragraph is left aligned. + * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. + * + * + * Since: 0.2 + */ +typedef enum +{ + RAQM_ALIGNMENT_RIGHT, + RAQM_ALIGNMENT_LEFT, + RAQM_ALIGNMENT_CENTER, +} raqm_alignment_t; + /** * raqm_glyph_t: * @index: the index of the glyph in the font file. @@ -82,10 +99,14 @@ typedef enum */ typedef struct raqm_glyph_t { unsigned int index; + int visual_index; + int line; int x_advance; int y_advance; int x_offset; int y_offset; + int x_position; + int y_position; uint32_t cluster; FT_Face ftface; } raqm_glyph_t; @@ -138,6 +159,14 @@ bool raqm_set_freetype_load_flags (raqm_t *rq, int flags); +bool +raqm_set_line_width (raqm_t *rq, + int width); + +bool +raqm_set_paragraph_alignment (raqm_t *rq, + raqm_alignment_t align); + bool raqm_layout (raqm_t *rq); diff --git a/src/ucdn b/src/ucdn new file mode 160000 index 00000000..6ca01161 --- /dev/null +++ b/src/ucdn @@ -0,0 +1 @@ +Subproject commit 6ca0116169f0aa6aa5175067de022dafea107a6b diff --git a/tests/cursor_position1.test b/tests/cursor_position1.test index bcc1555a..420ad718 100644 --- a/tests/cursor_position1.test +++ b/tests/cursor_position1.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 6977 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position2.test b/tests/cursor_position2.test index eee569d5..f5fdf638 100644 --- a/tests/cursor_position2.test +++ b/tests/cursor_position2.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 6977 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position3.test b/tests/cursor_position3.test index add1bb27..b39faa38 100644 --- a/tests/cursor_position3.test +++ b/tests/cursor_position3.test @@ -41,16 +41,16 @@ run[0]: start: 6 length: 4 direction: ltr script: Latn font: Amiri run[1]: start: 0 length: 6 direction: rtl script: Arab font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 6411 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri UTF-32 clusters: 06 07 08 09 05 04 03 01 01 00 UTF-8 clusters: 11 12 13 14 10 08 06 02 02 00 diff --git a/tests/cursor_position4.test b/tests/cursor_position4.test index 8efc8d48..e1bb32dc 100644 --- a/tests/cursor_position4.test +++ b/tests/cursor_position4.test @@ -41,16 +41,16 @@ run[0]: start: 6 length: 4 direction: ltr script: Latn font: Amiri run[1]: start: 0 length: 6 direction: rtl script: Arab font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 6411 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri UTF-32 clusters: 06 07 08 09 05 04 03 01 01 00 UTF-8 clusters: 11 12 13 14 10 08 06 02 02 00 diff --git a/tests/cursor_position_GB3.test b/tests/cursor_position_GB3.test index c8fb716b..79b60439 100644 --- a/tests/cursor_position_GB3.test +++ b/tests/cursor_position_GB3.test @@ -32,12 +32,12 @@ Final Runs: run[0]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 2598 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 3346 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4094 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 4956 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 UTF-8 clusters: 00 01 02 03 04 05 diff --git a/tests/cursor_position_GB4.test b/tests/cursor_position_GB4.test index ea459845..0678eb19 100644 --- a/tests/cursor_position_GB4.test +++ b/tests/cursor_position_GB4.test @@ -37,15 +37,15 @@ Final Runs: run[0]: start: 0 length: 9 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 4524 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5272 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 6290 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7870 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8732 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 UTF-8 clusters: 00 01 02 03 04 06 07 08 09 diff --git a/tests/cursor_position_GB5.test b/tests/cursor_position_GB5.test index 85e974d8..53082239 100644 --- a/tests/cursor_position_GB5.test +++ b/tests/cursor_position_GB5.test @@ -37,15 +37,15 @@ Final Runs: run[0]: start: 0 length: 9 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 4524 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5272 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 6290 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7870 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8732 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 UTF-8 clusters: 00 01 02 03 04 06 07 08 09 diff --git a/tests/cursor_position_GB8a.test b/tests/cursor_position_GB8a.test index 217bb91e..8c9d4825 100644 --- a/tests/cursor_position_GB8a.test +++ b/tests/cursor_position_GB8a.test @@ -27,10 +27,10 @@ Final Runs: run[0]: start: 0 length: 4 direction: ltr script: Zyyy font: Amiri Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 0 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 748 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 1496 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 2244 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 UTF-8 clusters: 00 04 08 12 diff --git a/tests/cursor_position_GB9.test b/tests/cursor_position_GB9.test index bcc1555a..420ad718 100644 --- a/tests/cursor_position_GB9.test +++ b/tests/cursor_position_GB9.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 6977 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position_GB9a.test b/tests/cursor_position_GB9a.test index fe4df1b3..2ef89b22 100644 --- a/tests/cursor_position_GB9a.test +++ b/tests/cursor_position_GB9a.test @@ -25,9 +25,9 @@ Final Runs: run[0]: start: 0 length: 3 direction: ltr script: Deva font: Amiri Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 0 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 748 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 1496 y_position: 0 font: Amiri UTF-32 clusters: 00 00 02 UTF-8 clusters: 00 00 06 diff --git a/tests/features-arabic.test b/tests/features-arabic.test index 4f1ce6a9..ab69f3f3 100644 --- a/tests/features-arabic.test +++ b/tests/features-arabic.test @@ -45,19 +45,19 @@ Final Runs: run[0]: start: 0 length: 13 direction: rtl script: Arab font: Amiri Glyph information: -glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 font: Amiri -glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 font: Amiri -glyph [407] x_offset: 0 y_offset: 0 x_advance: 1107 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 font: Amiri +glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 0 y_position: 0 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 756 y_position: 0 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 2322 y_position: 0 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 4219 y_position: 0 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 5038 y_position: 0 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 6145 y_position: 0 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 7381 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7827 y_position: 0 font: Amiri +glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 8427 y_position: 0 font: Amiri +glyph [407] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 9183 y_position: 0 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 10290 y_position: 0 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 11526 y_position: 0 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 12762 y_position: 0 font: Amiri UTF-32 clusters: 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 23 21 19 17 15 13 11 10 08 06 04 02 00 diff --git a/tests/features-kerning.test b/tests/features-kerning.test index 884e8b2d..40808ae5 100644 --- a/tests/features-kerning.test +++ b/tests/features-kerning.test @@ -45,19 +45,19 @@ Final Runs: run[0]: start: 0 length: 13 direction: ltr script: Latn font: Amiri Glyph information: -glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [54] x_offset: 0 y_offset: 0 x_advance: 1004 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 font: Amiri +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 x_position: 0 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1128 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 1668 y_position: 0 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2732 y_position: 0 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 3762 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4714 y_position: 0 font: Amiri +glyph [54] x_offset: 0 y_offset: 0 x_advance: 1004 x_position: 5314 y_position: 0 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 6318 y_position: 0 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 7348 y_position: 0 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 8368 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9388 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10406 y_position: 0 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 11172 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 diff --git a/tests/features-ligature.test b/tests/features-ligature.test index 10aa6fde..2b16c7a7 100644 --- a/tests/features-ligature.test +++ b/tests/features-ligature.test @@ -49,21 +49,21 @@ Final Runs: run[0]: start: 0 length: 15 direction: ltr script: Latn font: Amiri Glyph information: -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 0 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 616 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1156 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 1666 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2526 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3126 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 3666 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4404 y_position: 0 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 5004 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5620 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6160 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6670 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 7180 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 7720 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 8784 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 diff --git a/tests/languages-sr-ru.test b/tests/languages-sr-ru.test index 0b776393..6b1b4bda 100644 --- a/tests/languages-sr-ru.test +++ b/tests/languages-sr-ru.test @@ -28,10 +28,10 @@ run[0]: start: 0 length: 2 direction: ltr script: Cyrl font: DejaVu Serif run[1]: start: 2 length: 2 direction: ltr script: Cyrl font: DejaVu Serif Glyph information: -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 font: DejaVu Serif -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 font: DejaVu Serif -glyph [3] x_offset: 0 y_offset: 0 x_advance: 1942 font: DejaVu Serif -glyph [2] x_offset: 0 y_offset: 0 x_advance: 1250 font: DejaVu Serif +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 x_position: 0 y_position: 0 font: DejaVu Serif +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 x_position: 1940 y_position: 0 font: DejaVu Serif +glyph [3] x_offset: 0 y_offset: 0 x_advance: 1942 x_position: 3173 y_position: 0 font: DejaVu Serif +glyph [2] x_offset: 0 y_offset: 0 x_advance: 1250 x_position: 5115 y_position: 0 font: DejaVu Serif UTF-32 clusters: 00 01 02 03 UTF-8 clusters: 00 02 04 06 diff --git a/tests/languages-sr.test b/tests/languages-sr.test index 0ea8445b..7a298094 100644 --- a/tests/languages-sr.test +++ b/tests/languages-sr.test @@ -23,8 +23,8 @@ Final Runs: run[0]: start: 0 length: 2 direction: ltr script: Cyrl font: DejaVu Serif Glyph information: -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 font: DejaVu Serif -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 font: DejaVu Serif +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 x_position: 0 y_position: 0 font: DejaVu Serif +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 x_position: 1940 y_position: 0 font: DejaVu Serif UTF-32 clusters: 00 01 UTF-8 clusters: 00 02 diff --git a/tests/multi-fonts.test b/tests/multi-fonts.test index 9eb3a22d..3eca4cfd 100644 --- a/tests/multi-fonts.test +++ b/tests/multi-fonts.test @@ -64,27 +64,27 @@ run[1]: start: 10 length: 11 direction: rtl script: Arab font: Aref Ruqaa run[2]: start: 8 length: 2 direction: rtl script: Arab font: Amiri Glyph information: -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 font: Aref Ruqaa -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 0 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 1174 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 2238 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 3170 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3680 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 4220 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 4958 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5990 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 6590 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 7338 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 8086 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 8834 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 9582 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 10330 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 11078 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 11826 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 12574 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 13322 y_position: 0 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 14070 y_position: 0 font: Aref Ruqaa +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 14818 y_position: 0 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15178 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 20 19 18 17 16 15 14 13 12 11 10 09 08 UTF-8 clusters: 00 01 02 03 04 05 06 07 31 29 27 25 23 21 19 18 16 14 12 10 08 diff --git a/tests/multi-fonts2.test b/tests/multi-fonts2.test index ec7cd3ff..7f18ecd4 100644 --- a/tests/multi-fonts2.test +++ b/tests/multi-fonts2.test @@ -29,10 +29,10 @@ run[1]: start: 1 length: 2 direction: rtl script: Arab font: DejaVu Sans run[2]: start: 0 length: 1 direction: rtl script: Arab font: Amiri Glyph information: -glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 font: Amiri -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 0 y_position: 0 font: Amiri +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 1200 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 1770 y_position: 0 font: DejaVu Sans +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2900 y_position: 0 font: Amiri UTF-32 clusters: 03 02 01 00 UTF-8 clusters: 06 04 02 00 diff --git a/tests/scripts-backward-ltr.test b/tests/scripts-backward-ltr.test index 6446a7ff..20e4ea02 100644 --- a/tests/scripts-backward-ltr.test +++ b/tests/scripts-backward-ltr.test @@ -99,41 +99,41 @@ run[7]: start: 28 length: 2 direction: ltr script: Arab font: DejaVu Sans run[8]: start: 30 length: 5 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 x_position: 0 y_position: 0 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 1363 y_position: 0 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 2460 y_position: 0 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 3806 y_position: 0 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 4264 y_position: 0 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 5420 y_position: 0 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 x_position: 6604 y_position: 0 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 x_position: 8155 y_position: 0 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 9235 y_position: 0 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 9804 y_position: 0 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 11150 y_position: 0 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 11608 y_position: 0 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 12764 y_position: 0 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 x_position: 13948 y_position: 0 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 x_position: 15230 y_position: 0 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 16937 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 17507 y_position: 0 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 x_position: 18637 y_position: 0 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 x_position: 19859 y_position: 0 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 19859 y_position: 0 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 20658 y_position: 0 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 21918 y_position: 0 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 x_position: 23216 y_position: 0 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 24516 y_position: 0 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 25085 y_position: 0 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 x_position: 25654 y_position: 0 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 26721 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 28019 y_position: 0 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 28670 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 29469 y_position: 0 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 x_position: 30120 y_position: 0 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 x_position: 30744 y_position: 0 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 x_position: 31362 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 32628 y_position: 0 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 33758 y_position: 0 font: DejaVu Sans UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 18 18 20 21 22 23 24 25 26 27 28 29 34 33 32 31 30 UTF-8 clusters: 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 36 36 39 40 41 42 43 44 45 46 47 48 57 55 53 51 49 diff --git a/tests/scripts-backward-rtl.test b/tests/scripts-backward-rtl.test index 5f57eb58..ae3e8bae 100644 --- a/tests/scripts-backward-rtl.test +++ b/tests/scripts-backward-rtl.test @@ -98,41 +98,41 @@ run[6]: start: 4 length: 5 direction: rtl script: Hebr font: DejaVu Sans run[7]: start: 0 length: 4 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 x_position: 0 y_position: 0 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 x_position: 624 y_position: 0 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 x_position: 1242 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 2508 y_position: 0 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 3638 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4735 y_position: 0 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5386 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 6185 y_position: 0 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 6836 y_position: 0 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 8096 y_position: 0 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 x_position: 9394 y_position: 0 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 10694 y_position: 0 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 11263 y_position: 0 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 x_position: 11832 y_position: 0 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 12899 y_position: 0 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 x_position: 14197 y_position: 0 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 14197 y_position: 0 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 x_position: 14996 y_position: 0 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 16359 y_position: 0 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 17456 y_position: 0 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 18802 y_position: 0 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 19260 y_position: 0 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 20416 y_position: 0 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 x_position: 21600 y_position: 0 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 x_position: 23151 y_position: 0 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 24231 y_position: 0 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 24800 y_position: 0 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 26146 y_position: 0 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 26604 y_position: 0 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 27760 y_position: 0 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 x_position: 28944 y_position: 0 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 x_position: 30226 y_position: 0 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 31933 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 32503 y_position: 0 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 x_position: 33633 y_position: 0 font: DejaVu Sans UTF-32 clusters: 34 33 32 31 30 29 28 27 20 21 22 23 24 25 26 18 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 57 55 53 51 49 48 47 46 39 40 41 42 43 44 45 36 36 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 diff --git a/tests/scripts-backward.test b/tests/scripts-backward.test index 0d434fef..f9278665 100644 --- a/tests/scripts-backward.test +++ b/tests/scripts-backward.test @@ -98,41 +98,41 @@ run[6]: start: 4 length: 5 direction: rtl script: Hebr font: DejaVu Sans run[7]: start: 0 length: 4 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 x_position: 0 y_position: 0 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 x_position: 624 y_position: 0 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 x_position: 1242 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 2508 y_position: 0 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 3638 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4735 y_position: 0 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5386 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 6185 y_position: 0 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 6836 y_position: 0 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 8096 y_position: 0 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 x_position: 9394 y_position: 0 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 10694 y_position: 0 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 11263 y_position: 0 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 x_position: 11832 y_position: 0 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 12899 y_position: 0 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 x_position: 14197 y_position: 0 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 14197 y_position: 0 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 x_position: 14996 y_position: 0 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 16359 y_position: 0 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 17456 y_position: 0 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 18802 y_position: 0 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 19260 y_position: 0 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 20416 y_position: 0 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 x_position: 21600 y_position: 0 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 x_position: 23151 y_position: 0 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 24231 y_position: 0 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 24800 y_position: 0 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 26146 y_position: 0 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 26604 y_position: 0 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 27760 y_position: 0 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 x_position: 28944 y_position: 0 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 x_position: 30226 y_position: 0 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 31933 y_position: 0 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 32503 y_position: 0 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 x_position: 33633 y_position: 0 font: DejaVu Sans UTF-32 clusters: 34 33 32 31 30 29 28 27 20 21 22 23 24 25 26 18 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 57 55 53 51 49 48 47 46 39 40 41 42 43 44 45 36 36 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 diff --git a/tests/scripts-forward-ltr.test b/tests/scripts-forward-ltr.test index 7df80614..b098f4bd 100644 --- a/tests/scripts-forward-ltr.test +++ b/tests/scripts-forward-ltr.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 0 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 1229 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 2458 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 3687 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4916 y_position: 0 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5567 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 6366 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 7595 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 8824 y_position: 0 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 10053 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 10852 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 11503 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 12732 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 13961 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 15190 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 16419 y_position: 0 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/scripts-forward-rtl.test b/tests/scripts-forward-rtl.test index 892e2948..99848421 100644 --- a/tests/scripts-forward-rtl.test +++ b/tests/scripts-forward-rtl.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 0 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 1229 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 2458 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 3687 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4916 y_position: 0 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5567 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 6366 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 7595 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 8824 y_position: 0 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 10053 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 10852 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 11503 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 12732 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 13961 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 15190 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 16419 y_position: 0 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/scripts-forward.test b/tests/scripts-forward.test index eda19320..1e0f6f38 100644 --- a/tests/scripts-forward.test +++ b/tests/scripts-forward.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 0 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 1229 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 2458 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 3687 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4916 y_position: 0 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5567 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 6366 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 7595 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 8824 y_position: 0 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 10053 y_position: 0 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 10852 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 11503 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 12732 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 13961 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 15190 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 16419 y_position: 0 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/test1.test b/tests/test1.test index 74c63414..d3e6eadc 100644 --- a/tests/test1.test +++ b/tests/test1.test @@ -62,25 +62,25 @@ run[2]: start: 5 length: 7 direction: ltr script: Latn font: Amiri run[3]: start: 0 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 0 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 975 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 1684 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2654 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3632 y_position: 0 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4232 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5172 y_position: 0 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 5772 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6946 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 8010 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 8942 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 9452 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 9992 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 10730 y_position: 0 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11762 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 12702 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 13677 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14386 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15356 y_position: 0 font: Amiri UTF-32 clusters: 18 17 16 15 14 13 12 05 06 07 08 09 10 11 04 03 02 01 00 UTF-8 clusters: 25 23 21 19 18 17 16 09 10 11 12 13 14 15 08 06 04 02 00 diff --git a/tests/test1_LTR.test b/tests/test1_LTR.test index 3b219430..424e2f1a 100644 --- a/tests/test1_LTR.test +++ b/tests/test1_LTR.test @@ -63,25 +63,25 @@ run[3]: start: 13 length: 2 direction: ltr script: Arab font: Amiri run[4]: start: 15 length: 4 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 0 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 975 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 1684 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2654 y_position: 0 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 3632 y_position: 0 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 4572 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 5746 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 6810 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7742 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8252 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 8792 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 9530 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10562 y_position: 0 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11162 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12102 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 12702 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 13677 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14386 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15356 y_position: 0 font: Amiri UTF-32 clusters: 03 02 01 00 04 05 06 07 08 09 10 11 12 13 14 18 17 16 15 UTF-8 clusters: 06 04 02 00 08 09 10 11 12 13 14 15 16 17 18 25 23 21 19 diff --git a/tests/test1_RTL.test b/tests/test1_RTL.test index d100d3e3..af2e624e 100644 --- a/tests/test1_RTL.test +++ b/tests/test1_RTL.test @@ -62,25 +62,25 @@ run[2]: start: 5 length: 7 direction: ltr script: Latn font: Amiri run[3]: start: 0 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 0 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 975 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 1684 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2654 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3632 y_position: 0 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4232 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5172 y_position: 0 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 5772 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6946 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 8010 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 8942 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 9452 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 9992 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 10730 y_position: 0 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11762 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 12702 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 13677 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14386 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15356 y_position: 0 font: Amiri UTF-32 clusters: 18 17 16 15 14 13 12 05 06 07 08 09 10 11 04 03 02 01 00 UTF-8 clusters: 25 23 21 19 18 17 16 09 10 11 12 13 14 15 08 06 04 02 00 diff --git a/tests/test2.test b/tests/test2.test index 5302b5f7..c0e98a8a 100644 --- a/tests/test2.test +++ b/tests/test2.test @@ -53,21 +53,21 @@ run[1]: start: 12 length: 3 direction: ltr script: Arab font: Amiri run[2]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 5472 y_position: 0 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 6562 y_position: 0 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 7652 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8742 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 9342 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 10317 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 11026 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 11996 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 12 13 14 11 10 09 08 07 UTF-8 clusters: 00 01 02 03 04 05 06 16 17 18 15 13 11 09 07 diff --git a/tests/test2_LTR.test b/tests/test2_LTR.test index e047f18b..baf0d590 100644 --- a/tests/test2_LTR.test +++ b/tests/test2_LTR.test @@ -53,21 +53,21 @@ run[1]: start: 12 length: 3 direction: ltr script: Arab font: Amiri run[2]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 5472 y_position: 0 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 6562 y_position: 0 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 7652 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8742 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 9342 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 10317 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 11026 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 11996 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 12 13 14 11 10 09 08 07 UTF-8 clusters: 00 01 02 03 04 05 06 16 17 18 15 13 11 09 07 diff --git a/tests/test2_RTL.test b/tests/test2_RTL.test index a9d20121..fef71936 100644 --- a/tests/test2_RTL.test +++ b/tests/test2_RTL.test @@ -54,21 +54,21 @@ run[2]: start: 6 length: 1 direction: rtl script: Latn font: Amiri run[3]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 0 y_position: 0 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 1090 y_position: 0 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 2180 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3270 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 3870 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 4845 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 5554 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 6524 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7502 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 8102 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8964 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 9730 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 10592 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11588 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 12128 y_position: 0 font: Amiri UTF-32 clusters: 12 13 14 11 10 09 08 07 06 00 01 02 03 04 05 UTF-8 clusters: 16 17 18 15 13 11 09 07 06 00 01 02 03 04 05 diff --git a/tests/test3.test b/tests/test3.test index 84d25643..27d612ba 100644 --- a/tests/test3.test +++ b/tests/test3.test @@ -84,34 +84,34 @@ run[4]: start: 20 length: 1 direction: ltr script: Arab font: Amiri run[5]: start: 21 length: 7 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5472 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6645 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 7115 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7559 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8564 y_position: 0 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 9164 y_position: 0 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 10254 y_position: 0 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 11344 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12434 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 13034 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 14009 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14718 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15688 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16666 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 17266 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18126 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 19190 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20122 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20632 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 21172 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 21910 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 19 18 17 16 15 12 13 14 11 10 09 08 07 20 21 22 23 24 25 26 27 UTF-8 clusters: 00 01 02 03 04 05 06 26 24 22 20 19 16 17 18 15 13 11 09 07 28 29 30 31 32 33 34 35 diff --git a/tests/test3_LTR.test b/tests/test3_LTR.test index 2f395ecb..0b115bdc 100644 --- a/tests/test3_LTR.test +++ b/tests/test3_LTR.test @@ -84,34 +84,34 @@ run[4]: start: 20 length: 1 direction: ltr script: Arab font: Amiri run[5]: start: 21 length: 7 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5472 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6645 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 7115 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7559 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8564 y_position: 0 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 9164 y_position: 0 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 10254 y_position: 0 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 11344 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12434 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 13034 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 14009 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14718 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15688 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16666 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 17266 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18126 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 19190 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20122 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20632 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 21172 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 21910 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 19 18 17 16 15 12 13 14 11 10 09 08 07 20 21 22 23 24 25 26 27 UTF-8 clusters: 00 01 02 03 04 05 06 26 24 22 20 19 16 17 18 15 13 11 09 07 28 29 30 31 32 33 34 35 diff --git a/tests/test3_RTL.test b/tests/test3_RTL.test index 48c67b67..515faf58 100644 --- a/tests/test3_RTL.test +++ b/tests/test3_RTL.test @@ -84,34 +84,34 @@ run[4]: start: 6 length: 1 direction: rtl script: Latn font: Amiri run[5]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 0 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 860 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 1924 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 2856 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3366 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 3906 y_position: 0 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 4644 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5676 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 6276 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 7449 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 7919 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 8363 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9368 y_position: 0 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 9968 y_position: 0 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 11058 y_position: 0 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 12148 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13238 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 13838 y_position: 0 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 14813 y_position: 0 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 15522 y_position: 0 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 16492 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17470 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18070 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 18932 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 19698 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 20560 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 21556 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 22096 y_position: 0 font: Amiri UTF-32 clusters: 21 22 23 24 25 26 27 20 19 18 17 16 15 12 13 14 11 10 09 08 07 06 00 01 02 03 04 05 UTF-8 clusters: 29 30 31 32 33 34 35 28 26 24 22 20 19 16 17 18 15 13 11 09 07 06 00 01 02 03 04 05 diff --git a/tests/test4.test b/tests/test4.test index 8f7058cb..80b850d4 100644 --- a/tests/test4.test +++ b/tests/test4.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 0 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1173 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 1643 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 2087 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3092 y_position: 0 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 3692 y_position: 0 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 4653 y_position: 0 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5054 y_position: 0 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 6534 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7331 y_position: 0 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 7931 y_position: 0 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 8347 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8835 y_position: 0 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 9305 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10469 y_position: 0 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11069 y_position: 0 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12879 y_position: 0 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 13379 y_position: 0 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test4_LTR.test b/tests/test4_LTR.test index a752587f..8b14caa1 100644 --- a/tests/test4_LTR.test +++ b/tests/test4_LTR.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 0 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1173 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 1643 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 2087 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3092 y_position: 0 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 3692 y_position: 0 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 4653 y_position: 0 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5054 y_position: 0 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 6534 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7331 y_position: 0 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 7931 y_position: 0 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 8347 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8835 y_position: 0 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 9305 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10469 y_position: 0 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11069 y_position: 0 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12879 y_position: 0 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 13379 y_position: 0 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test4_RTL.test b/tests/test4_RTL.test index bb59bef4..7e472050 100644 --- a/tests/test4_RTL.test +++ b/tests/test4_RTL.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 0 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1173 y_position: 0 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 1643 y_position: 0 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 2087 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3092 y_position: 0 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 3692 y_position: 0 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 4653 y_position: 0 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5054 y_position: 0 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 6534 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7331 y_position: 0 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 7931 y_position: 0 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 8347 y_position: 0 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8835 y_position: 0 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 9305 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10469 y_position: 0 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11069 y_position: 0 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12879 y_position: 0 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 13379 y_position: 0 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test5.test b/tests/test5.test index 08ba124f..44afe17d 100644 --- a/tests/test5.test +++ b/tests/test5.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 862 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1724 y_position: 0 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2324 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 3264 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 x_position: 4260 y_position: 0 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5196 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6136 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6736 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7598 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/test5_LTR.test b/tests/test5_LTR.test index 1abbdeb2..fb77f805 100644 --- a/tests/test5_LTR.test +++ b/tests/test5_LTR.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 862 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1724 y_position: 0 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2324 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 3264 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 x_position: 4260 y_position: 0 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5196 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6136 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6736 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7598 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/test5_RTL.test b/tests/test5_RTL.test index b62972ea..a3214c40 100644 --- a/tests/test5_RTL.test +++ b/tests/test5_RTL.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 862 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1724 y_position: 0 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2324 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 3264 y_position: 0 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 x_position: 4260 y_position: 0 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5196 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6136 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6736 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7598 y_position: 0 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/xyoffset.test b/tests/xyoffset.test index 9eea00e0..0935b62c 100644 --- a/tests/xyoffset.test +++ b/tests/xyoffset.test @@ -25,11 +25,11 @@ Final Runs: run[0]: start: 0 length: 3 direction: rtl script: Arab font: Aref Ruqaa Glyph information: -glyph [4] x_offset: 783 y_offset: 50 x_advance: 0 font: Aref Ruqaa -glyph [6] x_offset: 0 y_offset: 0 x_advance: 302 font: Aref Ruqaa -glyph [4] x_offset: 909 y_offset: 1075 x_advance: 0 font: Aref Ruqaa -glyph [10] x_offset: 0 y_offset: 868 x_advance: 432 font: Aref Ruqaa -glyph [9] x_offset: 0 y_offset: 1664 x_advance: 1054 font: Aref Ruqaa +glyph [4] x_offset: 783 y_offset: 50 x_advance: 0 x_position: 783 y_position: 50 font: Aref Ruqaa +glyph [6] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 0 y_position: 0 font: Aref Ruqaa +glyph [4] x_offset: 909 y_offset: 1075 x_advance: 0 x_position: 1211 y_position: 1075 font: Aref Ruqaa +glyph [10] x_offset: 0 y_offset: 868 x_advance: 432 x_position: 302 y_position: 868 font: Aref Ruqaa +glyph [9] x_offset: 0 y_offset: 1664 x_advance: 1054 x_position: 734 y_position: 1664 font: Aref Ruqaa UTF-32 clusters: 02 02 01 01 00 UTF-8 clusters: 04 04 02 02 00 From 272a2af5ef71b8126e867fe18ac33055775f2b14 Mon Sep 17 00:00:00 2001 From: mazoon Date: Mon, 4 Apr 2016 13:38:20 +0400 Subject: [PATCH 02/43] Adding full justification for the alignment feature -Does not work properly- --- src/raqm.c | 38 ++++++++++++++++++++++++++++++++++++++ src/raqm.h | 3 ++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/src/raqm.c b/src/raqm.c index 9d2a6e05..54796765 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1308,6 +1308,9 @@ _raqm_line_break (raqm_t *rq) int j = 0; int k = 0; + int space_count = 0; + int space_extension; + bool *break_here = NULL; /* finding possible breaks in text */ @@ -1456,6 +1459,41 @@ _raqm_line_break (raqm_t *rq) i = j + 1; } } + if (rq->alignment == RAQM_ALIGNMENT_FULL) + { + current_line = -1; + for (i = glyphs_length - 1; i >= 0; i--) + { + if (rq->glyphs[i].line != current_line) + { + current_line = rq->glyphs[i].line; + align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); + + /* counting spaces in one line */ + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + { + if (rq->text[rq->glyphs[j].cluster] == 32) //space + space_count++; + } + + /* distributing align offset to all spaces */ + if (space_count == 0) + align_offset = 0; + else + align_offset = align_offset / space_count; + space_extension = 0; + for (k = j + 1; rq->glyphs[k].line == current_line; k++) + { + rq->glyphs[k].x_position += space_extension; + if (rq->text[rq->glyphs[k].cluster] == 32) //space + { + space_extension += align_offset; + } + } + } + i = j + 1; + } + } } free (break_here); diff --git a/src/raqm.h b/src/raqm.h index 61edd460..2c004c10 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -73,7 +73,7 @@ typedef enum * @RAQM_ALIGNMENT_RIGHT: Paragraph is right aligned. * @RAQM_ALIGNMENT_LEFT: Paragraph is left aligned. * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. - * + * @RAQM_ALIGNMENT_FULL: Paragraph is full justified. * * Since: 0.2 */ @@ -82,6 +82,7 @@ typedef enum RAQM_ALIGNMENT_RIGHT, RAQM_ALIGNMENT_LEFT, RAQM_ALIGNMENT_CENTER, + RAQM_ALIGNMENT_FULL, } raqm_alignment_t; /** From 66079035649b0ee603f7b0ea53bef4440233cb83 Mon Sep 17 00:00:00 2001 From: Balqees Date: Sun, 7 Aug 2016 19:47:55 +0200 Subject: [PATCH 03/43] Fix right alignment --- src/raqm.c | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 54796765..7769470d 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1303,6 +1303,7 @@ _raqm_line_break (raqm_t *rq) int line_space; int current_line = 0; int align_offset = 0; + int space_width; int i = 0; int j = 0; @@ -1410,7 +1411,7 @@ _raqm_line_break (raqm_t *rq) line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs(rq->text_info[rq->glyphs[i].cluster].ftface->descender)); if (rq->glyphs[i].line != current_line) - { + { current_x = 0; current_line = rq->glyphs[i].line; } @@ -1435,7 +1436,19 @@ _raqm_line_break (raqm_t *rq) align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) { - rq->glyphs[j].x_position += align_offset; + /* check if at the start of the line there is a space */ + if (rq->text[rq->glyphs[j].cluster] == 32 && (current_line != rq->glyphs[j+1].line )) + { + space_width = rq->glyphs[j].x_advance; // save width of the space + + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) // apply shift + { + rq->glyphs[j-1].x_position = rq->glyphs[j-1].x_position + space_width; + rq->glyphs[j-1].x_position += align_offset; + } + } + else + rq->glyphs[j].x_position += align_offset; } } i = j + 1; From bb2e375aed0228483eb72934288822ec01e0491e Mon Sep 17 00:00:00 2001 From: Balqees Date: Mon, 27 Jun 2016 10:55:25 +0400 Subject: [PATCH 04/43] Minor adjustments in comments, indentation and enums --- src/raqm.c | 188 +++++++++++++++++++++++++++-------------------------- 1 file changed, 97 insertions(+), 91 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 7769470d..5e894d03 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1076,64 +1076,64 @@ _raqm_reorder_runs (const FriBidiCharType *types, enum break_class { - // input types - OP = 0, // open - CL, // closing punctuation - CP, // closing parentheses (from 5.2.0) (before 5.2.0 treat like CL) - QU, // quotation - GL, // glue - NS, // no-start - EX, // exclamation/interrogation - SY, // Syntax (slash) - IS, // infix (numeric) separator - PR, // prefix - PO, // postfix - NU, // numeric - AL, // alphabetic - ID, // ideograph (atomic) - IN, // inseparable - HY, // hyphen - BA, // break after - BB, // break before - B2, // break both - ZW, // ZW space - CM, // combining mark - WJ, // word joiner - - // used for Korean Syllable Block pair table - H2, // Hamgul 2 Jamo Syllable - H3, // Hangul 3 Jamo Syllable - JL, // Jamo leading consonant - JV, // Jamo vowel - JT, // Jamo trailing consonant - - // these are not handled in the pair tables - SA, // South (East) Asian - SP, // space - PS, // paragraph and line separators - BK, // hard break (newline) - CR, // carriage return - LF, // line feed - NL, // next line - CB, // contingent break opportunity - SG, // surrogate - AI, // ambiguous - XX, // unknown + /* input types */ + RAQM_BREAK_CLASS_OP = 0, // open + RAQM_BREAK_CLASS_CL, // closing punctuation + RAQM_BREAK_CLASS_CP, // closing parentheses (from 5.2.0) (before 5.2.0 treat like CL) + RAQM_BREAK_CLASS_QU, // quotation + RAQM_BREAK_CLASS_GL, // glue + RAQM_BREAK_CLASS_NS, // no-start + RAQM_BREAK_CLASS_EX, // exclamation/interrogation + RAQM_BREAK_CLASS_SY, // Syntax (slash) + RAQM_BREAK_CLASS_IS, // infix (numeric) separator + RAQM_BREAK_CLASS_PR, // prefix + RAQM_BREAK_CLASS_PO, // postfix + RAQM_BREAK_CLASS_NU, // numeric + RAQM_BREAK_CLASS_AL, // alphabetic + RAQM_BREAK_CLASS_ID, // ideograph (atomic) + RAQM_BREAK_CLASS_IN, // inseparable + RAQM_BREAK_CLASS_HY, // hyphen + RAQM_BREAK_CLASS_BA, // break after + RAQM_BREAK_CLASS_BB, // break before + RAQM_BREAK_CLASS_B2, // break both + RAQM_BREAK_CLASS_ZW, // ZW space + RAQM_BREAK_CLASS_CM, // combining mark + RAQM_BREAK_CLASS_WJ, // word joiner + + /* used for Korean Syllable Block pair table */ + RAQM_BREAK_CLASS_H2, // Hamgul 2 Jamo Syllable + RAQM_BREAK_CLASS_H3, // Hangul 3 Jamo Syllable + RAQM_BREAK_CLASS_JL, // Jamo leading consonant + RAQM_BREAK_CLASS_JV, // Jamo vowel + RAQM_BREAK_CLASS_JT, // Jamo trailing consonant + + /* these are not handled in the pair tables */ + RAQM_BREAK_CLASS_SA, // South (East) Asian + RAQM_BREAK_CLASS_SP, // space + RAQM_BREAK_CLASS_PS, // paragraph and line separators + RAQM_BREAK_CLASS_BK, // hard break (newline) + RAQM_BREAK_CLASS_CR, // carriage return + RAQM_BREAK_CLASS_LF, // line feed + RAQM_BREAK_CLASS_NL, // next line + RAQM_BREAK_CLASS_CB, // contingent break opportunity + RAQM_BREAK_CLASS_SG, // surrogate + RAQM_BREAK_CLASS_AI, // ambiguous + RAQM_BREAK_CLASS_XX, // unknown }; -// Define some short-cuts for the table -#define oo DIRECT_BREAK // '_' break allowed -#define SS INDIRECT_BREAK // '%' only break across space (aka 'indirect break' below) -#define cc COMBINING_INDIRECT_BREAK // '#' indirect break for combining marks -#define CC COMBINING_PROHIBITED_BREAK // '@' indirect break for combining marks -#define XX PROHIBITED_BREAK // '^' no break allowed_BRK +/* Define some short-cuts for the table */ +#define oo RAQM_DIRECT_BREAK // '_' break allowed +#define SS RAQM_INDIRECT_BREAK // '%' only break across space (aka 'indirect break' below) +#define cc RAQM_COMBINING_INDIRECT_BREAK // '#' indirect break for combining marks +#define CC RAQM_COMBINING_PROHIBITED_BREAK // '@' indirect break for combining marks +#define XX RAQM_PROHIBITED_BREAK // '^' no break allowed_BRK enum break_action { - DIRECT_BREAK = 0, // _ in table, oo in array - INDIRECT_BREAK, // % in table, SS in array - COMBINING_INDIRECT_BREAK, // # in table, cc in array - COMBINING_PROHIBITED_BREAK, // @ in table CC in array - PROHIBITED_BREAK, // ^ in table, XX in array + RAQM_DIRECT_BREAK = 0, // _ in table, oo in array + RAQM_INDIRECT_BREAK, // % in table, SS in array + RAQM_COMBINING_INDIRECT_BREAK, // # in table, cc in array + RAQM_COMBINING_PROHIBITED_BREAK, // @ in table CC in array + RAQM_PROHIBITED_BREAK, // ^ in table, XX in array }; static bool * @@ -1146,9 +1146,9 @@ _raqm_find_line_break (raqm_t *rq) enum break_action current_action; bool *break_here; - enum break_action break_pairs[][JT+1] = { - // 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 - // OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class + static enum break_action break_pairs[][RAQM_BREAK_CLASS_JT+1] = { + /* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 */ + /* OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class */ /*OP*/ { XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, CC, XX, XX, XX, XX, XX, XX }, // OP open /*CL*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CL close /*CP*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CL close @@ -1184,69 +1184,69 @@ _raqm_find_line_break (raqm_t *rq) current_class = ucdn_get_resolved_linebreak_class(rq->text[0]); next_class = ucdn_get_resolved_linebreak_class(rq->text[1]); - // handle case where input starts with an LF - if (current_class == LF) - current_class = BK; + /* handle case where input starts with an LF */ + if (current_class == RAQM_BREAK_CLASS_LF) + current_class = RAQM_BREAK_CLASS_BK; - // treat NL like BK - if (current_class == NL) - current_class = BK; + /* treat NL like BK */ + if (current_class == RAQM_BREAK_CLASS_NL) + current_class = RAQM_BREAK_CLASS_BK; - // treat SP at start of input as if it followed WJ - if (current_class == SP) - current_class = WJ; + /* treat SP at start of input as if it followed WJ */ + if (current_class == RAQM_BREAK_CLASS_SP) + current_class = RAQM_BREAK_CLASS_WJ; - // loop over all pairs in the string up to a hard break or CRLF pair - for (size_t i = 1; (i < length) && (current_class != BK) && (current_class != CR || next_class == LF); i++) + /* loop over all pairs in the string up to a hard break or CRLF pair */ + for (size_t i = 1; (i < length) && (current_class != RAQM_BREAK_CLASS_BK) && (current_class != RAQM_BREAK_CLASS_CR || next_class == RAQM_BREAK_CLASS_LF); i++) { next_class = ucdn_get_resolved_linebreak_class(rq->text[i]); - // handle spaces explicitly - if (next_class == SP) { - break_actions[i-1] = PROHIBITED_BREAK; // apply rule LB 7: � SP + /* handle spaces explicitly */ + if (next_class == RAQM_BREAK_CLASS_SP) { + break_actions[i-1] = RAQM_PROHIBITED_BREAK; // apply rule LB 7: � SP continue; } - if (next_class == BK || next_class == NL || next_class == LF) { - break_actions[i-1] = PROHIBITED_BREAK; - current_class = BK; + if (next_class == RAQM_BREAK_CLASS_BK || next_class == RAQM_BREAK_CLASS_NL || next_class == RAQM_BREAK_CLASS_LF) { + break_actions[i-1] = RAQM_PROHIBITED_BREAK; + current_class = RAQM_BREAK_CLASS_BK; continue; } - if (next_class == CR) + if (next_class == RAQM_BREAK_CLASS_CR) { - break_actions[i-1] = PROHIBITED_BREAK; - current_class = CR; + break_actions[i-1] = RAQM_PROHIBITED_BREAK; + current_class = RAQM_BREAK_CLASS_CR; continue; } - // lookup pair table information in brkPairs[before, after]; + /* lookup pair table information in brkPairs[before, after] */ current_action = break_pairs[current_class][next_class]; break_actions[i-1] = current_action; - if (current_action == INDIRECT_BREAK) // resolve indirect break + if (current_action == RAQM_INDIRECT_BREAK) // resolve indirect break { - if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == SP) // if context is A SP * B - break_actions[i-1] = INDIRECT_BREAK; // break opportunity + if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == RAQM_BREAK_CLASS_SP) // if context is A SP * B + break_actions[i-1] = RAQM_INDIRECT_BREAK; // break opportunity else // else - break_actions[i-1] = PROHIBITED_BREAK; // no break opportunity + break_actions[i-1] = RAQM_PROHIBITED_BREAK; // no break opportunity } - else if (current_action == COMBINING_PROHIBITED_BREAK) // this is the case OP SP* CM + else if (current_action == RAQM_COMBINING_PROHIBITED_BREAK) // this is the case OP SP* CM { - break_actions[i-1] = COMBINING_PROHIBITED_BREAK; // no break allowed - if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) != SP) + break_actions[i-1] = RAQM_COMBINING_PROHIBITED_BREAK; // no break allowed + if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) != RAQM_BREAK_CLASS_SP) continue; // apply rule 9: X CM* -> X } - else if (current_action == COMBINING_INDIRECT_BREAK) // resolve combining mark break + else if (current_action == RAQM_COMBINING_INDIRECT_BREAK) // resolve combining mark break { - break_actions[i-1] = PROHIBITED_BREAK; // don't break before CM - if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == SP) + break_actions[i-1] = RAQM_PROHIBITED_BREAK; // don't break before CM + if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == RAQM_BREAK_CLASS_SP) { - break_actions[i-1] = PROHIBITED_BREAK; // legacy: keep SP CM together + break_actions[i-1] = RAQM_PROHIBITED_BREAK; // legacy: keep SP CM together if (i > 1) - break_actions[i-2] = ((ucdn_get_resolved_linebreak_class(rq->text[i-2]) == SP) ? INDIRECT_BREAK : DIRECT_BREAK); + break_actions[i-2] = ((ucdn_get_resolved_linebreak_class(rq->text[i-2]) == RAQM_BREAK_CLASS_SP) ? RAQM_INDIRECT_BREAK : RAQM_DIRECT_BREAK); } else // apply rule 9: X CM * -> X continue; } @@ -1256,7 +1256,7 @@ _raqm_find_line_break (raqm_t *rq) for(size_t i = 0; i < length; i++) { - if (break_actions[i] == INDIRECT_BREAK || break_actions[i] == DIRECT_BREAK ) + if (break_actions[i] == RAQM_INDIRECT_BREAK || break_actions[i] == RAQM_DIRECT_BREAK ) { break_here[i] = true; } @@ -1264,6 +1264,12 @@ _raqm_find_line_break (raqm_t *rq) break_here[i] = false; } +#undef oo +#undef SS +#undef cc +#undef CC +#undef XX + free (break_actions); return break_here; } From 5ccdd4f5a5b8089bee4fcec071dd12a60a5b070b Mon Sep 17 00:00:00 2001 From: Khalid Alqassabi Date: Sun, 7 Aug 2016 18:34:21 +0200 Subject: [PATCH 05/43] Fix memory initialisation in breaking_action --- src/raqm.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/raqm.c b/src/raqm.c index 5e894d03..0f1d0c36 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1134,6 +1134,7 @@ enum break_action { RAQM_COMBINING_INDIRECT_BREAK, // # in table, cc in array RAQM_COMBINING_PROHIBITED_BREAK, // @ in table CC in array RAQM_PROHIBITED_BREAK, // ^ in table, XX in array + RAQM_UNDEFINE_BREAK, // the defualt value }; static bool * @@ -1184,6 +1185,11 @@ _raqm_find_line_break (raqm_t *rq) current_class = ucdn_get_resolved_linebreak_class(rq->text[0]); next_class = ucdn_get_resolved_linebreak_class(rq->text[1]); + for(size_t i = 0; i < length; i++) + { + break_actions[i] = RAQM_UNDEFINE_BREAK; + } + /* handle case where input starts with an LF */ if (current_class == RAQM_BREAK_CLASS_LF) current_class = RAQM_BREAK_CLASS_BK; From dbe5adbcff22af3a82b2ade108c9a83e2099da14 Mon Sep 17 00:00:00 2001 From: Khalid Alqassabi Date: Sun, 7 Aug 2016 18:35:08 +0200 Subject: [PATCH 06/43] Fix the run problem automake (subdir-objectes) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 79bc82c1..f58881a0 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_INIT([Raqm], [raqm], [https://github.com/HOST-Oman/libraqm/]) -AM_INIT_AUTOMAKE([foreign color-tests -Wall -Wno-portability]) +AM_INIT_AUTOMAKE([foreign color-tests -Wall -Wno-portability subdir-objects]) AM_SILENT_RULES([yes]) AC_CONFIG_HEADERS([config.h]) From 9b3cca8a20107cfdfd5dd2790207545eefda8a47 Mon Sep 17 00:00:00 2001 From: Khalid Alqassabi Date: Tue, 2 Aug 2016 09:35:37 +0400 Subject: [PATCH 07/43] Fix the documentation --- docs/raqm-sections.txt | 2 ++ src/raqm.c | 5 +++-- src/raqm.h | 2 ++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/raqm-sections.txt b/docs/raqm-sections.txt index eabcbe11..a811beb6 100644 --- a/docs/raqm-sections.txt +++ b/docs/raqm-sections.txt @@ -10,6 +10,8 @@ raqm_set_language raqm_set_freetype_face raqm_set_freetype_face_range raqm_set_freetype_load_flags +raqm_set_line_width +raqm_set_paragraph_alignment raqm_add_font_feature raqm_layout raqm_get_glyphs diff --git a/src/raqm.c b/src/raqm.c index 0f1d0c36..b1e06a76 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -802,7 +802,7 @@ raqm_set_line_width (raqm_t *rq, int width) /** * raqm_set_paragraph_alignment: * @rq: a #raqm_t. - * @alignment: paragraph alignment. + * @alignment: the aligment of paragraph. * * Sets the paragraph alignment. * @@ -812,7 +812,8 @@ raqm_set_line_width (raqm_t *rq, int width) * Since: 0.2 */ bool -raqm_set_paragraph_alignment (raqm_t *rq, raqm_alignment_t alignment) +raqm_set_paragraph_alignment (raqm_t *rq, + raqm_alignment_t alignment) { if (!rq) return false; diff --git a/src/raqm.h b/src/raqm.h index 2c004c10..f0672536 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -75,6 +75,8 @@ typedef enum * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. * @RAQM_ALIGNMENT_FULL: Paragraph is full justified. * + * Base paragraph alignment, see raqm_set_paragraph_alignment(). + * * Since: 0.2 */ typedef enum From dae5f4382ad834b164c657ccfc63d22984926a31 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 7 Aug 2016 20:25:00 +0200 Subject: [PATCH 08/43] Clean things up a bit --- docs/raqm-sections.txt | 4 +- src/raqm.c | 775 ++++++++++++++++++++--------------------- src/raqm.h | 10 +- 3 files changed, 392 insertions(+), 397 deletions(-) diff --git a/docs/raqm-sections.txt b/docs/raqm-sections.txt index a811beb6..5253d4e4 100644 --- a/docs/raqm-sections.txt +++ b/docs/raqm-sections.txt @@ -7,11 +7,11 @@ raqm_set_text raqm_set_text_utf8 raqm_set_par_direction raqm_set_language +raqm_set_par_alignment +raqm_set_line_width raqm_set_freetype_face raqm_set_freetype_face_range raqm_set_freetype_load_flags -raqm_set_line_width -raqm_set_paragraph_alignment raqm_add_font_feature raqm_layout raqm_get_glyphs diff --git a/src/raqm.c b/src/raqm.c index b1e06a76..00f55006 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -200,7 +200,7 @@ struct _raqm { struct _raqm_run { int pos; int len; - int line; + int line; hb_direction_t direction; hb_script_t script; @@ -780,8 +780,9 @@ raqm_set_freetype_load_flags (raqm_t *rq, * @rq: a #raqm_t. * @width: the line width. * - * Sets the maximum line width for the paragraph, so that when the width is - * exceeded, a breaking line mechanism is applied. + * Sets the maximum line width for the paragraph. Causes Raqm to break lines + * exceeding @width. If no width is set Raqm will assume line width is + * infinite, and no line breaking will take place. * * Return value: * %true if no errors happened, %false otherwise. @@ -789,7 +790,8 @@ raqm_set_freetype_load_flags (raqm_t *rq, * Since: 0.2 */ bool -raqm_set_line_width (raqm_t *rq, int width) +raqm_set_line_width (raqm_t *rq, + int width) { if (!rq) return false; @@ -800,11 +802,12 @@ raqm_set_line_width (raqm_t *rq, int width) } /** - * raqm_set_paragraph_alignment: + * raqm_set_par_alignment: * @rq: a #raqm_t. - * @alignment: the aligment of paragraph. + * @alignment: the alignment of paragraph. * - * Sets the paragraph alignment. + * Sets the paragraph alignment. By default text is left aligned. Has no effect + * if line width is not set, see raqm_set_line_width(). * * Return value: * %true if no errors happened, %false otherwise. @@ -812,8 +815,8 @@ raqm_set_line_width (raqm_t *rq, int width) * Since: 0.2 */ bool -raqm_set_paragraph_alignment (raqm_t *rq, - raqm_alignment_t alignment) +raqm_set_par_alignment (raqm_t *rq, + raqm_alignment_t alignment) { if (!rq) return false; @@ -870,7 +873,7 @@ raqm_layout (raqm_t *rq) return false; if (!_raqm_line_break (rq)) - return false; + return false; return true; } @@ -918,17 +921,19 @@ raqm_get_glyphs (raqm_t *rq, return NULL; } +#ifdef RAQM_TESTING RAQM_TEST ("Glyph information:\n"); for (size_t i = 0; i < *length; i++) { - RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance: %d\tx_position:" - " %d\ty_position: %d\tfont: %s\n", + RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance:" + " %d\tx_position: %d\ty_position: %d\tfont: %s\n", rq->glyphs[i].index, rq->glyphs[i].x_offset, rq->glyphs[i].y_offset, rq->glyphs[i].x_advance, rq->glyphs[i].x_position, rq->glyphs[i].y_position, rq->glyphs[i].ftface->family_name); } +#endif if (rq->flags & RAQM_FLAG_UTF8) { @@ -1075,201 +1080,203 @@ _raqm_reorder_runs (const FriBidiCharType *types, return runs; } -enum break_class -{ - /* input types */ - RAQM_BREAK_CLASS_OP = 0, // open - RAQM_BREAK_CLASS_CL, // closing punctuation - RAQM_BREAK_CLASS_CP, // closing parentheses (from 5.2.0) (before 5.2.0 treat like CL) - RAQM_BREAK_CLASS_QU, // quotation - RAQM_BREAK_CLASS_GL, // glue - RAQM_BREAK_CLASS_NS, // no-start - RAQM_BREAK_CLASS_EX, // exclamation/interrogation - RAQM_BREAK_CLASS_SY, // Syntax (slash) - RAQM_BREAK_CLASS_IS, // infix (numeric) separator - RAQM_BREAK_CLASS_PR, // prefix - RAQM_BREAK_CLASS_PO, // postfix - RAQM_BREAK_CLASS_NU, // numeric - RAQM_BREAK_CLASS_AL, // alphabetic - RAQM_BREAK_CLASS_ID, // ideograph (atomic) - RAQM_BREAK_CLASS_IN, // inseparable - RAQM_BREAK_CLASS_HY, // hyphen - RAQM_BREAK_CLASS_BA, // break after - RAQM_BREAK_CLASS_BB, // break before - RAQM_BREAK_CLASS_B2, // break both - RAQM_BREAK_CLASS_ZW, // ZW space - RAQM_BREAK_CLASS_CM, // combining mark - RAQM_BREAK_CLASS_WJ, // word joiner - - /* used for Korean Syllable Block pair table */ - RAQM_BREAK_CLASS_H2, // Hamgul 2 Jamo Syllable - RAQM_BREAK_CLASS_H3, // Hangul 3 Jamo Syllable - RAQM_BREAK_CLASS_JL, // Jamo leading consonant - RAQM_BREAK_CLASS_JV, // Jamo vowel - RAQM_BREAK_CLASS_JT, // Jamo trailing consonant - - /* these are not handled in the pair tables */ - RAQM_BREAK_CLASS_SA, // South (East) Asian - RAQM_BREAK_CLASS_SP, // space - RAQM_BREAK_CLASS_PS, // paragraph and line separators - RAQM_BREAK_CLASS_BK, // hard break (newline) - RAQM_BREAK_CLASS_CR, // carriage return - RAQM_BREAK_CLASS_LF, // line feed - RAQM_BREAK_CLASS_NL, // next line - RAQM_BREAK_CLASS_CB, // contingent break opportunity - RAQM_BREAK_CLASS_SG, // surrogate - RAQM_BREAK_CLASS_AI, // ambiguous - RAQM_BREAK_CLASS_XX, // unknown -}; +typedef enum { + /* input types */ + RAQM_BREAK_CLASS_OP = 0, /* open */ + RAQM_BREAK_CLASS_CL, /* closing punctuation */ + RAQM_BREAK_CLASS_CP, /* closing parentheses */ + RAQM_BREAK_CLASS_QU, /* quotation */ + RAQM_BREAK_CLASS_GL, /* glue */ + RAQM_BREAK_CLASS_NS, /* no-start */ + RAQM_BREAK_CLASS_EX, /* exclamation/interrogation */ + RAQM_BREAK_CLASS_SY, /* Syntax (slash) */ + RAQM_BREAK_CLASS_IS, /* infix (numeric) separator */ + RAQM_BREAK_CLASS_PR, /* prefix */ + RAQM_BREAK_CLASS_PO, /* postfix */ + RAQM_BREAK_CLASS_NU, /* numeric */ + RAQM_BREAK_CLASS_AL, /* alphabetic */ + RAQM_BREAK_CLASS_ID, /* ideograph (atomic) */ + RAQM_BREAK_CLASS_IN, /* inseparable */ + RAQM_BREAK_CLASS_HY, /* hyphen */ + RAQM_BREAK_CLASS_BA, /* break after */ + RAQM_BREAK_CLASS_BB, /* break before */ + RAQM_BREAK_CLASS_B2, /* break both */ + RAQM_BREAK_CLASS_ZW, /* ZW space */ + RAQM_BREAK_CLASS_CM, /* combining mark */ + RAQM_BREAK_CLASS_WJ, /* word joiner */ + + /* used for Korean Syllable Block pair table */ + RAQM_BREAK_CLASS_H2, /* Hamgul 2 Jamo Syllable */ + RAQM_BREAK_CLASS_H3, /* Hangul 3 Jamo Syllable */ + RAQM_BREAK_CLASS_JL, /* Jamo leading consonant */ + RAQM_BREAK_CLASS_JV, /* Jamo vowel */ + RAQM_BREAK_CLASS_JT, /* Jamo trailing consonant */ + + /* these are not handled in the pair tables */ + RAQM_BREAK_CLASS_SA, /* South (East) Asian */ + RAQM_BREAK_CLASS_SP, /* space */ + RAQM_BREAK_CLASS_PS, /* paragraph and line separators */ + RAQM_BREAK_CLASS_BK, /* hard break (newline) */ + RAQM_BREAK_CLASS_CR, /* carriage return */ + RAQM_BREAK_CLASS_LF, /* line feed */ + RAQM_BREAK_CLASS_NL, /* next line */ + RAQM_BREAK_CLASS_CB, /* contingent break opportunity */ + RAQM_BREAK_CLASS_SG, /* surrogate */ + RAQM_BREAK_CLASS_AI, /* ambiguous */ + RAQM_BREAK_CLASS_XX, /* unknown */ +} raqm_break_class_t; + +typedef enum { + RAQM_DIRECT_BREAK = 0, /* _ in table, oo in array */ + RAQM_INDIRECT_BREAK, /* % in table, SS in array */ + RAQM_COMBINING_INDIRECT_BREAK, /* # in table, cc in array */ + RAQM_COMBINING_PROHIBITED_BREAK, /* @ in table CC in array */ + RAQM_PROHIBITED_BREAK, /* ^ in table, XX in array */ + RAQM_UNDEFINE_BREAK, /* the defualt value */ +} raqm_break_action_t; /* Define some short-cuts for the table */ -#define oo RAQM_DIRECT_BREAK // '_' break allowed -#define SS RAQM_INDIRECT_BREAK // '%' only break across space (aka 'indirect break' below) -#define cc RAQM_COMBINING_INDIRECT_BREAK // '#' indirect break for combining marks -#define CC RAQM_COMBINING_PROHIBITED_BREAK // '@' indirect break for combining marks -#define XX RAQM_PROHIBITED_BREAK // '^' no break allowed_BRK - -enum break_action { - RAQM_DIRECT_BREAK = 0, // _ in table, oo in array - RAQM_INDIRECT_BREAK, // % in table, SS in array - RAQM_COMBINING_INDIRECT_BREAK, // # in table, cc in array - RAQM_COMBINING_PROHIBITED_BREAK, // @ in table CC in array - RAQM_PROHIBITED_BREAK, // ^ in table, XX in array - RAQM_UNDEFINE_BREAK, // the defualt value -}; +#define oo RAQM_DIRECT_BREAK /* '_' break allowed */ +#define SS RAQM_INDIRECT_BREAK /* '%' only break across space (aka 'indirect break' below) */ +#define cc RAQM_COMBINING_INDIRECT_BREAK /* '#' indirect break for combining marks */ +#define CC RAQM_COMBINING_PROHIBITED_BREAK /* '@' indirect break for combining marks */ +#define XX RAQM_PROHIBITED_BREAK /* '^' no break allowed_BRK */ static bool * _raqm_find_line_break (raqm_t *rq) { - size_t length = rq->text_len; - enum break_class current_class; - enum break_class next_class; - enum break_action *break_actions; - enum break_action current_action; - bool *break_here; - - static enum break_action break_pairs[][RAQM_BREAK_CLASS_JT+1] = { - /* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 */ - /* OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class */ - /*OP*/ { XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, CC, XX, XX, XX, XX, XX, XX }, // OP open - /*CL*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CL close - /*CP*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CL close - /*QU*/ { XX, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // QU quotation - /*GL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // GL glue - /*NS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // NS no-start - /*EX*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // EX exclamation/interrogation - /*SY*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // SY Syntax (slash) - /*IS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // IS infix (numeric) separator - /*PR*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, SS, oo, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, SS }, // PR prefix - /*PO*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // NU numeric - /*NU*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // AL alphabetic - /*AL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // AL alphabetic - /*ID*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // ID ideograph (atomic) - /*IN*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // IN inseparable - /*HY*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // HY hyphens and spaces - /*BA*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // BA break after - /*BB*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // BB break before - /*B2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, XX, XX, cc, XX, oo, oo, oo, oo, oo }, // B2 break either side, but not pair - /*ZW*/ { oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, XX, oo, oo, oo, oo, oo, oo, oo }, // ZW zero width space - /*CM*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, // CM combining mark - /*WJ*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, // WJ word joiner - /*H2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, // Hangul 2 Jamo syllable - /*H3*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, // Hangul 3 Jamo syllable - /*JL*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, oo }, // Jamo Leading Consonant - /*JV*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, // Jamo Vowel - /*JT*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, // Jamo Trailing Consonant - }; - - break_actions = malloc (sizeof (enum break_action) * length); - break_here = malloc (sizeof (bool) * length); - - current_class = ucdn_get_resolved_linebreak_class(rq->text[0]); - next_class = ucdn_get_resolved_linebreak_class(rq->text[1]); - - for(size_t i = 0; i < length; i++) + size_t length = rq->text_len; + raqm_break_class_t current_class; + raqm_break_class_t next_class; + raqm_break_action_t *break_actions; + raqm_break_action_t current_action; + bool *break_here; + + static raqm_break_action_t break_pairs[][RAQM_BREAK_CLASS_JT+1] = { + /* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 */ + /* OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class */ + /*OP*/ { XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, CC, XX, XX, XX, XX, XX, XX }, /* OP open */ + /*CL*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* CL close */ + /*CP*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* CL close */ + /*QU*/ { XX, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* QU quotation */ + /*GL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* GL glue */ + /*NS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* NS no-start */ + /*EX*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* EX exclamation/interrogation */ + /*SY*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* SY Syntax (slash) */ + /*IS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* IS infix (numeric) separator */ + /*PR*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, SS, oo, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, SS }, /* PR prefix */ + /*PO*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* NU numeric */ + /*NU*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* AL alphabetic */ + /*AL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* AL alphabetic */ + /*ID*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* ID ideograph (atomic) */ + /*IN*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* IN inseparable */ + /*HY*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* HY hyphens and spaces */ + /*BA*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* BA break after */ + /*BB*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* BB break before */ + /*B2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, XX, XX, cc, XX, oo, oo, oo, oo, oo }, /* B2 break either side, but not pair */ + /*ZW*/ { oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, XX, oo, oo, oo, oo, oo, oo, oo }, /* ZW zero width space */ + /*CM*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* CM combining mark */ + /*WJ*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* WJ word joiner */ + /*H2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, /* Hangul 2 Jamo syllable */ + /*H3*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, /* Hangul 3 Jamo syllable */ + /*JL*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, oo }, /* Jamo Leading Consonant */ + /*JV*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, /* Jamo Vowel */ + /*JT*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, /* Jamo Trailing Consonant */ + }; + + break_actions = malloc (sizeof (raqm_break_action_t) * length); + break_here = malloc (sizeof (bool) * length); + + current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); + next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); + + for (size_t i = 0; i < length; i++) + break_actions[i] = RAQM_UNDEFINE_BREAK; + + /* handle case where input starts with an LF */ + if (current_class == RAQM_BREAK_CLASS_LF) + current_class = RAQM_BREAK_CLASS_BK; + + /* treat NL like BK */ + if (current_class == RAQM_BREAK_CLASS_NL) + current_class = RAQM_BREAK_CLASS_BK; + + /* treat SP at start of input as if it followed WJ */ + if (current_class == RAQM_BREAK_CLASS_SP) + current_class = RAQM_BREAK_CLASS_WJ; + + /* loop over all pairs in the string up to a hard break or CRLF pair */ + for (size_t i = 1; + (i < length) && (current_class != RAQM_BREAK_CLASS_BK) && + (current_class != RAQM_BREAK_CLASS_CR || + next_class == RAQM_BREAK_CLASS_LF); + i++) + { + next_class = ucdn_get_resolved_linebreak_class (rq->text[i]); + + /* handle spaces explicitly */ + if (next_class == RAQM_BREAK_CLASS_SP) + { + break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* apply rule LB 7: � SP */ + continue; + } + + if (next_class == RAQM_BREAK_CLASS_BK || + next_class == RAQM_BREAK_CLASS_NL || + next_class == RAQM_BREAK_CLASS_LF) { - break_actions[i] = RAQM_UNDEFINE_BREAK; + break_actions[i-1] = RAQM_PROHIBITED_BREAK; + current_class = RAQM_BREAK_CLASS_BK; + continue; } - /* handle case where input starts with an LF */ - if (current_class == RAQM_BREAK_CLASS_LF) - current_class = RAQM_BREAK_CLASS_BK; - - /* treat NL like BK */ - if (current_class == RAQM_BREAK_CLASS_NL) - current_class = RAQM_BREAK_CLASS_BK; - - /* treat SP at start of input as if it followed WJ */ - if (current_class == RAQM_BREAK_CLASS_SP) - current_class = RAQM_BREAK_CLASS_WJ; - - /* loop over all pairs in the string up to a hard break or CRLF pair */ - for (size_t i = 1; (i < length) && (current_class != RAQM_BREAK_CLASS_BK) && (current_class != RAQM_BREAK_CLASS_CR || next_class == RAQM_BREAK_CLASS_LF); i++) - { - next_class = ucdn_get_resolved_linebreak_class(rq->text[i]); - - /* handle spaces explicitly */ - if (next_class == RAQM_BREAK_CLASS_SP) { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; // apply rule LB 7: � SP - continue; - } - - if (next_class == RAQM_BREAK_CLASS_BK || next_class == RAQM_BREAK_CLASS_NL || next_class == RAQM_BREAK_CLASS_LF) { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; - current_class = RAQM_BREAK_CLASS_BK; - continue; - } - - if (next_class == RAQM_BREAK_CLASS_CR) - { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; - current_class = RAQM_BREAK_CLASS_CR; - continue; - } - - /* lookup pair table information in brkPairs[before, after] */ - current_action = break_pairs[current_class][next_class]; - break_actions[i-1] = current_action; - - if (current_action == RAQM_INDIRECT_BREAK) // resolve indirect break - { - if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == RAQM_BREAK_CLASS_SP) // if context is A SP * B - break_actions[i-1] = RAQM_INDIRECT_BREAK; // break opportunity - else // else - break_actions[i-1] = RAQM_PROHIBITED_BREAK; // no break opportunity - } - - else if (current_action == RAQM_COMBINING_PROHIBITED_BREAK) // this is the case OP SP* CM - { - break_actions[i-1] = RAQM_COMBINING_PROHIBITED_BREAK; // no break allowed - if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) != RAQM_BREAK_CLASS_SP) - continue; // apply rule 9: X CM* -> X - } - - else if (current_action == RAQM_COMBINING_INDIRECT_BREAK) // resolve combining mark break - { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; // don't break before CM - if (ucdn_get_resolved_linebreak_class(rq->text[i-1]) == RAQM_BREAK_CLASS_SP) - { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; // legacy: keep SP CM together - if (i > 1) - break_actions[i-2] = ((ucdn_get_resolved_linebreak_class(rq->text[i-2]) == RAQM_BREAK_CLASS_SP) ? RAQM_INDIRECT_BREAK : RAQM_DIRECT_BREAK); - } else // apply rule 9: X CM * -> X - continue; - } - - current_class = next_class; - } - - for(size_t i = 0; i < length; i++) - { - if (break_actions[i] == RAQM_INDIRECT_BREAK || break_actions[i] == RAQM_DIRECT_BREAK ) - { - break_here[i] = true; - } - else - break_here[i] = false; - } + if (next_class == RAQM_BREAK_CLASS_CR) + { + break_actions[i-1] = RAQM_PROHIBITED_BREAK; + current_class = RAQM_BREAK_CLASS_CR; + continue; + } + + /* lookup pair table information in brkPairs[before, after] */ + current_action = break_pairs[current_class][next_class]; + break_actions[i-1] = current_action; + + if (current_action == RAQM_INDIRECT_BREAK) /* resolve indirect break */ + { + if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == RAQM_BREAK_CLASS_SP) /* if context is A SP * B */ + break_actions[i-1] = RAQM_INDIRECT_BREAK; /* break opportunity */ + else /* else */ + break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* no break opportunity */ + } + else if (current_action == RAQM_COMBINING_PROHIBITED_BREAK) /* this is the case OP SP* CM */ + { + break_actions[i-1] = RAQM_COMBINING_PROHIBITED_BREAK; /* no break allowed */ + if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) != RAQM_BREAK_CLASS_SP) + continue; /* apply rule 9: X CM* -> X */ + } + else if (current_action == RAQM_COMBINING_INDIRECT_BREAK) /* resolve combining mark break */ + { + break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* don't break before CM */ + if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == RAQM_BREAK_CLASS_SP) + { + break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* legacy: keep SP CM together */ + if (i > 1) + break_actions[i-2] = ((ucdn_get_resolved_linebreak_class (rq->text[i-2]) == RAQM_BREAK_CLASS_SP) ? RAQM_INDIRECT_BREAK : RAQM_DIRECT_BREAK); + } + else /* apply rule 9: X CM * -> X */ + continue; + } + + current_class = next_class; + } + + for (size_t i = 0; i < length; i++) + { + if (break_actions[i] == RAQM_INDIRECT_BREAK || break_actions[i] == RAQM_DIRECT_BREAK ) + break_here[i] = true; + else + break_here[i] = false; + } #undef oo #undef SS @@ -1277,253 +1284,241 @@ _raqm_find_line_break (raqm_t *rq) #undef CC #undef XX - free (break_actions); - return break_here; + free (break_actions); + return break_here; } static int -_raqm_logical_sort(const void *a,const void *b) +_raqm_logical_sort (const void *a, const void *b) { - raqm_glyph_t *ia = (raqm_glyph_t *)a; - raqm_glyph_t *ib = (raqm_glyph_t *)b; + raqm_glyph_t *ia = (raqm_glyph_t *) a; + raqm_glyph_t *ib = (raqm_glyph_t *) b; -return ia->cluster - ib->cluster; + return ia->cluster - ib->cluster; } static int -_raqm_visual_sort(const void *a,const void *b) +_raqm_visual_sort (const void *a, const void *b) { - raqm_glyph_t *ia = (raqm_glyph_t *)a; - raqm_glyph_t *ib = (raqm_glyph_t *)b; + raqm_glyph_t *ia = (raqm_glyph_t *) a; + raqm_glyph_t *ib = (raqm_glyph_t *) b; - if (ia->line == ib->line) - { - return ia->visual_index - ib->visual_index; - } - - else - { - return ia->line - ib->line; - } + if (ia->line == ib->line) + return ia->visual_index - ib->visual_index; + else + return ia->line - ib->line; } static bool _raqm_line_break (raqm_t *rq) { - int count = 0; - int glyphs_length = 0; - int current_x = 0; - int line_space; - int current_line = 0; - int align_offset = 0; - int space_width; + int count = 0; + int glyphs_length = 0; + int current_x = 0; + int line_space; + int current_line = 0; + int align_offset = 0; + int space_width; + + int i = 0; + int j = 0; + int k = 0; - int i = 0; - int j = 0; - int k = 0; + int space_count = 0; + int space_extension; - int space_count = 0; - int space_extension; + bool *break_here = NULL; + + /* finding possible breaks in text */ + break_here = _raqm_find_line_break (rq); + + /* counting total glyphs */ + for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + count += hb_buffer_get_length (run->buffer); - bool *break_here = NULL; + glyphs_length = count; - /* finding possible breaks in text */ - break_here = _raqm_find_line_break(rq); + rq->glyphs = malloc (sizeof (raqm_glyph_t) * count); + if (!rq->glyphs) + { + return false; + } - /* counting total glyphs */ - for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) - count += hb_buffer_get_length (run->buffer); + /* populating glyphs */ + count = 0; + for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + { + size_t len; + hb_glyph_info_t *info; + hb_glyph_position_t *position; - glyphs_length = count; + len = hb_buffer_get_length (run->buffer); + info = hb_buffer_get_glyph_infos (run->buffer, NULL); + position = hb_buffer_get_glyph_positions (run->buffer, NULL); - rq->glyphs = malloc (sizeof (raqm_glyph_t) * count); - if (!rq->glyphs) + for (i = 0; i < (int)len; i++) { - return false; + rq->glyphs[count + i].index = info[i].codepoint; + rq->glyphs[count + i].cluster = info[i].cluster; + rq->glyphs[count + i].x_advance = position[i].x_advance; + rq->glyphs[count + i].y_advance = position[i].y_advance; + rq->glyphs[count + i].x_offset = position[i].x_offset; + rq->glyphs[count + i].y_offset = position[i].y_offset; + rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; + rq->glyphs[count + i].visual_index = count + i; + rq->glyphs[count + i].line = 0; } - /* populating glyphs */ - count = 0; - for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) + count += len; + } + + /* Sorting glyphs to logical order */ + qsort (rq->glyphs, glyphs_length, sizeof (raqm_glyph_t), _raqm_logical_sort); + + /* Line breaking */ + current_x = 0; + current_line = 0; + for (i = 0; i < glyphs_length; i++) + { + rq->glyphs[i].line = current_line; + current_x += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; + + if (current_x > rq->line_width) { - size_t len; - hb_glyph_info_t *info; - hb_glyph_position_t *position; + while (!break_here[rq->glyphs[i].cluster] && i >= 0) + i--; - len = hb_buffer_get_length (run->buffer); - info = hb_buffer_get_glyph_infos (run->buffer, NULL); - position = hb_buffer_get_glyph_positions (run->buffer, NULL); + /* Next line cannot start with a white space */ + if (rq->text[rq->glyphs[i + 1].cluster] == 32) + { + for (j = i + 1; rq->text[rq->glyphs[j].cluster] == 32; j++) + rq->glyphs[j].line = current_line; + i = j - 1; /* skip those */ + } - for (i = 0; i < (int)len; i++) - { - rq->glyphs[count + i].index = info[i].codepoint; - rq->glyphs[count + i].cluster = info[i].cluster; - rq->glyphs[count + i].x_advance = position[i].x_advance; - rq->glyphs[count + i].y_advance = position[i].y_advance; - rq->glyphs[count + i].x_offset = position[i].x_offset; - rq->glyphs[count + i].y_offset = position[i].y_offset; - rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; - rq->glyphs[count + i].visual_index = count + i; - rq->glyphs[count + i].line = 0; - } + /* Handeling glyphs for the same character */ + if (rq->glyphs[i + 1].cluster == rq->glyphs[i].cluster) + { + for (k = i + 1; rq->glyphs[k].cluster == rq->glyphs[i].cluster; k++) + rq->glyphs[j].line = current_line; + i = k - 1; /* skip those */ + } - count += len; + current_line ++; + current_x = 0; } + } + + /* Sorting glyphs back to visual order */ + qsort (rq->glyphs, glyphs_length, sizeof (raqm_glyph_t), _raqm_visual_sort); - /* Sorting glyphs to logical order */ - qsort(rq->glyphs, glyphs_length, sizeof(raqm_glyph_t), _raqm_logical_sort); + /* calculating positions */ + current_line = 0; + current_x = 0; + for (i = 0; i < glyphs_length; i++) + { + line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); - /* Line breaking */ - current_x = 0; - current_line = 0; - for (i = 0; i < glyphs_length; i++) + if (rq->glyphs[i].line != current_line) { - rq->glyphs[i].line = current_line; - current_x += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; + current_x = 0; + current_line = rq->glyphs[i].line; + } + + rq->glyphs[i].x_position = current_x + rq->glyphs[i].x_offset; + rq->glyphs[i].y_position = rq->glyphs[i].y_offset + rq->glyphs[i].line * line_space; + + current_x += rq->glyphs[i].x_advance; + } - if (current_x > rq->line_width) + /* handeling alighnment */ + if (rq->alignment != RAQM_ALIGNMENT_LEFT) + { + if (rq->alignment == RAQM_ALIGNMENT_RIGHT) + { + current_line = -1; + for (i = glyphs_length - 1; i >= 0; i--) + { + if (rq->glyphs[i].line != current_line) { - while (!break_here[rq->glyphs[i].cluster] && i >= 0) + current_line = rq->glyphs[i].line; + align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + { + /* check if at the start of the line there is a space */ + if (rq->text[rq->glyphs[j].cluster] == 32 && (current_line != rq->glyphs[j+1].line )) { - i--; - } + space_width = rq->glyphs[j].x_advance; /* save width of the space */ - /* Next line cannot start with a white space */ - if (rq->text[rq->glyphs[i + 1].cluster] == 32) - { - for (j = i + 1; rq->text[rq->glyphs[j].cluster] == 32; j++) - { - rq->glyphs[j].line = current_line; - } - i = j - 1; //skip those + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) /* apply shift */ + { + rq->glyphs[j-1].x_position = rq->glyphs[j-1].x_position + space_width; + rq->glyphs[j-1].x_position += align_offset; + } } - - /* Handeling glyphs for the same character */ - if (rq->glyphs[i + 1].cluster == rq->glyphs[i].cluster) + else { - for (k = i + 1; rq->glyphs[k].cluster == rq->glyphs[i].cluster; k++) - { - rq->glyphs[j].line = current_line; - } - i = k - 1; //skip those + rq->glyphs[j].x_position += align_offset; } - - current_line ++; - current_x = 0; + } } + i = j + 1; + } } - /* Sorting glyphs back to visual order */ - qsort(rq->glyphs, glyphs_length, sizeof(raqm_glyph_t), _raqm_visual_sort); - - /* calculating positions */ - current_line = 0; - current_x = 0; - for (i = 0; i < glyphs_length; i++) + if (rq->alignment == RAQM_ALIGNMENT_CENTER) { - line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs(rq->text_info[rq->glyphs[i].cluster].ftface->descender)); - + current_line = -1; + for (i = glyphs_length - 1; i >= 0; i--) + { if (rq->glyphs[i].line != current_line) { - current_x = 0; - current_line = rq->glyphs[i].line; + current_line = rq->glyphs[i].line; + align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + rq->glyphs[j].x_position += align_offset; } - - rq->glyphs[i].x_position = current_x + rq->glyphs[i].x_offset; - rq->glyphs[i].y_position = rq->glyphs[i].y_offset + rq->glyphs[i].line * line_space; - - current_x += rq->glyphs[i].x_advance; + i = j + 1; + } } - /* handeling alighnment */ - if (rq->alignment != RAQM_ALIGNMENT_LEFT) + if (rq->alignment == RAQM_ALIGNMENT_FULL) { - if (rq->alignment == RAQM_ALIGNMENT_RIGHT) + current_line = -1; + for (i = glyphs_length - 1; i >= 0; i--) + { + if (rq->glyphs[i].line != current_line) { - current_line = -1; - for (i = glyphs_length - 1; i >= 0; i--) - { - if (rq->glyphs[i].line != current_line) - { - current_line = rq->glyphs[i].line; - align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) - { - /* check if at the start of the line there is a space */ - if (rq->text[rq->glyphs[j].cluster] == 32 && (current_line != rq->glyphs[j+1].line )) - { - space_width = rq->glyphs[j].x_advance; // save width of the space - - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) // apply shift - { - rq->glyphs[j-1].x_position = rq->glyphs[j-1].x_position + space_width; - rq->glyphs[j-1].x_position += align_offset; - } - } - else - rq->glyphs[j].x_position += align_offset; - } - } - i = j + 1; - } - } + current_line = rq->glyphs[i].line; + align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); - if (rq->alignment == RAQM_ALIGNMENT_CENTER) - { - current_line = -1; - for (i = glyphs_length - 1; i >= 0; i--) - { - if (rq->glyphs[i].line != current_line) - { - current_line = rq->glyphs[i].line; - align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) - { - rq->glyphs[j].x_position += align_offset; - } - } - i = j + 1; - } - } - if (rq->alignment == RAQM_ALIGNMENT_FULL) - { - current_line = -1; - for (i = glyphs_length - 1; i >= 0; i--) - { - if (rq->glyphs[i].line != current_line) - { - current_line = rq->glyphs[i].line; - align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); - - /* counting spaces in one line */ - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) - { - if (rq->text[rq->glyphs[j].cluster] == 32) //space - space_count++; - } - - /* distributing align offset to all spaces */ - if (space_count == 0) - align_offset = 0; - else - align_offset = align_offset / space_count; - space_extension = 0; - for (k = j + 1; rq->glyphs[k].line == current_line; k++) - { - rq->glyphs[k].x_position += space_extension; - if (rq->text[rq->glyphs[k].cluster] == 32) //space - { - space_extension += align_offset; - } - } - } - i = j + 1; - } + /* counting spaces in one line */ + for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + { + if (rq->text[rq->glyphs[j].cluster] == 32) /* space */ + space_count++; + } + + /* distributing align offset to all spaces */ + if (space_count == 0) + align_offset = 0; + else + align_offset = align_offset / space_count; + space_extension = 0; + for (k = j + 1; rq->glyphs[k].line == current_line; k++) + { + rq->glyphs[k].x_position += space_extension; + if (rq->text[rq->glyphs[k].cluster] == 32) /* space */ + space_extension += align_offset; + } } + i = j + 1; + } } + } - free (break_here); - return true; + free (break_here); + return true; } static bool diff --git a/src/raqm.h b/src/raqm.h index f0672536..eb30e74e 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -75,7 +75,7 @@ typedef enum * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. * @RAQM_ALIGNMENT_FULL: Paragraph is full justified. * - * Base paragraph alignment, see raqm_set_paragraph_alignment(). + * Base paragraph alignment, see raqm_set_par_alignment(). * * Since: 0.2 */ @@ -143,6 +143,10 @@ raqm_set_language (raqm_t *rq, size_t start, size_t len); +bool +raqm_set_par_alignment (raqm_t *rq, + raqm_alignment_t align); + bool raqm_add_font_feature (raqm_t *rq, const char *feature, @@ -166,10 +170,6 @@ bool raqm_set_line_width (raqm_t *rq, int width); -bool -raqm_set_paragraph_alignment (raqm_t *rq, - raqm_alignment_t align); - bool raqm_layout (raqm_t *rq); From 199953264c18eb1af14ea75a30e48cb5cc75d070 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 7 Aug 2016 21:36:04 +0200 Subject: [PATCH 09/43] Fix docs --- docs/Makefile.am | 2 +- docs/raqm-sections.txt | 1 + src/raqm.h | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 8ab9d732..2fe86537 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -32,7 +32,7 @@ SCAN_OPTIONS=--rebuild-types # Header files or dirs to ignore when scanning. Use base file/dir names # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code -IGNORE_HFILES=reorder_runs.h +IGNORE_HFILES=reorder_runs.h ucdn # Extra options to supply to gtkdoc-mkdb. # e.g. MKDB_OPTIONS=--xml-mode --output-format=xml diff --git a/docs/raqm-sections.txt b/docs/raqm-sections.txt index 5253d4e4..0a4c31ba 100644 --- a/docs/raqm-sections.txt +++ b/docs/raqm-sections.txt @@ -19,5 +19,6 @@ raqm_index_to_position raqm_position_to_index raqm_t raqm_direction_t +raqm_alignment_t raqm_glyph_t diff --git a/src/raqm.h b/src/raqm.h index eb30e74e..4a1ca850 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -94,6 +94,8 @@ typedef enum * @y_advance: the glyph advance width in vertical text. * @x_offset: the horizontal movement of the glyph from the current point. * @y_offset: the vertical movement of the glyph from the current point. + * @x_position: the absolute x position of the glyph. + * @y_position: the absolute y position of the glyph. * @cluster: the index of original character in input text. * @ftface: the @FT_Face of the glyph. * @@ -102,8 +104,6 @@ typedef enum */ typedef struct raqm_glyph_t { unsigned int index; - int visual_index; - int line; int x_advance; int y_advance; int x_offset; @@ -112,6 +112,9 @@ typedef struct raqm_glyph_t { int y_position; uint32_t cluster; FT_Face ftface; + /*< private >*/ + int visual_index; + int line; } raqm_glyph_t; raqm_t * @@ -145,7 +148,7 @@ raqm_set_language (raqm_t *rq, bool raqm_set_par_alignment (raqm_t *rq, - raqm_alignment_t align); + raqm_alignment_t alignment); bool raqm_add_font_feature (raqm_t *rq, From ea8d3e7e5e2e0953c85d94531553aae426e719be Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 7 Aug 2016 21:48:24 +0200 Subject: [PATCH 10/43] Avoid memory leak in case of early return --- src/raqm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 00f55006..2f4ebf3c 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1329,9 +1329,6 @@ _raqm_line_break (raqm_t *rq) bool *break_here = NULL; - /* finding possible breaks in text */ - break_here = _raqm_find_line_break (rq); - /* counting total glyphs */ for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) count += hb_buffer_get_length (run->buffer); @@ -1344,6 +1341,9 @@ _raqm_line_break (raqm_t *rq) return false; } + /* finding possible breaks in text */ + break_here = _raqm_find_line_break (rq); + /* populating glyphs */ count = 0; for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) From 6819592eb4bcd3ac375fd195d0b5d99fd12e841e Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 7 Aug 2016 22:18:35 +0200 Subject: [PATCH 11/43] Use UCDN line break macros directly --- src/raqm.c | 92 ++++++++++++++---------------------------------------- 1 file changed, 23 insertions(+), 69 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 2f4ebf3c..9e1f9f66 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1080,52 +1080,6 @@ _raqm_reorder_runs (const FriBidiCharType *types, return runs; } -typedef enum { - /* input types */ - RAQM_BREAK_CLASS_OP = 0, /* open */ - RAQM_BREAK_CLASS_CL, /* closing punctuation */ - RAQM_BREAK_CLASS_CP, /* closing parentheses */ - RAQM_BREAK_CLASS_QU, /* quotation */ - RAQM_BREAK_CLASS_GL, /* glue */ - RAQM_BREAK_CLASS_NS, /* no-start */ - RAQM_BREAK_CLASS_EX, /* exclamation/interrogation */ - RAQM_BREAK_CLASS_SY, /* Syntax (slash) */ - RAQM_BREAK_CLASS_IS, /* infix (numeric) separator */ - RAQM_BREAK_CLASS_PR, /* prefix */ - RAQM_BREAK_CLASS_PO, /* postfix */ - RAQM_BREAK_CLASS_NU, /* numeric */ - RAQM_BREAK_CLASS_AL, /* alphabetic */ - RAQM_BREAK_CLASS_ID, /* ideograph (atomic) */ - RAQM_BREAK_CLASS_IN, /* inseparable */ - RAQM_BREAK_CLASS_HY, /* hyphen */ - RAQM_BREAK_CLASS_BA, /* break after */ - RAQM_BREAK_CLASS_BB, /* break before */ - RAQM_BREAK_CLASS_B2, /* break both */ - RAQM_BREAK_CLASS_ZW, /* ZW space */ - RAQM_BREAK_CLASS_CM, /* combining mark */ - RAQM_BREAK_CLASS_WJ, /* word joiner */ - - /* used for Korean Syllable Block pair table */ - RAQM_BREAK_CLASS_H2, /* Hamgul 2 Jamo Syllable */ - RAQM_BREAK_CLASS_H3, /* Hangul 3 Jamo Syllable */ - RAQM_BREAK_CLASS_JL, /* Jamo leading consonant */ - RAQM_BREAK_CLASS_JV, /* Jamo vowel */ - RAQM_BREAK_CLASS_JT, /* Jamo trailing consonant */ - - /* these are not handled in the pair tables */ - RAQM_BREAK_CLASS_SA, /* South (East) Asian */ - RAQM_BREAK_CLASS_SP, /* space */ - RAQM_BREAK_CLASS_PS, /* paragraph and line separators */ - RAQM_BREAK_CLASS_BK, /* hard break (newline) */ - RAQM_BREAK_CLASS_CR, /* carriage return */ - RAQM_BREAK_CLASS_LF, /* line feed */ - RAQM_BREAK_CLASS_NL, /* next line */ - RAQM_BREAK_CLASS_CB, /* contingent break opportunity */ - RAQM_BREAK_CLASS_SG, /* surrogate */ - RAQM_BREAK_CLASS_AI, /* ambiguous */ - RAQM_BREAK_CLASS_XX, /* unknown */ -} raqm_break_class_t; - typedef enum { RAQM_DIRECT_BREAK = 0, /* _ in table, oo in array */ RAQM_INDIRECT_BREAK, /* % in table, SS in array */ @@ -1146,13 +1100,13 @@ static bool * _raqm_find_line_break (raqm_t *rq) { size_t length = rq->text_len; - raqm_break_class_t current_class; - raqm_break_class_t next_class; + int current_class; + int next_class; raqm_break_action_t *break_actions; raqm_break_action_t current_action; bool *break_here; - static raqm_break_action_t break_pairs[][RAQM_BREAK_CLASS_JT+1] = { + static raqm_break_action_t break_pairs[][UCDN_LINEBREAK_CLASS_JT+1] = { /* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 */ /* OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class */ /*OP*/ { XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, CC, XX, XX, XX, XX, XX, XX }, /* OP open */ @@ -1194,46 +1148,46 @@ _raqm_find_line_break (raqm_t *rq) break_actions[i] = RAQM_UNDEFINE_BREAK; /* handle case where input starts with an LF */ - if (current_class == RAQM_BREAK_CLASS_LF) - current_class = RAQM_BREAK_CLASS_BK; + if (current_class == UCDN_LINEBREAK_CLASS_LF) + current_class = UCDN_LINEBREAK_CLASS_BK; /* treat NL like BK */ - if (current_class == RAQM_BREAK_CLASS_NL) - current_class = RAQM_BREAK_CLASS_BK; + if (current_class == UCDN_LINEBREAK_CLASS_NL) + current_class = UCDN_LINEBREAK_CLASS_BK; /* treat SP at start of input as if it followed WJ */ - if (current_class == RAQM_BREAK_CLASS_SP) - current_class = RAQM_BREAK_CLASS_WJ; + if (current_class == UCDN_LINEBREAK_CLASS_SP) + current_class = UCDN_LINEBREAK_CLASS_WJ; /* loop over all pairs in the string up to a hard break or CRLF pair */ for (size_t i = 1; - (i < length) && (current_class != RAQM_BREAK_CLASS_BK) && - (current_class != RAQM_BREAK_CLASS_CR || - next_class == RAQM_BREAK_CLASS_LF); + (i < length) && (current_class != UCDN_LINEBREAK_CLASS_BK) && + (current_class != UCDN_LINEBREAK_CLASS_CR || + next_class == UCDN_LINEBREAK_CLASS_LF); i++) { next_class = ucdn_get_resolved_linebreak_class (rq->text[i]); /* handle spaces explicitly */ - if (next_class == RAQM_BREAK_CLASS_SP) + if (next_class == UCDN_LINEBREAK_CLASS_SP) { break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* apply rule LB 7: � SP */ continue; } - if (next_class == RAQM_BREAK_CLASS_BK || - next_class == RAQM_BREAK_CLASS_NL || - next_class == RAQM_BREAK_CLASS_LF) + if (next_class == UCDN_LINEBREAK_CLASS_BK || + next_class == UCDN_LINEBREAK_CLASS_NL || + next_class == UCDN_LINEBREAK_CLASS_LF) { break_actions[i-1] = RAQM_PROHIBITED_BREAK; - current_class = RAQM_BREAK_CLASS_BK; + current_class = UCDN_LINEBREAK_CLASS_BK; continue; } - if (next_class == RAQM_BREAK_CLASS_CR) + if (next_class == UCDN_LINEBREAK_CLASS_CR) { break_actions[i-1] = RAQM_PROHIBITED_BREAK; - current_class = RAQM_BREAK_CLASS_CR; + current_class = UCDN_LINEBREAK_CLASS_CR; continue; } @@ -1243,7 +1197,7 @@ _raqm_find_line_break (raqm_t *rq) if (current_action == RAQM_INDIRECT_BREAK) /* resolve indirect break */ { - if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == RAQM_BREAK_CLASS_SP) /* if context is A SP * B */ + if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == UCDN_LINEBREAK_CLASS_SP) /* if context is A SP * B */ break_actions[i-1] = RAQM_INDIRECT_BREAK; /* break opportunity */ else /* else */ break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* no break opportunity */ @@ -1251,17 +1205,17 @@ _raqm_find_line_break (raqm_t *rq) else if (current_action == RAQM_COMBINING_PROHIBITED_BREAK) /* this is the case OP SP* CM */ { break_actions[i-1] = RAQM_COMBINING_PROHIBITED_BREAK; /* no break allowed */ - if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) != RAQM_BREAK_CLASS_SP) + if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) != UCDN_LINEBREAK_CLASS_SP) continue; /* apply rule 9: X CM* -> X */ } else if (current_action == RAQM_COMBINING_INDIRECT_BREAK) /* resolve combining mark break */ { break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* don't break before CM */ - if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == RAQM_BREAK_CLASS_SP) + if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == UCDN_LINEBREAK_CLASS_SP) { break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* legacy: keep SP CM together */ if (i > 1) - break_actions[i-2] = ((ucdn_get_resolved_linebreak_class (rq->text[i-2]) == RAQM_BREAK_CLASS_SP) ? RAQM_INDIRECT_BREAK : RAQM_DIRECT_BREAK); + break_actions[i-2] = ((ucdn_get_resolved_linebreak_class (rq->text[i-2]) == UCDN_LINEBREAK_CLASS_SP) ? RAQM_INDIRECT_BREAK : RAQM_DIRECT_BREAK); } else /* apply rule 9: X CM * -> X */ continue; From 4d0c056ea7a06675aa983ce51f4a3ef1a12f6476 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 7 Aug 2016 22:25:35 +0200 Subject: [PATCH 12/43] Simplify --- src/raqm.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 9e1f9f66..5a0242da 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1086,7 +1086,6 @@ typedef enum { RAQM_COMBINING_INDIRECT_BREAK, /* # in table, cc in array */ RAQM_COMBINING_PROHIBITED_BREAK, /* @ in table CC in array */ RAQM_PROHIBITED_BREAK, /* ^ in table, XX in array */ - RAQM_UNDEFINE_BREAK, /* the defualt value */ } raqm_break_action_t; /* Define some short-cuts for the table */ @@ -1144,8 +1143,7 @@ _raqm_find_line_break (raqm_t *rq) current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); - for (size_t i = 0; i < length; i++) - break_actions[i] = RAQM_UNDEFINE_BREAK; + memset (break_actions, RAQM_PROHIBITED_BREAK, length); /* handle case where input starts with an LF */ if (current_class == UCDN_LINEBREAK_CLASS_LF) From 1b0ef29a4352bf9676917c3f9c20452a9bf70c1c Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 7 Aug 2016 23:16:54 +0200 Subject: [PATCH 13/43] Fix AppVeyor build --- .appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 67fb291f..f6d25291 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,6 +7,7 @@ install: - call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% - appveyor-retry C:\msys64\usr\bin\pacman -Syuu --needed --noconfirm --noprogressbar --ask=127 - appveyor-retry C:\msys64\usr\bin\pacman -S --noconfirm autoconf automake libtool gtk-doc mingw-w64-x86_64-pkg-config mingw-w64-x86_64-harfbuzz mingw-w64-x86_64-fribidi mingw-w64-x86_64-freetype + - git submodule update --init --recursive build_script: - set CC=cccl @@ -16,7 +17,7 @@ build_script: - bash -c "mv cccl /usr/bin" - bash -c "exec 0 Date: Mon, 8 Aug 2016 00:48:27 +0200 Subject: [PATCH 14/43] Put these defines closer to where they are used --- src/raqm.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 5a0242da..0fe06f81 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1088,13 +1088,6 @@ typedef enum { RAQM_PROHIBITED_BREAK, /* ^ in table, XX in array */ } raqm_break_action_t; -/* Define some short-cuts for the table */ -#define oo RAQM_DIRECT_BREAK /* '_' break allowed */ -#define SS RAQM_INDIRECT_BREAK /* '%' only break across space (aka 'indirect break' below) */ -#define cc RAQM_COMBINING_INDIRECT_BREAK /* '#' indirect break for combining marks */ -#define CC RAQM_COMBINING_PROHIBITED_BREAK /* '@' indirect break for combining marks */ -#define XX RAQM_PROHIBITED_BREAK /* '^' no break allowed_BRK */ - static bool * _raqm_find_line_break (raqm_t *rq) { @@ -1105,6 +1098,13 @@ _raqm_find_line_break (raqm_t *rq) raqm_break_action_t current_action; bool *break_here; +/* Define some short-cuts for the table */ +#define oo RAQM_DIRECT_BREAK /* '_' break allowed */ +#define SS RAQM_INDIRECT_BREAK /* '%' only break across space (aka 'indirect break' below) */ +#define cc RAQM_COMBINING_INDIRECT_BREAK /* '#' indirect break for combining marks */ +#define CC RAQM_COMBINING_PROHIBITED_BREAK /* '@' indirect break for combining marks */ +#define XX RAQM_PROHIBITED_BREAK /* '^' no break allowed_BRK */ + static raqm_break_action_t break_pairs[][UCDN_LINEBREAK_CLASS_JT+1] = { /* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 */ /* OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class */ @@ -1137,6 +1137,12 @@ _raqm_find_line_break (raqm_t *rq) /*JT*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, /* Jamo Trailing Consonant */ }; +#undef oo +#undef SS +#undef cc +#undef CC +#undef XX + break_actions = malloc (sizeof (raqm_break_action_t) * length); break_here = malloc (sizeof (bool) * length); @@ -1230,12 +1236,6 @@ _raqm_find_line_break (raqm_t *rq) break_here[i] = false; } -#undef oo -#undef SS -#undef cc -#undef CC -#undef XX - free (break_actions); return break_here; } From b8b650646766577bacaf7436a9ccf4360257286d Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 8 Aug 2016 00:56:44 +0200 Subject: [PATCH 15/43] Move new members to the end of the struct Hopefully with will keep the ABI compatibility since we do the allocation ourselves. --- src/raqm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raqm.h b/src/raqm.h index 4a1ca850..acae6cf0 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -108,10 +108,10 @@ typedef struct raqm_glyph_t { int y_advance; int x_offset; int y_offset; - int x_position; - int y_position; uint32_t cluster; FT_Face ftface; + int x_position; + int y_position; /*< private >*/ int visual_index; int line; From d30ea548f5477d6c4efb8ab3379ea5151fffe9c2 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 8 Aug 2016 01:13:34 +0200 Subject: [PATCH 16/43] =?UTF-8?q?Don=E2=80=99t=20bother=20if=20there=20is?= =?UTF-8?q?=20only=20one=20character?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avoids out of bounds access in the lines below. --- src/raqm.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/raqm.c b/src/raqm.c index 0fe06f81..5356b96b 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1143,12 +1143,16 @@ _raqm_find_line_break (raqm_t *rq) #undef CC #undef XX - break_actions = malloc (sizeof (raqm_break_action_t) * length); break_here = malloc (sizeof (bool) * length); + memset (break_here, false, length); + + if (length < 2) + return break_here; current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); + break_actions = malloc (sizeof (raqm_break_action_t) * length); memset (break_actions, RAQM_PROHIBITED_BREAK, length); /* handle case where input starts with an LF */ From f7df18478a2f4d29aae61b919cbac3219297a2a0 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 8 Aug 2016 01:15:44 +0200 Subject: [PATCH 17/43] Minor --- src/raqm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 5356b96b..dd3fa27e 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1149,12 +1149,12 @@ _raqm_find_line_break (raqm_t *rq) if (length < 2) return break_here; - current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); - next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); - break_actions = malloc (sizeof (raqm_break_action_t) * length); memset (break_actions, RAQM_PROHIBITED_BREAK, length); + current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); + next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); + /* handle case where input starts with an LF */ if (current_class == UCDN_LINEBREAK_CLASS_LF) current_class = UCDN_LINEBREAK_CLASS_BK; From 121b0caa842546a3d764e807e90f4f322450e7ca Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 8 Aug 2016 01:36:03 +0200 Subject: [PATCH 18/43] Reduce variable scope and avoid dangerous casts --- src/raqm.c | 52 +++++++++++++++++++++++----------------------------- 1 file changed, 23 insertions(+), 29 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index dd3fa27e..783eba98 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1268,30 +1268,18 @@ _raqm_visual_sort (const void *a, const void *b) static bool _raqm_line_break (raqm_t *rq) { - int count = 0; - int glyphs_length = 0; + size_t count = 0; + size_t glyphs_length = 0; int current_x = 0; - int line_space; int current_line = 0; - int align_offset = 0; - int space_width; - - int i = 0; - int j = 0; - int k = 0; - - int space_count = 0; - int space_extension; bool *break_here = NULL; /* counting total glyphs */ for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) - count += hb_buffer_get_length (run->buffer); - - glyphs_length = count; + glyphs_length += hb_buffer_get_length (run->buffer); - rq->glyphs = malloc (sizeof (raqm_glyph_t) * count); + rq->glyphs = malloc (sizeof (raqm_glyph_t) * glyphs_length); if (!rq->glyphs) { return false; @@ -1312,7 +1300,7 @@ _raqm_line_break (raqm_t *rq) info = hb_buffer_get_glyph_infos (run->buffer, NULL); position = hb_buffer_get_glyph_positions (run->buffer, NULL); - for (i = 0; i < (int)len; i++) + for (size_t i = 0; i < len; i++) { rq->glyphs[count + i].index = info[i].codepoint; rq->glyphs[count + i].cluster = info[i].cluster; @@ -1334,13 +1322,15 @@ _raqm_line_break (raqm_t *rq) /* Line breaking */ current_x = 0; current_line = 0; - for (i = 0; i < glyphs_length; i++) + for (size_t i = 0; i < glyphs_length; i++) { rq->glyphs[i].line = current_line; current_x += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; if (current_x > rq->line_width) { + size_t j = 0; + size_t k = 0; while (!break_here[rq->glyphs[i].cluster] && i >= 0) i--; @@ -1371,9 +1361,9 @@ _raqm_line_break (raqm_t *rq) /* calculating positions */ current_line = 0; current_x = 0; - for (i = 0; i < glyphs_length; i++) + for (size_t i = 0; i < glyphs_length; i++) { - line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); + int line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); if (rq->glyphs[i].line != current_line) { @@ -1392,19 +1382,20 @@ _raqm_line_break (raqm_t *rq) { if (rq->alignment == RAQM_ALIGNMENT_RIGHT) { + size_t j = 0; current_line = -1; - for (i = glyphs_length - 1; i >= 0; i--) + for (size_t i = glyphs_length - 1; i >= 0; i--) { if (rq->glyphs[i].line != current_line) { + int align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); current_line = rq->glyphs[i].line; - align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) { /* check if at the start of the line there is a space */ if (rq->text[rq->glyphs[j].cluster] == 32 && (current_line != rq->glyphs[j+1].line )) { - space_width = rq->glyphs[j].x_advance; /* save width of the space */ + int space_width = rq->glyphs[j].x_advance; /* save width of the space */ for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) /* apply shift */ { @@ -1424,13 +1415,14 @@ _raqm_line_break (raqm_t *rq) if (rq->alignment == RAQM_ALIGNMENT_CENTER) { + size_t j = 0; current_line = -1; - for (i = glyphs_length - 1; i >= 0; i--) + for (size_t i = glyphs_length - 1; i >= 0; i--) { if (rq->glyphs[i].line != current_line) { + int align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; current_line = rq->glyphs[i].line; - align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) rq->glyphs[j].x_position += align_offset; } @@ -1440,13 +1432,16 @@ _raqm_line_break (raqm_t *rq) if (rq->alignment == RAQM_ALIGNMENT_FULL) { + int space_count = 0; + size_t j = 0; current_line = -1; - for (i = glyphs_length - 1; i >= 0; i--) + for (size_t i = glyphs_length - 1; i >= 0; i--) { if (rq->glyphs[i].line != current_line) { + int space_extension = 0; + int align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); current_line = rq->glyphs[i].line; - align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); /* counting spaces in one line */ for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) @@ -1460,8 +1455,7 @@ _raqm_line_break (raqm_t *rq) align_offset = 0; else align_offset = align_offset / space_count; - space_extension = 0; - for (k = j + 1; rq->glyphs[k].line == current_line; k++) + for (size_t k = j + 1; rq->glyphs[k].line == current_line; k++) { rq->glyphs[k].x_position += space_extension; if (rq->text[rq->glyphs[k].cluster] == 32) /* space */ From b1dd1ad5d5bd9102b3631fd95c1081a165625a90 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 8 Aug 2016 01:48:29 +0200 Subject: [PATCH 19/43] =?UTF-8?q?Don=E2=80=99t=20do=20line=20breaking=20if?= =?UTF-8?q?=20line=20width=20is=20negative?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/raqm.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 783eba98..4742f0b0 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -312,7 +312,7 @@ raqm_create (void) rq->ft_loadflags = -1; - rq->line_width = 2147483647; + rq->line_width = -1; rq->alignment = RAQM_ALIGNMENT_LEFT; @@ -781,8 +781,8 @@ raqm_set_freetype_load_flags (raqm_t *rq, * @width: the line width. * * Sets the maximum line width for the paragraph. Causes Raqm to break lines - * exceeding @width. If no width is set Raqm will assume line width is - * infinite, and no line breaking will take place. + * exceeding @width. By default no line breaking takes place, and negative + * @width has the same effect. * * Return value: * %true if no errors happened, %false otherwise. @@ -1285,11 +1285,9 @@ _raqm_line_break (raqm_t *rq) return false; } - /* finding possible breaks in text */ - break_here = _raqm_find_line_break (rq); - /* populating glyphs */ count = 0; + current_x = 0; for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) { size_t len; @@ -1308,18 +1306,29 @@ _raqm_line_break (raqm_t *rq) rq->glyphs[count + i].y_advance = position[i].y_advance; rq->glyphs[count + i].x_offset = position[i].x_offset; rq->glyphs[count + i].y_offset = position[i].y_offset; + rq->glyphs[count + i].x_position = current_x + position[i].x_offset; + rq->glyphs[count + i].y_position = position[i].y_offset; rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; rq->glyphs[count + i].visual_index = count + i; rq->glyphs[count + i].line = 0; + + current_x += position[i].x_advance; } count += len; } + if (rq->line_width < 0) + return true; + /* Sorting glyphs to logical order */ qsort (rq->glyphs, glyphs_length, sizeof (raqm_glyph_t), _raqm_logical_sort); /* Line breaking */ + + /* finding possible breaks in text */ + break_here = _raqm_find_line_break (rq); + current_x = 0; current_line = 0; for (size_t i = 0; i < glyphs_length; i++) From ffc754f62ce5d39a1804581fdc7f3c39b56f643b Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 8 Aug 2016 02:49:18 +0200 Subject: [PATCH 20/43] Fix build This is really just stabbing in the dark, as it turns out we do not have any tests for the line breaking at all! --- src/raqm.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 4742f0b0..af44521a 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1340,7 +1340,7 @@ _raqm_line_break (raqm_t *rq) { size_t j = 0; size_t k = 0; - while (!break_here[rq->glyphs[i].cluster] && i >= 0) + while (!break_here[rq->glyphs[i].cluster] && i != 0) i--; /* Next line cannot start with a white space */ @@ -1393,20 +1393,20 @@ _raqm_line_break (raqm_t *rq) { size_t j = 0; current_line = -1; - for (size_t i = glyphs_length - 1; i >= 0; i--) + for (size_t i = glyphs_length - 1; i != 0; i--) { if (rq->glyphs[i].line != current_line) { int align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); current_line = rq->glyphs[i].line; - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) { /* check if at the start of the line there is a space */ if (rq->text[rq->glyphs[j].cluster] == 32 && (current_line != rq->glyphs[j+1].line )) { int space_width = rq->glyphs[j].x_advance; /* save width of the space */ - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) /* apply shift */ + for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) /* apply shift */ { rq->glyphs[j-1].x_position = rq->glyphs[j-1].x_position + space_width; rq->glyphs[j-1].x_position += align_offset; @@ -1426,13 +1426,13 @@ _raqm_line_break (raqm_t *rq) { size_t j = 0; current_line = -1; - for (size_t i = glyphs_length - 1; i >= 0; i--) + for (size_t i = glyphs_length - 1; i != 0; i--) { if (rq->glyphs[i].line != current_line) { int align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; current_line = rq->glyphs[i].line; - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) rq->glyphs[j].x_position += align_offset; } i = j + 1; @@ -1444,7 +1444,7 @@ _raqm_line_break (raqm_t *rq) int space_count = 0; size_t j = 0; current_line = -1; - for (size_t i = glyphs_length - 1; i >= 0; i--) + for (size_t i = glyphs_length - 1; i != 0; i--) { if (rq->glyphs[i].line != current_line) { @@ -1453,7 +1453,7 @@ _raqm_line_break (raqm_t *rq) current_line = rq->glyphs[i].line; /* counting spaces in one line */ - for (j = i; j >= 0 && rq->glyphs[j].line == current_line; j--) + for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) { if (rq->text[rq->glyphs[j].cluster] == 32) /* space */ space_count++; From 1263ffa16321ca612bca9910ca4d733e24f2414b Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 14:17:43 +0200 Subject: [PATCH 21/43] Add a simple test for line breaking --- tests/Makefile.am | 1 + tests/line-breaking-ltr.test | 1357 ++++++++++++++++++++++++++++++++++ tests/raqm-test.c | 5 + 3 files changed, 1363 insertions(+) create mode 100644 tests/line-breaking-ltr.test diff --git a/tests/Makefile.am b/tests/Makefile.am index 0421d257..f53a1dcb 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -40,6 +40,7 @@ TEST_FILES = \ scripts-forward-rtl.test \ languages-sr.test \ languages-sr-ru.test \ + line-breaking-ltr.test \ multi-fonts.test \ multi-fonts2.test \ xyoffset.test \ diff --git a/tests/line-breaking-ltr.test b/tests/line-breaking-ltr.test new file mode 100644 index 00000000..5d68d063 --- /dev/null +++ b/tests/line-breaking-ltr.test @@ -0,0 +1,1357 @@ +fonts/sha1sum/bcb3b98eb67ece19b8b709f77143d91bcb3d95eb.ttf +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +--line-width=50000 +Text is: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +Direction is: DEFAULT + +Before script detection: +script for ch[0] Latn +script for ch[1] Latn +script for ch[2] Latn +script for ch[3] Latn +script for ch[4] Latn +script for ch[5] Zyyy +script for ch[6] Latn +script for ch[7] Latn +script for ch[8] Latn +script for ch[9] Latn +script for ch[10] Latn +script for ch[11] Zyyy +script for ch[12] Latn +script for ch[13] Latn +script for ch[14] Latn +script for ch[15] Latn +script for ch[16] Latn +script for ch[17] Zyyy +script for ch[18] Latn +script for ch[19] Latn +script for ch[20] Latn +script for ch[21] Zyyy +script for ch[22] Latn +script for ch[23] Latn +script for ch[24] Latn +script for ch[25] Latn +script for ch[26] Zyyy +script for ch[27] Zyyy +script for ch[28] Latn +script for ch[29] Latn +script for ch[30] Latn +script for ch[31] Latn +script for ch[32] Latn +script for ch[33] Latn +script for ch[34] Latn +script for ch[35] Latn +script for ch[36] Latn +script for ch[37] Latn +script for ch[38] Latn +script for ch[39] Zyyy +script for ch[40] Latn +script for ch[41] Latn +script for ch[42] Latn +script for ch[43] Latn +script for ch[44] Latn +script for ch[45] Latn +script for ch[46] Latn +script for ch[47] Latn +script for ch[48] Latn +script for ch[49] Latn +script for ch[50] Zyyy +script for ch[51] Latn +script for ch[52] Latn +script for ch[53] Latn +script for ch[54] Latn +script for ch[55] Zyyy +script for ch[56] Zyyy +script for ch[57] Latn +script for ch[58] Latn +script for ch[59] Latn +script for ch[60] Zyyy +script for ch[61] Latn +script for ch[62] Latn +script for ch[63] Zyyy +script for ch[64] Latn +script for ch[65] Latn +script for ch[66] Latn +script for ch[67] Latn +script for ch[68] Latn +script for ch[69] Latn +script for ch[70] Latn +script for ch[71] Zyyy +script for ch[72] Latn +script for ch[73] Latn +script for ch[74] Latn +script for ch[75] Latn +script for ch[76] Latn +script for ch[77] Latn +script for ch[78] Zyyy +script for ch[79] Latn +script for ch[80] Latn +script for ch[81] Latn +script for ch[82] Latn +script for ch[83] Latn +script for ch[84] Latn +script for ch[85] Latn +script for ch[86] Latn +script for ch[87] Latn +script for ch[88] Latn +script for ch[89] Zyyy +script for ch[90] Latn +script for ch[91] Latn +script for ch[92] Zyyy +script for ch[93] Latn +script for ch[94] Latn +script for ch[95] Latn +script for ch[96] Latn +script for ch[97] Latn +script for ch[98] Latn +script for ch[99] Zyyy +script for ch[100] Latn +script for ch[101] Latn +script for ch[102] Zyyy +script for ch[103] Latn +script for ch[104] Latn +script for ch[105] Latn +script for ch[106] Latn +script for ch[107] Latn +script for ch[108] Latn +script for ch[109] Zyyy +script for ch[110] Latn +script for ch[111] Latn +script for ch[112] Latn +script for ch[113] Latn +script for ch[114] Latn +script for ch[115] Zyyy +script for ch[116] Latn +script for ch[117] Latn +script for ch[118] Latn +script for ch[119] Latn +script for ch[120] Latn +script for ch[121] Latn +script for ch[122] Zyyy +script for ch[123] Zyyy +script for ch[124] Latn +script for ch[125] Latn +script for ch[126] Zyyy +script for ch[127] Latn +script for ch[128] Latn +script for ch[129] Latn +script for ch[130] Latn +script for ch[131] Zyyy +script for ch[132] Latn +script for ch[133] Latn +script for ch[134] Zyyy +script for ch[135] Latn +script for ch[136] Latn +script for ch[137] Latn +script for ch[138] Latn +script for ch[139] Latn +script for ch[140] Zyyy +script for ch[141] Latn +script for ch[142] Latn +script for ch[143] Latn +script for ch[144] Latn +script for ch[145] Latn +script for ch[146] Latn +script for ch[147] Zyyy +script for ch[148] Zyyy +script for ch[149] Latn +script for ch[150] Latn +script for ch[151] Latn +script for ch[152] Latn +script for ch[153] Zyyy +script for ch[154] Latn +script for ch[155] Latn +script for ch[156] Latn +script for ch[157] Latn +script for ch[158] Latn +script for ch[159] Latn +script for ch[160] Latn +script for ch[161] Zyyy +script for ch[162] Latn +script for ch[163] Latn +script for ch[164] Latn +script for ch[165] Latn +script for ch[166] Latn +script for ch[167] Latn +script for ch[168] Latn +script for ch[169] Latn +script for ch[170] Latn +script for ch[171] Latn +script for ch[172] Latn +script for ch[173] Latn +script for ch[174] Zyyy +script for ch[175] Latn +script for ch[176] Latn +script for ch[177] Latn +script for ch[178] Latn +script for ch[179] Latn +script for ch[180] Latn +script for ch[181] Latn +script for ch[182] Zyyy +script for ch[183] Latn +script for ch[184] Latn +script for ch[185] Latn +script for ch[186] Latn +script for ch[187] Latn +script for ch[188] Latn +script for ch[189] Latn +script for ch[190] Zyyy +script for ch[191] Latn +script for ch[192] Latn +script for ch[193] Latn +script for ch[194] Latn +script for ch[195] Zyyy +script for ch[196] Latn +script for ch[197] Latn +script for ch[198] Zyyy +script for ch[199] Latn +script for ch[200] Latn +script for ch[201] Latn +script for ch[202] Latn +script for ch[203] Latn +script for ch[204] Latn +script for ch[205] Latn +script for ch[206] Zyyy +script for ch[207] Latn +script for ch[208] Latn +script for ch[209] Zyyy +script for ch[210] Latn +script for ch[211] Latn +script for ch[212] Zyyy +script for ch[213] Latn +script for ch[214] Latn +script for ch[215] Latn +script for ch[216] Latn +script for ch[217] Latn +script for ch[218] Latn +script for ch[219] Latn +script for ch[220] Zyyy +script for ch[221] Latn +script for ch[222] Latn +script for ch[223] Latn +script for ch[224] Latn +script for ch[225] Latn +script for ch[226] Latn +script for ch[227] Latn +script for ch[228] Latn +script for ch[229] Latn +script for ch[230] Zyyy +script for ch[231] Zyyy +script for ch[232] Latn +script for ch[233] Latn +script for ch[234] Latn +script for ch[235] Latn +script for ch[236] Zyyy +script for ch[237] Latn +script for ch[238] Latn +script for ch[239] Latn +script for ch[240] Latn +script for ch[241] Zyyy +script for ch[242] Latn +script for ch[243] Latn +script for ch[244] Latn +script for ch[245] Latn +script for ch[246] Latn +script for ch[247] Zyyy +script for ch[248] Latn +script for ch[249] Latn +script for ch[250] Latn +script for ch[251] Latn +script for ch[252] Latn +script for ch[253] Zyyy +script for ch[254] Latn +script for ch[255] Latn +script for ch[256] Zyyy +script for ch[257] Latn +script for ch[258] Latn +script for ch[259] Latn +script for ch[260] Latn +script for ch[261] Latn +script for ch[262] Latn +script for ch[263] Latn +script for ch[264] Latn +script for ch[265] Latn +script for ch[266] Latn +script for ch[267] Latn +script for ch[268] Latn +script for ch[269] Latn +script for ch[270] Zyyy +script for ch[271] Latn +script for ch[272] Latn +script for ch[273] Zyyy +script for ch[274] Latn +script for ch[275] Latn +script for ch[276] Latn +script for ch[277] Latn +script for ch[278] Latn +script for ch[279] Latn +script for ch[280] Latn +script for ch[281] Latn +script for ch[282] Latn +script for ch[283] Zyyy +script for ch[284] Latn +script for ch[285] Latn +script for ch[286] Latn +script for ch[287] Latn +script for ch[288] Latn +script for ch[289] Zyyy +script for ch[290] Latn +script for ch[291] Latn +script for ch[292] Latn +script for ch[293] Latn +script for ch[294] Zyyy +script for ch[295] Latn +script for ch[296] Latn +script for ch[297] Latn +script for ch[298] Latn +script for ch[299] Latn +script for ch[300] Latn +script for ch[301] Zyyy +script for ch[302] Latn +script for ch[303] Latn +script for ch[304] Latn +script for ch[305] Latn +script for ch[306] Latn +script for ch[307] Latn +script for ch[308] Zyyy +script for ch[309] Latn +script for ch[310] Latn +script for ch[311] Zyyy +script for ch[312] Latn +script for ch[313] Latn +script for ch[314] Latn +script for ch[315] Latn +script for ch[316] Latn +script for ch[317] Latn +script for ch[318] Zyyy +script for ch[319] Latn +script for ch[320] Latn +script for ch[321] Latn +script for ch[322] Latn +script for ch[323] Latn +script for ch[324] Zyyy +script for ch[325] Latn +script for ch[326] Latn +script for ch[327] Latn +script for ch[328] Latn +script for ch[329] Latn +script for ch[330] Latn +script for ch[331] Latn +script for ch[332] Latn +script for ch[333] Zyyy +script for ch[334] Zyyy +script for ch[335] Latn +script for ch[336] Latn +script for ch[337] Latn +script for ch[338] Latn +script for ch[339] Latn +script for ch[340] Latn +script for ch[341] Latn +script for ch[342] Latn +script for ch[343] Latn +script for ch[344] Zyyy +script for ch[345] Latn +script for ch[346] Latn +script for ch[347] Latn +script for ch[348] Latn +script for ch[349] Zyyy +script for ch[350] Latn +script for ch[351] Latn +script for ch[352] Latn +script for ch[353] Latn +script for ch[354] Latn +script for ch[355] Latn +script for ch[356] Latn +script for ch[357] Latn +script for ch[358] Zyyy +script for ch[359] Latn +script for ch[360] Latn +script for ch[361] Latn +script for ch[362] Latn +script for ch[363] Latn +script for ch[364] Latn +script for ch[365] Latn +script for ch[366] Latn +script for ch[367] Latn +script for ch[368] Zyyy +script for ch[369] Latn +script for ch[370] Latn +script for ch[371] Latn +script for ch[372] Zyyy +script for ch[373] Latn +script for ch[374] Latn +script for ch[375] Latn +script for ch[376] Latn +script for ch[377] Latn +script for ch[378] Latn +script for ch[379] Latn +script for ch[380] Latn +script for ch[381] Zyyy +script for ch[382] Zyyy +script for ch[383] Latn +script for ch[384] Latn +script for ch[385] Latn +script for ch[386] Latn +script for ch[387] Zyyy +script for ch[388] Latn +script for ch[389] Latn +script for ch[390] Zyyy +script for ch[391] Latn +script for ch[392] Latn +script for ch[393] Latn +script for ch[394] Latn +script for ch[395] Latn +script for ch[396] Zyyy +script for ch[397] Latn +script for ch[398] Latn +script for ch[399] Latn +script for ch[400] Zyyy +script for ch[401] Latn +script for ch[402] Latn +script for ch[403] Latn +script for ch[404] Latn +script for ch[405] Latn +script for ch[406] Latn +script for ch[407] Latn +script for ch[408] Zyyy +script for ch[409] Latn +script for ch[410] Latn +script for ch[411] Latn +script for ch[412] Latn +script for ch[413] Latn +script for ch[414] Latn +script for ch[415] Latn +script for ch[416] Latn +script for ch[417] Zyyy +script for ch[418] Latn +script for ch[419] Latn +script for ch[420] Latn +script for ch[421] Latn +script for ch[422] Latn +script for ch[423] Latn +script for ch[424] Zyyy +script for ch[425] Latn +script for ch[426] Latn +script for ch[427] Latn +script for ch[428] Latn +script for ch[429] Zyyy +script for ch[430] Latn +script for ch[431] Latn +script for ch[432] Zyyy +script for ch[433] Latn +script for ch[434] Latn +script for ch[435] Latn +script for ch[436] Zyyy +script for ch[437] Latn +script for ch[438] Latn +script for ch[439] Latn +script for ch[440] Latn +script for ch[441] Latn +script for ch[442] Latn +script for ch[443] Latn +script for ch[444] Zyyy + +After script detection: +script for ch[0] Latn +script for ch[1] Latn +script for ch[2] Latn +script for ch[3] Latn +script for ch[4] Latn +script for ch[5] Latn +script for ch[6] Latn +script for ch[7] Latn +script for ch[8] Latn +script for ch[9] Latn +script for ch[10] Latn +script for ch[11] Latn +script for ch[12] Latn +script for ch[13] Latn +script for ch[14] Latn +script for ch[15] Latn +script for ch[16] Latn +script for ch[17] Latn +script for ch[18] Latn +script for ch[19] Latn +script for ch[20] Latn +script for ch[21] Latn +script for ch[22] Latn +script for ch[23] Latn +script for ch[24] Latn +script for ch[25] Latn +script for ch[26] Latn +script for ch[27] Latn +script for ch[28] Latn +script for ch[29] Latn +script for ch[30] Latn +script for ch[31] Latn +script for ch[32] Latn +script for ch[33] Latn +script for ch[34] Latn +script for ch[35] Latn +script for ch[36] Latn +script for ch[37] Latn +script for ch[38] Latn +script for ch[39] Latn +script for ch[40] Latn +script for ch[41] Latn +script for ch[42] Latn +script for ch[43] Latn +script for ch[44] Latn +script for ch[45] Latn +script for ch[46] Latn +script for ch[47] Latn +script for ch[48] Latn +script for ch[49] Latn +script for ch[50] Latn +script for ch[51] Latn +script for ch[52] Latn +script for ch[53] Latn +script for ch[54] Latn +script for ch[55] Latn +script for ch[56] Latn +script for ch[57] Latn +script for ch[58] Latn +script for ch[59] Latn +script for ch[60] Latn +script for ch[61] Latn +script for ch[62] Latn +script for ch[63] Latn +script for ch[64] Latn +script for ch[65] Latn +script for ch[66] Latn +script for ch[67] Latn +script for ch[68] Latn +script for ch[69] Latn +script for ch[70] Latn +script for ch[71] Latn +script for ch[72] Latn +script for ch[73] Latn +script for ch[74] Latn +script for ch[75] Latn +script for ch[76] Latn +script for ch[77] Latn +script for ch[78] Latn +script for ch[79] Latn +script for ch[80] Latn +script for ch[81] Latn +script for ch[82] Latn +script for ch[83] Latn +script for ch[84] Latn +script for ch[85] Latn +script for ch[86] Latn +script for ch[87] Latn +script for ch[88] Latn +script for ch[89] Latn +script for ch[90] Latn +script for ch[91] Latn +script for ch[92] Latn +script for ch[93] Latn +script for ch[94] Latn +script for ch[95] Latn +script for ch[96] Latn +script for ch[97] Latn +script for ch[98] Latn +script for ch[99] Latn +script for ch[100] Latn +script for ch[101] Latn +script for ch[102] Latn +script for ch[103] Latn +script for ch[104] Latn +script for ch[105] Latn +script for ch[106] Latn +script for ch[107] Latn +script for ch[108] Latn +script for ch[109] Latn +script for ch[110] Latn +script for ch[111] Latn +script for ch[112] Latn +script for ch[113] Latn +script for ch[114] Latn +script for ch[115] Latn +script for ch[116] Latn +script for ch[117] Latn +script for ch[118] Latn +script for ch[119] Latn +script for ch[120] Latn +script for ch[121] Latn +script for ch[122] Latn +script for ch[123] Latn +script for ch[124] Latn +script for ch[125] Latn +script for ch[126] Latn +script for ch[127] Latn +script for ch[128] Latn +script for ch[129] Latn +script for ch[130] Latn +script for ch[131] Latn +script for ch[132] Latn +script for ch[133] Latn +script for ch[134] Latn +script for ch[135] Latn +script for ch[136] Latn +script for ch[137] Latn +script for ch[138] Latn +script for ch[139] Latn +script for ch[140] Latn +script for ch[141] Latn +script for ch[142] Latn +script for ch[143] Latn +script for ch[144] Latn +script for ch[145] Latn +script for ch[146] Latn +script for ch[147] Latn +script for ch[148] Latn +script for ch[149] Latn +script for ch[150] Latn +script for ch[151] Latn +script for ch[152] Latn +script for ch[153] Latn +script for ch[154] Latn +script for ch[155] Latn +script for ch[156] Latn +script for ch[157] Latn +script for ch[158] Latn +script for ch[159] Latn +script for ch[160] Latn +script for ch[161] Latn +script for ch[162] Latn +script for ch[163] Latn +script for ch[164] Latn +script for ch[165] Latn +script for ch[166] Latn +script for ch[167] Latn +script for ch[168] Latn +script for ch[169] Latn +script for ch[170] Latn +script for ch[171] Latn +script for ch[172] Latn +script for ch[173] Latn +script for ch[174] Latn +script for ch[175] Latn +script for ch[176] Latn +script for ch[177] Latn +script for ch[178] Latn +script for ch[179] Latn +script for ch[180] Latn +script for ch[181] Latn +script for ch[182] Latn +script for ch[183] Latn +script for ch[184] Latn +script for ch[185] Latn +script for ch[186] Latn +script for ch[187] Latn +script for ch[188] Latn +script for ch[189] Latn +script for ch[190] Latn +script for ch[191] Latn +script for ch[192] Latn +script for ch[193] Latn +script for ch[194] Latn +script for ch[195] Latn +script for ch[196] Latn +script for ch[197] Latn +script for ch[198] Latn +script for ch[199] Latn +script for ch[200] Latn +script for ch[201] Latn +script for ch[202] Latn +script for ch[203] Latn +script for ch[204] Latn +script for ch[205] Latn +script for ch[206] Latn +script for ch[207] Latn +script for ch[208] Latn +script for ch[209] Latn +script for ch[210] Latn +script for ch[211] Latn +script for ch[212] Latn +script for ch[213] Latn +script for ch[214] Latn +script for ch[215] Latn +script for ch[216] Latn +script for ch[217] Latn +script for ch[218] Latn +script for ch[219] Latn +script for ch[220] Latn +script for ch[221] Latn +script for ch[222] Latn +script for ch[223] Latn +script for ch[224] Latn +script for ch[225] Latn +script for ch[226] Latn +script for ch[227] Latn +script for ch[228] Latn +script for ch[229] Latn +script for ch[230] Latn +script for ch[231] Latn +script for ch[232] Latn +script for ch[233] Latn +script for ch[234] Latn +script for ch[235] Latn +script for ch[236] Latn +script for ch[237] Latn +script for ch[238] Latn +script for ch[239] Latn +script for ch[240] Latn +script for ch[241] Latn +script for ch[242] Latn +script for ch[243] Latn +script for ch[244] Latn +script for ch[245] Latn +script for ch[246] Latn +script for ch[247] Latn +script for ch[248] Latn +script for ch[249] Latn +script for ch[250] Latn +script for ch[251] Latn +script for ch[252] Latn +script for ch[253] Latn +script for ch[254] Latn +script for ch[255] Latn +script for ch[256] Latn +script for ch[257] Latn +script for ch[258] Latn +script for ch[259] Latn +script for ch[260] Latn +script for ch[261] Latn +script for ch[262] Latn +script for ch[263] Latn +script for ch[264] Latn +script for ch[265] Latn +script for ch[266] Latn +script for ch[267] Latn +script for ch[268] Latn +script for ch[269] Latn +script for ch[270] Latn +script for ch[271] Latn +script for ch[272] Latn +script for ch[273] Latn +script for ch[274] Latn +script for ch[275] Latn +script for ch[276] Latn +script for ch[277] Latn +script for ch[278] Latn +script for ch[279] Latn +script for ch[280] Latn +script for ch[281] Latn +script for ch[282] Latn +script for ch[283] Latn +script for ch[284] Latn +script for ch[285] Latn +script for ch[286] Latn +script for ch[287] Latn +script for ch[288] Latn +script for ch[289] Latn +script for ch[290] Latn +script for ch[291] Latn +script for ch[292] Latn +script for ch[293] Latn +script for ch[294] Latn +script for ch[295] Latn +script for ch[296] Latn +script for ch[297] Latn +script for ch[298] Latn +script for ch[299] Latn +script for ch[300] Latn +script for ch[301] Latn +script for ch[302] Latn +script for ch[303] Latn +script for ch[304] Latn +script for ch[305] Latn +script for ch[306] Latn +script for ch[307] Latn +script for ch[308] Latn +script for ch[309] Latn +script for ch[310] Latn +script for ch[311] Latn +script for ch[312] Latn +script for ch[313] Latn +script for ch[314] Latn +script for ch[315] Latn +script for ch[316] Latn +script for ch[317] Latn +script for ch[318] Latn +script for ch[319] Latn +script for ch[320] Latn +script for ch[321] Latn +script for ch[322] Latn +script for ch[323] Latn +script for ch[324] Latn +script for ch[325] Latn +script for ch[326] Latn +script for ch[327] Latn +script for ch[328] Latn +script for ch[329] Latn +script for ch[330] Latn +script for ch[331] Latn +script for ch[332] Latn +script for ch[333] Latn +script for ch[334] Latn +script for ch[335] Latn +script for ch[336] Latn +script for ch[337] Latn +script for ch[338] Latn +script for ch[339] Latn +script for ch[340] Latn +script for ch[341] Latn +script for ch[342] Latn +script for ch[343] Latn +script for ch[344] Latn +script for ch[345] Latn +script for ch[346] Latn +script for ch[347] Latn +script for ch[348] Latn +script for ch[349] Latn +script for ch[350] Latn +script for ch[351] Latn +script for ch[352] Latn +script for ch[353] Latn +script for ch[354] Latn +script for ch[355] Latn +script for ch[356] Latn +script for ch[357] Latn +script for ch[358] Latn +script for ch[359] Latn +script for ch[360] Latn +script for ch[361] Latn +script for ch[362] Latn +script for ch[363] Latn +script for ch[364] Latn +script for ch[365] Latn +script for ch[366] Latn +script for ch[367] Latn +script for ch[368] Latn +script for ch[369] Latn +script for ch[370] Latn +script for ch[371] Latn +script for ch[372] Latn +script for ch[373] Latn +script for ch[374] Latn +script for ch[375] Latn +script for ch[376] Latn +script for ch[377] Latn +script for ch[378] Latn +script for ch[379] Latn +script for ch[380] Latn +script for ch[381] Latn +script for ch[382] Latn +script for ch[383] Latn +script for ch[384] Latn +script for ch[385] Latn +script for ch[386] Latn +script for ch[387] Latn +script for ch[388] Latn +script for ch[389] Latn +script for ch[390] Latn +script for ch[391] Latn +script for ch[392] Latn +script for ch[393] Latn +script for ch[394] Latn +script for ch[395] Latn +script for ch[396] Latn +script for ch[397] Latn +script for ch[398] Latn +script for ch[399] Latn +script for ch[400] Latn +script for ch[401] Latn +script for ch[402] Latn +script for ch[403] Latn +script for ch[404] Latn +script for ch[405] Latn +script for ch[406] Latn +script for ch[407] Latn +script for ch[408] Latn +script for ch[409] Latn +script for ch[410] Latn +script for ch[411] Latn +script for ch[412] Latn +script for ch[413] Latn +script for ch[414] Latn +script for ch[415] Latn +script for ch[416] Latn +script for ch[417] Latn +script for ch[418] Latn +script for ch[419] Latn +script for ch[420] Latn +script for ch[421] Latn +script for ch[422] Latn +script for ch[423] Latn +script for ch[424] Latn +script for ch[425] Latn +script for ch[426] Latn +script for ch[427] Latn +script for ch[428] Latn +script for ch[429] Latn +script for ch[430] Latn +script for ch[431] Latn +script for ch[432] Latn +script for ch[433] Latn +script for ch[434] Latn +script for ch[435] Latn +script for ch[436] Latn +script for ch[437] Latn +script for ch[438] Latn +script for ch[439] Latn +script for ch[440] Latn +script for ch[441] Latn +script for ch[442] Latn +script for ch[443] Latn +script for ch[444] Latn + +Number of runs before script itemization: 1 + +Fribidi Runs: +run[0]: start: 0 length: 445 level: 0 + +Number of runs after script itemization: 1 + +Final Runs: +run[0]: start: 0 length: 445 direction: ltr script: Latn font: Amiri + +Glyph information: +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 x_position: 0 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1128 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 2146 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2904 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3764 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5344 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5944 y_position: 0 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 6484 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 7504 y_position: 0 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8242 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 9272 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10852 y_position: 0 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 11452 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 12482 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 13500 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14010 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15028 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15794 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 16394 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17132 y_position: 0 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17672 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18294 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18894 y_position: 0 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19756 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 21336 y_position: 0 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22196 y_position: 0 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 22818 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23220 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 23820 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 24666 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 25684 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 26748 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27486 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 28346 y_position: 0 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 29192 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 29814 y_position: 0 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30674 y_position: 0 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31296 y_position: 0 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 32326 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33092 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 33692 y_position: 0 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34554 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 35584 y_position: 0 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 36124 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37144 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 37684 y_position: 0 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38422 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39268 y_position: 0 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 39808 y_position: 0 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 40872 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41804 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42404 y_position: 0 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43264 y_position: 0 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43774 y_position: 0 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44314 y_position: 0 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 44936 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45338 y_position: 0 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 45938 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46676 y_position: 0 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47536 y_position: 0 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48566 y_position: 0 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -3600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1030 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2048 y_position: -3600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2648 y_position: -3600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3508 y_position: -3600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4048 y_position: -3600 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 5078 y_position: -3600 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 5816 y_position: -3600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7396 y_position: -3600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8414 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9444 y_position: -3600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 10044 y_position: -3600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10666 y_position: -3600 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 11526 y_position: -3600 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 13106 y_position: -3600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14126 y_position: -3600 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15144 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15910 y_position: -3600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16510 y_position: -3600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17050 y_position: -3600 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 18114 y_position: -3600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18960 y_position: -3600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19500 y_position: -3600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20530 y_position: -3600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -3600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22100 y_position: -3600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23130 y_position: -3600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 24194 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24816 y_position: -3600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25416 y_position: -3600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26446 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27068 y_position: -3600 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27668 y_position: -3600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28178 y_position: -3600 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 29040 y_position: -3600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30036 y_position: -3600 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 31054 y_position: -3600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 31812 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32672 y_position: -3600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33272 y_position: -3600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34132 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34754 y_position: -3600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35354 y_position: -3600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36384 y_position: -3600 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 37402 y_position: -3600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 37912 y_position: -3600 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 38930 y_position: -3600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39688 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40548 y_position: -3600 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 41148 y_position: -3600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 42728 y_position: -3600 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 43590 y_position: -3600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44522 y_position: -3600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45586 y_position: -3600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46448 y_position: -3600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -7200 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 862 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1372 y_position: -7200 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1912 y_position: -7200 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2906 y_position: -7200 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3936 y_position: -7200 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 4798 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5212 y_position: -7200 font: Amiri +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 5812 y_position: -7200 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 7220 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7842 y_position: -7200 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 8442 y_position: -7200 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9302 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10366 y_position: -7200 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10906 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12486 y_position: -7200 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13086 y_position: -7200 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13948 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14978 y_position: -7200 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15578 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17158 y_position: -7200 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17698 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18762 y_position: -7200 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19302 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20882 y_position: -7200 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 21482 y_position: -7200 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 22402 y_position: -7200 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23262 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 24326 y_position: -7200 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24866 y_position: -7200 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 25728 y_position: -7200 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 27308 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27710 y_position: -7200 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 28310 y_position: -7200 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 29304 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 30334 y_position: -7200 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30874 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31612 y_position: -7200 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32212 y_position: -7200 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33276 y_position: -7200 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 34294 y_position: -7200 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35032 y_position: -7200 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 35654 y_position: -7200 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36420 y_position: -7200 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37450 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38480 y_position: -7200 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39080 y_position: -7200 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39940 y_position: -7200 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40844 y_position: -7200 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41704 y_position: -7200 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 42454 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43300 y_position: -7200 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 43840 y_position: -7200 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44462 y_position: -7200 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45324 y_position: -7200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45946 y_position: -7200 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 46486 y_position: -7200 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 47504 y_position: -7200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48568 y_position: -7200 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -10800 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1030 y_position: -10800 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1540 y_position: -10800 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2050 y_position: -10800 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2912 y_position: -10800 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4492 y_position: -10800 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5338 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6356 y_position: -10800 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6956 y_position: -10800 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7466 y_position: -10800 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 8328 y_position: -10800 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9324 y_position: -10800 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10342 y_position: -10800 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11108 y_position: -10800 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11648 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12386 y_position: -10800 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 12986 y_position: -10800 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14050 y_position: -10800 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 14590 y_position: -10800 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15328 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15868 y_position: -10800 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 16468 y_position: -10800 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17498 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18120 y_position: -10800 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18720 y_position: -10800 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 19582 y_position: -10800 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20092 y_position: -10800 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 20632 y_position: -10800 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21626 y_position: -10800 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22656 y_position: -10800 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23196 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24216 y_position: -10800 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 24816 y_position: -10800 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 25676 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26628 y_position: -10800 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27228 y_position: -10800 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28088 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28950 y_position: -10800 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 29550 y_position: -10800 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30396 y_position: -10800 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31414 y_position: -10800 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 32994 y_position: -10800 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34574 y_position: -10800 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35592 y_position: -10800 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36622 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37640 y_position: -10800 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38240 y_position: -10800 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 39086 y_position: -10800 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40104 y_position: -10800 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41168 y_position: -10800 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41906 y_position: -10800 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 42766 y_position: -10800 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43760 y_position: -10800 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44790 y_position: -10800 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45652 y_position: -10800 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 46274 y_position: -10800 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46688 y_position: -10800 font: Amiri +glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 0 y_position: -14400 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1420 y_position: -14400 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2450 y_position: -14400 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 2990 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3728 y_position: -14400 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4328 y_position: -14400 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5190 y_position: -14400 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6220 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 6842 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7702 y_position: -14400 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8302 y_position: -14400 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8842 y_position: -14400 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 9608 y_position: -14400 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 10638 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11396 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12256 y_position: -14400 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12856 y_position: -14400 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13886 y_position: -14400 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 14904 y_position: -14400 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15414 y_position: -14400 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16432 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17198 y_position: -14400 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17798 y_position: -14400 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18338 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19402 y_position: -14400 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20002 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20760 y_position: -14400 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 21620 y_position: -14400 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 22640 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23398 y_position: -14400 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 24258 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 25290 y_position: -14400 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 26150 y_position: -14400 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27214 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 28244 y_position: -14400 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 29104 y_position: -14400 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29870 y_position: -14400 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30410 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31032 y_position: -14400 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31632 y_position: -14400 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32172 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33236 y_position: -14400 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 33836 y_position: -14400 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34756 y_position: -14400 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35774 y_position: -14400 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36284 y_position: -14400 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 37314 y_position: -14400 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 38334 y_position: -14400 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38956 y_position: -14400 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 39818 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40440 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41300 y_position: -14400 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 41900 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42820 y_position: -14400 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43680 y_position: -14400 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44190 y_position: -14400 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44730 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45352 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 45952 y_position: -14400 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 46812 y_position: -14400 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 47550 y_position: -14400 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 48288 y_position: -14400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49148 y_position: -14400 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -18000 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 846 y_position: -18000 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1386 y_position: -18000 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1896 y_position: -18000 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2406 y_position: -18000 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3436 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5016 y_position: -18000 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5616 y_position: -18000 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6646 y_position: -18000 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7664 y_position: -18000 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8174 y_position: -18000 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 9192 y_position: -18000 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9950 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10810 y_position: -18000 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11410 y_position: -18000 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12270 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13300 y_position: -18000 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13900 y_position: -18000 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14516 y_position: -18000 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 15546 y_position: -18000 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16478 y_position: -18000 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17018 y_position: -18000 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17880 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18502 y_position: -18000 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 19102 y_position: -18000 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20166 y_position: -18000 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21196 y_position: -18000 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21706 y_position: -18000 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 22216 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23078 y_position: -18000 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23678 y_position: -18000 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24698 y_position: -18000 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25560 y_position: -18000 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 26326 y_position: -18000 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26866 y_position: -18000 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 27728 y_position: -18000 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28350 y_position: -18000 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 29380 y_position: -18000 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 30122 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30536 y_position: -18000 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 31136 y_position: -18000 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 32310 y_position: -18000 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33210 y_position: -18000 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 34056 y_position: -18000 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34916 y_position: -18000 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35936 y_position: -18000 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36558 y_position: -18000 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37418 y_position: -18000 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 38448 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39214 y_position: -18000 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 39814 y_position: -18000 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40552 y_position: -18000 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 41092 y_position: -18000 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42156 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42778 y_position: -18000 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 43378 y_position: -18000 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 44396 y_position: -18000 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 45242 y_position: -18000 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 46088 y_position: -18000 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46950 y_position: -18000 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 47810 y_position: -18000 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 48656 y_position: -18000 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 49518 y_position: -18000 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 50140 y_position: -18000 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -21600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 846 y_position: -21600 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 1876 y_position: -21600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2896 y_position: -21600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 3436 y_position: -21600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4466 y_position: -21600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 5328 y_position: -21600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5950 y_position: -21600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6812 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7434 y_position: -21600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8034 y_position: -21600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9098 y_position: -21600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 10116 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11180 y_position: -21600 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 11780 y_position: -21600 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 12800 y_position: -21600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13558 y_position: -21600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14576 y_position: -21600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 15116 y_position: -21600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 16146 y_position: -21600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17006 y_position: -21600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 18070 y_position: -21600 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 18692 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19094 y_position: -21600 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 19694 y_position: -21600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20432 y_position: -21600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 21462 y_position: -21600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22526 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23148 y_position: -21600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 23748 y_position: -21600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 24288 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25352 y_position: -21600 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 25952 y_position: -21600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 26798 y_position: -21600 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27828 y_position: -21600 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 28338 y_position: -21600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 29358 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30220 y_position: -21600 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 30820 y_position: -21600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31814 y_position: -21600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 32844 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33384 y_position: -21600 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33984 y_position: -21600 font: Amiri +glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 35002 y_position: -21600 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 36632 y_position: -21600 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37478 y_position: -21600 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38018 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38880 y_position: -21600 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 39480 y_position: -21600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40510 y_position: -21600 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41370 y_position: -21600 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42108 y_position: -21600 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 42968 y_position: -21600 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43734 y_position: -21600 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44764 y_position: -21600 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45828 y_position: -21600 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46450 y_position: -21600 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 0 y_position: -25200 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1580 y_position: -25200 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 2598 y_position: -25200 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 3108 y_position: -25200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3618 y_position: -25200 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 4158 y_position: -25200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4780 y_position: -25200 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5380 y_position: -25200 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6242 y_position: -25200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 7306 y_position: -25200 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 7846 y_position: -25200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9426 y_position: -25200 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10026 y_position: -25200 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 10566 y_position: -25200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11596 y_position: -25200 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 12196 y_position: -25200 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 13056 y_position: -25200 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 13794 y_position: -25200 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14416 y_position: -25200 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 15016 y_position: -25200 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 15526 y_position: -25200 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 16388 y_position: -25200 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 17384 y_position: -25200 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 18402 y_position: -25200 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19168 y_position: -25200 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 20198 y_position: -25200 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 21778 y_position: -25200 font: Amiri + +UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 +UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 diff --git a/tests/raqm-test.c b/tests/raqm-test.c index ec67582f..1b5f8914 100644 --- a/tests/raqm-test.c +++ b/tests/raqm-test.c @@ -40,6 +40,7 @@ static gchar *fonts = NULL; static gchar *languages = NULL; static gint cluster = -1; static gint position = -1; +static gint line_width = -1; static gchar **args = NULL; static GOptionEntry entries[] = { @@ -51,6 +52,7 @@ static GOptionEntry entries[] = { "font-features", 0, 0, G_OPTION_ARG_STRING, &features, "The font features ", "FEATURES" }, { "cluster", 0, 0, G_OPTION_ARG_INT, &cluster, "The glyph cluster ", "CLUSTER" }, { "position", 0, 0, G_OPTION_ARG_INT, &position, "The glyph position ", "POSITION" }, + { "line-width", 0, 0, G_OPTION_ARG_INT, &line_width, "The line width ", "WIDTH" }, { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &args, "Remaining arguments", "FONTFILE" }, { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL } }; @@ -157,6 +159,9 @@ main (int argc, char *argv[]) g_strfreev (list); } + if (line_width >= 0) + assert (raqm_set_line_width (rq, line_width)); + assert (raqm_layout (rq)); glyphs = raqm_get_glyphs (rq, &count); From c24c154288c5f12d00636532667a896d48b30abf Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 14:52:45 +0200 Subject: [PATCH 22/43] Minor cleanup --- src/raqm.c | 49 ++++++++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index af44521a..3aefe3e9 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1096,7 +1096,7 @@ _raqm_find_line_break (raqm_t *rq) int next_class; raqm_break_action_t *break_actions; raqm_break_action_t current_action; - bool *break_here; + bool *line_breaks; /* Define some short-cuts for the table */ #define oo RAQM_DIRECT_BREAK /* '_' break allowed */ @@ -1143,11 +1143,11 @@ _raqm_find_line_break (raqm_t *rq) #undef CC #undef XX - break_here = malloc (sizeof (bool) * length); - memset (break_here, false, length); + line_breaks = malloc (sizeof (bool) * length); + memset (line_breaks, false, length); if (length < 2) - return break_here; + return line_breaks; break_actions = malloc (sizeof (raqm_break_action_t) * length); memset (break_actions, RAQM_PROHIBITED_BREAK, length); @@ -1235,13 +1235,13 @@ _raqm_find_line_break (raqm_t *rq) for (size_t i = 0; i < length; i++) { if (break_actions[i] == RAQM_INDIRECT_BREAK || break_actions[i] == RAQM_DIRECT_BREAK ) - break_here[i] = true; + line_breaks[i] = true; else - break_here[i] = false; + line_breaks[i] = false; } free (break_actions); - return break_here; + return line_breaks; } static int @@ -1269,21 +1269,19 @@ static bool _raqm_line_break (raqm_t *rq) { size_t count = 0; - size_t glyphs_length = 0; + size_t glyph_count = 0; int current_x = 0; int current_line = 0; - bool *break_here = NULL; + bool *line_breaks = NULL; /* counting total glyphs */ for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) - glyphs_length += hb_buffer_get_length (run->buffer); + glyph_count += hb_buffer_get_length (run->buffer); - rq->glyphs = malloc (sizeof (raqm_glyph_t) * glyphs_length); + rq->glyphs = malloc (sizeof (raqm_glyph_t) * glyph_count); if (!rq->glyphs) - { return false; - } /* populating glyphs */ count = 0; @@ -1308,7 +1306,8 @@ _raqm_line_break (raqm_t *rq) rq->glyphs[count + i].y_offset = position[i].y_offset; rq->glyphs[count + i].x_position = current_x + position[i].x_offset; rq->glyphs[count + i].y_position = position[i].y_offset; - rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; + rq->glyphs[count + i].ftface = + rq->text_info[rq->glyphs[count + i].cluster].ftface; rq->glyphs[count + i].visual_index = count + i; rq->glyphs[count + i].line = 0; @@ -1322,16 +1321,16 @@ _raqm_line_break (raqm_t *rq) return true; /* Sorting glyphs to logical order */ - qsort (rq->glyphs, glyphs_length, sizeof (raqm_glyph_t), _raqm_logical_sort); + qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_logical_sort); /* Line breaking */ /* finding possible breaks in text */ - break_here = _raqm_find_line_break (rq); + line_breaks = _raqm_find_line_break (rq); current_x = 0; current_line = 0; - for (size_t i = 0; i < glyphs_length; i++) + for (size_t i = 0; i < glyph_count; i++) { rq->glyphs[i].line = current_line; current_x += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; @@ -1340,7 +1339,7 @@ _raqm_line_break (raqm_t *rq) { size_t j = 0; size_t k = 0; - while (!break_here[rq->glyphs[i].cluster] && i != 0) + while (!line_breaks[rq->glyphs[i].cluster] && i != 0) i--; /* Next line cannot start with a white space */ @@ -1359,18 +1358,18 @@ _raqm_line_break (raqm_t *rq) i = k - 1; /* skip those */ } - current_line ++; + current_line++; current_x = 0; } } /* Sorting glyphs back to visual order */ - qsort (rq->glyphs, glyphs_length, sizeof (raqm_glyph_t), _raqm_visual_sort); + qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_visual_sort); /* calculating positions */ current_line = 0; current_x = 0; - for (size_t i = 0; i < glyphs_length; i++) + for (size_t i = 0; i < glyph_count; i++) { int line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); @@ -1393,7 +1392,7 @@ _raqm_line_break (raqm_t *rq) { size_t j = 0; current_line = -1; - for (size_t i = glyphs_length - 1; i != 0; i--) + for (size_t i = glyph_count - 1; i != 0; i--) { if (rq->glyphs[i].line != current_line) { @@ -1426,7 +1425,7 @@ _raqm_line_break (raqm_t *rq) { size_t j = 0; current_line = -1; - for (size_t i = glyphs_length - 1; i != 0; i--) + for (size_t i = glyph_count - 1; i != 0; i--) { if (rq->glyphs[i].line != current_line) { @@ -1444,7 +1443,7 @@ _raqm_line_break (raqm_t *rq) int space_count = 0; size_t j = 0; current_line = -1; - for (size_t i = glyphs_length - 1; i != 0; i--) + for (size_t i = glyph_count - 1; i != 0; i--) { if (rq->glyphs[i].line != current_line) { @@ -1476,7 +1475,7 @@ _raqm_line_break (raqm_t *rq) } } - free (break_here); + free (line_breaks); return true; } From 1e52009e5fb298a73485db9ce86acba6b78aa10d Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 15:07:58 +0200 Subject: [PATCH 23/43] Minor --- src/raqm.c | 28 ++++++++++++++-------------- src/raqm.h | 8 ++++---- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 3aefe3e9..e61439c1 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -930,7 +930,7 @@ raqm_get_glyphs (raqm_t *rq, " %d\tx_position: %d\ty_position: %d\tfont: %s\n", rq->glyphs[i].index, rq->glyphs[i].x_offset, rq->glyphs[i].y_offset, rq->glyphs[i].x_advance, - rq->glyphs[i].x_position, rq->glyphs[i].y_position, + rq->glyphs[i].x, rq->glyphs[i].y, rq->glyphs[i].ftface->family_name); } #endif @@ -1304,8 +1304,8 @@ _raqm_line_break (raqm_t *rq) rq->glyphs[count + i].y_advance = position[i].y_advance; rq->glyphs[count + i].x_offset = position[i].x_offset; rq->glyphs[count + i].y_offset = position[i].y_offset; - rq->glyphs[count + i].x_position = current_x + position[i].x_offset; - rq->glyphs[count + i].y_position = position[i].y_offset; + rq->glyphs[count + i].x = current_x + position[i].x_offset; + rq->glyphs[count + i].y = position[i].y_offset; rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; rq->glyphs[count + i].visual_index = count + i; @@ -1371,7 +1371,7 @@ _raqm_line_break (raqm_t *rq) current_x = 0; for (size_t i = 0; i < glyph_count; i++) { - int line_space = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); + int leading = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); if (rq->glyphs[i].line != current_line) { @@ -1379,8 +1379,8 @@ _raqm_line_break (raqm_t *rq) current_line = rq->glyphs[i].line; } - rq->glyphs[i].x_position = current_x + rq->glyphs[i].x_offset; - rq->glyphs[i].y_position = rq->glyphs[i].y_offset + rq->glyphs[i].line * line_space; + rq->glyphs[i].x = current_x + rq->glyphs[i].x_offset; + rq->glyphs[i].y = rq->glyphs[i].y_offset + rq->glyphs[i].line * leading; current_x += rq->glyphs[i].x_advance; } @@ -1396,7 +1396,7 @@ _raqm_line_break (raqm_t *rq) { if (rq->glyphs[i].line != current_line) { - int align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); + int align_offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); current_line = rq->glyphs[i].line; for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) { @@ -1407,13 +1407,13 @@ _raqm_line_break (raqm_t *rq) for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) /* apply shift */ { - rq->glyphs[j-1].x_position = rq->glyphs[j-1].x_position + space_width; - rq->glyphs[j-1].x_position += align_offset; + rq->glyphs[j-1].x = rq->glyphs[j-1].x + space_width; + rq->glyphs[j-1].x += align_offset; } } else { - rq->glyphs[j].x_position += align_offset; + rq->glyphs[j].x += align_offset; } } } @@ -1429,10 +1429,10 @@ _raqm_line_break (raqm_t *rq) { if (rq->glyphs[i].line != current_line) { - int align_offset = (rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance)) / 2; + int align_offset = (rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance)) / 2; current_line = rq->glyphs[i].line; for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) - rq->glyphs[j].x_position += align_offset; + rq->glyphs[j].x += align_offset; } i = j + 1; } @@ -1448,7 +1448,7 @@ _raqm_line_break (raqm_t *rq) if (rq->glyphs[i].line != current_line) { int space_extension = 0; - int align_offset = rq->line_width - (rq->glyphs[i].x_position + rq->glyphs[i].x_advance); + int align_offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); current_line = rq->glyphs[i].line; /* counting spaces in one line */ @@ -1465,7 +1465,7 @@ _raqm_line_break (raqm_t *rq) align_offset = align_offset / space_count; for (size_t k = j + 1; rq->glyphs[k].line == current_line; k++) { - rq->glyphs[k].x_position += space_extension; + rq->glyphs[k].x += space_extension; if (rq->text[rq->glyphs[k].cluster] == 32) /* space */ space_extension += align_offset; } diff --git a/src/raqm.h b/src/raqm.h index acae6cf0..22e62e88 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -94,8 +94,8 @@ typedef enum * @y_advance: the glyph advance width in vertical text. * @x_offset: the horizontal movement of the glyph from the current point. * @y_offset: the vertical movement of the glyph from the current point. - * @x_position: the absolute x position of the glyph. - * @y_position: the absolute y position of the glyph. + * @x: the absolute x position of the glyph. + * @y: the absolute y position of the glyph. * @cluster: the index of original character in input text. * @ftface: the @FT_Face of the glyph. * @@ -110,8 +110,8 @@ typedef struct raqm_glyph_t { int y_offset; uint32_t cluster; FT_Face ftface; - int x_position; - int y_position; + int x; + int y; /*< private >*/ int visual_index; int line; From 16624ecfa89e0082c6abf9072166a9af76b2dac7 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 15:22:02 +0200 Subject: [PATCH 24/43] Minor --- src/raqm.c | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index e61439c1..be38df7a 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1391,29 +1391,30 @@ _raqm_line_break (raqm_t *rq) if (rq->alignment == RAQM_ALIGNMENT_RIGHT) { size_t j = 0; - current_line = -1; + int line = -1; for (size_t i = glyph_count - 1; i != 0; i--) { - if (rq->glyphs[i].line != current_line) + if (rq->glyphs[i].line != line) { - int align_offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); - current_line = rq->glyphs[i].line; - for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) + int offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); + line = rq->glyphs[i].line; + for (j = i; j != 0 && rq->glyphs[j].line == line; j--) { /* check if at the start of the line there is a space */ - if (rq->text[rq->glyphs[j].cluster] == 32 && (current_line != rq->glyphs[j+1].line )) + if (rq->text[rq->glyphs[j].cluster] == 32 && (line != rq->glyphs[j+1].line )) { - int space_width = rq->glyphs[j].x_advance; /* save width of the space */ + int space_width = rq->glyphs[j].x_advance; - for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) /* apply shift */ + /* apply shift */ + for (j = i; j != 0 && rq->glyphs[j].line == line; j--) { rq->glyphs[j-1].x = rq->glyphs[j-1].x + space_width; - rq->glyphs[j-1].x += align_offset; + rq->glyphs[j-1].x += offset; } } else { - rq->glyphs[j].x += align_offset; + rq->glyphs[j].x += offset; } } } @@ -1429,10 +1430,10 @@ _raqm_line_break (raqm_t *rq) { if (rq->glyphs[i].line != current_line) { - int align_offset = (rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance)) / 2; + int offset = (rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance)) / 2; current_line = rq->glyphs[i].line; for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) - rq->glyphs[j].x += align_offset; + rq->glyphs[j].x += offset; } i = j + 1; } @@ -1448,7 +1449,7 @@ _raqm_line_break (raqm_t *rq) if (rq->glyphs[i].line != current_line) { int space_extension = 0; - int align_offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); + int offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); current_line = rq->glyphs[i].line; /* counting spaces in one line */ @@ -1460,14 +1461,14 @@ _raqm_line_break (raqm_t *rq) /* distributing align offset to all spaces */ if (space_count == 0) - align_offset = 0; + offset = 0; else - align_offset = align_offset / space_count; + offset = offset / space_count; for (size_t k = j + 1; rq->glyphs[k].line == current_line; k++) { rq->glyphs[k].x += space_extension; if (rq->text[rq->glyphs[k].cluster] == 32) /* space */ - space_extension += align_offset; + space_extension += offset; } } i = j + 1; From 801c1eea9d8100ef4eab000c29887fabe0561ca3 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 15:28:47 +0200 Subject: [PATCH 25/43] =?UTF-8?q?Don=E2=80=99t=20hard=20code=20space=20cha?= =?UTF-8?q?racter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the Unicode general category instead. --- src/raqm.c | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index be38df7a..e091fbc7 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1265,6 +1265,13 @@ _raqm_visual_sort (const void *a, const void *b) return ia->line - ib->line; } +static bool +_raqm_is_space_glyph (raqm_t *rq, int idx) +{ + uint32_t ch = rq->text[rq->glyphs[idx].cluster]; + return ucdn_get_general_category (ch) == UCDN_GENERAL_CATEGORY_ZS; +} + static bool _raqm_line_break (raqm_t *rq) { @@ -1343,9 +1350,9 @@ _raqm_line_break (raqm_t *rq) i--; /* Next line cannot start with a white space */ - if (rq->text[rq->glyphs[i + 1].cluster] == 32) + if (_raqm_is_space_glyph (rq, i + 1)) { - for (j = i + 1; rq->text[rq->glyphs[j].cluster] == 32; j++) + for (j = i + 1; _raqm_is_space_glyph (rq, j); j++) rq->glyphs[j].line = current_line; i = j - 1; /* skip those */ } @@ -1401,7 +1408,7 @@ _raqm_line_break (raqm_t *rq) for (j = i; j != 0 && rq->glyphs[j].line == line; j--) { /* check if at the start of the line there is a space */ - if (rq->text[rq->glyphs[j].cluster] == 32 && (line != rq->glyphs[j+1].line )) + if (_raqm_is_space_glyph (rq, j) && (line != rq->glyphs[j+1].line)) { int space_width = rq->glyphs[j].x_advance; @@ -1455,7 +1462,7 @@ _raqm_line_break (raqm_t *rq) /* counting spaces in one line */ for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) { - if (rq->text[rq->glyphs[j].cluster] == 32) /* space */ + if (_raqm_is_space_glyph (rq, j)) space_count++; } @@ -1467,7 +1474,7 @@ _raqm_line_break (raqm_t *rq) for (size_t k = j + 1; rq->glyphs[k].line == current_line; k++) { rq->glyphs[k].x += space_extension; - if (rq->text[rq->glyphs[k].cluster] == 32) /* space */ + if (_raqm_is_space_glyph (rq, k)) space_extension += offset; } } From fde78731e7520712767fb8292fb0e3656bfe4047 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 17:54:22 +0200 Subject: [PATCH 26/43] =?UTF-8?q?RAQM=5FALIGNMENT=5FFULL=20=E2=86=92=20RAQ?= =?UTF-8?q?M=5FALIGNMENT=5FJUSTIFY?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/raqm.c | 2 +- src/raqm.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index e091fbc7..17cf7601 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1446,7 +1446,7 @@ _raqm_line_break (raqm_t *rq) } } - if (rq->alignment == RAQM_ALIGNMENT_FULL) + if (rq->alignment == RAQM_ALIGNMENT_JUSTIFY) { int space_count = 0; size_t j = 0; diff --git a/src/raqm.h b/src/raqm.h index 22e62e88..c405a26b 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -73,7 +73,7 @@ typedef enum * @RAQM_ALIGNMENT_RIGHT: Paragraph is right aligned. * @RAQM_ALIGNMENT_LEFT: Paragraph is left aligned. * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. - * @RAQM_ALIGNMENT_FULL: Paragraph is full justified. + * @RAQM_ALIGNMENT_JUSTIFY: Paragraph is justified. * * Base paragraph alignment, see raqm_set_par_alignment(). * @@ -84,7 +84,7 @@ typedef enum RAQM_ALIGNMENT_RIGHT, RAQM_ALIGNMENT_LEFT, RAQM_ALIGNMENT_CENTER, - RAQM_ALIGNMENT_FULL, + RAQM_ALIGNMENT_JUSTIFY, } raqm_alignment_t; /** From 595baf7dc62d8cf591c39d4cd02064037186d401 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 17:56:53 +0200 Subject: [PATCH 27/43] Use switch statement --- src/raqm.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 17cf7601..9e9c945d 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1393,9 +1393,9 @@ _raqm_line_break (raqm_t *rq) } /* handeling alighnment */ - if (rq->alignment != RAQM_ALIGNMENT_LEFT) + switch (rq->alignment) { - if (rq->alignment == RAQM_ALIGNMENT_RIGHT) + case RAQM_ALIGNMENT_RIGHT: { size_t j = 0; int line = -1; @@ -1427,9 +1427,9 @@ _raqm_line_break (raqm_t *rq) } i = j + 1; } + break; } - - if (rq->alignment == RAQM_ALIGNMENT_CENTER) + case RAQM_ALIGNMENT_CENTER: { size_t j = 0; current_line = -1; @@ -1444,9 +1444,9 @@ _raqm_line_break (raqm_t *rq) } i = j + 1; } + break; } - - if (rq->alignment == RAQM_ALIGNMENT_JUSTIFY) + case RAQM_ALIGNMENT_JUSTIFY: { int space_count = 0; size_t j = 0; @@ -1480,7 +1480,11 @@ _raqm_line_break (raqm_t *rq) } i = j + 1; } + break; } + case RAQM_ALIGNMENT_LEFT: + default: + break; } free (line_breaks); From 6e2c6448349525c5792cfbe65870aba406568d09 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 18:30:23 +0200 Subject: [PATCH 28/43] Split line breaking to its own function --- src/raqm.c | 95 +++++++++++++++++++++++++++++------------------------- 1 file changed, 51 insertions(+), 44 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 9e9c945d..871d24ea 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1272,6 +1272,53 @@ _raqm_is_space_glyph (raqm_t *rq, int idx) return ucdn_get_general_category (ch) == UCDN_GENERAL_CATEGORY_ZS; } +static void +_raqm_break_lines (raqm_t *rq, size_t glyph_count) +{ + int width = 0; + int line = 0; + + /* Find possible break points */ + bool *breaks = _raqm_find_line_break (rq); + + for (size_t i = 0; i < glyph_count; i++) + { + rq->glyphs[i].line = line; + width += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; + + if (width > rq->line_width) + { + /* If the current glyph does not fit into the line, search backwards for + * the last line break. */ + size_t j = 0; + size_t k = 0; + while (!breaks[rq->glyphs[i].cluster] && i != 0) + i--; + + /* Don’t start lines with white space */ + if (_raqm_is_space_glyph (rq, i + 1)) + { + for (j = i + 1; _raqm_is_space_glyph (rq, j); j++) + rq->glyphs[j].line = line; + i = j - 1; /* skip those */ + } + + /* Handle glyphs belonging to the same character */ + if (rq->glyphs[i + 1].cluster == rq->glyphs[i].cluster) + { + for (k = i + 1; rq->glyphs[k].cluster == rq->glyphs[i].cluster; k++) + rq->glyphs[j].line = line; + i = k - 1; /* skip those */ + } + + line++; + width = 0; + } + } + + free (breaks); +} + static bool _raqm_line_break (raqm_t *rq) { @@ -1280,8 +1327,6 @@ _raqm_line_break (raqm_t *rq) int current_x = 0; int current_line = 0; - bool *line_breaks = NULL; - /* counting total glyphs */ for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) glyph_count += hb_buffer_get_length (run->buffer); @@ -1327,50 +1372,13 @@ _raqm_line_break (raqm_t *rq) if (rq->line_width < 0) return true; - /* Sorting glyphs to logical order */ + /* Sort glyphs in logical order */ qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_logical_sort); - /* Line breaking */ - - /* finding possible breaks in text */ - line_breaks = _raqm_find_line_break (rq); - - current_x = 0; - current_line = 0; - for (size_t i = 0; i < glyph_count; i++) - { - rq->glyphs[i].line = current_line; - current_x += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; - - if (current_x > rq->line_width) - { - size_t j = 0; - size_t k = 0; - while (!line_breaks[rq->glyphs[i].cluster] && i != 0) - i--; - - /* Next line cannot start with a white space */ - if (_raqm_is_space_glyph (rq, i + 1)) - { - for (j = i + 1; _raqm_is_space_glyph (rq, j); j++) - rq->glyphs[j].line = current_line; - i = j - 1; /* skip those */ - } - - /* Handeling glyphs for the same character */ - if (rq->glyphs[i + 1].cluster == rq->glyphs[i].cluster) - { - for (k = i + 1; rq->glyphs[k].cluster == rq->glyphs[i].cluster; k++) - rq->glyphs[j].line = current_line; - i = k - 1; /* skip those */ - } - - current_line++; - current_x = 0; - } - } + /* Do line breaking */ + _raqm_break_lines (rq, glyph_count); - /* Sorting glyphs back to visual order */ + /* Then sort glyphs back in visual order */ qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_visual_sort); /* calculating positions */ @@ -1487,7 +1495,6 @@ _raqm_line_break (raqm_t *rq) break; } - free (line_breaks); return true; } From 80baecc576483aefca57f17fd0d00f7393f5ad5a Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 18:40:07 +0200 Subject: [PATCH 29/43] =?UTF-8?q?Don=E2=80=99t=20use=20x=20offset=20when?= =?UTF-8?q?=20calculating=20line=20width?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only glyph advance affects line width. --- src/raqm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raqm.c b/src/raqm.c index 871d24ea..008013d9 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1284,7 +1284,7 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) for (size_t i = 0; i < glyph_count; i++) { rq->glyphs[i].line = line; - width += rq->glyphs[i].x_offset + rq->glyphs[i].x_advance; + width += rq->glyphs[i].x_advance; if (width > rq->line_width) { From f71f693ed7fa5b67440d87c770aea7100c14aa7e Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 12:18:15 +0200 Subject: [PATCH 30/43] Rename and fix since tags --- docs/raqm-sections.txt | 4 ++-- src/raqm.c | 18 +++++++++--------- src/raqm.h | 16 ++++++++-------- tests/raqm-test.c | 2 +- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/raqm-sections.txt b/docs/raqm-sections.txt index 0a4c31ba..40d9f346 100644 --- a/docs/raqm-sections.txt +++ b/docs/raqm-sections.txt @@ -7,8 +7,8 @@ raqm_set_text raqm_set_text_utf8 raqm_set_par_direction raqm_set_language -raqm_set_par_alignment -raqm_set_line_width +raqm_set_width +raqm_set_alignment raqm_set_freetype_face raqm_set_freetype_face_range raqm_set_freetype_load_flags diff --git a/src/raqm.c b/src/raqm.c index 008013d9..8e584c0d 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -776,7 +776,7 @@ raqm_set_freetype_load_flags (raqm_t *rq, } /** - * raqm_set_line_width: + * raqm_set_width: * @rq: a #raqm_t. * @width: the line width. * @@ -787,11 +787,11 @@ raqm_set_freetype_load_flags (raqm_t *rq, * Return value: * %true if no errors happened, %false otherwise. * - * Since: 0.2 + * Since: 0.3 */ bool -raqm_set_line_width (raqm_t *rq, - int width) +raqm_set_width (raqm_t *rq, + int width) { if (!rq) return false; @@ -802,21 +802,21 @@ raqm_set_line_width (raqm_t *rq, } /** - * raqm_set_par_alignment: + * raqm_set_alignment: * @rq: a #raqm_t. * @alignment: the alignment of paragraph. * * Sets the paragraph alignment. By default text is left aligned. Has no effect - * if line width is not set, see raqm_set_line_width(). + * if line width is not set, see raqm_set_width(). * * Return value: * %true if no errors happened, %false otherwise. * - * Since: 0.2 + * Since: 0.3 */ bool -raqm_set_par_alignment (raqm_t *rq, - raqm_alignment_t alignment) +raqm_set_alignment (raqm_t *rq, + raqm_alignment_t alignment) { if (!rq) return false; diff --git a/src/raqm.h b/src/raqm.h index c405a26b..98f624c5 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -75,9 +75,9 @@ typedef enum * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. * @RAQM_ALIGNMENT_JUSTIFY: Paragraph is justified. * - * Base paragraph alignment, see raqm_set_par_alignment(). + * Base paragraph alignment, see raqm_set_alignment(). * - * Since: 0.2 + * Since: 0.3 */ typedef enum { @@ -147,8 +147,12 @@ raqm_set_language (raqm_t *rq, size_t len); bool -raqm_set_par_alignment (raqm_t *rq, - raqm_alignment_t alignment); +raqm_set_width (raqm_t *rq, + int width); + +bool +raqm_set_alignment (raqm_t *rq, + raqm_alignment_t alignment); bool raqm_add_font_feature (raqm_t *rq, @@ -169,10 +173,6 @@ bool raqm_set_freetype_load_flags (raqm_t *rq, int flags); -bool -raqm_set_line_width (raqm_t *rq, - int width); - bool raqm_layout (raqm_t *rq); diff --git a/tests/raqm-test.c b/tests/raqm-test.c index 1b5f8914..ca393c49 100644 --- a/tests/raqm-test.c +++ b/tests/raqm-test.c @@ -160,7 +160,7 @@ main (int argc, char *argv[]) } if (line_width >= 0) - assert (raqm_set_line_width (rq, line_width)); + assert (raqm_set_width (rq, line_width)); assert (raqm_layout (rq)); From 8ab0e6a69c527897505f0111758400e3083b15fc Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 12:45:09 +0200 Subject: [PATCH 31/43] Minor --- src/raqm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 8e584c0d..9293d4cc 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1089,7 +1089,7 @@ typedef enum { } raqm_break_action_t; static bool * -_raqm_find_line_break (raqm_t *rq) +_raqm_find_line_breaks (raqm_t *rq) { size_t length = rq->text_len; int current_class; @@ -1279,7 +1279,7 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) int line = 0; /* Find possible break points */ - bool *breaks = _raqm_find_line_break (rq); + bool *breaks = _raqm_find_line_breaks (rq); for (size_t i = 0; i < glyph_count; i++) { From 6885a0900035534b56420f2674d5527736ad4b89 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 13:05:21 +0200 Subject: [PATCH 32/43] Deuglify this --- src/raqm.c | 68 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 28 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 9293d4cc..7d5bf19e 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1095,7 +1095,6 @@ _raqm_find_line_breaks (raqm_t *rq) int current_class; int next_class; raqm_break_action_t *break_actions; - raqm_break_action_t current_action; bool *line_breaks; /* Define some short-cuts for the table */ @@ -1174,12 +1173,15 @@ _raqm_find_line_breaks (raqm_t *rq) next_class == UCDN_LINEBREAK_CLASS_LF); i++) { + raqm_break_action_t action; + int class; + next_class = ucdn_get_resolved_linebreak_class (rq->text[i]); /* handle spaces explicitly */ if (next_class == UCDN_LINEBREAK_CLASS_SP) { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* apply rule LB 7: � SP */ + break_actions[i-1] = RAQM_PROHIBITED_BREAK; continue; } @@ -1199,34 +1201,44 @@ _raqm_find_line_breaks (raqm_t *rq) continue; } - /* lookup pair table information in brkPairs[before, after] */ - current_action = break_pairs[current_class][next_class]; - break_actions[i-1] = current_action; + action = break_pairs[current_class][next_class]; + break_actions[i - 1] = action; + class = ucdn_get_resolved_linebreak_class (rq->text[i - 1]); - if (current_action == RAQM_INDIRECT_BREAK) /* resolve indirect break */ - { - if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == UCDN_LINEBREAK_CLASS_SP) /* if context is A SP * B */ - break_actions[i-1] = RAQM_INDIRECT_BREAK; /* break opportunity */ - else /* else */ - break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* no break opportunity */ - } - else if (current_action == RAQM_COMBINING_PROHIBITED_BREAK) /* this is the case OP SP* CM */ + switch (action) { - break_actions[i-1] = RAQM_COMBINING_PROHIBITED_BREAK; /* no break allowed */ - if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) != UCDN_LINEBREAK_CLASS_SP) - continue; /* apply rule 9: X CM* -> X */ - } - else if (current_action == RAQM_COMBINING_INDIRECT_BREAK) /* resolve combining mark break */ - { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* don't break before CM */ - if (ucdn_get_resolved_linebreak_class (rq->text[i-1]) == UCDN_LINEBREAK_CLASS_SP) - { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; /* legacy: keep SP CM together */ - if (i > 1) - break_actions[i-2] = ((ucdn_get_resolved_linebreak_class (rq->text[i-2]) == UCDN_LINEBREAK_CLASS_SP) ? RAQM_INDIRECT_BREAK : RAQM_DIRECT_BREAK); - } - else /* apply rule 9: X CM * -> X */ - continue; + case RAQM_INDIRECT_BREAK: + if (class == UCDN_LINEBREAK_CLASS_SP) + break_actions[i - 1] = RAQM_INDIRECT_BREAK; + else + break_actions[i - 1] = RAQM_PROHIBITED_BREAK; + break; + case RAQM_COMBINING_PROHIBITED_BREAK: + break_actions[i - 1] = RAQM_COMBINING_PROHIBITED_BREAK; + if (class != UCDN_LINEBREAK_CLASS_SP) + continue; + break; + case RAQM_COMBINING_INDIRECT_BREAK: + break_actions[i - 1] = RAQM_PROHIBITED_BREAK; + if (class == UCDN_LINEBREAK_CLASS_SP) + { + break_actions[i - 1] = RAQM_PROHIBITED_BREAK; + if (i > 1) + { + int class2 = ucdn_get_resolved_linebreak_class (rq->text[i - 2]); + if (class2 == UCDN_LINEBREAK_CLASS_SP) + break_actions[i - 2] = RAQM_INDIRECT_BREAK; + else + break_actions[i - 2] = RAQM_DIRECT_BREAK; + } + } + else + continue; + break; + case RAQM_DIRECT_BREAK: + case RAQM_PROHIBITED_BREAK: + default: + break; } current_class = next_class; From b77daad671a885a4539f039a48bba2d10564d707 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 13:10:10 +0200 Subject: [PATCH 33/43] Move this logic closer to where it is needed --- src/raqm.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index 7d5bf19e..e9c3398f 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1293,6 +1293,10 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) /* Find possible break points */ bool *breaks = _raqm_find_line_breaks (rq); + /* Sort glyphs in logical order */ + qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_logical_sort); + + /* Do line breaking */ for (size_t i = 0; i < glyph_count; i++) { rq->glyphs[i].line = line; @@ -1328,6 +1332,9 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) } } + /* Then sort glyphs back in visual order */ + qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_visual_sort); + free (breaks); } @@ -1384,15 +1391,9 @@ _raqm_line_break (raqm_t *rq) if (rq->line_width < 0) return true; - /* Sort glyphs in logical order */ - qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_logical_sort); - /* Do line breaking */ _raqm_break_lines (rq, glyph_count); - /* Then sort glyphs back in visual order */ - qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_visual_sort); - /* calculating positions */ current_line = 0; current_x = 0; From e3ea8b07a057373cf308cb4233dccee21d817aa0 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 13:22:59 +0200 Subject: [PATCH 34/43] =?UTF-8?q?Don=E2=80=99t=20ignore=20allocation=20fai?= =?UTF-8?q?lures?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/raqm.c | 69 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 40 insertions(+), 29 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index e9c3398f..f141fd4b 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1088,14 +1088,13 @@ typedef enum { RAQM_PROHIBITED_BREAK, /* ^ in table, XX in array */ } raqm_break_action_t; -static bool * -_raqm_find_line_breaks (raqm_t *rq) +static bool +_raqm_find_line_breaks (raqm_t *rq, bool *breaks) { size_t length = rq->text_len; int current_class; int next_class; - raqm_break_action_t *break_actions; - bool *line_breaks; + raqm_break_action_t *actions; /* Define some short-cuts for the table */ #define oo RAQM_DIRECT_BREAK /* '_' break allowed */ @@ -1142,14 +1141,15 @@ _raqm_find_line_breaks (raqm_t *rq) #undef CC #undef XX - line_breaks = malloc (sizeof (bool) * length); - memset (line_breaks, false, length); - if (length < 2) - return line_breaks; + return true; - break_actions = malloc (sizeof (raqm_break_action_t) * length); - memset (break_actions, RAQM_PROHIBITED_BREAK, length); + actions = malloc (sizeof (raqm_break_action_t) * length); + if (!actions) + return false; + + for (size_t i = 0; i < length; i++) + actions[i] = RAQM_PROHIBITED_BREAK; current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); @@ -1181,7 +1181,7 @@ _raqm_find_line_breaks (raqm_t *rq) /* handle spaces explicitly */ if (next_class == UCDN_LINEBREAK_CLASS_SP) { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; + actions[i-1] = RAQM_PROHIBITED_BREAK; continue; } @@ -1189,47 +1189,47 @@ _raqm_find_line_breaks (raqm_t *rq) next_class == UCDN_LINEBREAK_CLASS_NL || next_class == UCDN_LINEBREAK_CLASS_LF) { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; + actions[i-1] = RAQM_PROHIBITED_BREAK; current_class = UCDN_LINEBREAK_CLASS_BK; continue; } if (next_class == UCDN_LINEBREAK_CLASS_CR) { - break_actions[i-1] = RAQM_PROHIBITED_BREAK; + actions[i-1] = RAQM_PROHIBITED_BREAK; current_class = UCDN_LINEBREAK_CLASS_CR; continue; } action = break_pairs[current_class][next_class]; - break_actions[i - 1] = action; + actions[i - 1] = action; class = ucdn_get_resolved_linebreak_class (rq->text[i - 1]); switch (action) { case RAQM_INDIRECT_BREAK: if (class == UCDN_LINEBREAK_CLASS_SP) - break_actions[i - 1] = RAQM_INDIRECT_BREAK; + actions[i - 1] = RAQM_INDIRECT_BREAK; else - break_actions[i - 1] = RAQM_PROHIBITED_BREAK; + actions[i - 1] = RAQM_PROHIBITED_BREAK; break; case RAQM_COMBINING_PROHIBITED_BREAK: - break_actions[i - 1] = RAQM_COMBINING_PROHIBITED_BREAK; + actions[i - 1] = RAQM_COMBINING_PROHIBITED_BREAK; if (class != UCDN_LINEBREAK_CLASS_SP) continue; break; case RAQM_COMBINING_INDIRECT_BREAK: - break_actions[i - 1] = RAQM_PROHIBITED_BREAK; + actions[i - 1] = RAQM_PROHIBITED_BREAK; if (class == UCDN_LINEBREAK_CLASS_SP) { - break_actions[i - 1] = RAQM_PROHIBITED_BREAK; + actions[i - 1] = RAQM_PROHIBITED_BREAK; if (i > 1) { int class2 = ucdn_get_resolved_linebreak_class (rq->text[i - 2]); if (class2 == UCDN_LINEBREAK_CLASS_SP) - break_actions[i - 2] = RAQM_INDIRECT_BREAK; + actions[i - 2] = RAQM_INDIRECT_BREAK; else - break_actions[i - 2] = RAQM_DIRECT_BREAK; + actions[i - 2] = RAQM_DIRECT_BREAK; } } else @@ -1246,14 +1246,15 @@ _raqm_find_line_breaks (raqm_t *rq) for (size_t i = 0; i < length; i++) { - if (break_actions[i] == RAQM_INDIRECT_BREAK || break_actions[i] == RAQM_DIRECT_BREAK ) - line_breaks[i] = true; + if (actions[i] == RAQM_INDIRECT_BREAK || actions[i] == RAQM_DIRECT_BREAK) + breaks[i] = true; else - line_breaks[i] = false; + breaks[i] = false; } - free (break_actions); - return line_breaks; + free (actions); + + return true; } static int @@ -1284,19 +1285,26 @@ _raqm_is_space_glyph (raqm_t *rq, int idx) return ucdn_get_general_category (ch) == UCDN_GENERAL_CATEGORY_ZS; } -static void +static bool _raqm_break_lines (raqm_t *rq, size_t glyph_count) { int width = 0; int line = 0; /* Find possible break points */ - bool *breaks = _raqm_find_line_breaks (rq); + bool *breaks = calloc (rq->text_len, sizeof (bool)); + + if (!breaks) + return false; /* Sort glyphs in logical order */ qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_logical_sort); /* Do line breaking */ + + if (!_raqm_find_line_breaks (rq, breaks)) + return false; + for (size_t i = 0; i < glyph_count; i++) { rq->glyphs[i].line = line; @@ -1336,6 +1344,8 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) qsort (rq->glyphs, glyph_count, sizeof (raqm_glyph_t), _raqm_visual_sort); free (breaks); + + return true; } static bool @@ -1392,7 +1402,8 @@ _raqm_line_break (raqm_t *rq) return true; /* Do line breaking */ - _raqm_break_lines (rq, glyph_count); + if (!_raqm_break_lines (rq, glyph_count)) + return false; /* calculating positions */ current_line = 0; From a388e220edeb3abd8476f2a96aba6edc790bc42e Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 16:31:56 +0200 Subject: [PATCH 35/43] Minor --- src/raqm.c | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index f141fd4b..bbc60151 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1353,8 +1353,8 @@ _raqm_line_break (raqm_t *rq) { size_t count = 0; size_t glyph_count = 0; - int current_x = 0; - int current_line = 0; + int x = 0; + int line = 0; /* counting total glyphs */ for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) @@ -1366,7 +1366,7 @@ _raqm_line_break (raqm_t *rq) /* populating glyphs */ count = 0; - current_x = 0; + x = 0; for (raqm_run_t *run = rq->runs; run != NULL; run = run->next) { size_t len; @@ -1385,14 +1385,14 @@ _raqm_line_break (raqm_t *rq) rq->glyphs[count + i].y_advance = position[i].y_advance; rq->glyphs[count + i].x_offset = position[i].x_offset; rq->glyphs[count + i].y_offset = position[i].y_offset; - rq->glyphs[count + i].x = current_x + position[i].x_offset; + rq->glyphs[count + i].x = x + position[i].x_offset; rq->glyphs[count + i].y = position[i].y_offset; rq->glyphs[count + i].ftface = rq->text_info[rq->glyphs[count + i].cluster].ftface; rq->glyphs[count + i].visual_index = count + i; rq->glyphs[count + i].line = 0; - current_x += position[i].x_advance; + x += position[i].x_advance; } count += len; @@ -1406,22 +1406,22 @@ _raqm_line_break (raqm_t *rq) return false; /* calculating positions */ - current_line = 0; - current_x = 0; + line = 0; + x = 0; for (size_t i = 0; i < glyph_count; i++) { int leading = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); - if (rq->glyphs[i].line != current_line) + if (rq->glyphs[i].line != line) { - current_x = 0; - current_line = rq->glyphs[i].line; + x = 0; + line = rq->glyphs[i].line; } - rq->glyphs[i].x = current_x + rq->glyphs[i].x_offset; - rq->glyphs[i].y = rq->glyphs[i].y_offset + rq->glyphs[i].line * leading; + rq->glyphs[i].x = x + rq->glyphs[i].x_offset; + rq->glyphs[i].y = rq->glyphs[i].y_offset + line * leading; - current_x += rq->glyphs[i].x_advance; + x += rq->glyphs[i].x_advance; } /* handeling alighnment */ @@ -1430,7 +1430,7 @@ _raqm_line_break (raqm_t *rq) case RAQM_ALIGNMENT_RIGHT: { size_t j = 0; - int line = -1; + line = -1; for (size_t i = glyph_count - 1; i != 0; i--) { if (rq->glyphs[i].line != line) @@ -1464,14 +1464,14 @@ _raqm_line_break (raqm_t *rq) case RAQM_ALIGNMENT_CENTER: { size_t j = 0; - current_line = -1; + line = -1; for (size_t i = glyph_count - 1; i != 0; i--) { - if (rq->glyphs[i].line != current_line) + if (rq->glyphs[i].line != line) { int offset = (rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance)) / 2; - current_line = rq->glyphs[i].line; - for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) + line = rq->glyphs[i].line; + for (j = i; j != 0 && rq->glyphs[j].line == line; j--) rq->glyphs[j].x += offset; } i = j + 1; @@ -1482,17 +1482,17 @@ _raqm_line_break (raqm_t *rq) { int space_count = 0; size_t j = 0; - current_line = -1; + line = -1; for (size_t i = glyph_count - 1; i != 0; i--) { - if (rq->glyphs[i].line != current_line) + if (rq->glyphs[i].line != line) { int space_extension = 0; int offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); - current_line = rq->glyphs[i].line; + line = rq->glyphs[i].line; /* counting spaces in one line */ - for (j = i; j != 0 && rq->glyphs[j].line == current_line; j--) + for (j = i; j != 0 && rq->glyphs[j].line == line; j--) { if (_raqm_is_space_glyph (rq, j)) space_count++; @@ -1503,7 +1503,7 @@ _raqm_line_break (raqm_t *rq) offset = 0; else offset = offset / space_count; - for (size_t k = j + 1; rq->glyphs[k].line == current_line; k++) + for (size_t k = j + 1; rq->glyphs[k].line == line; k++) { rq->glyphs[k].x += space_extension; if (_raqm_is_space_glyph (rq, k)) From 735f918c3507ecf65c0efd75309c92f0b4bb83b1 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 18 Sep 2016 15:00:32 +0200 Subject: [PATCH 36/43] Fix line metrics The ascender and descender members of FT_Face are in font units, but we want then in pixel size. Also, the first should be moved down by the ascender. --- src/raqm.c | 10 +- tests/line-breaking-ltr.test | 886 +++++++++++++++++------------------ 2 files changed, 451 insertions(+), 445 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index bbc60151..fc90403a 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1410,7 +1410,13 @@ _raqm_line_break (raqm_t *rq) x = 0; for (size_t i = 0; i < glyph_count; i++) { - int leading = (-1) * (rq->text_info[rq->glyphs[i].cluster].ftface->ascender + abs (rq->text_info[rq->glyphs[i].cluster].ftface->descender)); + FT_Face face; + int ascender, descender, leading; + + face = rq->text_info[rq->glyphs[i].cluster].ftface; + ascender = face->size->metrics.ascender; + descender = -face->size->metrics.descender; + leading = ascender + descender; if (rq->glyphs[i].line != line) { @@ -1419,7 +1425,7 @@ _raqm_line_break (raqm_t *rq) } rq->glyphs[i].x = x + rq->glyphs[i].x_offset; - rq->glyphs[i].y = rq->glyphs[i].y_offset + line * leading; + rq->glyphs[i].y = rq->glyphs[i].y_offset - line * leading - ascender; x += rq->glyphs[i].x_advance; } diff --git a/tests/line-breaking-ltr.test b/tests/line-breaking-ltr.test index 5d68d063..5507f68a 100644 --- a/tests/line-breaking-ltr.test +++ b/tests/line-breaking-ltr.test @@ -909,449 +909,449 @@ Final Runs: run[0]: start: 0 length: 445 direction: ltr script: Latn font: Amiri Glyph information: -glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 x_position: 0 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1128 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 2146 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2904 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3764 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5344 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5944 y_position: 0 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 6484 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 7504 y_position: 0 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8242 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 9272 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10852 y_position: 0 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 11452 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 12482 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 13500 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14010 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15028 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15794 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 16394 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17132 y_position: 0 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17672 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18294 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18894 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19756 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 21336 y_position: 0 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22196 y_position: 0 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 22818 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23220 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 23820 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 24666 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 25684 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 26748 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27486 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 28346 y_position: 0 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 29192 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 29814 y_position: 0 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30674 y_position: 0 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31296 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 32326 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33092 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 33692 y_position: 0 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34554 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 35584 y_position: 0 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 36124 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37144 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 37684 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38422 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39268 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 39808 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 40872 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41804 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42404 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43264 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43774 y_position: 0 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44314 y_position: 0 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 44936 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45338 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 45938 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46676 y_position: 0 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47536 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48566 y_position: 0 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -3600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1030 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2048 y_position: -3600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2648 y_position: -3600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3508 y_position: -3600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4048 y_position: -3600 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 5078 y_position: -3600 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 5816 y_position: -3600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7396 y_position: -3600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8414 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9444 y_position: -3600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 10044 y_position: -3600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10666 y_position: -3600 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 11526 y_position: -3600 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 13106 y_position: -3600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14126 y_position: -3600 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15144 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15910 y_position: -3600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16510 y_position: -3600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17050 y_position: -3600 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 18114 y_position: -3600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18960 y_position: -3600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19500 y_position: -3600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20530 y_position: -3600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -3600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22100 y_position: -3600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23130 y_position: -3600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 24194 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24816 y_position: -3600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25416 y_position: -3600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26446 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27068 y_position: -3600 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27668 y_position: -3600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28178 y_position: -3600 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 29040 y_position: -3600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30036 y_position: -3600 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 31054 y_position: -3600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 31812 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32672 y_position: -3600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33272 y_position: -3600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34132 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34754 y_position: -3600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35354 y_position: -3600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36384 y_position: -3600 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 37402 y_position: -3600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 37912 y_position: -3600 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 38930 y_position: -3600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39688 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40548 y_position: -3600 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 41148 y_position: -3600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 42728 y_position: -3600 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 43590 y_position: -3600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44522 y_position: -3600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45586 y_position: -3600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46448 y_position: -3600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -7200 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 862 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1372 y_position: -7200 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1912 y_position: -7200 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2906 y_position: -7200 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3936 y_position: -7200 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 4798 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5212 y_position: -7200 font: Amiri -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 5812 y_position: -7200 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 7220 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7842 y_position: -7200 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 8442 y_position: -7200 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9302 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10366 y_position: -7200 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10906 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12486 y_position: -7200 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13086 y_position: -7200 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13948 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14978 y_position: -7200 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15578 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17158 y_position: -7200 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17698 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18762 y_position: -7200 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19302 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20882 y_position: -7200 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 21482 y_position: -7200 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 22402 y_position: -7200 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23262 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 24326 y_position: -7200 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24866 y_position: -7200 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 25728 y_position: -7200 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 27308 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27710 y_position: -7200 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 28310 y_position: -7200 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 29304 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 30334 y_position: -7200 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30874 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31612 y_position: -7200 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32212 y_position: -7200 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33276 y_position: -7200 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 34294 y_position: -7200 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35032 y_position: -7200 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 35654 y_position: -7200 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36420 y_position: -7200 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37450 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38480 y_position: -7200 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39080 y_position: -7200 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39940 y_position: -7200 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40844 y_position: -7200 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41704 y_position: -7200 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 42454 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43300 y_position: -7200 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 43840 y_position: -7200 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44462 y_position: -7200 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45324 y_position: -7200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45946 y_position: -7200 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 46486 y_position: -7200 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 47504 y_position: -7200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48568 y_position: -7200 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -10800 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1030 y_position: -10800 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1540 y_position: -10800 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2050 y_position: -10800 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2912 y_position: -10800 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4492 y_position: -10800 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5338 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6356 y_position: -10800 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6956 y_position: -10800 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7466 y_position: -10800 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 8328 y_position: -10800 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9324 y_position: -10800 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10342 y_position: -10800 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11108 y_position: -10800 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11648 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12386 y_position: -10800 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 12986 y_position: -10800 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14050 y_position: -10800 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 14590 y_position: -10800 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15328 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15868 y_position: -10800 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 16468 y_position: -10800 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17498 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18120 y_position: -10800 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18720 y_position: -10800 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 19582 y_position: -10800 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20092 y_position: -10800 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 20632 y_position: -10800 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21626 y_position: -10800 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22656 y_position: -10800 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23196 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24216 y_position: -10800 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 24816 y_position: -10800 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 25676 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26628 y_position: -10800 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27228 y_position: -10800 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28088 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28950 y_position: -10800 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 29550 y_position: -10800 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30396 y_position: -10800 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31414 y_position: -10800 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 32994 y_position: -10800 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34574 y_position: -10800 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35592 y_position: -10800 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36622 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37640 y_position: -10800 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38240 y_position: -10800 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 39086 y_position: -10800 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40104 y_position: -10800 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41168 y_position: -10800 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41906 y_position: -10800 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 42766 y_position: -10800 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43760 y_position: -10800 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44790 y_position: -10800 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45652 y_position: -10800 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 46274 y_position: -10800 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46688 y_position: -10800 font: Amiri -glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 0 y_position: -14400 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1420 y_position: -14400 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2450 y_position: -14400 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 2990 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3728 y_position: -14400 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4328 y_position: -14400 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5190 y_position: -14400 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6220 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 6842 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7702 y_position: -14400 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8302 y_position: -14400 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8842 y_position: -14400 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 9608 y_position: -14400 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 10638 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11396 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12256 y_position: -14400 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12856 y_position: -14400 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13886 y_position: -14400 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 14904 y_position: -14400 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15414 y_position: -14400 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16432 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17198 y_position: -14400 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17798 y_position: -14400 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18338 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19402 y_position: -14400 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20002 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20760 y_position: -14400 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 21620 y_position: -14400 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 22640 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23398 y_position: -14400 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 24258 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 25290 y_position: -14400 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 26150 y_position: -14400 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27214 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 28244 y_position: -14400 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 29104 y_position: -14400 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29870 y_position: -14400 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30410 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31032 y_position: -14400 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31632 y_position: -14400 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32172 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33236 y_position: -14400 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 33836 y_position: -14400 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34756 y_position: -14400 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35774 y_position: -14400 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36284 y_position: -14400 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 37314 y_position: -14400 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 38334 y_position: -14400 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38956 y_position: -14400 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 39818 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40440 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41300 y_position: -14400 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 41900 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42820 y_position: -14400 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43680 y_position: -14400 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44190 y_position: -14400 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44730 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45352 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 45952 y_position: -14400 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 46812 y_position: -14400 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 47550 y_position: -14400 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 48288 y_position: -14400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49148 y_position: -14400 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -18000 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 846 y_position: -18000 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1386 y_position: -18000 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1896 y_position: -18000 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2406 y_position: -18000 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3436 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5016 y_position: -18000 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5616 y_position: -18000 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6646 y_position: -18000 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7664 y_position: -18000 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8174 y_position: -18000 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 9192 y_position: -18000 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9950 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10810 y_position: -18000 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11410 y_position: -18000 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12270 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13300 y_position: -18000 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13900 y_position: -18000 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14516 y_position: -18000 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 15546 y_position: -18000 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16478 y_position: -18000 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17018 y_position: -18000 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17880 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18502 y_position: -18000 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 19102 y_position: -18000 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20166 y_position: -18000 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21196 y_position: -18000 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21706 y_position: -18000 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 22216 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23078 y_position: -18000 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23678 y_position: -18000 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24698 y_position: -18000 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25560 y_position: -18000 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 26326 y_position: -18000 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26866 y_position: -18000 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 27728 y_position: -18000 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28350 y_position: -18000 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 29380 y_position: -18000 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 30122 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30536 y_position: -18000 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 31136 y_position: -18000 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 32310 y_position: -18000 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33210 y_position: -18000 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 34056 y_position: -18000 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34916 y_position: -18000 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35936 y_position: -18000 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36558 y_position: -18000 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37418 y_position: -18000 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 38448 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39214 y_position: -18000 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 39814 y_position: -18000 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40552 y_position: -18000 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 41092 y_position: -18000 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42156 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42778 y_position: -18000 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 43378 y_position: -18000 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 44396 y_position: -18000 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 45242 y_position: -18000 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 46088 y_position: -18000 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46950 y_position: -18000 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 47810 y_position: -18000 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 48656 y_position: -18000 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 49518 y_position: -18000 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 50140 y_position: -18000 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -21600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 846 y_position: -21600 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 1876 y_position: -21600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2896 y_position: -21600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 3436 y_position: -21600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4466 y_position: -21600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 5328 y_position: -21600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5950 y_position: -21600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6812 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7434 y_position: -21600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8034 y_position: -21600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9098 y_position: -21600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 10116 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11180 y_position: -21600 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 11780 y_position: -21600 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 12800 y_position: -21600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13558 y_position: -21600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14576 y_position: -21600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 15116 y_position: -21600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 16146 y_position: -21600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17006 y_position: -21600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 18070 y_position: -21600 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 18692 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19094 y_position: -21600 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 19694 y_position: -21600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20432 y_position: -21600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 21462 y_position: -21600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22526 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23148 y_position: -21600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 23748 y_position: -21600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 24288 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25352 y_position: -21600 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 25952 y_position: -21600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 26798 y_position: -21600 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27828 y_position: -21600 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 28338 y_position: -21600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 29358 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30220 y_position: -21600 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 30820 y_position: -21600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31814 y_position: -21600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 32844 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33384 y_position: -21600 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33984 y_position: -21600 font: Amiri -glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 35002 y_position: -21600 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 36632 y_position: -21600 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37478 y_position: -21600 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38018 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38880 y_position: -21600 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 39480 y_position: -21600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40510 y_position: -21600 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41370 y_position: -21600 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42108 y_position: -21600 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 42968 y_position: -21600 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43734 y_position: -21600 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44764 y_position: -21600 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45828 y_position: -21600 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46450 y_position: -21600 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 0 y_position: -25200 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1580 y_position: -25200 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 2598 y_position: -25200 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 3108 y_position: -25200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3618 y_position: -25200 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 4158 y_position: -25200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4780 y_position: -25200 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5380 y_position: -25200 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6242 y_position: -25200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 7306 y_position: -25200 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 7846 y_position: -25200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9426 y_position: -25200 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10026 y_position: -25200 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 10566 y_position: -25200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11596 y_position: -25200 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 12196 y_position: -25200 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 13056 y_position: -25200 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 13794 y_position: -25200 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14416 y_position: -25200 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 15016 y_position: -25200 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 15526 y_position: -25200 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 16388 y_position: -25200 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 17384 y_position: -25200 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 18402 y_position: -25200 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19168 y_position: -25200 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 20198 y_position: -25200 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 21778 y_position: -25200 font: Amiri +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 x_position: 0 y_position: -2304 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1128 y_position: -2304 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 2146 y_position: -2304 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2904 y_position: -2304 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3764 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5344 y_position: -2304 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5944 y_position: -2304 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 6484 y_position: -2304 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 7504 y_position: -2304 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8242 y_position: -2304 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 9272 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10852 y_position: -2304 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 11452 y_position: -2304 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 12482 y_position: -2304 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 13500 y_position: -2304 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14010 y_position: -2304 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15028 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15794 y_position: -2304 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 16394 y_position: -2304 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17132 y_position: -2304 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17672 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18294 y_position: -2304 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18894 y_position: -2304 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19756 y_position: -2304 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 21336 y_position: -2304 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22196 y_position: -2304 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 22818 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23220 y_position: -2304 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 23820 y_position: -2304 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 24666 y_position: -2304 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 25684 y_position: -2304 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 26748 y_position: -2304 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27486 y_position: -2304 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 28346 y_position: -2304 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 29192 y_position: -2304 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 29814 y_position: -2304 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30674 y_position: -2304 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31296 y_position: -2304 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 32326 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33092 y_position: -2304 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 33692 y_position: -2304 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34554 y_position: -2304 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 35584 y_position: -2304 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 36124 y_position: -2304 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37144 y_position: -2304 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 37684 y_position: -2304 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38422 y_position: -2304 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39268 y_position: -2304 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 39808 y_position: -2304 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 40872 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41804 y_position: -2304 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42404 y_position: -2304 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43264 y_position: -2304 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43774 y_position: -2304 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44314 y_position: -2304 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 44936 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45338 y_position: -2304 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 45938 y_position: -2304 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46676 y_position: -2304 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47536 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48566 y_position: -2304 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1030 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2048 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2648 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3508 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4048 y_position: -5888 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 5078 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 5816 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7396 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8414 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9444 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 10044 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10666 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 11526 y_position: -5888 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 13106 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14126 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15144 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15910 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16510 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17050 y_position: -5888 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 18114 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18960 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19500 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20530 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22100 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23130 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 24194 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24816 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25416 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26446 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27068 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27668 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28178 y_position: -5888 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 29040 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30036 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 31054 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 31812 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32672 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33272 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34132 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34754 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35354 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36384 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 37402 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 37912 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 38930 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39688 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40548 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 41148 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 42728 y_position: -5888 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 43590 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44522 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45586 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46448 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -9472 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 862 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1372 y_position: -9472 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1912 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2906 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3936 y_position: -9472 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 4798 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5212 y_position: -9472 font: Amiri +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 5812 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 7220 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7842 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 8442 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9302 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10366 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10906 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12486 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13086 y_position: -9472 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13948 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14978 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15578 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17158 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17698 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18762 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19302 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20882 y_position: -9472 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 21482 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 22402 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23262 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 24326 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24866 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 25728 y_position: -9472 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 27308 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27710 y_position: -9472 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 28310 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 29304 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 30334 y_position: -9472 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30874 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31612 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32212 y_position: -9472 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33276 y_position: -9472 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 34294 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35032 y_position: -9472 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 35654 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36420 y_position: -9472 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37450 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38480 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39080 y_position: -9472 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39940 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40844 y_position: -9472 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41704 y_position: -9472 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 42454 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43300 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 43840 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44462 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45324 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45946 y_position: -9472 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 46486 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 47504 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48568 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1030 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1540 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2050 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2912 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4492 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5338 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6356 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6956 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7466 y_position: -13056 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 8328 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9324 y_position: -13056 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10342 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11108 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11648 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12386 y_position: -13056 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 12986 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14050 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 14590 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15328 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15868 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 16468 y_position: -13056 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17498 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18120 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18720 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 19582 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20092 y_position: -13056 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 20632 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21626 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22656 y_position: -13056 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23196 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24216 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 24816 y_position: -13056 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 25676 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26628 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27228 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28088 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28950 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 29550 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30396 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31414 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 32994 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34574 y_position: -13056 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35592 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36622 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37640 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38240 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 39086 y_position: -13056 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40104 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41168 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41906 y_position: -13056 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 42766 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43760 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44790 y_position: -13056 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45652 y_position: -13056 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 46274 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46688 y_position: -13056 font: Amiri +glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 0 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1420 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2450 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 2990 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3728 y_position: -16640 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4328 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5190 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6220 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 6842 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7702 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8302 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8842 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 9608 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 10638 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11396 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12256 y_position: -16640 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12856 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13886 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 14904 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15414 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16432 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17198 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17798 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18338 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19402 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20002 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20760 y_position: -16640 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 21620 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 22640 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23398 y_position: -16640 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 24258 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 25290 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 26150 y_position: -16640 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27214 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 28244 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 29104 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29870 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30410 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31032 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31632 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32172 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33236 y_position: -16640 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 33836 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34756 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35774 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36284 y_position: -16640 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 37314 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 38334 y_position: -16640 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38956 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 39818 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40440 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41300 y_position: -16640 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 41900 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42820 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43680 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44190 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44730 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45352 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 45952 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 46812 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 47550 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 48288 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49148 y_position: -16640 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 846 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1386 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1896 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2406 y_position: -20224 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3436 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5016 y_position: -20224 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5616 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6646 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7664 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8174 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 9192 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9950 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10810 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11410 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12270 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13300 y_position: -20224 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13900 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14516 y_position: -20224 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 15546 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16478 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17018 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17880 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18502 y_position: -20224 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 19102 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20166 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21196 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21706 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 22216 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23078 y_position: -20224 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23678 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24698 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25560 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 26326 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26866 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 27728 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28350 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 29380 y_position: -20224 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 30122 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30536 y_position: -20224 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 31136 y_position: -20224 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 32310 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33210 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 34056 y_position: -20224 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34916 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35936 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36558 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37418 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 38448 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39214 y_position: -20224 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 39814 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40552 y_position: -20224 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 41092 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42156 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42778 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 43378 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 44396 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 45242 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 46088 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46950 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 47810 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 48656 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 49518 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 50140 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 846 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 1876 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2896 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 3436 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4466 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 5328 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5950 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6812 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7434 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8034 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9098 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 10116 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11180 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 11780 y_position: -23808 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 12800 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13558 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14576 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 15116 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 16146 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17006 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 18070 y_position: -23808 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 18692 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19094 y_position: -23808 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 19694 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20432 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 21462 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22526 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23148 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 23748 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 24288 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25352 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 25952 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 26798 y_position: -23808 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27828 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 28338 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 29358 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30220 y_position: -23808 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 30820 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31814 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 32844 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33384 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33984 y_position: -23808 font: Amiri +glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 35002 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 36632 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37478 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38018 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38880 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 39480 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40510 y_position: -23808 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41370 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42108 y_position: -23808 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 42968 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43734 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44764 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45828 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46450 y_position: -23808 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 0 y_position: -27392 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1580 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 2598 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 3108 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3618 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 4158 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4780 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5380 y_position: -27392 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6242 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 7306 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 7846 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9426 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10026 y_position: -27392 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 10566 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11596 y_position: -27392 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 12196 y_position: -27392 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 13056 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 13794 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14416 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 15016 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 15526 y_position: -27392 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 16388 y_position: -27392 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 17384 y_position: -27392 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 18402 y_position: -27392 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19168 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 20198 y_position: -27392 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 21778 y_position: -27392 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 From c1186045fad8abe396b922b28771fb3e5181bc15 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 20:20:56 +0200 Subject: [PATCH 37/43] Make line breaking a bit more robust Should not enter into infinite loops now. --- src/raqm.c | 62 +- tests/Makefile.am | 1 + tests/line-breaking-ltr.test | 762 ++-- tests/line-breaking-rtl.test | 6523 ++++++++++++++++++++++++++++++++++ 4 files changed, 6944 insertions(+), 404 deletions(-) create mode 100644 tests/line-breaking-rtl.test diff --git a/src/raqm.c b/src/raqm.c index fc90403a..dceb5703 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1285,6 +1285,14 @@ _raqm_is_space_glyph (raqm_t *rq, int idx) return ucdn_get_general_category (ch) == UCDN_GENERAL_CATEGORY_ZS; } +static bool +_raqm_next_is_same_cluster (raqm_t *rq, size_t idx, size_t count) +{ + if (idx < count - 1) + return rq->glyphs[idx].cluster == rq->glyphs[idx + 1].cluster; + return false; +} + static bool _raqm_break_lines (raqm_t *rq, size_t glyph_count) { @@ -1293,7 +1301,6 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) /* Find possible break points */ bool *breaks = calloc (rq->text_len, sizeof (bool)); - if (!breaks) return false; @@ -1302,42 +1309,51 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) /* Do line breaking */ + /* Find possible line break points */ if (!_raqm_find_line_breaks (rq, breaks)) return false; + /* Select actual line break points */ for (size_t i = 0; i < glyph_count; i++) { + size_t j; + int word_width = 0; + rq->glyphs[i].line = line; - width += rq->glyphs[i].x_advance; - if (width > rq->line_width) + /* Calculate the width to next possible break */ + for (j = i; j < glyph_count; j++) { - /* If the current glyph does not fit into the line, search backwards for - * the last line break. */ - size_t j = 0; - size_t k = 0; - while (!breaks[rq->glyphs[i].cluster] && i != 0) - i--; + uint32_t cluster; - /* Don’t start lines with white space */ - if (_raqm_is_space_glyph (rq, i + 1)) - { - for (j = i + 1; _raqm_is_space_glyph (rq, j); j++) - rq->glyphs[j].line = line; - i = j - 1; /* skip those */ - } + word_width += rq->glyphs[j].x_advance; + /* Add the width of all glyphs with the same cluster */ + for (; _raqm_next_is_same_cluster (rq, j, glyph_count); j++) + word_width += rq->glyphs[j + 1].x_advance; - /* Handle glyphs belonging to the same character */ - if (rq->glyphs[i + 1].cluster == rq->glyphs[i].cluster) - { - for (k = i + 1; rq->glyphs[k].cluster == rq->glyphs[i].cluster; k++) - rq->glyphs[j].line = line; - i = k - 1; /* skip those */ - } + /* Find the last character index in this cluster */ + if (j < glyph_count - 1) + cluster = rq->glyphs[j + 1].cluster - 1; + else + cluster = rq->glyphs[j].cluster; + + if (breaks[cluster]) + break; + } + if (width + word_width > rq->line_width) + { + /* Word does not fit, start a new line */ line++; width = 0; } + else + { + /* Word fits, append all glyph to the current line */ + while (i < j && i < glyph_count - 1) + rq->glyphs[++i].line = line; + width += word_width; + } } /* Then sort glyphs back in visual order */ diff --git a/tests/Makefile.am b/tests/Makefile.am index f53a1dcb..4460f7d7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -41,6 +41,7 @@ TEST_FILES = \ languages-sr.test \ languages-sr-ru.test \ line-breaking-ltr.test \ + line-breaking-rtl.test \ multi-fonts.test \ multi-fonts2.test \ xyoffset.test \ diff --git a/tests/line-breaking-ltr.test b/tests/line-breaking-ltr.test index 5507f68a..e3cfa176 100644 --- a/tests/line-breaking-ltr.test +++ b/tests/line-breaking-ltr.test @@ -970,388 +970,388 @@ glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 45938 y_position: glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46676 y_position: -2304 font: Amiri glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47536 y_position: -2304 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48566 y_position: -2304 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1030 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2048 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2648 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3508 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4048 y_position: -5888 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 5078 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 5816 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7396 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8414 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9444 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 10044 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10666 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 11526 y_position: -5888 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 13106 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14126 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15144 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15910 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16510 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17050 y_position: -5888 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 18114 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18960 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19500 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20530 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22100 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23130 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 24194 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24816 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25416 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26446 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27068 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27668 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28178 y_position: -5888 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 29040 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30036 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 31054 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 31812 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32672 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33272 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34132 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34754 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35354 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36384 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 37402 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 37912 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 38930 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39688 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40548 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 41148 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 42728 y_position: -5888 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 43590 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44522 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45586 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46448 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -9472 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 862 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1372 y_position: -9472 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1912 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2906 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3936 y_position: -9472 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 4798 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5212 y_position: -9472 font: Amiri -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 5812 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 7220 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7842 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 8442 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9302 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10366 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10906 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12486 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13086 y_position: -9472 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13948 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14978 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15578 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17158 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17698 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18762 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19302 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20882 y_position: -9472 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 21482 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 22402 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23262 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 24326 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24866 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 25728 y_position: -9472 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 27308 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27710 y_position: -9472 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 28310 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 29304 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 30334 y_position: -9472 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30874 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31612 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32212 y_position: -9472 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33276 y_position: -9472 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 34294 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35032 y_position: -9472 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 35654 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36420 y_position: -9472 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37450 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38480 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39080 y_position: -9472 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39940 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40844 y_position: -9472 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41704 y_position: -9472 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 42454 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43300 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 43840 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44462 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45324 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45946 y_position: -9472 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 46486 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 47504 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48568 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1030 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1540 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2050 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2912 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4492 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5338 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6356 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6956 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7466 y_position: -13056 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 8328 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9324 y_position: -13056 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10342 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11108 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11648 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12386 y_position: -13056 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 12986 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14050 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 14590 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15328 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15868 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 16468 y_position: -13056 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17498 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18120 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18720 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 19582 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20092 y_position: -13056 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 20632 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21626 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22656 y_position: -13056 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23196 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24216 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 24816 y_position: -13056 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 25676 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26628 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27228 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28088 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28950 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 29550 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30396 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31414 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 32994 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34574 y_position: -13056 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35592 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36622 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37640 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38240 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 39086 y_position: -13056 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40104 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41168 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41906 y_position: -13056 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 42766 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43760 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44790 y_position: -13056 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45652 y_position: -13056 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 46274 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46688 y_position: -13056 font: Amiri -glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 0 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1420 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2450 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 2990 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3728 y_position: -16640 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4328 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5190 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6220 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 6842 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7702 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8302 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8842 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 9608 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 10638 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11396 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12256 y_position: -16640 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12856 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13886 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 14904 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15414 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16432 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17198 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17798 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18338 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19402 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20002 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20760 y_position: -16640 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 21620 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 22640 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23398 y_position: -16640 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 24258 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 25290 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 26150 y_position: -16640 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27214 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 28244 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 29104 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29870 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30410 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31032 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31632 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32172 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33236 y_position: -16640 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 33836 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34756 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35774 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36284 y_position: -16640 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 37314 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 38334 y_position: -16640 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38956 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 39818 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40440 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41300 y_position: -16640 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 41900 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42820 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43680 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44190 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44730 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45352 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 45952 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 46812 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 47550 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 48288 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49148 y_position: -16640 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 846 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1386 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1896 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2406 y_position: -20224 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3436 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5016 y_position: -20224 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5616 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6646 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7664 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8174 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 9192 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9950 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10810 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11410 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12270 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13300 y_position: -20224 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13900 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14516 y_position: -20224 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 15546 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16478 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17018 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17880 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18502 y_position: -20224 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 19102 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20166 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21196 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21706 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 22216 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23078 y_position: -20224 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23678 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24698 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25560 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 26326 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26866 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 27728 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28350 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 29380 y_position: -20224 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 30122 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30536 y_position: -20224 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 31136 y_position: -20224 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 32310 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33210 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 34056 y_position: -20224 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34916 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35936 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36558 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37418 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 38448 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39214 y_position: -20224 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 39814 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40552 y_position: -20224 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 41092 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42156 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42778 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 43378 y_position: -20224 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 49166 y_position: -2304 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1018 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 1618 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2478 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 3018 y_position: -5888 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 4048 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 4786 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6366 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 7384 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8414 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 9014 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9636 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10496 y_position: -5888 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 12076 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13096 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 14114 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14880 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15480 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 16020 y_position: -5888 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 17084 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17930 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 18470 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 19500 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20040 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 22100 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 23164 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23786 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 24386 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 25416 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26038 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 26638 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 27148 y_position: -5888 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 28010 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 29006 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 30024 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 30782 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31642 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 32242 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 33102 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33724 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34324 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 35354 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 36372 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36882 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 37900 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 38658 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39518 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 40118 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 41698 y_position: -5888 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 42560 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 43492 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44556 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45418 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 46018 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 0 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 510 y_position: -9472 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1050 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2044 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3074 y_position: -9472 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 3936 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4350 y_position: -9472 font: Amiri +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 4950 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6358 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6980 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 7580 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8440 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 9504 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10044 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11624 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 12224 y_position: -9472 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13086 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14116 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 14716 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16296 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 16836 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17900 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 18440 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20020 y_position: -9472 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 20620 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 21540 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 22400 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 23464 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24004 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 24866 y_position: -9472 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 26446 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26848 y_position: -9472 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 27448 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28442 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29472 y_position: -9472 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30012 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30750 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 31350 y_position: -9472 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 32414 y_position: -9472 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 33432 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34170 y_position: -9472 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 34792 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35558 y_position: -9472 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36588 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37618 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 38218 y_position: -9472 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39078 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39982 y_position: -9472 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 40842 y_position: -9472 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 41592 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 42438 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42978 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 43600 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44462 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45084 y_position: -9472 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 45624 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 46642 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 47706 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 48306 y_position: -9472 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 0 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 510 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1020 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1882 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 3462 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 4308 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5326 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 5926 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6436 y_position: -13056 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 7298 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8294 y_position: -13056 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 9312 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10078 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 10618 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11356 y_position: -13056 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 11956 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 13020 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 13560 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14298 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14838 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 15438 y_position: -13056 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 16468 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17090 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17690 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 18552 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 19062 y_position: -13056 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 19602 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20596 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 21626 y_position: -13056 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 22166 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23186 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23786 y_position: -13056 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 24646 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25598 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 26198 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 27058 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27920 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 28520 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 29366 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 30384 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31964 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33544 y_position: -13056 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34562 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 35592 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36610 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 37210 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 38056 y_position: -13056 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 39074 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 40138 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40876 y_position: -13056 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 41736 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 42730 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 43760 y_position: -13056 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44622 y_position: -13056 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 45244 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45658 y_position: -13056 font: Amiri +glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 46258 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47678 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 48708 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 49248 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49986 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 862 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 1892 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2514 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3374 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3974 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 4514 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5280 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 6310 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 7068 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7928 y_position: -16640 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8528 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9558 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 10576 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 11086 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 12104 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12870 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 13470 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 14010 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15074 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 15674 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 16432 y_position: -16640 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 17292 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 18312 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 19070 y_position: -16640 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 19930 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20962 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 21822 y_position: -16640 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22886 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23916 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 24776 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 25542 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26082 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26704 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 27304 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 27844 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28908 y_position: -16640 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 29508 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30428 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 31446 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31956 y_position: -16640 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 32986 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34006 y_position: -16640 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 34628 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35490 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36112 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36972 y_position: -16640 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 37572 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 38492 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 39352 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39862 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 40402 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41024 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41624 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 42484 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 43222 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 43960 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44820 y_position: -16640 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 45420 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 0 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 540 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1050 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1560 y_position: -20224 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2590 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4170 y_position: -20224 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4770 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5800 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6818 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7328 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 8346 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9104 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9964 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10564 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 11424 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12454 y_position: -20224 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13054 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13670 y_position: -20224 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 14700 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15632 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 16172 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17034 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17656 y_position: -20224 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18256 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19320 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20350 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20860 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 21370 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22232 y_position: -20224 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 22832 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 23852 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 24714 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 25480 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26020 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26882 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27504 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 28534 y_position: -20224 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 29276 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29690 y_position: -20224 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 30290 y_position: -20224 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 31464 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 32364 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33210 y_position: -20224 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34070 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35090 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 35712 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36572 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 37602 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38368 y_position: -20224 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 38968 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39706 y_position: -20224 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40246 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 41310 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41932 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 42532 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 43550 y_position: -20224 font: Amiri glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 44396 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 45242 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 46088 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46950 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 47810 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 48656 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 49518 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 50140 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 846 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 1876 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2896 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 3436 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4466 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 5328 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5950 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6812 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7434 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8034 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9098 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 10116 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11180 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 11780 y_position: -23808 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 12800 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13558 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14576 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 15116 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 16146 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17006 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 18070 y_position: -23808 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 18692 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19094 y_position: -23808 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 19694 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20432 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 21462 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22526 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23148 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 23748 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 24288 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25352 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 25952 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 26798 y_position: -23808 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27828 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 28338 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 29358 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30220 y_position: -23808 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 30820 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31814 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 32844 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33384 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33984 y_position: -23808 font: Amiri -glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 35002 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 36632 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37478 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38018 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38880 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 39480 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40510 y_position: -23808 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41370 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42108 y_position: -23808 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 42968 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43734 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44764 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45828 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46450 y_position: -23808 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 0 y_position: -27392 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1580 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 2598 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 3108 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3618 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 4158 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4780 y_position: -27392 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5380 y_position: -27392 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6242 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 7306 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 7846 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9426 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10026 y_position: -27392 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 10566 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11596 y_position: -27392 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 12196 y_position: -27392 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 13056 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 13794 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14416 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 15016 y_position: -27392 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 15526 y_position: -27392 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 16388 y_position: -27392 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 17384 y_position: -27392 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 18402 y_position: -27392 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19168 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 20198 y_position: -27392 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 21778 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45242 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46104 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 46964 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 47810 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 48672 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49294 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 49894 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 1030 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2050 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2590 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3620 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 4482 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5104 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 5966 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6588 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 7188 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8252 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9270 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10334 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 10934 y_position: -23808 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 11954 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 12712 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 13730 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14270 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 15300 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 16160 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17224 y_position: -23808 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 17846 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18248 y_position: -23808 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 18848 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19586 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 20616 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 21680 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22302 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22902 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23442 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24506 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 25106 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25952 y_position: -23808 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 26982 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 27492 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28512 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29374 y_position: -23808 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 29974 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 30968 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31998 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32538 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33138 y_position: -23808 font: Amiri +glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 34156 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 35786 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 36632 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 37172 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38034 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 38634 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39664 y_position: -23808 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 40524 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41262 y_position: -23808 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 42122 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 42888 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 43918 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44982 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45604 y_position: -23808 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 46204 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1018 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1528 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2038 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 2578 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3200 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3800 y_position: -27392 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 4662 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5726 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 6266 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7846 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8446 y_position: -27392 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8986 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10016 y_position: -27392 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10616 y_position: -27392 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11476 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 12214 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12836 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 13436 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13946 y_position: -27392 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 14808 y_position: -27392 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15804 y_position: -27392 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16822 y_position: -27392 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 17588 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 18618 y_position: -27392 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 20198 y_position: -27392 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 diff --git a/tests/line-breaking-rtl.test b/tests/line-breaking-rtl.test new file mode 100644 index 00000000..997ffd69 --- /dev/null +++ b/tests/line-breaking-rtl.test @@ -0,0 +1,6523 @@ +fonts/sha1sum/bcb3b98eb67ece19b8b709f77143d91bcb3d95eb.ttf +(الْبَيْنُ) الْفِرَاقُ وَبَابُهُ بَاعَ وَ (بَيْنُونَةً) أَيْضًا. وَالْبَيْنُ الْوَصْلُ وَهُوَ مِنَ الْأَضْدَادِ. وَقُرِئَ «{لَقَدْ تَقَطَّعَ بَيْنُكُمْ} [الأنعام: 94]» بِالرَّفْعِ وَالنَّصْبِ فَالرَّفْعُ عَلَى الْفِعْلِ أَيْ تَقَطَّعَ وَصْلُكُمْ وَالنَّصْبُ عَلَى الْحَذْفِ يُرِيدُ مَا بَيْنَكُمْ. وَ (الْبَوْنُ) الْفَضْلُ وَالْمَزِيَّةُ وَقَدْ (بَانَهُ) مِنْ بَابِ قَالَ وَبَاعَ، وَبَيْنَهُمَا (بَوْنٌ) بِعِيدٌ وَ (بَيْنٌ) بَعِيدٌ، وَالْوَاوُ أَفْصَحُ، فَأَمَّا بِمَعْنَى الْبُعْدِ فَيُقَالُ: إِنَّ بَيْنَهُمَا (بَيْنًا) لَا غَيْرُ. وَ (الْبَيَانُ) الْفَصَاحَةُ وَاللَّسَنُ. وَفِي الْحَدِيثِ: «إِنَّ مِنَ الْبَيَانِ لَسِحْرًا» وَفُلَانٌ (أَبْيَنُ) مِنْ فُلَانٍ أَيْ أَفْصَحُ مِنْهُ وَأَوْضَحُ كَلَامًا. وَ (الْبَيَانُ) أَيْضًا مَا (يَتَبَيَّنُ) بِهِ الشَّيْءُ مِنَ الدَّلَالَةِ وَغَيْرِهَا. وَ (بَانَ) الشَّيْءُ يَبِينُ (بَيَانًا) اتَّضَحَ فَهُوَ (بَيِّنٌ) وَكَذَا (أَبَانَ) الشَّيْءُ فَهُوَ (مُبِينٌ) وَ (أَبَنْتُهُ) أَنَا أَيْ أَوْضَحْتُهُ وَ (اسْتَبَانَ) الشَّيْءُ ظَهَرَ وَ (اسْتَبَنْتُهُ) أَنَا عَرَفْتُهُ وَ (تَبَيَّنَ) الشَّيْءُ ظَهَرَ وَ (تَبَيَّنْتُ) أَنَا، تَتَعَدَّى هَذِهِ الثَّلَاثَةُ وَتَلْزَمُ. وَ (التَّبْيِينُ) الْإِيضَاحُ وَهُوَ أَيْضًا الْوُضُوحُ، وَفِي الْمَثَلِ: قَدْ (بَيَّنَ) الصُّبْحُ لِذِي عَيْنَيْنِ أَيْ تَبَيَّنَ. وَ (التِّبْيَانُ) مَصْدَرٌ وَهُوَ شَاذٌّ لِأَنَّ الْمَصَادِرَ إِنَّمَا تَجِيءُ عَلَى التَّفْعَالِ بِفَتْحِ التَّاءِ كَالتَّذْكَارِ وَالتَّكْرَارِ وَالتَّوْكَافِ وَلَمْ يَجِئْ بِالْكَسْرِ إِلَّا (التِّبْيَانُ) وَالتِّلْقَاءُ. وَضَرَبَهُ (فَأَبَانَ) رَأَسَهُ مِنْ جَسَدِهِ أَيْ فَصَلَهُ فَهُوَ (مُبِينٌ). وَ (الْمُبَايَنَةُ) الْمُفَارَقَةُ وَ (تَبَايَنَ) الْقَوْمُ تَهَاجَرُوا. وَتَطْلِيقَةٌ (بَائِنَةٌ) وَهِيَ فَاعِلَةٌ بِمَعْنَى مُفَعْوِلَةٍ. وَغُرَابُ (الْبَيْنِ) هُوَ الْأَبْقَعُ، وَقَالَ أَبُو الْغَوْثِ: هُوَ الْأَحْمَرُ الْمِنْقَارِ وَالرِّجْلَيْنِ، فَأَمَّا الْأَسْوَدُ فَهُوَ الْحَاتِمُ فَإِنَّهُ يَحْتِمُ بِالْفِرَاقِ. وَ (بَيْنَ) بِمَعْنَى وَسْطَ تَقُولُ جَلَسَ بَيْنَ الْقَوْمِ كَمَا تَقُولُ جَلَسَ وَسْطَ الْقَوْمِ بِالتَّخْفِيفِ، وَهُوَ ظَرْفٌ فَإِنْ جَعَلْتَهُ اسْمًا أَعْرَبْتَهُ تَقُولُ: لَقَدْ تَقَطَّعَ بَيْنُكُمْ، بِرَفْعِ النُّونِ. وَهَذَا الشَّيْءُ (بَيْنَ بَيْنَ) أَيْ بَيْنَ الْجَيِّدِ وَالرَّدِيءِ. +--line-width=50000 +Text is: (الْبَيْنُ) الْفِرَاقُ وَبَابُهُ بَاعَ وَ (بَيْنُونَةً) أَيْضًا. وَالْبَيْنُ الْوَصْلُ وَهُوَ مِنَ الْأَضْدَادِ. وَقُرِئَ «{لَقَدْ تَقَطَّعَ بَيْنُكُمْ} [الأنعام: 94]» بِالرَّفْعِ وَالنَّصْبِ فَالرَّفْعُ عَلَى الْفِعْلِ أَيْ تَقَطَّعَ وَصْلُكُمْ وَالنَّصْبُ عَلَى الْحَذْفِ يُرِيدُ مَا بَيْنَكُمْ. وَ (الْبَوْنُ) الْفَضْلُ وَالْمَزِيَّةُ وَقَدْ (بَانَهُ) مِنْ بَابِ قَالَ وَبَاعَ، وَبَيْنَهُمَا (بَوْنٌ) بِعِيدٌ وَ (بَيْنٌ) بَعِيدٌ، وَالْوَاوُ أَفْصَحُ، فَأَمَّا بِمَعْنَى الْبُعْدِ فَيُقَالُ: إِنَّ بَيْنَهُمَا (بَيْنًا) لَا غَيْرُ. وَ (الْبَيَانُ) الْفَصَاحَةُ وَاللَّسَنُ. وَفِي الْحَدِيثِ: «إِنَّ مِنَ الْبَيَانِ لَسِحْرًا» وَفُلَانٌ (أَبْيَنُ) مِنْ فُلَانٍ أَيْ أَفْصَحُ مِنْهُ وَأَوْضَحُ كَلَامًا. وَ (الْبَيَانُ) أَيْضًا مَا (يَتَبَيَّنُ) بِهِ الشَّيْءُ مِنَ الدَّلَالَةِ وَغَيْرِهَا. وَ (بَانَ) الشَّيْءُ يَبِينُ (بَيَانًا) اتَّضَحَ فَهُوَ (بَيِّنٌ) وَكَذَا (أَبَانَ) الشَّيْءُ فَهُوَ (مُبِينٌ) وَ (أَبَنْتُهُ) أَنَا أَيْ أَوْضَحْتُهُ وَ (اسْتَبَانَ) الشَّيْءُ ظَهَرَ وَ (اسْتَبَنْتُهُ) أَنَا عَرَفْتُهُ وَ (تَبَيَّنَ) الشَّيْءُ ظَهَرَ وَ (تَبَيَّنْتُ) أَنَا، تَتَعَدَّى هَذِهِ الثَّلَاثَةُ وَتَلْزَمُ. وَ (التَّبْيِينُ) الْإِيضَاحُ وَهُوَ أَيْضًا الْوُضُوحُ، وَفِي الْمَثَلِ: قَدْ (بَيَّنَ) الصُّبْحُ لِذِي عَيْنَيْنِ أَيْ تَبَيَّنَ. وَ (التِّبْيَانُ) مَصْدَرٌ وَهُوَ شَاذٌّ لِأَنَّ الْمَصَادِرَ إِنَّمَا تَجِيءُ عَلَى التَّفْعَالِ بِفَتْحِ التَّاءِ كَالتَّذْكَارِ وَالتَّكْرَارِ وَالتَّوْكَافِ وَلَمْ يَجِئْ بِالْكَسْرِ إِلَّا (التِّبْيَانُ) وَالتِّلْقَاءُ. وَضَرَبَهُ (فَأَبَانَ) رَأَسَهُ مِنْ جَسَدِهِ أَيْ فَصَلَهُ فَهُوَ (مُبِينٌ). وَ (الْمُبَايَنَةُ) الْمُفَارَقَةُ وَ (تَبَايَنَ) الْقَوْمُ تَهَاجَرُوا. وَتَطْلِيقَةٌ (بَائِنَةٌ) وَهِيَ فَاعِلَةٌ بِمَعْنَى مُفَعْوِلَةٍ. وَغُرَابُ (الْبَيْنِ) هُوَ الْأَبْقَعُ، وَقَالَ أَبُو الْغَوْثِ: هُوَ الْأَحْمَرُ الْمِنْقَارِ وَالرِّجْلَيْنِ، فَأَمَّا الْأَسْوَدُ فَهُوَ الْحَاتِمُ فَإِنَّهُ يَحْتِمُ بِالْفِرَاقِ. وَ (بَيْنَ) بِمَعْنَى وَسْطَ تَقُولُ جَلَسَ بَيْنَ الْقَوْمِ كَمَا تَقُولُ جَلَسَ وَسْطَ الْقَوْمِ بِالتَّخْفِيفِ، وَهُوَ ظَرْفٌ فَإِنْ جَعَلْتَهُ اسْمًا أَعْرَبْتَهُ تَقُولُ: لَقَدْ تَقَطَّعَ بَيْنُكُمْ، بِرَفْعِ النُّونِ. وَهَذَا الشَّيْءُ (بَيْنَ بَيْنَ) أَيْ بَيْنَ الْجَيِّدِ وَالرَّدِيءِ. +Direction is: DEFAULT + +Before script detection: +script for ch[0] Zyyy +script for ch[1] Arab +script for ch[2] Arab +script for ch[3] Zinh +script for ch[4] Arab +script for ch[5] Zinh +script for ch[6] Arab +script for ch[7] Zinh +script for ch[8] Arab +script for ch[9] Zinh +script for ch[10] Zyyy +script for ch[11] Zyyy +script for ch[12] Arab +script for ch[13] Arab +script for ch[14] Zinh +script for ch[15] Arab +script for ch[16] Zinh +script for ch[17] Arab +script for ch[18] Zinh +script for ch[19] Arab +script for ch[20] Arab +script for ch[21] Zinh +script for ch[22] Zyyy +script for ch[23] Arab +script for ch[24] Zinh +script for ch[25] Arab +script for ch[26] Zinh +script for ch[27] Arab +script for ch[28] Arab +script for ch[29] Zinh +script for ch[30] Arab +script for ch[31] Zinh +script for ch[32] Zyyy +script for ch[33] Arab +script for ch[34] Zinh +script for ch[35] Arab +script for ch[36] Arab +script for ch[37] Zinh +script for ch[38] Zyyy +script for ch[39] Arab +script for ch[40] Zinh +script for ch[41] Zyyy +script for ch[42] Zyyy +script for ch[43] Arab +script for ch[44] Zinh +script for ch[45] Arab +script for ch[46] Zinh +script for ch[47] Arab +script for ch[48] Zinh +script for ch[49] Arab +script for ch[50] Arab +script for ch[51] Zinh +script for ch[52] Arab +script for ch[53] Zinh +script for ch[54] Zyyy +script for ch[55] Zyyy +script for ch[56] Arab +script for ch[57] Zinh +script for ch[58] Arab +script for ch[59] Zinh +script for ch[60] Arab +script for ch[61] Zinh +script for ch[62] Arab +script for ch[63] Zyyy +script for ch[64] Zyyy +script for ch[65] Arab +script for ch[66] Zinh +script for ch[67] Arab +script for ch[68] Arab +script for ch[69] Zinh +script for ch[70] Arab +script for ch[71] Zinh +script for ch[72] Arab +script for ch[73] Zinh +script for ch[74] Arab +script for ch[75] Zinh +script for ch[76] Zyyy +script for ch[77] Arab +script for ch[78] Arab +script for ch[79] Zinh +script for ch[80] Arab +script for ch[81] Zinh +script for ch[82] Arab +script for ch[83] Zinh +script for ch[84] Arab +script for ch[85] Zinh +script for ch[86] Zyyy +script for ch[87] Arab +script for ch[88] Zinh +script for ch[89] Arab +script for ch[90] Zinh +script for ch[91] Arab +script for ch[92] Zinh +script for ch[93] Zyyy +script for ch[94] Arab +script for ch[95] Zinh +script for ch[96] Arab +script for ch[97] Zinh +script for ch[98] Zyyy +script for ch[99] Arab +script for ch[100] Arab +script for ch[101] Zinh +script for ch[102] Arab +script for ch[103] Zinh +script for ch[104] Arab +script for ch[105] Zinh +script for ch[106] Arab +script for ch[107] Zinh +script for ch[108] Arab +script for ch[109] Arab +script for ch[110] Zinh +script for ch[111] Zyyy +script for ch[112] Zyyy +script for ch[113] Arab +script for ch[114] Zinh +script for ch[115] Arab +script for ch[116] Zinh +script for ch[117] Arab +script for ch[118] Zinh +script for ch[119] Arab +script for ch[120] Zinh +script for ch[121] Zyyy +script for ch[122] Zyyy +script for ch[123] Zyyy +script for ch[124] Arab +script for ch[125] Zinh +script for ch[126] Arab +script for ch[127] Zinh +script for ch[128] Arab +script for ch[129] Zinh +script for ch[130] Zyyy +script for ch[131] Arab +script for ch[132] Zinh +script for ch[133] Arab +script for ch[134] Zinh +script for ch[135] Arab +script for ch[136] Zinh +script for ch[137] Zinh +script for ch[138] Arab +script for ch[139] Zinh +script for ch[140] Zyyy +script for ch[141] Arab +script for ch[142] Zinh +script for ch[143] Arab +script for ch[144] Zinh +script for ch[145] Arab +script for ch[146] Zinh +script for ch[147] Arab +script for ch[148] Zinh +script for ch[149] Arab +script for ch[150] Zinh +script for ch[151] Zyyy +script for ch[152] Zyyy +script for ch[153] Zyyy +script for ch[154] Arab +script for ch[155] Arab +script for ch[156] Arab +script for ch[157] Arab +script for ch[158] Arab +script for ch[159] Arab +script for ch[160] Arab +script for ch[161] Zyyy +script for ch[162] Zyyy +script for ch[163] Zyyy +script for ch[164] Zyyy +script for ch[165] Zyyy +script for ch[166] Zyyy +script for ch[167] Zyyy +script for ch[168] Arab +script for ch[169] Zinh +script for ch[170] Arab +script for ch[171] Arab +script for ch[172] Arab +script for ch[173] Zinh +script for ch[174] Zinh +script for ch[175] Arab +script for ch[176] Zinh +script for ch[177] Arab +script for ch[178] Zinh +script for ch[179] Zyyy +script for ch[180] Arab +script for ch[181] Zinh +script for ch[182] Arab +script for ch[183] Arab +script for ch[184] Arab +script for ch[185] Zinh +script for ch[186] Zinh +script for ch[187] Arab +script for ch[188] Zinh +script for ch[189] Arab +script for ch[190] Zinh +script for ch[191] Zyyy +script for ch[192] Arab +script for ch[193] Zinh +script for ch[194] Arab +script for ch[195] Arab +script for ch[196] Arab +script for ch[197] Zinh +script for ch[198] Zinh +script for ch[199] Arab +script for ch[200] Zinh +script for ch[201] Arab +script for ch[202] Zinh +script for ch[203] Zyyy +script for ch[204] Arab +script for ch[205] Zinh +script for ch[206] Arab +script for ch[207] Zinh +script for ch[208] Arab +script for ch[209] Zyyy +script for ch[210] Arab +script for ch[211] Arab +script for ch[212] Zinh +script for ch[213] Arab +script for ch[214] Zinh +script for ch[215] Arab +script for ch[216] Zinh +script for ch[217] Arab +script for ch[218] Zinh +script for ch[219] Zyyy +script for ch[220] Arab +script for ch[221] Zinh +script for ch[222] Arab +script for ch[223] Zinh +script for ch[224] Zyyy +script for ch[225] Arab +script for ch[226] Zinh +script for ch[227] Arab +script for ch[228] Zinh +script for ch[229] Arab +script for ch[230] Zinh +script for ch[231] Zinh +script for ch[232] Arab +script for ch[233] Zinh +script for ch[234] Zyyy +script for ch[235] Arab +script for ch[236] Zinh +script for ch[237] Arab +script for ch[238] Zinh +script for ch[239] Arab +script for ch[240] Zinh +script for ch[241] Arab +script for ch[242] Zinh +script for ch[243] Arab +script for ch[244] Zinh +script for ch[245] Zyyy +script for ch[246] Arab +script for ch[247] Zinh +script for ch[248] Arab +script for ch[249] Arab +script for ch[250] Arab +script for ch[251] Zinh +script for ch[252] Zinh +script for ch[253] Arab +script for ch[254] Zinh +script for ch[255] Arab +script for ch[256] Zinh +script for ch[257] Zyyy +script for ch[258] Arab +script for ch[259] Zinh +script for ch[260] Arab +script for ch[261] Zinh +script for ch[262] Arab +script for ch[263] Zyyy +script for ch[264] Arab +script for ch[265] Arab +script for ch[266] Zinh +script for ch[267] Arab +script for ch[268] Zinh +script for ch[269] Arab +script for ch[270] Zinh +script for ch[271] Arab +script for ch[272] Zinh +script for ch[273] Zyyy +script for ch[274] Arab +script for ch[275] Zinh +script for ch[276] Arab +script for ch[277] Zinh +script for ch[278] Arab +script for ch[279] Arab +script for ch[280] Zinh +script for ch[281] Zyyy +script for ch[282] Arab +script for ch[283] Zinh +script for ch[284] Arab +script for ch[285] Zyyy +script for ch[286] Arab +script for ch[287] Zinh +script for ch[288] Arab +script for ch[289] Zinh +script for ch[290] Arab +script for ch[291] Zinh +script for ch[292] Arab +script for ch[293] Zinh +script for ch[294] Arab +script for ch[295] Zinh +script for ch[296] Zyyy +script for ch[297] Zyyy +script for ch[298] Arab +script for ch[299] Zinh +script for ch[300] Zyyy +script for ch[301] Zyyy +script for ch[302] Arab +script for ch[303] Arab +script for ch[304] Zinh +script for ch[305] Arab +script for ch[306] Zinh +script for ch[307] Arab +script for ch[308] Zinh +script for ch[309] Arab +script for ch[310] Zinh +script for ch[311] Zyyy +script for ch[312] Zyyy +script for ch[313] Arab +script for ch[314] Arab +script for ch[315] Zinh +script for ch[316] Arab +script for ch[317] Zinh +script for ch[318] Arab +script for ch[319] Zinh +script for ch[320] Arab +script for ch[321] Zinh +script for ch[322] Zyyy +script for ch[323] Arab +script for ch[324] Zinh +script for ch[325] Arab +script for ch[326] Arab +script for ch[327] Zinh +script for ch[328] Arab +script for ch[329] Zinh +script for ch[330] Arab +script for ch[331] Zinh +script for ch[332] Arab +script for ch[333] Zinh +script for ch[334] Zinh +script for ch[335] Arab +script for ch[336] Zinh +script for ch[337] Zyyy +script for ch[338] Arab +script for ch[339] Zinh +script for ch[340] Arab +script for ch[341] Zinh +script for ch[342] Arab +script for ch[343] Zinh +script for ch[344] Zyyy +script for ch[345] Zyyy +script for ch[346] Arab +script for ch[347] Zinh +script for ch[348] Arab +script for ch[349] Arab +script for ch[350] Zinh +script for ch[351] Arab +script for ch[352] Zinh +script for ch[353] Zyyy +script for ch[354] Zyyy +script for ch[355] Arab +script for ch[356] Zinh +script for ch[357] Arab +script for ch[358] Zinh +script for ch[359] Zyyy +script for ch[360] Arab +script for ch[361] Zinh +script for ch[362] Arab +script for ch[363] Arab +script for ch[364] Zinh +script for ch[365] Zyyy +script for ch[366] Arab +script for ch[367] Zinh +script for ch[368] Arab +script for ch[369] Arab +script for ch[370] Zinh +script for ch[371] Zyyy +script for ch[372] Arab +script for ch[373] Zinh +script for ch[374] Arab +script for ch[375] Zinh +script for ch[376] Arab +script for ch[377] Arab +script for ch[378] Zinh +script for ch[379] Zyyy +script for ch[380] Zyyy +script for ch[381] Arab +script for ch[382] Zinh +script for ch[383] Arab +script for ch[384] Zinh +script for ch[385] Arab +script for ch[386] Zinh +script for ch[387] Arab +script for ch[388] Zinh +script for ch[389] Arab +script for ch[390] Zinh +script for ch[391] Arab +script for ch[392] Zinh +script for ch[393] Arab +script for ch[394] Zyyy +script for ch[395] Zyyy +script for ch[396] Arab +script for ch[397] Zinh +script for ch[398] Arab +script for ch[399] Zinh +script for ch[400] Arab +script for ch[401] Zinh +script for ch[402] Zyyy +script for ch[403] Zyyy +script for ch[404] Arab +script for ch[405] Zinh +script for ch[406] Arab +script for ch[407] Zinh +script for ch[408] Arab +script for ch[409] Arab +script for ch[410] Zinh +script for ch[411] Zyyy +script for ch[412] Arab +script for ch[413] Zinh +script for ch[414] Zyyy +script for ch[415] Zyyy +script for ch[416] Arab +script for ch[417] Zinh +script for ch[418] Arab +script for ch[419] Zinh +script for ch[420] Arab +script for ch[421] Zinh +script for ch[422] Zyyy +script for ch[423] Zyyy +script for ch[424] Arab +script for ch[425] Zinh +script for ch[426] Arab +script for ch[427] Zinh +script for ch[428] Arab +script for ch[429] Arab +script for ch[430] Zinh +script for ch[431] Zyyy +script for ch[432] Zyyy +script for ch[433] Arab +script for ch[434] Zinh +script for ch[435] Arab +script for ch[436] Arab +script for ch[437] Zinh +script for ch[438] Arab +script for ch[439] Zinh +script for ch[440] Arab +script for ch[441] Arab +script for ch[442] Zinh +script for ch[443] Zyyy +script for ch[444] Arab +script for ch[445] Zinh +script for ch[446] Arab +script for ch[447] Zinh +script for ch[448] Arab +script for ch[449] Zinh +script for ch[450] Arab +script for ch[451] Zinh +script for ch[452] Zyyy +script for ch[453] Zyyy +script for ch[454] Arab +script for ch[455] Zinh +script for ch[456] Arab +script for ch[457] Zinh +script for ch[458] Arab +script for ch[459] Zinh +script for ch[460] Zinh +script for ch[461] Arab +script for ch[462] Zyyy +script for ch[463] Arab +script for ch[464] Zinh +script for ch[465] Arab +script for ch[466] Zinh +script for ch[467] Arab +script for ch[468] Zinh +script for ch[469] Arab +script for ch[470] Zinh +script for ch[471] Arab +script for ch[472] Zyyy +script for ch[473] Arab +script for ch[474] Arab +script for ch[475] Zinh +script for ch[476] Arab +script for ch[477] Zinh +script for ch[478] Arab +script for ch[479] Zinh +script for ch[480] Arab +script for ch[481] Zinh +script for ch[482] Zyyy +script for ch[483] Arab +script for ch[484] Zinh +script for ch[485] Arab +script for ch[486] Zinh +script for ch[487] Arab +script for ch[488] Zinh +script for ch[489] Arab +script for ch[490] Arab +script for ch[491] Zinh +script for ch[492] Zyyy +script for ch[493] Zyyy +script for ch[494] Arab +script for ch[495] Zinh +script for ch[496] Arab +script for ch[497] Zinh +script for ch[498] Zinh +script for ch[499] Zyyy +script for ch[500] Arab +script for ch[501] Zinh +script for ch[502] Arab +script for ch[503] Zinh +script for ch[504] Arab +script for ch[505] Zinh +script for ch[506] Arab +script for ch[507] Zinh +script for ch[508] Arab +script for ch[509] Zinh +script for ch[510] Arab +script for ch[511] Zyyy +script for ch[512] Zyyy +script for ch[513] Arab +script for ch[514] Zinh +script for ch[515] Arab +script for ch[516] Zinh +script for ch[517] Arab +script for ch[518] Zinh +script for ch[519] Arab +script for ch[520] Zyyy +script for ch[521] Zyyy +script for ch[522] Arab +script for ch[523] Zinh +script for ch[524] Arab +script for ch[525] Zyyy +script for ch[526] Arab +script for ch[527] Zinh +script for ch[528] Arab +script for ch[529] Zinh +script for ch[530] Arab +script for ch[531] Zinh +script for ch[532] Zyyy +script for ch[533] Zyyy +script for ch[534] Arab +script for ch[535] Zinh +script for ch[536] Zyyy +script for ch[537] Zyyy +script for ch[538] Arab +script for ch[539] Arab +script for ch[540] Zinh +script for ch[541] Arab +script for ch[542] Zinh +script for ch[543] Arab +script for ch[544] Zinh +script for ch[545] Arab +script for ch[546] Arab +script for ch[547] Zinh +script for ch[548] Zyyy +script for ch[549] Zyyy +script for ch[550] Arab +script for ch[551] Arab +script for ch[552] Zinh +script for ch[553] Arab +script for ch[554] Zinh +script for ch[555] Arab +script for ch[556] Zinh +script for ch[557] Arab +script for ch[558] Arab +script for ch[559] Zinh +script for ch[560] Arab +script for ch[561] Zinh +script for ch[562] Zyyy +script for ch[563] Arab +script for ch[564] Zinh +script for ch[565] Arab +script for ch[566] Arab +script for ch[567] Arab +script for ch[568] Zinh +script for ch[569] Zinh +script for ch[570] Arab +script for ch[571] Zinh +script for ch[572] Arab +script for ch[573] Zinh +script for ch[574] Zyyy +script for ch[575] Zyyy +script for ch[576] Arab +script for ch[577] Zinh +script for ch[578] Arab +script for ch[579] Zinh +script for ch[580] Arab +script for ch[581] Zyyy +script for ch[582] Arab +script for ch[583] Arab +script for ch[584] Zinh +script for ch[585] Arab +script for ch[586] Zinh +script for ch[587] Arab +script for ch[588] Zinh +script for ch[589] Arab +script for ch[590] Arab +script for ch[591] Zinh +script for ch[592] Zyyy +script for ch[593] Zyyy +script for ch[594] Zyyy +script for ch[595] Arab +script for ch[596] Zinh +script for ch[597] Arab +script for ch[598] Zinh +script for ch[599] Zinh +script for ch[600] Zyyy +script for ch[601] Arab +script for ch[602] Zinh +script for ch[603] Arab +script for ch[604] Zinh +script for ch[605] Zyyy +script for ch[606] Arab +script for ch[607] Arab +script for ch[608] Zinh +script for ch[609] Arab +script for ch[610] Zinh +script for ch[611] Arab +script for ch[612] Zinh +script for ch[613] Arab +script for ch[614] Arab +script for ch[615] Zinh +script for ch[616] Zyyy +script for ch[617] Arab +script for ch[618] Zinh +script for ch[619] Arab +script for ch[620] Zinh +script for ch[621] Arab +script for ch[622] Zinh +script for ch[623] Arab +script for ch[624] Zinh +script for ch[625] Arab +script for ch[626] Zyyy +script for ch[627] Zyyy +script for ch[628] Arab +script for ch[629] Zinh +script for ch[630] Arab +script for ch[631] Zinh +script for ch[632] Arab +script for ch[633] Zinh +script for ch[634] Arab +script for ch[635] Arab +script for ch[636] Zinh +script for ch[637] Zyyy +script for ch[638] Zyyy +script for ch[639] Arab +script for ch[640] Zinh +script for ch[641] Arab +script for ch[642] Zinh +script for ch[643] Arab +script for ch[644] Zinh +script for ch[645] Arab +script for ch[646] Zinh +script for ch[647] Zyyy +script for ch[648] Zyyy +script for ch[649] Arab +script for ch[650] Zinh +script for ch[651] Arab +script for ch[652] Zinh +script for ch[653] Zyyy +script for ch[654] Arab +script for ch[655] Zinh +script for ch[656] Arab +script for ch[657] Zinh +script for ch[658] Arab +script for ch[659] Arab +script for ch[660] Zinh +script for ch[661] Zyyy +script for ch[662] Arab +script for ch[663] Zinh +script for ch[664] Arab +script for ch[665] Zinh +script for ch[666] Zyyy +script for ch[667] Arab +script for ch[668] Zinh +script for ch[669] Arab +script for ch[670] Zinh +script for ch[671] Arab +script for ch[672] Zinh +script for ch[673] Arab +script for ch[674] Zinh +script for ch[675] Zyyy +script for ch[676] Arab +script for ch[677] Zinh +script for ch[678] Arab +script for ch[679] Zinh +script for ch[680] Arab +script for ch[681] Zinh +script for ch[682] Zyyy +script for ch[683] Arab +script for ch[684] Zinh +script for ch[685] Arab +script for ch[686] Zinh +script for ch[687] Arab +script for ch[688] Zinh +script for ch[689] Arab +script for ch[690] Zinh +script for ch[691] Arab +script for ch[692] Zinh +script for ch[693] Zyyy +script for ch[694] Arab +script for ch[695] Zinh +script for ch[696] Arab +script for ch[697] Zinh +script for ch[698] Arab +script for ch[699] Arab +script for ch[700] Zinh +script for ch[701] Arab +script for ch[702] Zyyy +script for ch[703] Zyyy +script for ch[704] Arab +script for ch[705] Zinh +script for ch[706] Zyyy +script for ch[707] Zyyy +script for ch[708] Arab +script for ch[709] Arab +script for ch[710] Zinh +script for ch[711] Arab +script for ch[712] Zinh +script for ch[713] Arab +script for ch[714] Zinh +script for ch[715] Arab +script for ch[716] Arab +script for ch[717] Zinh +script for ch[718] Zyyy +script for ch[719] Zyyy +script for ch[720] Arab +script for ch[721] Zinh +script for ch[722] Arab +script for ch[723] Zinh +script for ch[724] Arab +script for ch[725] Zinh +script for ch[726] Arab +script for ch[727] Zyyy +script for ch[728] Arab +script for ch[729] Zinh +script for ch[730] Arab +script for ch[731] Zyyy +script for ch[732] Zyyy +script for ch[733] Arab +script for ch[734] Zinh +script for ch[735] Arab +script for ch[736] Zinh +script for ch[737] Arab +script for ch[738] Zinh +script for ch[739] Arab +script for ch[740] Zinh +script for ch[741] Zinh +script for ch[742] Arab +script for ch[743] Zinh +script for ch[744] Zyyy +script for ch[745] Zyyy +script for ch[746] Arab +script for ch[747] Zinh +script for ch[748] Arab +script for ch[749] Zinh +script for ch[750] Zyyy +script for ch[751] Arab +script for ch[752] Arab +script for ch[753] Arab +script for ch[754] Zinh +script for ch[755] Zinh +script for ch[756] Arab +script for ch[757] Zinh +script for ch[758] Arab +script for ch[759] Zinh +script for ch[760] Zyyy +script for ch[761] Arab +script for ch[762] Zinh +script for ch[763] Arab +script for ch[764] Zinh +script for ch[765] Zyyy +script for ch[766] Arab +script for ch[767] Arab +script for ch[768] Arab +script for ch[769] Zinh +script for ch[770] Zinh +script for ch[771] Arab +script for ch[772] Zinh +script for ch[773] Arab +script for ch[774] Arab +script for ch[775] Zinh +script for ch[776] Arab +script for ch[777] Zinh +script for ch[778] Zyyy +script for ch[779] Arab +script for ch[780] Zinh +script for ch[781] Arab +script for ch[782] Zinh +script for ch[783] Arab +script for ch[784] Zinh +script for ch[785] Arab +script for ch[786] Zinh +script for ch[787] Arab +script for ch[788] Zinh +script for ch[789] Arab +script for ch[790] Zyyy +script for ch[791] Zyyy +script for ch[792] Arab +script for ch[793] Zinh +script for ch[794] Zyyy +script for ch[795] Zyyy +script for ch[796] Arab +script for ch[797] Zinh +script for ch[798] Arab +script for ch[799] Arab +script for ch[800] Zinh +script for ch[801] Zyyy +script for ch[802] Zyyy +script for ch[803] Arab +script for ch[804] Arab +script for ch[805] Arab +script for ch[806] Zinh +script for ch[807] Zinh +script for ch[808] Arab +script for ch[809] Zinh +script for ch[810] Arab +script for ch[811] Zinh +script for ch[812] Zyyy +script for ch[813] Arab +script for ch[814] Zinh +script for ch[815] Arab +script for ch[816] Zinh +script for ch[817] Arab +script for ch[818] Arab +script for ch[819] Zinh +script for ch[820] Zyyy +script for ch[821] Zyyy +script for ch[822] Arab +script for ch[823] Zinh +script for ch[824] Arab +script for ch[825] Zinh +script for ch[826] Arab +script for ch[827] Arab +script for ch[828] Zinh +script for ch[829] Arab +script for ch[830] Zyyy +script for ch[831] Zyyy +script for ch[832] Arab +script for ch[833] Arab +script for ch[834] Zinh +script for ch[835] Zinh +script for ch[836] Arab +script for ch[837] Zinh +script for ch[838] Arab +script for ch[839] Zinh +script for ch[840] Zyyy +script for ch[841] Arab +script for ch[842] Zinh +script for ch[843] Arab +script for ch[844] Zinh +script for ch[845] Arab +script for ch[846] Zinh +script for ch[847] Zyyy +script for ch[848] Zyyy +script for ch[849] Arab +script for ch[850] Zinh +script for ch[851] Arab +script for ch[852] Zinh +script for ch[853] Zinh +script for ch[854] Arab +script for ch[855] Zinh +script for ch[856] Zyyy +script for ch[857] Zyyy +script for ch[858] Arab +script for ch[859] Zinh +script for ch[860] Arab +script for ch[861] Zinh +script for ch[862] Arab +script for ch[863] Zinh +script for ch[864] Arab +script for ch[865] Zyyy +script for ch[866] Zyyy +script for ch[867] Arab +script for ch[868] Zinh +script for ch[869] Arab +script for ch[870] Zinh +script for ch[871] Arab +script for ch[872] Arab +script for ch[873] Zinh +script for ch[874] Zyyy +script for ch[875] Zyyy +script for ch[876] Arab +script for ch[877] Arab +script for ch[878] Arab +script for ch[879] Zinh +script for ch[880] Zinh +script for ch[881] Arab +script for ch[882] Zinh +script for ch[883] Arab +script for ch[884] Zinh +script for ch[885] Zyyy +script for ch[886] Arab +script for ch[887] Zinh +script for ch[888] Arab +script for ch[889] Zinh +script for ch[890] Arab +script for ch[891] Zinh +script for ch[892] Zyyy +script for ch[893] Zyyy +script for ch[894] Arab +script for ch[895] Zinh +script for ch[896] Arab +script for ch[897] Zinh +script for ch[898] Arab +script for ch[899] Arab +script for ch[900] Zinh +script for ch[901] Zyyy +script for ch[902] Zyyy +script for ch[903] Arab +script for ch[904] Zinh +script for ch[905] Zyyy +script for ch[906] Zyyy +script for ch[907] Arab +script for ch[908] Zinh +script for ch[909] Arab +script for ch[910] Zinh +script for ch[911] Arab +script for ch[912] Zinh +script for ch[913] Arab +script for ch[914] Zinh +script for ch[915] Arab +script for ch[916] Zinh +script for ch[917] Zyyy +script for ch[918] Zyyy +script for ch[919] Arab +script for ch[920] Zinh +script for ch[921] Arab +script for ch[922] Zinh +script for ch[923] Arab +script for ch[924] Zyyy +script for ch[925] Arab +script for ch[926] Zinh +script for ch[927] Arab +script for ch[928] Zinh +script for ch[929] Zyyy +script for ch[930] Arab +script for ch[931] Zinh +script for ch[932] Arab +script for ch[933] Zinh +script for ch[934] Arab +script for ch[935] Zinh +script for ch[936] Arab +script for ch[937] Zinh +script for ch[938] Arab +script for ch[939] Zinh +script for ch[940] Arab +script for ch[941] Zinh +script for ch[942] Zyyy +script for ch[943] Arab +script for ch[944] Zinh +script for ch[945] Zyyy +script for ch[946] Zyyy +script for ch[947] Arab +script for ch[948] Arab +script for ch[949] Zinh +script for ch[950] Arab +script for ch[951] Zinh +script for ch[952] Arab +script for ch[953] Zinh +script for ch[954] Arab +script for ch[955] Arab +script for ch[956] Zinh +script for ch[957] Zyyy +script for ch[958] Zyyy +script for ch[959] Arab +script for ch[960] Arab +script for ch[961] Arab +script for ch[962] Zinh +script for ch[963] Zinh +script for ch[964] Arab +script for ch[965] Zinh +script for ch[966] Arab +script for ch[967] Zinh +script for ch[968] Zyyy +script for ch[969] Arab +script for ch[970] Zinh +script for ch[971] Arab +script for ch[972] Zinh +script for ch[973] Arab +script for ch[974] Zinh +script for ch[975] Zyyy +script for ch[976] Arab +script for ch[977] Zinh +script for ch[978] Zyyy +script for ch[979] Zyyy +script for ch[980] Arab +script for ch[981] Arab +script for ch[982] Zinh +script for ch[983] Arab +script for ch[984] Zinh +script for ch[985] Arab +script for ch[986] Zinh +script for ch[987] Arab +script for ch[988] Zinh +script for ch[989] Arab +script for ch[990] Zinh +script for ch[991] Arab +script for ch[992] Zinh +script for ch[993] Zyyy +script for ch[994] Zyyy +script for ch[995] Arab +script for ch[996] Zinh +script for ch[997] Arab +script for ch[998] Zinh +script for ch[999] Arab +script for ch[1000] Zyyy +script for ch[1001] Arab +script for ch[1002] Zinh +script for ch[1003] Arab +script for ch[1004] Zinh +script for ch[1005] Arab +script for ch[1006] Zinh +script for ch[1007] Arab +script for ch[1008] Zinh +script for ch[1009] Arab +script for ch[1010] Zinh +script for ch[1011] Zyyy +script for ch[1012] Arab +script for ch[1013] Zinh +script for ch[1014] Zyyy +script for ch[1015] Zyyy +script for ch[1016] Arab +script for ch[1017] Zinh +script for ch[1018] Arab +script for ch[1019] Zinh +script for ch[1020] Arab +script for ch[1021] Zinh +script for ch[1022] Zinh +script for ch[1023] Arab +script for ch[1024] Zinh +script for ch[1025] Zyyy +script for ch[1026] Zyyy +script for ch[1027] Arab +script for ch[1028] Arab +script for ch[1029] Arab +script for ch[1030] Zinh +script for ch[1031] Zinh +script for ch[1032] Arab +script for ch[1033] Zinh +script for ch[1034] Arab +script for ch[1035] Zinh +script for ch[1036] Zyyy +script for ch[1037] Arab +script for ch[1038] Zinh +script for ch[1039] Arab +script for ch[1040] Zinh +script for ch[1041] Arab +script for ch[1042] Zinh +script for ch[1043] Zyyy +script for ch[1044] Arab +script for ch[1045] Zinh +script for ch[1046] Zyyy +script for ch[1047] Zyyy +script for ch[1048] Arab +script for ch[1049] Zinh +script for ch[1050] Arab +script for ch[1051] Zinh +script for ch[1052] Arab +script for ch[1053] Zinh +script for ch[1054] Zinh +script for ch[1055] Arab +script for ch[1056] Zinh +script for ch[1057] Arab +script for ch[1058] Zinh +script for ch[1059] Zyyy +script for ch[1060] Zyyy +script for ch[1061] Arab +script for ch[1062] Zinh +script for ch[1063] Arab +script for ch[1064] Zinh +script for ch[1065] Arab +script for ch[1066] Zyyy +script for ch[1067] Zyyy +script for ch[1068] Arab +script for ch[1069] Zinh +script for ch[1070] Arab +script for ch[1071] Zinh +script for ch[1072] Arab +script for ch[1073] Zinh +script for ch[1074] Arab +script for ch[1075] Zinh +script for ch[1076] Zinh +script for ch[1077] Arab +script for ch[1078] Zyyy +script for ch[1079] Arab +script for ch[1080] Zinh +script for ch[1081] Arab +script for ch[1082] Zinh +script for ch[1083] Arab +script for ch[1084] Zinh +script for ch[1085] Zyyy +script for ch[1086] Arab +script for ch[1087] Arab +script for ch[1088] Arab +script for ch[1089] Zinh +script for ch[1090] Zinh +script for ch[1091] Arab +script for ch[1092] Zinh +script for ch[1093] Arab +script for ch[1094] Arab +script for ch[1095] Zinh +script for ch[1096] Arab +script for ch[1097] Zinh +script for ch[1098] Zyyy +script for ch[1099] Arab +script for ch[1100] Zinh +script for ch[1101] Arab +script for ch[1102] Zinh +script for ch[1103] Arab +script for ch[1104] Zinh +script for ch[1105] Arab +script for ch[1106] Zinh +script for ch[1107] Arab +script for ch[1108] Zinh +script for ch[1109] Zyyy +script for ch[1110] Zyyy +script for ch[1111] Arab +script for ch[1112] Zinh +script for ch[1113] Zyyy +script for ch[1114] Zyyy +script for ch[1115] Arab +script for ch[1116] Arab +script for ch[1117] Arab +script for ch[1118] Zinh +script for ch[1119] Zinh +script for ch[1120] Arab +script for ch[1121] Zinh +script for ch[1122] Arab +script for ch[1123] Zinh +script for ch[1124] Arab +script for ch[1125] Arab +script for ch[1126] Zinh +script for ch[1127] Zyyy +script for ch[1128] Zyyy +script for ch[1129] Arab +script for ch[1130] Arab +script for ch[1131] Zinh +script for ch[1132] Arab +script for ch[1133] Zinh +script for ch[1134] Arab +script for ch[1135] Arab +script for ch[1136] Zinh +script for ch[1137] Arab +script for ch[1138] Arab +script for ch[1139] Zinh +script for ch[1140] Zyyy +script for ch[1141] Arab +script for ch[1142] Zinh +script for ch[1143] Arab +script for ch[1144] Zinh +script for ch[1145] Arab +script for ch[1146] Zinh +script for ch[1147] Zyyy +script for ch[1148] Arab +script for ch[1149] Zinh +script for ch[1150] Arab +script for ch[1151] Zinh +script for ch[1152] Arab +script for ch[1153] Zinh +script for ch[1154] Arab +script for ch[1155] Zyyy +script for ch[1156] Arab +script for ch[1157] Arab +script for ch[1158] Zinh +script for ch[1159] Arab +script for ch[1160] Zinh +script for ch[1161] Arab +script for ch[1162] Zinh +script for ch[1163] Arab +script for ch[1164] Arab +script for ch[1165] Zinh +script for ch[1166] Zyyy +script for ch[1167] Zyyy +script for ch[1168] Arab +script for ch[1169] Zinh +script for ch[1170] Arab +script for ch[1171] Zinh +script for ch[1172] Arab +script for ch[1173] Zyyy +script for ch[1174] Arab +script for ch[1175] Arab +script for ch[1176] Zinh +script for ch[1177] Arab +script for ch[1178] Zinh +script for ch[1179] Arab +script for ch[1180] Zinh +script for ch[1181] Arab +script for ch[1182] Zinh +script for ch[1183] Zyyy +script for ch[1184] Zyyy +script for ch[1185] Arab +script for ch[1186] Zinh +script for ch[1187] Arab +script for ch[1188] Zinh +script for ch[1189] Zyyy +script for ch[1190] Zyyy +script for ch[1191] Arab +script for ch[1192] Zinh +script for ch[1193] Arab +script for ch[1194] Zinh +script for ch[1195] Zinh +script for ch[1196] Arab +script for ch[1197] Zinh +script for ch[1198] Zyyy +script for ch[1199] Zyyy +script for ch[1200] Arab +script for ch[1201] Arab +script for ch[1202] Arab +script for ch[1203] Zinh +script for ch[1204] Zinh +script for ch[1205] Arab +script for ch[1206] Zinh +script for ch[1207] Arab +script for ch[1208] Zinh +script for ch[1209] Zyyy +script for ch[1210] Arab +script for ch[1211] Zinh +script for ch[1212] Arab +script for ch[1213] Zinh +script for ch[1214] Arab +script for ch[1215] Zyyy +script for ch[1216] Arab +script for ch[1217] Zinh +script for ch[1218] Arab +script for ch[1219] Zinh +script for ch[1220] Arab +script for ch[1221] Zinh +script for ch[1222] Arab +script for ch[1223] Zinh +script for ch[1224] Arab +script for ch[1225] Zinh +script for ch[1226] Zyyy +script for ch[1227] Arab +script for ch[1228] Zinh +script for ch[1229] Arab +script for ch[1230] Zinh +script for ch[1231] Zyyy +script for ch[1232] Arab +script for ch[1233] Zinh +script for ch[1234] Arab +script for ch[1235] Zinh +script for ch[1236] Arab +script for ch[1237] Zinh +script for ch[1238] Zinh +script for ch[1239] Arab +script for ch[1240] Zinh +script for ch[1241] Zyyy +script for ch[1242] Zyyy +script for ch[1243] Arab +script for ch[1244] Zinh +script for ch[1245] Zyyy +script for ch[1246] Zyyy +script for ch[1247] Arab +script for ch[1248] Arab +script for ch[1249] Arab +script for ch[1250] Zinh +script for ch[1251] Zinh +script for ch[1252] Arab +script for ch[1253] Zinh +script for ch[1254] Arab +script for ch[1255] Zinh +script for ch[1256] Arab +script for ch[1257] Arab +script for ch[1258] Zinh +script for ch[1259] Zyyy +script for ch[1260] Zyyy +script for ch[1261] Arab +script for ch[1262] Zinh +script for ch[1263] Arab +script for ch[1264] Zinh +script for ch[1265] Arab +script for ch[1266] Zinh +script for ch[1267] Arab +script for ch[1268] Zinh +script for ch[1269] Zyyy +script for ch[1270] Arab +script for ch[1271] Zinh +script for ch[1272] Arab +script for ch[1273] Zinh +script for ch[1274] Arab +script for ch[1275] Zinh +script for ch[1276] Zyyy +script for ch[1277] Arab +script for ch[1278] Zinh +script for ch[1279] Arab +script for ch[1280] Arab +script for ch[1281] Zinh +script for ch[1282] Zinh +script for ch[1283] Zyyy +script for ch[1284] Arab +script for ch[1285] Zinh +script for ch[1286] Arab +script for ch[1287] Zinh +script for ch[1288] Arab +script for ch[1289] Zinh +script for ch[1290] Zinh +script for ch[1291] Zyyy +script for ch[1292] Arab +script for ch[1293] Arab +script for ch[1294] Zinh +script for ch[1295] Arab +script for ch[1296] Zinh +script for ch[1297] Arab +script for ch[1298] Zinh +script for ch[1299] Arab +script for ch[1300] Arab +script for ch[1301] Zinh +script for ch[1302] Arab +script for ch[1303] Zinh +script for ch[1304] Zyyy +script for ch[1305] Arab +script for ch[1306] Zinh +script for ch[1307] Arab +script for ch[1308] Zinh +script for ch[1309] Zinh +script for ch[1310] Arab +script for ch[1311] Zinh +script for ch[1312] Arab +script for ch[1313] Zyyy +script for ch[1314] Arab +script for ch[1315] Zinh +script for ch[1316] Arab +script for ch[1317] Zinh +script for ch[1318] Arab +script for ch[1319] Arab +script for ch[1320] Zinh +script for ch[1321] Zyyy +script for ch[1322] Arab +script for ch[1323] Zinh +script for ch[1324] Arab +script for ch[1325] Zinh +script for ch[1326] Arab +script for ch[1327] Zyyy +script for ch[1328] Arab +script for ch[1329] Arab +script for ch[1330] Arab +script for ch[1331] Zinh +script for ch[1332] Zinh +script for ch[1333] Arab +script for ch[1334] Zinh +script for ch[1335] Arab +script for ch[1336] Zinh +script for ch[1337] Arab +script for ch[1338] Arab +script for ch[1339] Zinh +script for ch[1340] Zyyy +script for ch[1341] Arab +script for ch[1342] Zinh +script for ch[1343] Arab +script for ch[1344] Zinh +script for ch[1345] Arab +script for ch[1346] Zinh +script for ch[1347] Arab +script for ch[1348] Zinh +script for ch[1349] Zyyy +script for ch[1350] Arab +script for ch[1351] Arab +script for ch[1352] Arab +script for ch[1353] Zinh +script for ch[1354] Zinh +script for ch[1355] Arab +script for ch[1356] Arab +script for ch[1357] Zinh +script for ch[1358] Zyyy +script for ch[1359] Arab +script for ch[1360] Zinh +script for ch[1361] Arab +script for ch[1362] Arab +script for ch[1363] Arab +script for ch[1364] Zinh +script for ch[1365] Zinh +script for ch[1366] Arab +script for ch[1367] Zinh +script for ch[1368] Arab +script for ch[1369] Zinh +script for ch[1370] Arab +script for ch[1371] Arab +script for ch[1372] Zinh +script for ch[1373] Zyyy +script for ch[1374] Arab +script for ch[1375] Zinh +script for ch[1376] Arab +script for ch[1377] Arab +script for ch[1378] Arab +script for ch[1379] Zinh +script for ch[1380] Zinh +script for ch[1381] Arab +script for ch[1382] Zinh +script for ch[1383] Arab +script for ch[1384] Zinh +script for ch[1385] Arab +script for ch[1386] Arab +script for ch[1387] Zinh +script for ch[1388] Zyyy +script for ch[1389] Arab +script for ch[1390] Zinh +script for ch[1391] Arab +script for ch[1392] Arab +script for ch[1393] Arab +script for ch[1394] Zinh +script for ch[1395] Zinh +script for ch[1396] Arab +script for ch[1397] Zinh +script for ch[1398] Arab +script for ch[1399] Zinh +script for ch[1400] Arab +script for ch[1401] Arab +script for ch[1402] Zinh +script for ch[1403] Zyyy +script for ch[1404] Arab +script for ch[1405] Zinh +script for ch[1406] Arab +script for ch[1407] Zinh +script for ch[1408] Arab +script for ch[1409] Zinh +script for ch[1410] Zyyy +script for ch[1411] Arab +script for ch[1412] Zinh +script for ch[1413] Arab +script for ch[1414] Zinh +script for ch[1415] Arab +script for ch[1416] Zinh +script for ch[1417] Zyyy +script for ch[1418] Arab +script for ch[1419] Zinh +script for ch[1420] Arab +script for ch[1421] Arab +script for ch[1422] Zinh +script for ch[1423] Arab +script for ch[1424] Zinh +script for ch[1425] Arab +script for ch[1426] Zinh +script for ch[1427] Arab +script for ch[1428] Zinh +script for ch[1429] Zyyy +script for ch[1430] Arab +script for ch[1431] Zinh +script for ch[1432] Arab +script for ch[1433] Zinh +script for ch[1434] Zinh +script for ch[1435] Arab +script for ch[1436] Zyyy +script for ch[1437] Zyyy +script for ch[1438] Arab +script for ch[1439] Arab +script for ch[1440] Arab +script for ch[1441] Zinh +script for ch[1442] Zinh +script for ch[1443] Arab +script for ch[1444] Zinh +script for ch[1445] Arab +script for ch[1446] Zinh +script for ch[1447] Arab +script for ch[1448] Arab +script for ch[1449] Zinh +script for ch[1450] Zyyy +script for ch[1451] Zyyy +script for ch[1452] Arab +script for ch[1453] Zinh +script for ch[1454] Arab +script for ch[1455] Arab +script for ch[1456] Arab +script for ch[1457] Zinh +script for ch[1458] Zinh +script for ch[1459] Arab +script for ch[1460] Zinh +script for ch[1461] Arab +script for ch[1462] Zinh +script for ch[1463] Arab +script for ch[1464] Arab +script for ch[1465] Zinh +script for ch[1466] Zyyy +script for ch[1467] Zyyy +script for ch[1468] Arab +script for ch[1469] Zinh +script for ch[1470] Arab +script for ch[1471] Zinh +script for ch[1472] Arab +script for ch[1473] Zinh +script for ch[1474] Arab +script for ch[1475] Zinh +script for ch[1476] Arab +script for ch[1477] Zinh +script for ch[1478] Zyyy +script for ch[1479] Zyyy +script for ch[1480] Arab +script for ch[1481] Zinh +script for ch[1482] Arab +script for ch[1483] Zinh +script for ch[1484] Arab +script for ch[1485] Zinh +script for ch[1486] Arab +script for ch[1487] Arab +script for ch[1488] Zinh +script for ch[1489] Zyyy +script for ch[1490] Zyyy +script for ch[1491] Arab +script for ch[1492] Zinh +script for ch[1493] Arab +script for ch[1494] Zinh +script for ch[1495] Arab +script for ch[1496] Zinh +script for ch[1497] Arab +script for ch[1498] Zinh +script for ch[1499] Zyyy +script for ch[1500] Arab +script for ch[1501] Zinh +script for ch[1502] Arab +script for ch[1503] Zinh +script for ch[1504] Zyyy +script for ch[1505] Arab +script for ch[1506] Zinh +script for ch[1507] Arab +script for ch[1508] Zinh +script for ch[1509] Arab +script for ch[1510] Zinh +script for ch[1511] Arab +script for ch[1512] Zinh +script for ch[1513] Zyyy +script for ch[1514] Arab +script for ch[1515] Zinh +script for ch[1516] Arab +script for ch[1517] Zinh +script for ch[1518] Zyyy +script for ch[1519] Arab +script for ch[1520] Zinh +script for ch[1521] Arab +script for ch[1522] Zinh +script for ch[1523] Arab +script for ch[1524] Zinh +script for ch[1525] Arab +script for ch[1526] Zinh +script for ch[1527] Zyyy +script for ch[1528] Arab +script for ch[1529] Zinh +script for ch[1530] Arab +script for ch[1531] Zinh +script for ch[1532] Arab +script for ch[1533] Zinh +script for ch[1534] Zyyy +script for ch[1535] Zyyy +script for ch[1536] Arab +script for ch[1537] Zinh +script for ch[1538] Arab +script for ch[1539] Zinh +script for ch[1540] Arab +script for ch[1541] Arab +script for ch[1542] Zinh +script for ch[1543] Zyyy +script for ch[1544] Zyyy +script for ch[1545] Zyyy +script for ch[1546] Arab +script for ch[1547] Zinh +script for ch[1548] Zyyy +script for ch[1549] Zyyy +script for ch[1550] Arab +script for ch[1551] Arab +script for ch[1552] Zinh +script for ch[1553] Arab +script for ch[1554] Zinh +script for ch[1555] Arab +script for ch[1556] Zinh +script for ch[1557] Arab +script for ch[1558] Arab +script for ch[1559] Zinh +script for ch[1560] Arab +script for ch[1561] Zinh +script for ch[1562] Arab +script for ch[1563] Zinh +script for ch[1564] Zyyy +script for ch[1565] Zyyy +script for ch[1566] Arab +script for ch[1567] Arab +script for ch[1568] Zinh +script for ch[1569] Arab +script for ch[1570] Zinh +script for ch[1571] Arab +script for ch[1572] Zinh +script for ch[1573] Arab +script for ch[1574] Arab +script for ch[1575] Zinh +script for ch[1576] Arab +script for ch[1577] Zinh +script for ch[1578] Arab +script for ch[1579] Zinh +script for ch[1580] Zyyy +script for ch[1581] Arab +script for ch[1582] Zinh +script for ch[1583] Zyyy +script for ch[1584] Zyyy +script for ch[1585] Arab +script for ch[1586] Zinh +script for ch[1587] Arab +script for ch[1588] Zinh +script for ch[1589] Arab +script for ch[1590] Arab +script for ch[1591] Zinh +script for ch[1592] Arab +script for ch[1593] Zinh +script for ch[1594] Zyyy +script for ch[1595] Zyyy +script for ch[1596] Arab +script for ch[1597] Arab +script for ch[1598] Zinh +script for ch[1599] Arab +script for ch[1600] Zinh +script for ch[1601] Arab +script for ch[1602] Zinh +script for ch[1603] Arab +script for ch[1604] Zinh +script for ch[1605] Zyyy +script for ch[1606] Arab +script for ch[1607] Zinh +script for ch[1608] Arab +script for ch[1609] Zinh +script for ch[1610] Arab +script for ch[1611] Arab +script for ch[1612] Zinh +script for ch[1613] Arab +script for ch[1614] Zinh +script for ch[1615] Arab +script for ch[1616] Arab +script for ch[1617] Zyyy +script for ch[1618] Zyyy +script for ch[1619] Arab +script for ch[1620] Zinh +script for ch[1621] Arab +script for ch[1622] Zinh +script for ch[1623] Arab +script for ch[1624] Zinh +script for ch[1625] Arab +script for ch[1626] Zinh +script for ch[1627] Arab +script for ch[1628] Arab +script for ch[1629] Zinh +script for ch[1630] Arab +script for ch[1631] Zinh +script for ch[1632] Zyyy +script for ch[1633] Zyyy +script for ch[1634] Arab +script for ch[1635] Zinh +script for ch[1636] Arab +script for ch[1637] Arab +script for ch[1638] Zinh +script for ch[1639] Arab +script for ch[1640] Zinh +script for ch[1641] Arab +script for ch[1642] Zinh +script for ch[1643] Zyyy +script for ch[1644] Zyyy +script for ch[1645] Arab +script for ch[1646] Zinh +script for ch[1647] Arab +script for ch[1648] Zinh +script for ch[1649] Arab +script for ch[1650] Zinh +script for ch[1651] Zyyy +script for ch[1652] Arab +script for ch[1653] Zinh +script for ch[1654] Arab +script for ch[1655] Arab +script for ch[1656] Zinh +script for ch[1657] Arab +script for ch[1658] Zinh +script for ch[1659] Arab +script for ch[1660] Zinh +script for ch[1661] Zyyy +script for ch[1662] Arab +script for ch[1663] Zinh +script for ch[1664] Arab +script for ch[1665] Zinh +script for ch[1666] Arab +script for ch[1667] Zinh +script for ch[1668] Arab +script for ch[1669] Zinh +script for ch[1670] Arab +script for ch[1671] Zyyy +script for ch[1672] Arab +script for ch[1673] Zinh +script for ch[1674] Arab +script for ch[1675] Zinh +script for ch[1676] Arab +script for ch[1677] Zinh +script for ch[1678] Arab +script for ch[1679] Zinh +script for ch[1680] Arab +script for ch[1681] Zinh +script for ch[1682] Arab +script for ch[1683] Zinh +script for ch[1684] Zyyy +script for ch[1685] Zyyy +script for ch[1686] Arab +script for ch[1687] Zinh +script for ch[1688] Arab +script for ch[1689] Zinh +script for ch[1690] Arab +script for ch[1691] Zinh +script for ch[1692] Arab +script for ch[1693] Arab +script for ch[1694] Zinh +script for ch[1695] Zyyy +script for ch[1696] Zyyy +script for ch[1697] Arab +script for ch[1698] Arab +script for ch[1699] Zinh +script for ch[1700] Arab +script for ch[1701] Zinh +script for ch[1702] Arab +script for ch[1703] Zinh +script for ch[1704] Arab +script for ch[1705] Zinh +script for ch[1706] Zyyy +script for ch[1707] Zyyy +script for ch[1708] Arab +script for ch[1709] Zinh +script for ch[1710] Arab +script for ch[1711] Zinh +script for ch[1712] Zyyy +script for ch[1713] Arab +script for ch[1714] Arab +script for ch[1715] Zinh +script for ch[1716] Arab +script for ch[1717] Zinh +script for ch[1718] Arab +script for ch[1719] Zinh +script for ch[1720] Arab +script for ch[1721] Zinh +script for ch[1722] Arab +script for ch[1723] Zinh +script for ch[1724] Zyyy +script for ch[1725] Zyyy +script for ch[1726] Arab +script for ch[1727] Zinh +script for ch[1728] Arab +script for ch[1729] Zinh +script for ch[1730] Arab +script for ch[1731] Arab +script for ch[1732] Zinh +script for ch[1733] Zyyy +script for ch[1734] Arab +script for ch[1735] Zinh +script for ch[1736] Arab +script for ch[1737] Zinh +script for ch[1738] Arab +script for ch[1739] Zyyy +script for ch[1740] Arab +script for ch[1741] Arab +script for ch[1742] Zinh +script for ch[1743] Arab +script for ch[1744] Zinh +script for ch[1745] Arab +script for ch[1746] Zinh +script for ch[1747] Arab +script for ch[1748] Zinh +script for ch[1749] Zyyy +script for ch[1750] Zyyy +script for ch[1751] Arab +script for ch[1752] Zinh +script for ch[1753] Arab +script for ch[1754] Zinh +script for ch[1755] Zyyy +script for ch[1756] Arab +script for ch[1757] Arab +script for ch[1758] Zinh +script for ch[1759] Arab +script for ch[1760] Zinh +script for ch[1761] Arab +script for ch[1762] Zinh +script for ch[1763] Arab +script for ch[1764] Zinh +script for ch[1765] Arab +script for ch[1766] Zinh +script for ch[1767] Zyyy +script for ch[1768] Arab +script for ch[1769] Arab +script for ch[1770] Zinh +script for ch[1771] Arab +script for ch[1772] Zinh +script for ch[1773] Arab +script for ch[1774] Zinh +script for ch[1775] Arab +script for ch[1776] Zinh +script for ch[1777] Arab +script for ch[1778] Arab +script for ch[1779] Zinh +script for ch[1780] Zyyy +script for ch[1781] Arab +script for ch[1782] Zinh +script for ch[1783] Arab +script for ch[1784] Arab +script for ch[1785] Arab +script for ch[1786] Zinh +script for ch[1787] Zinh +script for ch[1788] Arab +script for ch[1789] Zinh +script for ch[1790] Arab +script for ch[1791] Zinh +script for ch[1792] Arab +script for ch[1793] Zinh +script for ch[1794] Arab +script for ch[1795] Zinh +script for ch[1796] Zyyy +script for ch[1797] Zyyy +script for ch[1798] Arab +script for ch[1799] Zinh +script for ch[1800] Arab +script for ch[1801] Zinh +script for ch[1802] Arab +script for ch[1803] Zinh +script for ch[1804] Zinh +script for ch[1805] Arab +script for ch[1806] Zyyy +script for ch[1807] Arab +script for ch[1808] Arab +script for ch[1809] Zinh +script for ch[1810] Arab +script for ch[1811] Zinh +script for ch[1812] Arab +script for ch[1813] Zinh +script for ch[1814] Arab +script for ch[1815] Zinh +script for ch[1816] Arab +script for ch[1817] Zinh +script for ch[1818] Zyyy +script for ch[1819] Arab +script for ch[1820] Zinh +script for ch[1821] Arab +script for ch[1822] Zinh +script for ch[1823] Arab +script for ch[1824] Zinh +script for ch[1825] Zyyy +script for ch[1826] Arab +script for ch[1827] Arab +script for ch[1828] Zinh +script for ch[1829] Arab +script for ch[1830] Zinh +script for ch[1831] Arab +script for ch[1832] Arab +script for ch[1833] Zinh +script for ch[1834] Arab +script for ch[1835] Zinh +script for ch[1836] Zyyy +script for ch[1837] Arab +script for ch[1838] Zinh +script for ch[1839] Arab +script for ch[1840] Zinh +script for ch[1841] Arab +script for ch[1842] Zinh +script for ch[1843] Zinh +script for ch[1844] Arab +script for ch[1845] Zinh +script for ch[1846] Zyyy +script for ch[1847] Arab +script for ch[1848] Zinh +script for ch[1849] Arab +script for ch[1850] Zinh +script for ch[1851] Arab +script for ch[1852] Zinh +script for ch[1853] Arab +script for ch[1854] Zinh +script for ch[1855] Zyyy +script for ch[1856] Arab +script for ch[1857] Zinh +script for ch[1858] Arab +script for ch[1859] Arab +script for ch[1860] Zinh +script for ch[1861] Arab +script for ch[1862] Zinh +script for ch[1863] Arab +script for ch[1864] Zinh +script for ch[1865] Arab +script for ch[1866] Arab +script for ch[1867] Zinh +script for ch[1868] Zyyy +script for ch[1869] Zyyy +script for ch[1870] Arab +script for ch[1871] Zinh +script for ch[1872] Zyyy +script for ch[1873] Zyyy +script for ch[1874] Arab +script for ch[1875] Zinh +script for ch[1876] Arab +script for ch[1877] Zinh +script for ch[1878] Arab +script for ch[1879] Zinh +script for ch[1880] Zyyy +script for ch[1881] Zyyy +script for ch[1882] Arab +script for ch[1883] Zinh +script for ch[1884] Arab +script for ch[1885] Zinh +script for ch[1886] Arab +script for ch[1887] Zinh +script for ch[1888] Arab +script for ch[1889] Zinh +script for ch[1890] Arab +script for ch[1891] Zyyy +script for ch[1892] Arab +script for ch[1893] Zinh +script for ch[1894] Arab +script for ch[1895] Zinh +script for ch[1896] Arab +script for ch[1897] Zinh +script for ch[1898] Zyyy +script for ch[1899] Arab +script for ch[1900] Zinh +script for ch[1901] Arab +script for ch[1902] Zinh +script for ch[1903] Arab +script for ch[1904] Arab +script for ch[1905] Zinh +script for ch[1906] Zyyy +script for ch[1907] Arab +script for ch[1908] Zinh +script for ch[1909] Arab +script for ch[1910] Zinh +script for ch[1911] Arab +script for ch[1912] Zinh +script for ch[1913] Zyyy +script for ch[1914] Arab +script for ch[1915] Zinh +script for ch[1916] Arab +script for ch[1917] Zinh +script for ch[1918] Arab +script for ch[1919] Zinh +script for ch[1920] Zyyy +script for ch[1921] Arab +script for ch[1922] Arab +script for ch[1923] Zinh +script for ch[1924] Arab +script for ch[1925] Zinh +script for ch[1926] Arab +script for ch[1927] Zinh +script for ch[1928] Arab +script for ch[1929] Zinh +script for ch[1930] Zyyy +script for ch[1931] Arab +script for ch[1932] Zinh +script for ch[1933] Arab +script for ch[1934] Zinh +script for ch[1935] Arab +script for ch[1936] Zyyy +script for ch[1937] Arab +script for ch[1938] Zinh +script for ch[1939] Arab +script for ch[1940] Zinh +script for ch[1941] Arab +script for ch[1942] Arab +script for ch[1943] Zinh +script for ch[1944] Zyyy +script for ch[1945] Arab +script for ch[1946] Zinh +script for ch[1947] Arab +script for ch[1948] Zinh +script for ch[1949] Arab +script for ch[1950] Zinh +script for ch[1951] Zyyy +script for ch[1952] Arab +script for ch[1953] Zinh +script for ch[1954] Arab +script for ch[1955] Zinh +script for ch[1956] Arab +script for ch[1957] Zinh +script for ch[1958] Zyyy +script for ch[1959] Arab +script for ch[1960] Arab +script for ch[1961] Zinh +script for ch[1962] Arab +script for ch[1963] Zinh +script for ch[1964] Arab +script for ch[1965] Zinh +script for ch[1966] Arab +script for ch[1967] Zinh +script for ch[1968] Zyyy +script for ch[1969] Arab +script for ch[1970] Zinh +script for ch[1971] Arab +script for ch[1972] Arab +script for ch[1973] Arab +script for ch[1974] Zinh +script for ch[1975] Zinh +script for ch[1976] Arab +script for ch[1977] Zinh +script for ch[1978] Arab +script for ch[1979] Zinh +script for ch[1980] Arab +script for ch[1981] Arab +script for ch[1982] Zinh +script for ch[1983] Zyyy +script for ch[1984] Zyyy +script for ch[1985] Arab +script for ch[1986] Zinh +script for ch[1987] Arab +script for ch[1988] Zinh +script for ch[1989] Arab +script for ch[1990] Zinh +script for ch[1991] Zyyy +script for ch[1992] Arab +script for ch[1993] Zinh +script for ch[1994] Arab +script for ch[1995] Zinh +script for ch[1996] Arab +script for ch[1997] Zinh +script for ch[1998] Zyyy +script for ch[1999] Arab +script for ch[2000] Zinh +script for ch[2001] Arab +script for ch[2002] Zinh +script for ch[2003] Arab +script for ch[2004] Zinh +script for ch[2005] Zyyy +script for ch[2006] Arab +script for ch[2007] Zinh +script for ch[2008] Arab +script for ch[2009] Zinh +script for ch[2010] Arab +script for ch[2011] Zinh +script for ch[2012] Arab +script for ch[2013] Zinh +script for ch[2014] Arab +script for ch[2015] Zinh +script for ch[2016] Zyyy +script for ch[2017] Arab +script for ch[2018] Arab +script for ch[2019] Zinh +script for ch[2020] Arab +script for ch[2021] Zinh +script for ch[2022] Arab +script for ch[2023] Zyyy +script for ch[2024] Arab +script for ch[2025] Zinh +script for ch[2026] Arab +script for ch[2027] Zinh +script for ch[2028] Arab +script for ch[2029] Zinh +script for ch[2030] Arab +script for ch[2031] Zinh +script for ch[2032] Arab +script for ch[2033] Zinh +script for ch[2034] Arab +script for ch[2035] Zinh +script for ch[2036] Zyyy +script for ch[2037] Arab +script for ch[2038] Zinh +script for ch[2039] Arab +script for ch[2040] Zinh +script for ch[2041] Arab +script for ch[2042] Arab +script for ch[2043] Zinh +script for ch[2044] Zyyy +script for ch[2045] Zyyy +script for ch[2046] Arab +script for ch[2047] Zinh +script for ch[2048] Arab +script for ch[2049] Zinh +script for ch[2050] Arab +script for ch[2051] Zinh +script for ch[2052] Zyyy +script for ch[2053] Arab +script for ch[2054] Zinh +script for ch[2055] Arab +script for ch[2056] Zinh +script for ch[2057] Arab +script for ch[2058] Zinh +script for ch[2059] Zinh +script for ch[2060] Arab +script for ch[2061] Zinh +script for ch[2062] Zyyy +script for ch[2063] Arab +script for ch[2064] Zinh +script for ch[2065] Arab +script for ch[2066] Zinh +script for ch[2067] Arab +script for ch[2068] Zinh +script for ch[2069] Arab +script for ch[2070] Zinh +script for ch[2071] Arab +script for ch[2072] Zinh +script for ch[2073] Zyyy +script for ch[2074] Zyyy +script for ch[2075] Arab +script for ch[2076] Zinh +script for ch[2077] Arab +script for ch[2078] Zinh +script for ch[2079] Arab +script for ch[2080] Zinh +script for ch[2081] Arab +script for ch[2082] Zinh +script for ch[2083] Zyyy +script for ch[2084] Arab +script for ch[2085] Arab +script for ch[2086] Arab +script for ch[2087] Zinh +script for ch[2088] Zinh +script for ch[2089] Arab +script for ch[2090] Arab +script for ch[2091] Zinh +script for ch[2092] Zyyy +script for ch[2093] Zyyy +script for ch[2094] Arab +script for ch[2095] Zinh +script for ch[2096] Arab +script for ch[2097] Zinh +script for ch[2098] Arab +script for ch[2099] Zinh +script for ch[2100] Arab +script for ch[2101] Zyyy +script for ch[2102] Arab +script for ch[2103] Arab +script for ch[2104] Arab +script for ch[2105] Zinh +script for ch[2106] Zinh +script for ch[2107] Arab +script for ch[2108] Zinh +script for ch[2109] Arab +script for ch[2110] Zinh +script for ch[2111] Zyyy +script for ch[2112] Zyyy +script for ch[2113] Arab +script for ch[2114] Zinh +script for ch[2115] Arab +script for ch[2116] Zinh +script for ch[2117] Arab +script for ch[2118] Zinh +script for ch[2119] Zyyy +script for ch[2120] Arab +script for ch[2121] Zinh +script for ch[2122] Arab +script for ch[2123] Zinh +script for ch[2124] Arab +script for ch[2125] Zinh +script for ch[2126] Zyyy +script for ch[2127] Zyyy +script for ch[2128] Arab +script for ch[2129] Zinh +script for ch[2130] Arab +script for ch[2131] Zinh +script for ch[2132] Zyyy +script for ch[2133] Arab +script for ch[2134] Zinh +script for ch[2135] Arab +script for ch[2136] Zinh +script for ch[2137] Arab +script for ch[2138] Zinh +script for ch[2139] Zyyy +script for ch[2140] Arab +script for ch[2141] Arab +script for ch[2142] Zinh +script for ch[2143] Arab +script for ch[2144] Zinh +script for ch[2145] Arab +script for ch[2146] Zinh +script for ch[2147] Zinh +script for ch[2148] Arab +script for ch[2149] Zinh +script for ch[2150] Zyyy +script for ch[2151] Arab +script for ch[2152] Zinh +script for ch[2153] Arab +script for ch[2154] Arab +script for ch[2155] Arab +script for ch[2156] Zinh +script for ch[2157] Zinh +script for ch[2158] Arab +script for ch[2159] Zinh +script for ch[2160] Arab +script for ch[2161] Arab +script for ch[2162] Zinh +script for ch[2163] Zyyy + +After script detection: +script for ch[0] Zyyy +script for ch[1] Arab +script for ch[2] Arab +script for ch[3] Arab +script for ch[4] Arab +script for ch[5] Arab +script for ch[6] Arab +script for ch[7] Arab +script for ch[8] Arab +script for ch[9] Arab +script for ch[10] Arab +script for ch[11] Arab +script for ch[12] Arab +script for ch[13] Arab +script for ch[14] Arab +script for ch[15] Arab +script for ch[16] Arab +script for ch[17] Arab +script for ch[18] Arab +script for ch[19] Arab +script for ch[20] Arab +script for ch[21] Arab +script for ch[22] Arab +script for ch[23] Arab +script for ch[24] Arab +script for ch[25] Arab +script for ch[26] Arab +script for ch[27] Arab +script for ch[28] Arab +script for ch[29] Arab +script for ch[30] Arab +script for ch[31] Arab +script for ch[32] Arab +script for ch[33] Arab +script for ch[34] Arab +script for ch[35] Arab +script for ch[36] Arab +script for ch[37] Arab +script for ch[38] Arab +script for ch[39] Arab +script for ch[40] Arab +script for ch[41] Arab +script for ch[42] Arab +script for ch[43] Arab +script for ch[44] Arab +script for ch[45] Arab +script for ch[46] Arab +script for ch[47] Arab +script for ch[48] Arab +script for ch[49] Arab +script for ch[50] Arab +script for ch[51] Arab +script for ch[52] Arab +script for ch[53] Arab +script for ch[54] Arab +script for ch[55] Arab +script for ch[56] Arab +script for ch[57] Arab +script for ch[58] Arab +script for ch[59] Arab +script for ch[60] Arab +script for ch[61] Arab +script for ch[62] Arab +script for ch[63] Arab +script for ch[64] Arab +script for ch[65] Arab +script for ch[66] Arab +script for ch[67] Arab +script for ch[68] Arab +script for ch[69] Arab +script for ch[70] Arab +script for ch[71] Arab +script for ch[72] Arab +script for ch[73] Arab +script for ch[74] Arab +script for ch[75] Arab +script for ch[76] Arab +script for ch[77] Arab +script for ch[78] Arab +script for ch[79] Arab +script for ch[80] Arab +script for ch[81] Arab +script for ch[82] Arab +script for ch[83] Arab +script for ch[84] Arab +script for ch[85] Arab +script for ch[86] Arab +script for ch[87] Arab +script for ch[88] Arab +script for ch[89] Arab +script for ch[90] Arab +script for ch[91] Arab +script for ch[92] Arab +script for ch[93] Arab +script for ch[94] Arab +script for ch[95] Arab +script for ch[96] Arab +script for ch[97] Arab +script for ch[98] Arab +script for ch[99] Arab +script for ch[100] Arab +script for ch[101] Arab +script for ch[102] Arab +script for ch[103] Arab +script for ch[104] Arab +script for ch[105] Arab +script for ch[106] Arab +script for ch[107] Arab +script for ch[108] Arab +script for ch[109] Arab +script for ch[110] Arab +script for ch[111] Arab +script for ch[112] Arab +script for ch[113] Arab +script for ch[114] Arab +script for ch[115] Arab +script for ch[116] Arab +script for ch[117] Arab +script for ch[118] Arab +script for ch[119] Arab +script for ch[120] Arab +script for ch[121] Arab +script for ch[122] Arab +script for ch[123] Arab +script for ch[124] Arab +script for ch[125] Arab +script for ch[126] Arab +script for ch[127] Arab +script for ch[128] Arab +script for ch[129] Arab +script for ch[130] Arab +script for ch[131] Arab +script for ch[132] Arab +script for ch[133] Arab +script for ch[134] Arab +script for ch[135] Arab +script for ch[136] Arab +script for ch[137] Arab +script for ch[138] Arab +script for ch[139] Arab +script for ch[140] Arab +script for ch[141] Arab +script for ch[142] Arab +script for ch[143] Arab +script for ch[144] Arab +script for ch[145] Arab +script for ch[146] Arab +script for ch[147] Arab +script for ch[148] Arab +script for ch[149] Arab +script for ch[150] Arab +script for ch[151] Arab +script for ch[152] Arab +script for ch[153] Arab +script for ch[154] Arab +script for ch[155] Arab +script for ch[156] Arab +script for ch[157] Arab +script for ch[158] Arab +script for ch[159] Arab +script for ch[160] Arab +script for ch[161] Arab +script for ch[162] Arab +script for ch[163] Arab +script for ch[164] Arab +script for ch[165] Arab +script for ch[166] Arab +script for ch[167] Arab +script for ch[168] Arab +script for ch[169] Arab +script for ch[170] Arab +script for ch[171] Arab +script for ch[172] Arab +script for ch[173] Arab +script for ch[174] Arab +script for ch[175] Arab +script for ch[176] Arab +script for ch[177] Arab +script for ch[178] Arab +script for ch[179] Arab +script for ch[180] Arab +script for ch[181] Arab +script for ch[182] Arab +script for ch[183] Arab +script for ch[184] Arab +script for ch[185] Arab +script for ch[186] Arab +script for ch[187] Arab +script for ch[188] Arab +script for ch[189] Arab +script for ch[190] Arab +script for ch[191] Arab +script for ch[192] Arab +script for ch[193] Arab +script for ch[194] Arab +script for ch[195] Arab +script for ch[196] Arab +script for ch[197] Arab +script for ch[198] Arab +script for ch[199] Arab +script for ch[200] Arab +script for ch[201] Arab +script for ch[202] Arab +script for ch[203] Arab +script for ch[204] Arab +script for ch[205] Arab +script for ch[206] Arab +script for ch[207] Arab +script for ch[208] Arab +script for ch[209] Arab +script for ch[210] Arab +script for ch[211] Arab +script for ch[212] Arab +script for ch[213] Arab +script for ch[214] Arab +script for ch[215] Arab +script for ch[216] Arab +script for ch[217] Arab +script for ch[218] Arab +script for ch[219] Arab +script for ch[220] Arab +script for ch[221] Arab +script for ch[222] Arab +script for ch[223] Arab +script for ch[224] Arab +script for ch[225] Arab +script for ch[226] Arab +script for ch[227] Arab +script for ch[228] Arab +script for ch[229] Arab +script for ch[230] Arab +script for ch[231] Arab +script for ch[232] Arab +script for ch[233] Arab +script for ch[234] Arab +script for ch[235] Arab +script for ch[236] Arab +script for ch[237] Arab +script for ch[238] Arab +script for ch[239] Arab +script for ch[240] Arab +script for ch[241] Arab +script for ch[242] Arab +script for ch[243] Arab +script for ch[244] Arab +script for ch[245] Arab +script for ch[246] Arab +script for ch[247] Arab +script for ch[248] Arab +script for ch[249] Arab +script for ch[250] Arab +script for ch[251] Arab +script for ch[252] Arab +script for ch[253] Arab +script for ch[254] Arab +script for ch[255] Arab +script for ch[256] Arab +script for ch[257] Arab +script for ch[258] Arab +script for ch[259] Arab +script for ch[260] Arab +script for ch[261] Arab +script for ch[262] Arab +script for ch[263] Arab +script for ch[264] Arab +script for ch[265] Arab +script for ch[266] Arab +script for ch[267] Arab +script for ch[268] Arab +script for ch[269] Arab +script for ch[270] Arab +script for ch[271] Arab +script for ch[272] Arab +script for ch[273] Arab +script for ch[274] Arab +script for ch[275] Arab +script for ch[276] Arab +script for ch[277] Arab +script for ch[278] Arab +script for ch[279] Arab +script for ch[280] Arab +script for ch[281] Arab +script for ch[282] Arab +script for ch[283] Arab +script for ch[284] Arab +script for ch[285] Arab +script for ch[286] Arab +script for ch[287] Arab +script for ch[288] Arab +script for ch[289] Arab +script for ch[290] Arab +script for ch[291] Arab +script for ch[292] Arab +script for ch[293] Arab +script for ch[294] Arab +script for ch[295] Arab +script for ch[296] Arab +script for ch[297] Arab +script for ch[298] Arab +script for ch[299] Arab +script for ch[300] Arab +script for ch[301] Arab +script for ch[302] Arab +script for ch[303] Arab +script for ch[304] Arab +script for ch[305] Arab +script for ch[306] Arab +script for ch[307] Arab +script for ch[308] Arab +script for ch[309] Arab +script for ch[310] Arab +script for ch[311] Arab +script for ch[312] Arab +script for ch[313] Arab +script for ch[314] Arab +script for ch[315] Arab +script for ch[316] Arab +script for ch[317] Arab +script for ch[318] Arab +script for ch[319] Arab +script for ch[320] Arab +script for ch[321] Arab +script for ch[322] Arab +script for ch[323] Arab +script for ch[324] Arab +script for ch[325] Arab +script for ch[326] Arab +script for ch[327] Arab +script for ch[328] Arab +script for ch[329] Arab +script for ch[330] Arab +script for ch[331] Arab +script for ch[332] Arab +script for ch[333] Arab +script for ch[334] Arab +script for ch[335] Arab +script for ch[336] Arab +script for ch[337] Arab +script for ch[338] Arab +script for ch[339] Arab +script for ch[340] Arab +script for ch[341] Arab +script for ch[342] Arab +script for ch[343] Arab +script for ch[344] Arab +script for ch[345] Arab +script for ch[346] Arab +script for ch[347] Arab +script for ch[348] Arab +script for ch[349] Arab +script for ch[350] Arab +script for ch[351] Arab +script for ch[352] Arab +script for ch[353] Arab +script for ch[354] Arab +script for ch[355] Arab +script for ch[356] Arab +script for ch[357] Arab +script for ch[358] Arab +script for ch[359] Arab +script for ch[360] Arab +script for ch[361] Arab +script for ch[362] Arab +script for ch[363] Arab +script for ch[364] Arab +script for ch[365] Arab +script for ch[366] Arab +script for ch[367] Arab +script for ch[368] Arab +script for ch[369] Arab +script for ch[370] Arab +script for ch[371] Arab +script for ch[372] Arab +script for ch[373] Arab +script for ch[374] Arab +script for ch[375] Arab +script for ch[376] Arab +script for ch[377] Arab +script for ch[378] Arab +script for ch[379] Arab +script for ch[380] Arab +script for ch[381] Arab +script for ch[382] Arab +script for ch[383] Arab +script for ch[384] Arab +script for ch[385] Arab +script for ch[386] Arab +script for ch[387] Arab +script for ch[388] Arab +script for ch[389] Arab +script for ch[390] Arab +script for ch[391] Arab +script for ch[392] Arab +script for ch[393] Arab +script for ch[394] Arab +script for ch[395] Arab +script for ch[396] Arab +script for ch[397] Arab +script for ch[398] Arab +script for ch[399] Arab +script for ch[400] Arab +script for ch[401] Arab +script for ch[402] Arab +script for ch[403] Arab +script for ch[404] Arab +script for ch[405] Arab +script for ch[406] Arab +script for ch[407] Arab +script for ch[408] Arab +script for ch[409] Arab +script for ch[410] Arab +script for ch[411] Arab +script for ch[412] Arab +script for ch[413] Arab +script for ch[414] Arab +script for ch[415] Arab +script for ch[416] Arab +script for ch[417] Arab +script for ch[418] Arab +script for ch[419] Arab +script for ch[420] Arab +script for ch[421] Arab +script for ch[422] Arab +script for ch[423] Arab +script for ch[424] Arab +script for ch[425] Arab +script for ch[426] Arab +script for ch[427] Arab +script for ch[428] Arab +script for ch[429] Arab +script for ch[430] Arab +script for ch[431] Arab +script for ch[432] Arab +script for ch[433] Arab +script for ch[434] Arab +script for ch[435] Arab +script for ch[436] Arab +script for ch[437] Arab +script for ch[438] Arab +script for ch[439] Arab +script for ch[440] Arab +script for ch[441] Arab +script for ch[442] Arab +script for ch[443] Arab +script for ch[444] Arab +script for ch[445] Arab +script for ch[446] Arab +script for ch[447] Arab +script for ch[448] Arab +script for ch[449] Arab +script for ch[450] Arab +script for ch[451] Arab +script for ch[452] Arab +script for ch[453] Arab +script for ch[454] Arab +script for ch[455] Arab +script for ch[456] Arab +script for ch[457] Arab +script for ch[458] Arab +script for ch[459] Arab +script for ch[460] Arab +script for ch[461] Arab +script for ch[462] Arab +script for ch[463] Arab +script for ch[464] Arab +script for ch[465] Arab +script for ch[466] Arab +script for ch[467] Arab +script for ch[468] Arab +script for ch[469] Arab +script for ch[470] Arab +script for ch[471] Arab +script for ch[472] Arab +script for ch[473] Arab +script for ch[474] Arab +script for ch[475] Arab +script for ch[476] Arab +script for ch[477] Arab +script for ch[478] Arab +script for ch[479] Arab +script for ch[480] Arab +script for ch[481] Arab +script for ch[482] Arab +script for ch[483] Arab +script for ch[484] Arab +script for ch[485] Arab +script for ch[486] Arab +script for ch[487] Arab +script for ch[488] Arab +script for ch[489] Arab +script for ch[490] Arab +script for ch[491] Arab +script for ch[492] Arab +script for ch[493] Arab +script for ch[494] Arab +script for ch[495] Arab +script for ch[496] Arab +script for ch[497] Arab +script for ch[498] Arab +script for ch[499] Arab +script for ch[500] Arab +script for ch[501] Arab +script for ch[502] Arab +script for ch[503] Arab +script for ch[504] Arab +script for ch[505] Arab +script for ch[506] Arab +script for ch[507] Arab +script for ch[508] Arab +script for ch[509] Arab +script for ch[510] Arab +script for ch[511] Arab +script for ch[512] Arab +script for ch[513] Arab +script for ch[514] Arab +script for ch[515] Arab +script for ch[516] Arab +script for ch[517] Arab +script for ch[518] Arab +script for ch[519] Arab +script for ch[520] Arab +script for ch[521] Arab +script for ch[522] Arab +script for ch[523] Arab +script for ch[524] Arab +script for ch[525] Arab +script for ch[526] Arab +script for ch[527] Arab +script for ch[528] Arab +script for ch[529] Arab +script for ch[530] Arab +script for ch[531] Arab +script for ch[532] Arab +script for ch[533] Arab +script for ch[534] Arab +script for ch[535] Arab +script for ch[536] Arab +script for ch[537] Arab +script for ch[538] Arab +script for ch[539] Arab +script for ch[540] Arab +script for ch[541] Arab +script for ch[542] Arab +script for ch[543] Arab +script for ch[544] Arab +script for ch[545] Arab +script for ch[546] Arab +script for ch[547] Arab +script for ch[548] Arab +script for ch[549] Arab +script for ch[550] Arab +script for ch[551] Arab +script for ch[552] Arab +script for ch[553] Arab +script for ch[554] Arab +script for ch[555] Arab +script for ch[556] Arab +script for ch[557] Arab +script for ch[558] Arab +script for ch[559] Arab +script for ch[560] Arab +script for ch[561] Arab +script for ch[562] Arab +script for ch[563] Arab +script for ch[564] Arab +script for ch[565] Arab +script for ch[566] Arab +script for ch[567] Arab +script for ch[568] Arab +script for ch[569] Arab +script for ch[570] Arab +script for ch[571] Arab +script for ch[572] Arab +script for ch[573] Arab +script for ch[574] Arab +script for ch[575] Arab +script for ch[576] Arab +script for ch[577] Arab +script for ch[578] Arab +script for ch[579] Arab +script for ch[580] Arab +script for ch[581] Arab +script for ch[582] Arab +script for ch[583] Arab +script for ch[584] Arab +script for ch[585] Arab +script for ch[586] Arab +script for ch[587] Arab +script for ch[588] Arab +script for ch[589] Arab +script for ch[590] Arab +script for ch[591] Arab +script for ch[592] Arab +script for ch[593] Arab +script for ch[594] Arab +script for ch[595] Arab +script for ch[596] Arab +script for ch[597] Arab +script for ch[598] Arab +script for ch[599] Arab +script for ch[600] Arab +script for ch[601] Arab +script for ch[602] Arab +script for ch[603] Arab +script for ch[604] Arab +script for ch[605] Arab +script for ch[606] Arab +script for ch[607] Arab +script for ch[608] Arab +script for ch[609] Arab +script for ch[610] Arab +script for ch[611] Arab +script for ch[612] Arab +script for ch[613] Arab +script for ch[614] Arab +script for ch[615] Arab +script for ch[616] Arab +script for ch[617] Arab +script for ch[618] Arab +script for ch[619] Arab +script for ch[620] Arab +script for ch[621] Arab +script for ch[622] Arab +script for ch[623] Arab +script for ch[624] Arab +script for ch[625] Arab +script for ch[626] Arab +script for ch[627] Arab +script for ch[628] Arab +script for ch[629] Arab +script for ch[630] Arab +script for ch[631] Arab +script for ch[632] Arab +script for ch[633] Arab +script for ch[634] Arab +script for ch[635] Arab +script for ch[636] Arab +script for ch[637] Arab +script for ch[638] Arab +script for ch[639] Arab +script for ch[640] Arab +script for ch[641] Arab +script for ch[642] Arab +script for ch[643] Arab +script for ch[644] Arab +script for ch[645] Arab +script for ch[646] Arab +script for ch[647] Arab +script for ch[648] Arab +script for ch[649] Arab +script for ch[650] Arab +script for ch[651] Arab +script for ch[652] Arab +script for ch[653] Arab +script for ch[654] Arab +script for ch[655] Arab +script for ch[656] Arab +script for ch[657] Arab +script for ch[658] Arab +script for ch[659] Arab +script for ch[660] Arab +script for ch[661] Arab +script for ch[662] Arab +script for ch[663] Arab +script for ch[664] Arab +script for ch[665] Arab +script for ch[666] Arab +script for ch[667] Arab +script for ch[668] Arab +script for ch[669] Arab +script for ch[670] Arab +script for ch[671] Arab +script for ch[672] Arab +script for ch[673] Arab +script for ch[674] Arab +script for ch[675] Arab +script for ch[676] Arab +script for ch[677] Arab +script for ch[678] Arab +script for ch[679] Arab +script for ch[680] Arab +script for ch[681] Arab +script for ch[682] Arab +script for ch[683] Arab +script for ch[684] Arab +script for ch[685] Arab +script for ch[686] Arab +script for ch[687] Arab +script for ch[688] Arab +script for ch[689] Arab +script for ch[690] Arab +script for ch[691] Arab +script for ch[692] Arab +script for ch[693] Arab +script for ch[694] Arab +script for ch[695] Arab +script for ch[696] Arab +script for ch[697] Arab +script for ch[698] Arab +script for ch[699] Arab +script for ch[700] Arab +script for ch[701] Arab +script for ch[702] Arab +script for ch[703] Arab +script for ch[704] Arab +script for ch[705] Arab +script for ch[706] Arab +script for ch[707] Arab +script for ch[708] Arab +script for ch[709] Arab +script for ch[710] Arab +script for ch[711] Arab +script for ch[712] Arab +script for ch[713] Arab +script for ch[714] Arab +script for ch[715] Arab +script for ch[716] Arab +script for ch[717] Arab +script for ch[718] Arab +script for ch[719] Arab +script for ch[720] Arab +script for ch[721] Arab +script for ch[722] Arab +script for ch[723] Arab +script for ch[724] Arab +script for ch[725] Arab +script for ch[726] Arab +script for ch[727] Arab +script for ch[728] Arab +script for ch[729] Arab +script for ch[730] Arab +script for ch[731] Arab +script for ch[732] Arab +script for ch[733] Arab +script for ch[734] Arab +script for ch[735] Arab +script for ch[736] Arab +script for ch[737] Arab +script for ch[738] Arab +script for ch[739] Arab +script for ch[740] Arab +script for ch[741] Arab +script for ch[742] Arab +script for ch[743] Arab +script for ch[744] Arab +script for ch[745] Arab +script for ch[746] Arab +script for ch[747] Arab +script for ch[748] Arab +script for ch[749] Arab +script for ch[750] Arab +script for ch[751] Arab +script for ch[752] Arab +script for ch[753] Arab +script for ch[754] Arab +script for ch[755] Arab +script for ch[756] Arab +script for ch[757] Arab +script for ch[758] Arab +script for ch[759] Arab +script for ch[760] Arab +script for ch[761] Arab +script for ch[762] Arab +script for ch[763] Arab +script for ch[764] Arab +script for ch[765] Arab +script for ch[766] Arab +script for ch[767] Arab +script for ch[768] Arab +script for ch[769] Arab +script for ch[770] Arab +script for ch[771] Arab +script for ch[772] Arab +script for ch[773] Arab +script for ch[774] Arab +script for ch[775] Arab +script for ch[776] Arab +script for ch[777] Arab +script for ch[778] Arab +script for ch[779] Arab +script for ch[780] Arab +script for ch[781] Arab +script for ch[782] Arab +script for ch[783] Arab +script for ch[784] Arab +script for ch[785] Arab +script for ch[786] Arab +script for ch[787] Arab +script for ch[788] Arab +script for ch[789] Arab +script for ch[790] Arab +script for ch[791] Arab +script for ch[792] Arab +script for ch[793] Arab +script for ch[794] Arab +script for ch[795] Arab +script for ch[796] Arab +script for ch[797] Arab +script for ch[798] Arab +script for ch[799] Arab +script for ch[800] Arab +script for ch[801] Arab +script for ch[802] Arab +script for ch[803] Arab +script for ch[804] Arab +script for ch[805] Arab +script for ch[806] Arab +script for ch[807] Arab +script for ch[808] Arab +script for ch[809] Arab +script for ch[810] Arab +script for ch[811] Arab +script for ch[812] Arab +script for ch[813] Arab +script for ch[814] Arab +script for ch[815] Arab +script for ch[816] Arab +script for ch[817] Arab +script for ch[818] Arab +script for ch[819] Arab +script for ch[820] Arab +script for ch[821] Arab +script for ch[822] Arab +script for ch[823] Arab +script for ch[824] Arab +script for ch[825] Arab +script for ch[826] Arab +script for ch[827] Arab +script for ch[828] Arab +script for ch[829] Arab +script for ch[830] Arab +script for ch[831] Arab +script for ch[832] Arab +script for ch[833] Arab +script for ch[834] Arab +script for ch[835] Arab +script for ch[836] Arab +script for ch[837] Arab +script for ch[838] Arab +script for ch[839] Arab +script for ch[840] Arab +script for ch[841] Arab +script for ch[842] Arab +script for ch[843] Arab +script for ch[844] Arab +script for ch[845] Arab +script for ch[846] Arab +script for ch[847] Arab +script for ch[848] Arab +script for ch[849] Arab +script for ch[850] Arab +script for ch[851] Arab +script for ch[852] Arab +script for ch[853] Arab +script for ch[854] Arab +script for ch[855] Arab +script for ch[856] Arab +script for ch[857] Arab +script for ch[858] Arab +script for ch[859] Arab +script for ch[860] Arab +script for ch[861] Arab +script for ch[862] Arab +script for ch[863] Arab +script for ch[864] Arab +script for ch[865] Arab +script for ch[866] Arab +script for ch[867] Arab +script for ch[868] Arab +script for ch[869] Arab +script for ch[870] Arab +script for ch[871] Arab +script for ch[872] Arab +script for ch[873] Arab +script for ch[874] Arab +script for ch[875] Arab +script for ch[876] Arab +script for ch[877] Arab +script for ch[878] Arab +script for ch[879] Arab +script for ch[880] Arab +script for ch[881] Arab +script for ch[882] Arab +script for ch[883] Arab +script for ch[884] Arab +script for ch[885] Arab +script for ch[886] Arab +script for ch[887] Arab +script for ch[888] Arab +script for ch[889] Arab +script for ch[890] Arab +script for ch[891] Arab +script for ch[892] Arab +script for ch[893] Arab +script for ch[894] Arab +script for ch[895] Arab +script for ch[896] Arab +script for ch[897] Arab +script for ch[898] Arab +script for ch[899] Arab +script for ch[900] Arab +script for ch[901] Arab +script for ch[902] Arab +script for ch[903] Arab +script for ch[904] Arab +script for ch[905] Arab +script for ch[906] Arab +script for ch[907] Arab +script for ch[908] Arab +script for ch[909] Arab +script for ch[910] Arab +script for ch[911] Arab +script for ch[912] Arab +script for ch[913] Arab +script for ch[914] Arab +script for ch[915] Arab +script for ch[916] Arab +script for ch[917] Arab +script for ch[918] Arab +script for ch[919] Arab +script for ch[920] Arab +script for ch[921] Arab +script for ch[922] Arab +script for ch[923] Arab +script for ch[924] Arab +script for ch[925] Arab +script for ch[926] Arab +script for ch[927] Arab +script for ch[928] Arab +script for ch[929] Arab +script for ch[930] Arab +script for ch[931] Arab +script for ch[932] Arab +script for ch[933] Arab +script for ch[934] Arab +script for ch[935] Arab +script for ch[936] Arab +script for ch[937] Arab +script for ch[938] Arab +script for ch[939] Arab +script for ch[940] Arab +script for ch[941] Arab +script for ch[942] Arab +script for ch[943] Arab +script for ch[944] Arab +script for ch[945] Arab +script for ch[946] Arab +script for ch[947] Arab +script for ch[948] Arab +script for ch[949] Arab +script for ch[950] Arab +script for ch[951] Arab +script for ch[952] Arab +script for ch[953] Arab +script for ch[954] Arab +script for ch[955] Arab +script for ch[956] Arab +script for ch[957] Arab +script for ch[958] Arab +script for ch[959] Arab +script for ch[960] Arab +script for ch[961] Arab +script for ch[962] Arab +script for ch[963] Arab +script for ch[964] Arab +script for ch[965] Arab +script for ch[966] Arab +script for ch[967] Arab +script for ch[968] Arab +script for ch[969] Arab +script for ch[970] Arab +script for ch[971] Arab +script for ch[972] Arab +script for ch[973] Arab +script for ch[974] Arab +script for ch[975] Arab +script for ch[976] Arab +script for ch[977] Arab +script for ch[978] Arab +script for ch[979] Arab +script for ch[980] Arab +script for ch[981] Arab +script for ch[982] Arab +script for ch[983] Arab +script for ch[984] Arab +script for ch[985] Arab +script for ch[986] Arab +script for ch[987] Arab +script for ch[988] Arab +script for ch[989] Arab +script for ch[990] Arab +script for ch[991] Arab +script for ch[992] Arab +script for ch[993] Arab +script for ch[994] Arab +script for ch[995] Arab +script for ch[996] Arab +script for ch[997] Arab +script for ch[998] Arab +script for ch[999] Arab +script for ch[1000] Arab +script for ch[1001] Arab +script for ch[1002] Arab +script for ch[1003] Arab +script for ch[1004] Arab +script for ch[1005] Arab +script for ch[1006] Arab +script for ch[1007] Arab +script for ch[1008] Arab +script for ch[1009] Arab +script for ch[1010] Arab +script for ch[1011] Arab +script for ch[1012] Arab +script for ch[1013] Arab +script for ch[1014] Arab +script for ch[1015] Arab +script for ch[1016] Arab +script for ch[1017] Arab +script for ch[1018] Arab +script for ch[1019] Arab +script for ch[1020] Arab +script for ch[1021] Arab +script for ch[1022] Arab +script for ch[1023] Arab +script for ch[1024] Arab +script for ch[1025] Arab +script for ch[1026] Arab +script for ch[1027] Arab +script for ch[1028] Arab +script for ch[1029] Arab +script for ch[1030] Arab +script for ch[1031] Arab +script for ch[1032] Arab +script for ch[1033] Arab +script for ch[1034] Arab +script for ch[1035] Arab +script for ch[1036] Arab +script for ch[1037] Arab +script for ch[1038] Arab +script for ch[1039] Arab +script for ch[1040] Arab +script for ch[1041] Arab +script for ch[1042] Arab +script for ch[1043] Arab +script for ch[1044] Arab +script for ch[1045] Arab +script for ch[1046] Arab +script for ch[1047] Arab +script for ch[1048] Arab +script for ch[1049] Arab +script for ch[1050] Arab +script for ch[1051] Arab +script for ch[1052] Arab +script for ch[1053] Arab +script for ch[1054] Arab +script for ch[1055] Arab +script for ch[1056] Arab +script for ch[1057] Arab +script for ch[1058] Arab +script for ch[1059] Arab +script for ch[1060] Arab +script for ch[1061] Arab +script for ch[1062] Arab +script for ch[1063] Arab +script for ch[1064] Arab +script for ch[1065] Arab +script for ch[1066] Arab +script for ch[1067] Arab +script for ch[1068] Arab +script for ch[1069] Arab +script for ch[1070] Arab +script for ch[1071] Arab +script for ch[1072] Arab +script for ch[1073] Arab +script for ch[1074] Arab +script for ch[1075] Arab +script for ch[1076] Arab +script for ch[1077] Arab +script for ch[1078] Arab +script for ch[1079] Arab +script for ch[1080] Arab +script for ch[1081] Arab +script for ch[1082] Arab +script for ch[1083] Arab +script for ch[1084] Arab +script for ch[1085] Arab +script for ch[1086] Arab +script for ch[1087] Arab +script for ch[1088] Arab +script for ch[1089] Arab +script for ch[1090] Arab +script for ch[1091] Arab +script for ch[1092] Arab +script for ch[1093] Arab +script for ch[1094] Arab +script for ch[1095] Arab +script for ch[1096] Arab +script for ch[1097] Arab +script for ch[1098] Arab +script for ch[1099] Arab +script for ch[1100] Arab +script for ch[1101] Arab +script for ch[1102] Arab +script for ch[1103] Arab +script for ch[1104] Arab +script for ch[1105] Arab +script for ch[1106] Arab +script for ch[1107] Arab +script for ch[1108] Arab +script for ch[1109] Arab +script for ch[1110] Arab +script for ch[1111] Arab +script for ch[1112] Arab +script for ch[1113] Arab +script for ch[1114] Arab +script for ch[1115] Arab +script for ch[1116] Arab +script for ch[1117] Arab +script for ch[1118] Arab +script for ch[1119] Arab +script for ch[1120] Arab +script for ch[1121] Arab +script for ch[1122] Arab +script for ch[1123] Arab +script for ch[1124] Arab +script for ch[1125] Arab +script for ch[1126] Arab +script for ch[1127] Arab +script for ch[1128] Arab +script for ch[1129] Arab +script for ch[1130] Arab +script for ch[1131] Arab +script for ch[1132] Arab +script for ch[1133] Arab +script for ch[1134] Arab +script for ch[1135] Arab +script for ch[1136] Arab +script for ch[1137] Arab +script for ch[1138] Arab +script for ch[1139] Arab +script for ch[1140] Arab +script for ch[1141] Arab +script for ch[1142] Arab +script for ch[1143] Arab +script for ch[1144] Arab +script for ch[1145] Arab +script for ch[1146] Arab +script for ch[1147] Arab +script for ch[1148] Arab +script for ch[1149] Arab +script for ch[1150] Arab +script for ch[1151] Arab +script for ch[1152] Arab +script for ch[1153] Arab +script for ch[1154] Arab +script for ch[1155] Arab +script for ch[1156] Arab +script for ch[1157] Arab +script for ch[1158] Arab +script for ch[1159] Arab +script for ch[1160] Arab +script for ch[1161] Arab +script for ch[1162] Arab +script for ch[1163] Arab +script for ch[1164] Arab +script for ch[1165] Arab +script for ch[1166] Arab +script for ch[1167] Arab +script for ch[1168] Arab +script for ch[1169] Arab +script for ch[1170] Arab +script for ch[1171] Arab +script for ch[1172] Arab +script for ch[1173] Arab +script for ch[1174] Arab +script for ch[1175] Arab +script for ch[1176] Arab +script for ch[1177] Arab +script for ch[1178] Arab +script for ch[1179] Arab +script for ch[1180] Arab +script for ch[1181] Arab +script for ch[1182] Arab +script for ch[1183] Arab +script for ch[1184] Arab +script for ch[1185] Arab +script for ch[1186] Arab +script for ch[1187] Arab +script for ch[1188] Arab +script for ch[1189] Arab +script for ch[1190] Arab +script for ch[1191] Arab +script for ch[1192] Arab +script for ch[1193] Arab +script for ch[1194] Arab +script for ch[1195] Arab +script for ch[1196] Arab +script for ch[1197] Arab +script for ch[1198] Arab +script for ch[1199] Arab +script for ch[1200] Arab +script for ch[1201] Arab +script for ch[1202] Arab +script for ch[1203] Arab +script for ch[1204] Arab +script for ch[1205] Arab +script for ch[1206] Arab +script for ch[1207] Arab +script for ch[1208] Arab +script for ch[1209] Arab +script for ch[1210] Arab +script for ch[1211] Arab +script for ch[1212] Arab +script for ch[1213] Arab +script for ch[1214] Arab +script for ch[1215] Arab +script for ch[1216] Arab +script for ch[1217] Arab +script for ch[1218] Arab +script for ch[1219] Arab +script for ch[1220] Arab +script for ch[1221] Arab +script for ch[1222] Arab +script for ch[1223] Arab +script for ch[1224] Arab +script for ch[1225] Arab +script for ch[1226] Arab +script for ch[1227] Arab +script for ch[1228] Arab +script for ch[1229] Arab +script for ch[1230] Arab +script for ch[1231] Arab +script for ch[1232] Arab +script for ch[1233] Arab +script for ch[1234] Arab +script for ch[1235] Arab +script for ch[1236] Arab +script for ch[1237] Arab +script for ch[1238] Arab +script for ch[1239] Arab +script for ch[1240] Arab +script for ch[1241] Arab +script for ch[1242] Arab +script for ch[1243] Arab +script for ch[1244] Arab +script for ch[1245] Arab +script for ch[1246] Arab +script for ch[1247] Arab +script for ch[1248] Arab +script for ch[1249] Arab +script for ch[1250] Arab +script for ch[1251] Arab +script for ch[1252] Arab +script for ch[1253] Arab +script for ch[1254] Arab +script for ch[1255] Arab +script for ch[1256] Arab +script for ch[1257] Arab +script for ch[1258] Arab +script for ch[1259] Arab +script for ch[1260] Arab +script for ch[1261] Arab +script for ch[1262] Arab +script for ch[1263] Arab +script for ch[1264] Arab +script for ch[1265] Arab +script for ch[1266] Arab +script for ch[1267] Arab +script for ch[1268] Arab +script for ch[1269] Arab +script for ch[1270] Arab +script for ch[1271] Arab +script for ch[1272] Arab +script for ch[1273] Arab +script for ch[1274] Arab +script for ch[1275] Arab +script for ch[1276] Arab +script for ch[1277] Arab +script for ch[1278] Arab +script for ch[1279] Arab +script for ch[1280] Arab +script for ch[1281] Arab +script for ch[1282] Arab +script for ch[1283] Arab +script for ch[1284] Arab +script for ch[1285] Arab +script for ch[1286] Arab +script for ch[1287] Arab +script for ch[1288] Arab +script for ch[1289] Arab +script for ch[1290] Arab +script for ch[1291] Arab +script for ch[1292] Arab +script for ch[1293] Arab +script for ch[1294] Arab +script for ch[1295] Arab +script for ch[1296] Arab +script for ch[1297] Arab +script for ch[1298] Arab +script for ch[1299] Arab +script for ch[1300] Arab +script for ch[1301] Arab +script for ch[1302] Arab +script for ch[1303] Arab +script for ch[1304] Arab +script for ch[1305] Arab +script for ch[1306] Arab +script for ch[1307] Arab +script for ch[1308] Arab +script for ch[1309] Arab +script for ch[1310] Arab +script for ch[1311] Arab +script for ch[1312] Arab +script for ch[1313] Arab +script for ch[1314] Arab +script for ch[1315] Arab +script for ch[1316] Arab +script for ch[1317] Arab +script for ch[1318] Arab +script for ch[1319] Arab +script for ch[1320] Arab +script for ch[1321] Arab +script for ch[1322] Arab +script for ch[1323] Arab +script for ch[1324] Arab +script for ch[1325] Arab +script for ch[1326] Arab +script for ch[1327] Arab +script for ch[1328] Arab +script for ch[1329] Arab +script for ch[1330] Arab +script for ch[1331] Arab +script for ch[1332] Arab +script for ch[1333] Arab +script for ch[1334] Arab +script for ch[1335] Arab +script for ch[1336] Arab +script for ch[1337] Arab +script for ch[1338] Arab +script for ch[1339] Arab +script for ch[1340] Arab +script for ch[1341] Arab +script for ch[1342] Arab +script for ch[1343] Arab +script for ch[1344] Arab +script for ch[1345] Arab +script for ch[1346] Arab +script for ch[1347] Arab +script for ch[1348] Arab +script for ch[1349] Arab +script for ch[1350] Arab +script for ch[1351] Arab +script for ch[1352] Arab +script for ch[1353] Arab +script for ch[1354] Arab +script for ch[1355] Arab +script for ch[1356] Arab +script for ch[1357] Arab +script for ch[1358] Arab +script for ch[1359] Arab +script for ch[1360] Arab +script for ch[1361] Arab +script for ch[1362] Arab +script for ch[1363] Arab +script for ch[1364] Arab +script for ch[1365] Arab +script for ch[1366] Arab +script for ch[1367] Arab +script for ch[1368] Arab +script for ch[1369] Arab +script for ch[1370] Arab +script for ch[1371] Arab +script for ch[1372] Arab +script for ch[1373] Arab +script for ch[1374] Arab +script for ch[1375] Arab +script for ch[1376] Arab +script for ch[1377] Arab +script for ch[1378] Arab +script for ch[1379] Arab +script for ch[1380] Arab +script for ch[1381] Arab +script for ch[1382] Arab +script for ch[1383] Arab +script for ch[1384] Arab +script for ch[1385] Arab +script for ch[1386] Arab +script for ch[1387] Arab +script for ch[1388] Arab +script for ch[1389] Arab +script for ch[1390] Arab +script for ch[1391] Arab +script for ch[1392] Arab +script for ch[1393] Arab +script for ch[1394] Arab +script for ch[1395] Arab +script for ch[1396] Arab +script for ch[1397] Arab +script for ch[1398] Arab +script for ch[1399] Arab +script for ch[1400] Arab +script for ch[1401] Arab +script for ch[1402] Arab +script for ch[1403] Arab +script for ch[1404] Arab +script for ch[1405] Arab +script for ch[1406] Arab +script for ch[1407] Arab +script for ch[1408] Arab +script for ch[1409] Arab +script for ch[1410] Arab +script for ch[1411] Arab +script for ch[1412] Arab +script for ch[1413] Arab +script for ch[1414] Arab +script for ch[1415] Arab +script for ch[1416] Arab +script for ch[1417] Arab +script for ch[1418] Arab +script for ch[1419] Arab +script for ch[1420] Arab +script for ch[1421] Arab +script for ch[1422] Arab +script for ch[1423] Arab +script for ch[1424] Arab +script for ch[1425] Arab +script for ch[1426] Arab +script for ch[1427] Arab +script for ch[1428] Arab +script for ch[1429] Arab +script for ch[1430] Arab +script for ch[1431] Arab +script for ch[1432] Arab +script for ch[1433] Arab +script for ch[1434] Arab +script for ch[1435] Arab +script for ch[1436] Arab +script for ch[1437] Arab +script for ch[1438] Arab +script for ch[1439] Arab +script for ch[1440] Arab +script for ch[1441] Arab +script for ch[1442] Arab +script for ch[1443] Arab +script for ch[1444] Arab +script for ch[1445] Arab +script for ch[1446] Arab +script for ch[1447] Arab +script for ch[1448] Arab +script for ch[1449] Arab +script for ch[1450] Arab +script for ch[1451] Arab +script for ch[1452] Arab +script for ch[1453] Arab +script for ch[1454] Arab +script for ch[1455] Arab +script for ch[1456] Arab +script for ch[1457] Arab +script for ch[1458] Arab +script for ch[1459] Arab +script for ch[1460] Arab +script for ch[1461] Arab +script for ch[1462] Arab +script for ch[1463] Arab +script for ch[1464] Arab +script for ch[1465] Arab +script for ch[1466] Arab +script for ch[1467] Arab +script for ch[1468] Arab +script for ch[1469] Arab +script for ch[1470] Arab +script for ch[1471] Arab +script for ch[1472] Arab +script for ch[1473] Arab +script for ch[1474] Arab +script for ch[1475] Arab +script for ch[1476] Arab +script for ch[1477] Arab +script for ch[1478] Arab +script for ch[1479] Arab +script for ch[1480] Arab +script for ch[1481] Arab +script for ch[1482] Arab +script for ch[1483] Arab +script for ch[1484] Arab +script for ch[1485] Arab +script for ch[1486] Arab +script for ch[1487] Arab +script for ch[1488] Arab +script for ch[1489] Arab +script for ch[1490] Arab +script for ch[1491] Arab +script for ch[1492] Arab +script for ch[1493] Arab +script for ch[1494] Arab +script for ch[1495] Arab +script for ch[1496] Arab +script for ch[1497] Arab +script for ch[1498] Arab +script for ch[1499] Arab +script for ch[1500] Arab +script for ch[1501] Arab +script for ch[1502] Arab +script for ch[1503] Arab +script for ch[1504] Arab +script for ch[1505] Arab +script for ch[1506] Arab +script for ch[1507] Arab +script for ch[1508] Arab +script for ch[1509] Arab +script for ch[1510] Arab +script for ch[1511] Arab +script for ch[1512] Arab +script for ch[1513] Arab +script for ch[1514] Arab +script for ch[1515] Arab +script for ch[1516] Arab +script for ch[1517] Arab +script for ch[1518] Arab +script for ch[1519] Arab +script for ch[1520] Arab +script for ch[1521] Arab +script for ch[1522] Arab +script for ch[1523] Arab +script for ch[1524] Arab +script for ch[1525] Arab +script for ch[1526] Arab +script for ch[1527] Arab +script for ch[1528] Arab +script for ch[1529] Arab +script for ch[1530] Arab +script for ch[1531] Arab +script for ch[1532] Arab +script for ch[1533] Arab +script for ch[1534] Arab +script for ch[1535] Arab +script for ch[1536] Arab +script for ch[1537] Arab +script for ch[1538] Arab +script for ch[1539] Arab +script for ch[1540] Arab +script for ch[1541] Arab +script for ch[1542] Arab +script for ch[1543] Arab +script for ch[1544] Arab +script for ch[1545] Arab +script for ch[1546] Arab +script for ch[1547] Arab +script for ch[1548] Arab +script for ch[1549] Arab +script for ch[1550] Arab +script for ch[1551] Arab +script for ch[1552] Arab +script for ch[1553] Arab +script for ch[1554] Arab +script for ch[1555] Arab +script for ch[1556] Arab +script for ch[1557] Arab +script for ch[1558] Arab +script for ch[1559] Arab +script for ch[1560] Arab +script for ch[1561] Arab +script for ch[1562] Arab +script for ch[1563] Arab +script for ch[1564] Arab +script for ch[1565] Arab +script for ch[1566] Arab +script for ch[1567] Arab +script for ch[1568] Arab +script for ch[1569] Arab +script for ch[1570] Arab +script for ch[1571] Arab +script for ch[1572] Arab +script for ch[1573] Arab +script for ch[1574] Arab +script for ch[1575] Arab +script for ch[1576] Arab +script for ch[1577] Arab +script for ch[1578] Arab +script for ch[1579] Arab +script for ch[1580] Arab +script for ch[1581] Arab +script for ch[1582] Arab +script for ch[1583] Arab +script for ch[1584] Arab +script for ch[1585] Arab +script for ch[1586] Arab +script for ch[1587] Arab +script for ch[1588] Arab +script for ch[1589] Arab +script for ch[1590] Arab +script for ch[1591] Arab +script for ch[1592] Arab +script for ch[1593] Arab +script for ch[1594] Arab +script for ch[1595] Arab +script for ch[1596] Arab +script for ch[1597] Arab +script for ch[1598] Arab +script for ch[1599] Arab +script for ch[1600] Arab +script for ch[1601] Arab +script for ch[1602] Arab +script for ch[1603] Arab +script for ch[1604] Arab +script for ch[1605] Arab +script for ch[1606] Arab +script for ch[1607] Arab +script for ch[1608] Arab +script for ch[1609] Arab +script for ch[1610] Arab +script for ch[1611] Arab +script for ch[1612] Arab +script for ch[1613] Arab +script for ch[1614] Arab +script for ch[1615] Arab +script for ch[1616] Arab +script for ch[1617] Arab +script for ch[1618] Arab +script for ch[1619] Arab +script for ch[1620] Arab +script for ch[1621] Arab +script for ch[1622] Arab +script for ch[1623] Arab +script for ch[1624] Arab +script for ch[1625] Arab +script for ch[1626] Arab +script for ch[1627] Arab +script for ch[1628] Arab +script for ch[1629] Arab +script for ch[1630] Arab +script for ch[1631] Arab +script for ch[1632] Arab +script for ch[1633] Arab +script for ch[1634] Arab +script for ch[1635] Arab +script for ch[1636] Arab +script for ch[1637] Arab +script for ch[1638] Arab +script for ch[1639] Arab +script for ch[1640] Arab +script for ch[1641] Arab +script for ch[1642] Arab +script for ch[1643] Arab +script for ch[1644] Arab +script for ch[1645] Arab +script for ch[1646] Arab +script for ch[1647] Arab +script for ch[1648] Arab +script for ch[1649] Arab +script for ch[1650] Arab +script for ch[1651] Arab +script for ch[1652] Arab +script for ch[1653] Arab +script for ch[1654] Arab +script for ch[1655] Arab +script for ch[1656] Arab +script for ch[1657] Arab +script for ch[1658] Arab +script for ch[1659] Arab +script for ch[1660] Arab +script for ch[1661] Arab +script for ch[1662] Arab +script for ch[1663] Arab +script for ch[1664] Arab +script for ch[1665] Arab +script for ch[1666] Arab +script for ch[1667] Arab +script for ch[1668] Arab +script for ch[1669] Arab +script for ch[1670] Arab +script for ch[1671] Arab +script for ch[1672] Arab +script for ch[1673] Arab +script for ch[1674] Arab +script for ch[1675] Arab +script for ch[1676] Arab +script for ch[1677] Arab +script for ch[1678] Arab +script for ch[1679] Arab +script for ch[1680] Arab +script for ch[1681] Arab +script for ch[1682] Arab +script for ch[1683] Arab +script for ch[1684] Arab +script for ch[1685] Arab +script for ch[1686] Arab +script for ch[1687] Arab +script for ch[1688] Arab +script for ch[1689] Arab +script for ch[1690] Arab +script for ch[1691] Arab +script for ch[1692] Arab +script for ch[1693] Arab +script for ch[1694] Arab +script for ch[1695] Arab +script for ch[1696] Arab +script for ch[1697] Arab +script for ch[1698] Arab +script for ch[1699] Arab +script for ch[1700] Arab +script for ch[1701] Arab +script for ch[1702] Arab +script for ch[1703] Arab +script for ch[1704] Arab +script for ch[1705] Arab +script for ch[1706] Arab +script for ch[1707] Arab +script for ch[1708] Arab +script for ch[1709] Arab +script for ch[1710] Arab +script for ch[1711] Arab +script for ch[1712] Arab +script for ch[1713] Arab +script for ch[1714] Arab +script for ch[1715] Arab +script for ch[1716] Arab +script for ch[1717] Arab +script for ch[1718] Arab +script for ch[1719] Arab +script for ch[1720] Arab +script for ch[1721] Arab +script for ch[1722] Arab +script for ch[1723] Arab +script for ch[1724] Arab +script for ch[1725] Arab +script for ch[1726] Arab +script for ch[1727] Arab +script for ch[1728] Arab +script for ch[1729] Arab +script for ch[1730] Arab +script for ch[1731] Arab +script for ch[1732] Arab +script for ch[1733] Arab +script for ch[1734] Arab +script for ch[1735] Arab +script for ch[1736] Arab +script for ch[1737] Arab +script for ch[1738] Arab +script for ch[1739] Arab +script for ch[1740] Arab +script for ch[1741] Arab +script for ch[1742] Arab +script for ch[1743] Arab +script for ch[1744] Arab +script for ch[1745] Arab +script for ch[1746] Arab +script for ch[1747] Arab +script for ch[1748] Arab +script for ch[1749] Arab +script for ch[1750] Arab +script for ch[1751] Arab +script for ch[1752] Arab +script for ch[1753] Arab +script for ch[1754] Arab +script for ch[1755] Arab +script for ch[1756] Arab +script for ch[1757] Arab +script for ch[1758] Arab +script for ch[1759] Arab +script for ch[1760] Arab +script for ch[1761] Arab +script for ch[1762] Arab +script for ch[1763] Arab +script for ch[1764] Arab +script for ch[1765] Arab +script for ch[1766] Arab +script for ch[1767] Arab +script for ch[1768] Arab +script for ch[1769] Arab +script for ch[1770] Arab +script for ch[1771] Arab +script for ch[1772] Arab +script for ch[1773] Arab +script for ch[1774] Arab +script for ch[1775] Arab +script for ch[1776] Arab +script for ch[1777] Arab +script for ch[1778] Arab +script for ch[1779] Arab +script for ch[1780] Arab +script for ch[1781] Arab +script for ch[1782] Arab +script for ch[1783] Arab +script for ch[1784] Arab +script for ch[1785] Arab +script for ch[1786] Arab +script for ch[1787] Arab +script for ch[1788] Arab +script for ch[1789] Arab +script for ch[1790] Arab +script for ch[1791] Arab +script for ch[1792] Arab +script for ch[1793] Arab +script for ch[1794] Arab +script for ch[1795] Arab +script for ch[1796] Arab +script for ch[1797] Arab +script for ch[1798] Arab +script for ch[1799] Arab +script for ch[1800] Arab +script for ch[1801] Arab +script for ch[1802] Arab +script for ch[1803] Arab +script for ch[1804] Arab +script for ch[1805] Arab +script for ch[1806] Arab +script for ch[1807] Arab +script for ch[1808] Arab +script for ch[1809] Arab +script for ch[1810] Arab +script for ch[1811] Arab +script for ch[1812] Arab +script for ch[1813] Arab +script for ch[1814] Arab +script for ch[1815] Arab +script for ch[1816] Arab +script for ch[1817] Arab +script for ch[1818] Arab +script for ch[1819] Arab +script for ch[1820] Arab +script for ch[1821] Arab +script for ch[1822] Arab +script for ch[1823] Arab +script for ch[1824] Arab +script for ch[1825] Arab +script for ch[1826] Arab +script for ch[1827] Arab +script for ch[1828] Arab +script for ch[1829] Arab +script for ch[1830] Arab +script for ch[1831] Arab +script for ch[1832] Arab +script for ch[1833] Arab +script for ch[1834] Arab +script for ch[1835] Arab +script for ch[1836] Arab +script for ch[1837] Arab +script for ch[1838] Arab +script for ch[1839] Arab +script for ch[1840] Arab +script for ch[1841] Arab +script for ch[1842] Arab +script for ch[1843] Arab +script for ch[1844] Arab +script for ch[1845] Arab +script for ch[1846] Arab +script for ch[1847] Arab +script for ch[1848] Arab +script for ch[1849] Arab +script for ch[1850] Arab +script for ch[1851] Arab +script for ch[1852] Arab +script for ch[1853] Arab +script for ch[1854] Arab +script for ch[1855] Arab +script for ch[1856] Arab +script for ch[1857] Arab +script for ch[1858] Arab +script for ch[1859] Arab +script for ch[1860] Arab +script for ch[1861] Arab +script for ch[1862] Arab +script for ch[1863] Arab +script for ch[1864] Arab +script for ch[1865] Arab +script for ch[1866] Arab +script for ch[1867] Arab +script for ch[1868] Arab +script for ch[1869] Arab +script for ch[1870] Arab +script for ch[1871] Arab +script for ch[1872] Arab +script for ch[1873] Arab +script for ch[1874] Arab +script for ch[1875] Arab +script for ch[1876] Arab +script for ch[1877] Arab +script for ch[1878] Arab +script for ch[1879] Arab +script for ch[1880] Arab +script for ch[1881] Arab +script for ch[1882] Arab +script for ch[1883] Arab +script for ch[1884] Arab +script for ch[1885] Arab +script for ch[1886] Arab +script for ch[1887] Arab +script for ch[1888] Arab +script for ch[1889] Arab +script for ch[1890] Arab +script for ch[1891] Arab +script for ch[1892] Arab +script for ch[1893] Arab +script for ch[1894] Arab +script for ch[1895] Arab +script for ch[1896] Arab +script for ch[1897] Arab +script for ch[1898] Arab +script for ch[1899] Arab +script for ch[1900] Arab +script for ch[1901] Arab +script for ch[1902] Arab +script for ch[1903] Arab +script for ch[1904] Arab +script for ch[1905] Arab +script for ch[1906] Arab +script for ch[1907] Arab +script for ch[1908] Arab +script for ch[1909] Arab +script for ch[1910] Arab +script for ch[1911] Arab +script for ch[1912] Arab +script for ch[1913] Arab +script for ch[1914] Arab +script for ch[1915] Arab +script for ch[1916] Arab +script for ch[1917] Arab +script for ch[1918] Arab +script for ch[1919] Arab +script for ch[1920] Arab +script for ch[1921] Arab +script for ch[1922] Arab +script for ch[1923] Arab +script for ch[1924] Arab +script for ch[1925] Arab +script for ch[1926] Arab +script for ch[1927] Arab +script for ch[1928] Arab +script for ch[1929] Arab +script for ch[1930] Arab +script for ch[1931] Arab +script for ch[1932] Arab +script for ch[1933] Arab +script for ch[1934] Arab +script for ch[1935] Arab +script for ch[1936] Arab +script for ch[1937] Arab +script for ch[1938] Arab +script for ch[1939] Arab +script for ch[1940] Arab +script for ch[1941] Arab +script for ch[1942] Arab +script for ch[1943] Arab +script for ch[1944] Arab +script for ch[1945] Arab +script for ch[1946] Arab +script for ch[1947] Arab +script for ch[1948] Arab +script for ch[1949] Arab +script for ch[1950] Arab +script for ch[1951] Arab +script for ch[1952] Arab +script for ch[1953] Arab +script for ch[1954] Arab +script for ch[1955] Arab +script for ch[1956] Arab +script for ch[1957] Arab +script for ch[1958] Arab +script for ch[1959] Arab +script for ch[1960] Arab +script for ch[1961] Arab +script for ch[1962] Arab +script for ch[1963] Arab +script for ch[1964] Arab +script for ch[1965] Arab +script for ch[1966] Arab +script for ch[1967] Arab +script for ch[1968] Arab +script for ch[1969] Arab +script for ch[1970] Arab +script for ch[1971] Arab +script for ch[1972] Arab +script for ch[1973] Arab +script for ch[1974] Arab +script for ch[1975] Arab +script for ch[1976] Arab +script for ch[1977] Arab +script for ch[1978] Arab +script for ch[1979] Arab +script for ch[1980] Arab +script for ch[1981] Arab +script for ch[1982] Arab +script for ch[1983] Arab +script for ch[1984] Arab +script for ch[1985] Arab +script for ch[1986] Arab +script for ch[1987] Arab +script for ch[1988] Arab +script for ch[1989] Arab +script for ch[1990] Arab +script for ch[1991] Arab +script for ch[1992] Arab +script for ch[1993] Arab +script for ch[1994] Arab +script for ch[1995] Arab +script for ch[1996] Arab +script for ch[1997] Arab +script for ch[1998] Arab +script for ch[1999] Arab +script for ch[2000] Arab +script for ch[2001] Arab +script for ch[2002] Arab +script for ch[2003] Arab +script for ch[2004] Arab +script for ch[2005] Arab +script for ch[2006] Arab +script for ch[2007] Arab +script for ch[2008] Arab +script for ch[2009] Arab +script for ch[2010] Arab +script for ch[2011] Arab +script for ch[2012] Arab +script for ch[2013] Arab +script for ch[2014] Arab +script for ch[2015] Arab +script for ch[2016] Arab +script for ch[2017] Arab +script for ch[2018] Arab +script for ch[2019] Arab +script for ch[2020] Arab +script for ch[2021] Arab +script for ch[2022] Arab +script for ch[2023] Arab +script for ch[2024] Arab +script for ch[2025] Arab +script for ch[2026] Arab +script for ch[2027] Arab +script for ch[2028] Arab +script for ch[2029] Arab +script for ch[2030] Arab +script for ch[2031] Arab +script for ch[2032] Arab +script for ch[2033] Arab +script for ch[2034] Arab +script for ch[2035] Arab +script for ch[2036] Arab +script for ch[2037] Arab +script for ch[2038] Arab +script for ch[2039] Arab +script for ch[2040] Arab +script for ch[2041] Arab +script for ch[2042] Arab +script for ch[2043] Arab +script for ch[2044] Arab +script for ch[2045] Arab +script for ch[2046] Arab +script for ch[2047] Arab +script for ch[2048] Arab +script for ch[2049] Arab +script for ch[2050] Arab +script for ch[2051] Arab +script for ch[2052] Arab +script for ch[2053] Arab +script for ch[2054] Arab +script for ch[2055] Arab +script for ch[2056] Arab +script for ch[2057] Arab +script for ch[2058] Arab +script for ch[2059] Arab +script for ch[2060] Arab +script for ch[2061] Arab +script for ch[2062] Arab +script for ch[2063] Arab +script for ch[2064] Arab +script for ch[2065] Arab +script for ch[2066] Arab +script for ch[2067] Arab +script for ch[2068] Arab +script for ch[2069] Arab +script for ch[2070] Arab +script for ch[2071] Arab +script for ch[2072] Arab +script for ch[2073] Arab +script for ch[2074] Arab +script for ch[2075] Arab +script for ch[2076] Arab +script for ch[2077] Arab +script for ch[2078] Arab +script for ch[2079] Arab +script for ch[2080] Arab +script for ch[2081] Arab +script for ch[2082] Arab +script for ch[2083] Arab +script for ch[2084] Arab +script for ch[2085] Arab +script for ch[2086] Arab +script for ch[2087] Arab +script for ch[2088] Arab +script for ch[2089] Arab +script for ch[2090] Arab +script for ch[2091] Arab +script for ch[2092] Arab +script for ch[2093] Arab +script for ch[2094] Arab +script for ch[2095] Arab +script for ch[2096] Arab +script for ch[2097] Arab +script for ch[2098] Arab +script for ch[2099] Arab +script for ch[2100] Arab +script for ch[2101] Arab +script for ch[2102] Arab +script for ch[2103] Arab +script for ch[2104] Arab +script for ch[2105] Arab +script for ch[2106] Arab +script for ch[2107] Arab +script for ch[2108] Arab +script for ch[2109] Arab +script for ch[2110] Arab +script for ch[2111] Arab +script for ch[2112] Arab +script for ch[2113] Arab +script for ch[2114] Arab +script for ch[2115] Arab +script for ch[2116] Arab +script for ch[2117] Arab +script for ch[2118] Arab +script for ch[2119] Arab +script for ch[2120] Arab +script for ch[2121] Arab +script for ch[2122] Arab +script for ch[2123] Arab +script for ch[2124] Arab +script for ch[2125] Arab +script for ch[2126] Arab +script for ch[2127] Arab +script for ch[2128] Arab +script for ch[2129] Arab +script for ch[2130] Arab +script for ch[2131] Arab +script for ch[2132] Arab +script for ch[2133] Arab +script for ch[2134] Arab +script for ch[2135] Arab +script for ch[2136] Arab +script for ch[2137] Arab +script for ch[2138] Arab +script for ch[2139] Arab +script for ch[2140] Arab +script for ch[2141] Arab +script for ch[2142] Arab +script for ch[2143] Arab +script for ch[2144] Arab +script for ch[2145] Arab +script for ch[2146] Arab +script for ch[2147] Arab +script for ch[2148] Arab +script for ch[2149] Arab +script for ch[2150] Arab +script for ch[2151] Arab +script for ch[2152] Arab +script for ch[2153] Arab +script for ch[2154] Arab +script for ch[2155] Arab +script for ch[2156] Arab +script for ch[2157] Arab +script for ch[2158] Arab +script for ch[2159] Arab +script for ch[2160] Arab +script for ch[2161] Arab +script for ch[2162] Arab +script for ch[2163] Arab + +Number of runs before script itemization: 3 + +Fribidi Runs: +run[0]: start: 165 length: 1999 level: 1 +run[1]: start: 163 length: 2 level: 2 +run[2]: start: 0 length: 163 level: 1 + +Number of runs after script itemization: 4 + +Final Runs: +run[0]: start: 165 length: 1999 direction: rtl script: Arab font: Amiri +run[1]: start: 163 length: 2 direction: ltr script: Arab font: Amiri +run[2]: start: 1 length: 162 direction: rtl script: Arab font: Amiri +run[3]: start: 0 length: 1 direction: rtl script: Zyyy font: Amiri + +Glyph information: +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -2304 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 600 y_position: -2304 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 1216 y_position: -2304 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 1250 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 2173 y_position: -2304 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 2538 y_position: -2304 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 2619 y_position: -2304 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 x_position: 3842 y_position: -2304 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 3584 y_position: -2304 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 5229 y_position: -2360 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 5014 y_position: -2304 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 5740 y_position: -2304 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 5712 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 6331 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6777 y_position: -2304 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 7501 y_position: -2304 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 7377 y_position: -2304 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 8503 y_position: -2304 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 8637 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9434 y_position: -2304 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9778 y_position: -2304 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 10034 y_position: -2304 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 10472 y_position: -2304 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 10742 y_position: -2304 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 11542 y_position: -2304 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 11668 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12489 y_position: -2304 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 13119 y_position: -2304 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 13089 y_position: -2304 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 x_position: 14667 y_position: -2304 font: Amiri +glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 14409 y_position: -2304 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 15583 y_position: -2304 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 15839 y_position: -2304 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 16255 y_position: -2304 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 16547 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 16907 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17353 y_position: -2304 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 17909 y_position: -2304 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 17953 y_position: -2304 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 18692 y_position: -2304 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 19065 y_position: -2304 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 19126 y_position: -2304 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19512 y_position: -2304 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 19720 y_position: -2304 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 20012 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20372 y_position: -2304 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20692 y_position: -2304 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20818 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21639 y_position: -2304 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 22239 y_position: -2304 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22889 y_position: -2304 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 23530 y_position: -2304 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 23359 y_position: -2304 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 24587 y_position: -2304 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 24839 y_position: -2304 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 25460 y_position: -2339 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 25229 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25709 y_position: -2304 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 26309 y_position: -2304 font: Amiri +glyph [424] x_offset: -239 y_offset: 0 x_advance: 0 x_position: 27010 y_position: -2304 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 27249 y_position: -2304 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 27590 y_position: -2304 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 28026 y_position: -2304 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 28416 y_position: -2304 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 28724 y_position: -2304 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29124 y_position: -2304 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 29447 y_position: -2304 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29624 y_position: -2304 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 29663 y_position: -2304 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 30124 y_position: -2304 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 30602 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31542 y_position: -2304 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 32016 y_position: -2304 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 32142 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32963 y_position: -2304 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 33507 y_position: -2304 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 33563 y_position: -2304 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 34670 y_position: -2304 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 34884 y_position: -2304 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 35140 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35725 y_position: -2304 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 36045 y_position: -2304 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 36325 y_position: -2304 font: Amiri +glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 x_position: 36652 y_position: -2304 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 37102 y_position: -2304 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 37492 y_position: -2304 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 37706 y_position: -2304 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 37962 y_position: -2304 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 38591 y_position: -2304 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 x_position: 38717 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39538 y_position: -2304 font: Amiri +glyph [428] x_offset: 330 y_offset: 0 x_advance: 0 x_position: 40468 y_position: -2304 font: Amiri +glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 x_position: 40138 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 41545 y_position: -2304 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 41635 y_position: -2304 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 41991 y_position: -2304 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 42490 y_position: -2304 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 42694 y_position: -2304 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 43177 y_position: -2304 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43469 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43829 y_position: -2304 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44275 y_position: -2304 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44875 y_position: -2304 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 45771 y_position: -2304 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 45815 y_position: -2304 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 46554 y_position: -2304 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 46927 y_position: -2304 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46988 y_position: -2304 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47374 y_position: -2304 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 47582 y_position: -2304 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47874 y_position: -2304 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48234 y_position: -2304 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 48680 y_position: -2304 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 231 y_position: -5923 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -5888 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 666 y_position: -5988 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 600 y_position: -5888 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 1898 y_position: -5888 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 1920 y_position: -5888 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 2466 y_position: -5888 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 2670 y_position: -5888 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 3153 y_position: -5888 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 3445 y_position: -5888 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 3805 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4251 y_position: -5888 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 4851 y_position: -5888 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 5256 y_position: -5888 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 5812 y_position: -5888 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 5886 y_position: -5888 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 6213 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7013 y_position: -5888 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 7643 y_position: -5888 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 7613 y_position: -5888 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 8411 y_position: -5888 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 8623 y_position: -5888 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 x_position: 9362 y_position: -5784 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 8952 y_position: -5888 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9228 y_position: -5888 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 9828 y_position: -5888 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 10272 y_position: -5888 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 10346 y_position: -5888 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 10742 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11347 y_position: -5888 font: Amiri +glyph [429] x_offset: 506 y_offset: 0 x_advance: 0 x_position: 12453 y_position: -5888 font: Amiri +glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11947 y_position: -5888 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 14125 y_position: -5888 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 13757 y_position: -5888 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 15390 y_position: -5784 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 14980 y_position: -5888 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15237 y_position: -5888 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 15737 y_position: -5888 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 16097 y_position: -5888 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16417 y_position: -5888 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 16543 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17364 y_position: -5888 font: Amiri +glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 x_position: 18130 y_position: -5268 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 17964 y_position: -5888 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 18762 y_position: -5888 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 18974 y_position: -5888 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 x_position: 19713 y_position: -5784 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 19303 y_position: -5888 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19579 y_position: -5888 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 20179 y_position: -5888 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 20623 y_position: -5888 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 20864 y_position: -5888 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 21093 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21678 y_position: -5888 font: Amiri +glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 22278 y_position: -5888 font: Amiri +glyph [62] x_offset: 0 y_offset: 0 x_advance: 740 x_position: 23128 y_position: -5888 font: Amiri +glyph [28] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 23868 y_position: -5888 font: Amiri +glyph [23] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 24958 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26048 y_position: -5888 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 26648 y_position: -5888 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 27100 y_position: -5888 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28026 y_position: -5888 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 28496 y_position: -5888 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 29246 y_position: -5888 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 29636 y_position: -5888 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 30334 y_position: -5888 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30953 y_position: -5888 font: Amiri +glyph [64] x_offset: 0 y_offset: 0 x_advance: 740 x_position: 31399 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32139 y_position: -5888 font: Amiri +glyph [94] x_offset: 0 y_offset: 0 x_advance: 814 x_position: 32739 y_position: -5888 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 33671 y_position: -5888 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 33553 y_position: -5888 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 34402 y_position: -5888 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 34572 y_position: -5888 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 35130 y_position: -5888 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 35530 y_position: -5888 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 35853 y_position: -5888 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36030 y_position: -5888 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 36069 y_position: -5888 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 36530 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37008 y_position: -5888 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 37652 y_position: -5888 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 37608 y_position: -5888 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 x_position: 39101 y_position: -5784 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 x_position: 38691 y_position: -5888 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 38618 y_position: -5888 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 39642 y_position: -5888 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 39748 y_position: -5888 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 40087 y_position: -5888 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 40523 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40913 y_position: -5888 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 41616 y_position: -5888 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 41513 y_position: -5888 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 42372 y_position: -5888 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 42478 y_position: -5888 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 x_position: 42777 y_position: -5888 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43253 y_position: -5888 font: Amiri +glyph [96] x_offset: 0 y_offset: 0 x_advance: 814 x_position: 43613 y_position: -5888 font: Amiri +glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 44427 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45277 y_position: -5888 font: Amiri +glyph [427] x_offset: -221 y_offset: -292 x_advance: 0 x_position: 45656 y_position: -6180 font: Amiri +glyph [387] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45877 y_position: -5888 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 47409 y_position: -5888 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 47443 y_position: -5888 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 47736 y_position: -5888 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 48146 y_position: -5888 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 48751 y_position: -5888 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -9472 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 630 y_position: -9472 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 600 y_position: -9472 font: Amiri +glyph [431] x_offset: 328 y_offset: 0 x_advance: 0 x_position: 2248 y_position: -9472 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 1920 y_position: -9472 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 3294 y_position: -9472 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 3400 y_position: -9472 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 3883 y_position: -9472 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 4175 y_position: -9472 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4535 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4981 y_position: -9472 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5581 y_position: -9472 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 6501 y_position: -9472 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 6521 y_position: -9472 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 7622 y_position: -9472 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 7694 y_position: -9472 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 8016 y_position: -9472 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 8402 y_position: -9472 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 8610 y_position: -9472 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 8902 y_position: -9472 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 9262 y_position: -9472 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9708 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10648 y_position: -9472 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 11122 y_position: -9472 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 11248 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12069 y_position: -9472 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 12669 y_position: -9472 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 13437 y_position: -9472 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 13319 y_position: -9472 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 14168 y_position: -9472 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 14338 y_position: -9472 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 14910 y_position: -9472 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15296 y_position: -9472 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 15619 y_position: -9472 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15796 y_position: -9472 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 15835 y_position: -9472 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 16296 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16774 y_position: -9472 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17374 y_position: -9472 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 17688 y_position: -9472 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 17844 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18641 y_position: -9472 font: Amiri +glyph [428] x_offset: -138 y_offset: 0 x_advance: 0 x_position: 19103 y_position: -9472 font: Amiri +glyph [2747] x_offset: 0 y_offset: 0 x_advance: 986 x_position: 19241 y_position: -9472 font: Amiri +glyph [2713] x_offset: 0 y_offset: 0 x_advance: 349 x_position: 20227 y_position: -9472 font: Amiri +glyph [429] x_offset: 36 y_offset: 0 x_advance: 0 x_position: 20612 y_position: -9472 font: Amiri +glyph [2517] x_offset: 170 y_offset: 0 x_advance: 783 x_position: 20746 y_position: -9472 font: Amiri +glyph [428] x_offset: -326 y_offset: 0 x_advance: 0 x_position: 21033 y_position: -9472 font: Amiri +glyph [2476] x_offset: 0 y_offset: 0 x_advance: 362 x_position: 21359 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21721 y_position: -9472 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 x_position: 22865 y_position: -9472 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 22321 y_position: -9472 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 24439 y_position: -9472 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 24336 y_position: -9472 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 24745 y_position: -9472 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 25301 y_position: -9472 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 25588 y_position: -9472 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 25450 y_position: -9472 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 26596 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27042 y_position: -9472 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 27642 y_position: -9472 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 28047 y_position: -9472 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 28603 y_position: -9472 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 28677 y_position: -9472 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 29004 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29804 y_position: -9472 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 30779 y_position: -9472 font: Amiri +glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 30404 y_position: -9472 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 32582 y_position: -9472 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 32214 y_position: -9472 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 33847 y_position: -9368 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 33437 y_position: -9472 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 33694 y_position: -9472 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 34194 y_position: -9472 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 34554 y_position: -9472 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 34874 y_position: -9472 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 35000 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35821 y_position: -9472 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 36539 y_position: -9472 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 36421 y_position: -9472 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 37270 y_position: -9472 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 37440 y_position: -9472 font: Amiri +glyph [428] x_offset: -60 y_offset: 0 x_advance: 0 x_position: 38338 y_position: -9472 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 x_position: 38398 y_position: -9472 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 38778 y_position: -9472 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 x_position: 39441 y_position: -9472 font: Amiri +glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 39183 y_position: -9472 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 40487 y_position: -9472 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 40613 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41434 y_position: -9472 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 42078 y_position: -9472 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 42034 y_position: -9472 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 x_position: 43527 y_position: -9368 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 x_position: 43117 y_position: -9472 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 43044 y_position: -9472 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 44068 y_position: -9472 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 44174 y_position: -9472 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 44513 y_position: -9472 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 44949 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45339 y_position: -9472 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 46367 y_position: -9472 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45939 y_position: -9472 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 47505 y_position: -9472 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -13056 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 600 y_position: -13056 font: Amiri +glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 x_position: 1321 y_position: -13056 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 1356 y_position: -13056 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 2321 y_position: -13056 font: Amiri +glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 2587 y_position: -13056 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 2821 y_position: -13056 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 3135 y_position: -13056 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 3571 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3961 y_position: -13056 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4561 y_position: -13056 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 5517 y_position: -13056 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 5501 y_position: -13056 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 6240 y_position: -13056 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 6613 y_position: -13056 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 6624 y_position: -13056 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 7060 y_position: -13056 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 7450 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8390 y_position: -13056 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 8864 y_position: -13056 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 8990 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9811 y_position: -13056 font: Amiri +glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 x_position: 10376 y_position: -13056 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 10411 y_position: -13056 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 11376 y_position: -13056 font: Amiri +glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 11642 y_position: -13056 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 11876 y_position: -13056 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 12262 y_position: -13056 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12626 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13016 y_position: -13056 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13616 y_position: -13056 font: Amiri +glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 x_position: 14596 y_position: -13056 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 14556 y_position: -13056 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 15657 y_position: -13056 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 15729 y_position: -13056 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 16001 y_position: -13056 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 16437 y_position: -13056 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16827 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17767 y_position: -13056 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 18367 y_position: -13056 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 18681 y_position: -13056 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 x_position: 18837 y_position: -13056 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 x_position: 19429 y_position: -13056 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 19787 y_position: -13056 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 x_position: 19923 y_position: -13056 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 x_position: 20089 y_position: -13056 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 20550 y_position: -13056 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 20727 y_position: -13056 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 20766 y_position: -13056 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 21227 y_position: -13056 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 21749 y_position: -13056 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 x_position: 21875 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22696 y_position: -13056 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 23296 y_position: -13056 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 23996 y_position: -13056 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 24052 y_position: -13056 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25159 y_position: -13056 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 25373 y_position: -13056 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 25629 y_position: -13056 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 26258 y_position: -13056 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 x_position: 26384 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27205 y_position: -13056 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 27849 y_position: -13056 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 27805 y_position: -13056 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 29041 y_position: -13056 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 29115 y_position: -13056 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 29511 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30116 y_position: -13056 font: Amiri +glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 x_position: 31282 y_position: -13056 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 30716 y_position: -13056 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 32613 y_position: -13056 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 32827 y_position: -13056 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 33083 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33668 y_position: -13056 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 34576 y_position: -13056 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 34268 y_position: -13056 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 35394 y_position: -13056 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 35528 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36325 y_position: -13056 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 36925 y_position: -13056 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 37585 y_position: -13056 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 37865 y_position: -13056 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 38206 y_position: -13056 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 38642 y_position: -13056 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 39032 y_position: -13056 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 39246 y_position: -13056 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 39502 y_position: -13056 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 40087 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41027 y_position: -13056 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 41730 y_position: -13056 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 41627 y_position: -13056 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 42196 y_position: -13056 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 42592 y_position: -13056 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 43071 y_position: -13056 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 43197 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44018 y_position: -13056 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 44338 y_position: -13056 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 44618 y_position: -13056 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 45498 y_position: -12952 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 45088 y_position: -13056 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 45395 y_position: -13056 font: Amiri +glyph [429] x_offset: 216 y_offset: 0 x_advance: 0 x_position: 46001 y_position: -13056 font: Amiri +glyph [2363] x_offset: 250 y_offset: 0 x_advance: 953 x_position: 46035 y_position: -13056 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 46432 y_position: -13056 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 46738 y_position: -13056 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 47116 y_position: -13056 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 47318 y_position: -13056 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47746 y_position: -13056 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 48192 y_position: -13056 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 0 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 446 y_position: -16640 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 1046 y_position: -16640 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 1966 y_position: -16640 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1986 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 3159 y_position: -16640 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 3243 y_position: -16640 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3629 y_position: -16640 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 3743 y_position: -16640 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 4129 y_position: -16640 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 4337 y_position: -16640 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 4629 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4989 y_position: -16640 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5435 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6375 y_position: -16640 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6849 y_position: -16640 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6975 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7796 y_position: -16640 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 8396 y_position: -16640 font: Amiri +glyph [428] x_offset: -216 y_offset: 0 x_advance: 0 x_position: 8830 y_position: -16640 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 9046 y_position: -16640 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 9502 y_position: -16640 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 9644 y_position: -16640 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 9847 y_position: -16640 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 10174 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10974 y_position: -16640 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 11574 y_position: -16640 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 12116 y_position: -16640 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 12272 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12891 y_position: -16640 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13491 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 14431 y_position: -16640 font: Amiri +glyph [424] x_offset: -359 y_offset: 0 x_advance: 0 x_position: 14542 y_position: -16640 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14901 y_position: -16640 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 15224 y_position: -16640 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15401 y_position: -16640 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 15440 y_position: -16640 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 15901 y_position: -16640 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16379 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17319 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17919 y_position: -16640 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 18233 y_position: -16640 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 x_position: 18389 y_position: -16640 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 x_position: 18981 y_position: -16640 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 19339 y_position: -16640 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 x_position: 19475 y_position: -16640 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 x_position: 19641 y_position: -16640 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 20102 y_position: -16640 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 20279 y_position: -16640 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 20318 y_position: -16640 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 20779 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21257 y_position: -16640 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 22390 y_position: -16536 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 21980 y_position: -16640 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 21857 y_position: -16640 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 23360 y_position: -16785 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 23030 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23476 y_position: -16640 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 24076 y_position: -16640 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 24558 y_position: -16640 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 24528 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25764 y_position: -16640 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 26128 y_position: -16640 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 26234 y_position: -16640 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 26609 y_position: -16640 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 27009 y_position: -16640 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 27113 y_position: -16640 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 27509 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28114 y_position: -16640 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 28680 y_position: -16640 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 28714 y_position: -16640 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 29657 y_position: -16640 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 29679 y_position: -16640 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 30029 y_position: -16640 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30429 y_position: -16640 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 30637 y_position: -16640 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30929 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 31289 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31735 y_position: -16640 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 32335 y_position: -16640 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 32843 y_position: -16640 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 33199 y_position: -16640 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 33807 y_position: -16640 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 33829 y_position: -16640 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 34173 y_position: -16640 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 34579 y_position: -16640 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 34693 y_position: -16640 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 34935 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35478 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 36078 y_position: -16640 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 36931 y_position: -16536 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 36521 y_position: -16640 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 36548 y_position: -16640 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 37646 y_position: -16675 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 37345 y_position: -16640 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 37842 y_position: -16640 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 38238 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38843 y_position: -16640 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 39443 y_position: -16640 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 40329 y_position: -16640 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 40199 y_position: -16640 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 41693 y_position: -16640 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 41509 y_position: -16640 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 42777 y_position: -16640 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 42989 y_position: -16640 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43825 y_position: -16675 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43594 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44074 y_position: -16640 font: Amiri +glyph [428] x_offset: -140 y_offset: 0 x_advance: 0 x_position: 44534 y_position: -16640 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44674 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45495 y_position: -16640 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 45685 y_position: -16640 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 45941 y_position: -16640 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 46357 y_position: -16640 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 46649 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47009 y_position: -16640 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 47455 y_position: -16640 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: -410 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -20224 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 908 y_position: -20224 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 600 y_position: -20224 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 1726 y_position: -20224 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 1860 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2657 y_position: -20224 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 3257 y_position: -20224 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 4153 y_position: -20224 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 4197 y_position: -20224 font: Amiri +glyph [427] x_offset: -557 y_offset: 0 x_advance: 0 x_position: 4752 y_position: -20224 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 5309 y_position: -20224 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 5504 y_position: -20224 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 5756 y_position: -20224 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 6377 y_position: -20259 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 6146 y_position: -20224 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 6626 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7566 y_position: -20224 font: Amiri +glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 x_position: 8206 y_position: -20224 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 8166 y_position: -20224 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 9339 y_position: -20224 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 9818 y_position: -20224 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 10254 y_position: -20224 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 10346 y_position: -20224 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 10756 y_position: -20224 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 11235 y_position: -20224 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 11361 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12182 y_position: -20224 font: Amiri +glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 12782 y_position: -20224 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 13632 y_position: -20224 font: Amiri +glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 x_position: 13749 y_position: -20224 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 14078 y_position: -20224 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 15059 y_position: -20224 font: Amiri +glyph [2233] x_offset: 0 y_offset: 0 x_advance: 1250 x_position: 14781 y_position: -20224 font: Amiri +glyph [429] x_offset: 86 y_offset: 0 x_advance: 0 x_position: 16117 y_position: -20224 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 16031 y_position: -20224 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 x_position: 16720 y_position: -20224 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 17196 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17556 y_position: -20224 font: Amiri +glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 x_position: 18222 y_position: -20224 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 18156 y_position: -20224 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 19329 y_position: -20224 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 19413 y_position: -20224 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19799 y_position: -20224 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 19913 y_position: -20224 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 20299 y_position: -20224 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 20507 y_position: -20224 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 20799 y_position: -20224 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 21159 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21605 y_position: -20224 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 22329 y_position: -20224 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 22205 y_position: -20224 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 23331 y_position: -20224 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 23465 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24262 y_position: -20224 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 25395 y_position: -20120 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 24985 y_position: -20224 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 24862 y_position: -20224 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 26365 y_position: -20369 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 26035 y_position: -20224 font: Amiri +glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 26481 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27331 y_position: -20224 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 27931 y_position: -20224 font: Amiri +glyph [429] x_offset: 416 y_offset: 0 x_advance: 0 x_position: 28799 y_position: -20224 font: Amiri +glyph [3779] x_offset: 0 y_offset: 0 x_advance: 1583 x_position: 28383 y_position: -20224 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 29966 y_position: -20224 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 30538 y_position: -20224 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 30572 y_position: -20224 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 30981 y_position: -20224 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 31537 y_position: -20224 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 31824 y_position: -20224 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 31686 y_position: -20224 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 32832 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33278 y_position: -20224 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 33878 y_position: -20224 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 x_position: 34569 y_position: -20364 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 x_position: 34853 y_position: -20224 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 35214 y_position: -20224 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 35340 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36161 y_position: -20224 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 36761 y_position: -20224 font: Amiri +glyph [428] x_offset: 110 y_offset: 0 x_advance: 0 x_position: 37521 y_position: -20224 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 37411 y_position: -20224 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 38615 y_position: -20224 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 38671 y_position: -20224 font: Amiri +glyph [1914] x_offset: 133 y_offset: 104 x_advance: 0 x_position: 39969 y_position: -20120 font: Amiri +glyph [430] x_offset: -277 y_offset: 0 x_advance: 0 x_position: 39559 y_position: -20224 font: Amiri +glyph [5354] x_offset: 0 y_offset: 0 x_advance: 454 x_position: 39836 y_position: -20224 font: Amiri +glyph [5348] x_offset: 0 y_offset: 0 x_advance: 325 x_position: 40290 y_position: -20224 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 40615 y_position: -20224 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 40935 y_position: -20224 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 41061 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41882 y_position: -20224 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 42202 y_position: -20224 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 42482 y_position: -20224 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 43073 y_position: -20224 font: Amiri +glyph [4375] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 43259 y_position: -20224 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 44501 y_position: -20224 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 45155 y_position: -20224 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 44971 y_position: -20224 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 46345 y_position: -20224 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 46451 y_position: -20224 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 46934 y_position: -20224 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47226 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -23808 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 724 y_position: -23808 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 600 y_position: -23808 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 1726 y_position: -23808 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 1860 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2657 y_position: -23808 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 2987 y_position: -24748 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 3257 y_position: -23808 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 4163 y_position: -23808 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 4039 y_position: -23808 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 5743 y_position: -23704 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 5333 y_position: -23808 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 5535 y_position: -23808 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 6315 y_position: -23808 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 6675 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7121 y_position: -23808 font: Amiri +glyph [429] x_offset: -144 y_offset: 0 x_advance: 0 x_position: 7577 y_position: -23808 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 7721 y_position: -23808 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 8134 y_position: -23808 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 8498 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8888 y_position: -23808 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9488 y_position: -23808 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 10384 y_position: -23808 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 10428 y_position: -23808 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 11522 y_position: -23704 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 11112 y_position: -23808 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 11540 y_position: -23808 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 11601 y_position: -23808 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 11987 y_position: -23808 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 12126 y_position: -23808 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12487 y_position: -23808 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 12526 y_position: -23808 font: Amiri +glyph [4453] x_offset: 0 y_offset: 0 x_advance: 645 x_position: 12987 y_position: -23808 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13632 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14572 y_position: -23808 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 15172 y_position: -23808 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 15486 y_position: -23808 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 15642 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16439 y_position: -23808 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17039 y_position: -23808 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 17680 y_position: -23808 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 17509 y_position: -23808 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 18737 y_position: -23808 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 18989 y_position: -23808 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 19610 y_position: -23843 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 19379 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19859 y_position: -23808 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 20459 y_position: -23808 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 21379 y_position: -23808 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 21399 y_position: -23808 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22572 y_position: -23808 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 22656 y_position: -23808 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23042 y_position: -23808 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 23156 y_position: -23808 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23542 y_position: -23808 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 23750 y_position: -23808 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 24042 y_position: -23808 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 24402 y_position: -23808 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 24848 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25788 y_position: -23808 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 26262 y_position: -23808 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 26388 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27209 y_position: -23808 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 27809 y_position: -23808 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28459 y_position: -23808 font: Amiri +glyph [424] x_offset: -129 y_offset: 0 x_advance: 0 x_position: 28800 y_position: -23808 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 28929 y_position: -23808 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 29726 y_position: -23808 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 30085 y_position: -23808 font: Amiri +glyph [4752] x_offset: 0 y_offset: 0 x_advance: 443 x_position: 30641 y_position: -23808 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 30935 y_position: -23808 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 31084 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32288 y_position: -23808 font: Amiri +glyph [428] x_offset: -243 y_offset: 0 x_advance: 0 x_position: 32645 y_position: -23808 font: Amiri +glyph [4345] x_offset: 0 y_offset: 0 x_advance: 213 x_position: 32888 y_position: -23808 font: Amiri +glyph [427] x_offset: 372 y_offset: -4 x_advance: 0 x_position: 33473 y_position: -23812 font: Amiri +glyph [2649] x_offset: 0 y_offset: -4 x_advance: 1739 x_position: 33101 y_position: -23812 font: Amiri +glyph [431] x_offset: 58 y_offset: 0 x_advance: 0 x_position: 34898 y_position: -23808 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 34840 y_position: -23808 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 35892 y_position: -23843 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 35661 y_position: -23808 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 36015 y_position: -23808 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 36141 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36962 y_position: -23808 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 37282 y_position: -23808 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 37562 y_position: -23808 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 38137 y_position: -23808 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38339 y_position: -23808 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 38705 y_position: -23808 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 38839 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39636 y_position: -23808 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 40366 y_position: -23808 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 40236 y_position: -23808 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 41730 y_position: -23808 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 41546 y_position: -23808 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 42814 y_position: -23808 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 43026 y_position: -23808 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43862 y_position: -23843 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43631 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44111 y_position: -23808 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 45139 y_position: -23808 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 44711 y_position: -23808 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 46508 y_position: -23843 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 46277 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46757 y_position: -23808 font: Amiri +glyph [426] x_offset: 101 y_offset: 0 x_advance: 0 x_position: 47458 y_position: -23808 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 47357 y_position: -23808 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 48530 y_position: -23808 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 49009 y_position: -23808 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 49445 y_position: -23808 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 49947 y_position: -23808 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 0 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 446 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 1046 y_position: -27392 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 1980 y_position: -27392 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1986 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 3159 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 3373 y_position: -27392 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 3629 y_position: -27392 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 4445 y_position: -27427 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 4214 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4694 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5634 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 6234 y_position: -27392 font: Amiri +glyph [427] x_offset: -185 y_offset: 0 x_advance: 0 x_position: 6495 y_position: -27392 font: Amiri +glyph [4877] x_offset: 0 y_offset: 0 x_advance: 827 x_position: 6680 y_position: -27392 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 7321 y_position: -27392 font: Amiri +glyph [4835] x_offset: 0 y_offset: 0 x_advance: 1382 x_position: 7507 y_position: -27392 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 8763 y_position: -27392 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 8889 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9710 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 10310 y_position: -27392 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 11266 y_position: -27392 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 11250 y_position: -27392 font: Amiri +glyph [429] x_offset: -495 y_offset: 0 x_advance: 0 x_position: 11867 y_position: -27392 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 11934 y_position: -27392 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 12362 y_position: -27392 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 12373 y_position: -27392 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12809 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13199 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14139 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14483 y_position: -27392 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14739 y_position: -27392 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 15277 y_position: -27392 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 15447 y_position: -27392 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 15851 y_position: -27392 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 16247 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16852 y_position: -27392 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 17596 y_position: -27392 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 17452 y_position: -27392 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 18906 y_position: -27392 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 18762 y_position: -27392 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 20345 y_position: -27288 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 19935 y_position: -27392 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 20242 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20632 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21078 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 21678 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22618 y_position: -27392 font: Amiri +glyph [424] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 22859 y_position: -27392 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 23088 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 23673 y_position: -27392 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 23837 y_position: -27392 font: Amiri +glyph [3053] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 24143 y_position: -27392 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 24182 y_position: -27392 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 x_position: 24488 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 24995 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25935 y_position: -27392 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 26491 y_position: -27392 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 26535 y_position: -27392 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 27647 y_position: -27392 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: 27660 y_position: -27392 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 28094 y_position: -27392 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 28133 y_position: -27392 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 28439 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29045 y_position: -27392 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 29375 y_position: -28332 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 29645 y_position: -27392 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 30551 y_position: -27392 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 30427 y_position: -27392 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 32131 y_position: -27288 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 31721 y_position: -27392 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 31923 y_position: -27392 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 32703 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 33063 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33509 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34109 y_position: -27392 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 35043 y_position: -27392 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 35049 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 36222 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 36436 y_position: -27392 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 36692 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 37277 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38217 y_position: -27392 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 38691 y_position: -27392 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 38817 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39638 y_position: -27392 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 40238 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40888 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 41102 y_position: -27392 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 41358 y_position: -27392 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 42220 y_position: -27392 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 42284 y_position: -27392 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 42740 y_position: -27392 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 42882 y_position: -27392 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 43085 y_position: -27392 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 43412 y_position: -27392 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44086 y_position: -27392 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44212 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45033 y_position: -27392 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 45499 y_position: -27392 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 45633 y_position: -27392 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 x_position: 45830 y_position: -27392 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 46461 y_position: -27392 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 46750 y_position: -27392 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 47292 y_position: -27392 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 47448 y_position: -27392 font: Amiri +glyph [1914] x_offset: 333 y_offset: 104 x_advance: 0 x_position: 48400 y_position: -27288 font: Amiri +glyph [430] x_offset: -77 y_offset: 0 x_advance: 0 x_position: 47990 y_position: -27392 font: Amiri +glyph [4909] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 48067 y_position: -27392 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 49067 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 49356 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 0 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 940 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 1414 y_position: -30976 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 1540 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2361 y_position: -30976 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 2605 y_position: -30976 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 2961 y_position: -30976 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 3508 y_position: -30976 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 3664 y_position: -30976 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 4608 y_position: -30976 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 4464 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5627 y_position: -30976 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 5957 y_position: -31916 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 6227 y_position: -30976 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 7133 y_position: -30976 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 7009 y_position: -30976 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 8713 y_position: -30872 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 8303 y_position: -30976 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 8505 y_position: -30976 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 9285 y_position: -30976 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 9645 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10091 y_position: -30976 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 10691 y_position: -30976 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 11625 y_position: -30976 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 11631 y_position: -30976 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 12804 y_position: -30976 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 12888 y_position: -30976 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13274 y_position: -30976 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 13413 y_position: -30976 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13774 y_position: -30976 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 14552 y_position: -30976 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 14274 y_position: -30976 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15438 y_position: -30976 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15884 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16824 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 17298 y_position: -30976 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17424 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18245 y_position: -30976 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 18565 y_position: -30976 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 18845 y_position: -30976 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 19222 y_position: -30976 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19622 y_position: -30976 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 x_position: 19930 y_position: -30976 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 20122 y_position: -30976 font: Amiri +glyph [427] x_offset: 316 y_offset: 0 x_advance: 0 x_position: 20551 y_position: -30976 font: Amiri +glyph [4043] x_offset: 0 y_offset: 0 x_advance: 1656 x_position: 20235 y_position: -30976 font: Amiri +glyph [431] x_offset: -42 y_offset: 0 x_advance: 0 x_position: 21849 y_position: -30976 font: Amiri +glyph [421] x_offset: -100 y_offset: 0 x_advance: 721 x_position: 21791 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 22843 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 22612 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23092 y_position: -30976 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 24120 y_position: -30976 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 23692 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 25489 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 25258 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25738 y_position: -30976 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 26338 y_position: -30976 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 26552 y_position: -30976 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 26808 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 27624 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 27393 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27873 y_position: -30976 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 28473 y_position: -30976 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 29133 y_position: -30976 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 29413 y_position: -30976 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 29790 y_position: -30976 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30190 y_position: -30976 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 30513 y_position: -30976 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30690 y_position: -30976 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 30729 y_position: -30976 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 31190 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 31899 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 31668 y_position: -30976 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 32148 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33088 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 33562 y_position: -30976 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 33688 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34509 y_position: -30976 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 35109 y_position: -30976 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 36065 y_position: -30976 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 36049 y_position: -30976 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 37161 y_position: -30976 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 37314 y_position: -30976 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 37608 y_position: -30976 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 37938 y_position: -30976 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 38108 y_position: -30976 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 38905 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39845 y_position: -30976 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 40189 y_position: -30976 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 40445 y_position: -30976 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 40983 y_position: -30976 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 41153 y_position: -30976 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 41557 y_position: -30976 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 41953 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42558 y_position: -30976 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 42888 y_position: -31916 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 43158 y_position: -30976 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 44064 y_position: -30976 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 43940 y_position: -30976 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 45644 y_position: -30872 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 45234 y_position: -30976 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 45436 y_position: -30976 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 46216 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -34560 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 320 y_position: -34560 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 600 y_position: -34560 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 941 y_position: -34560 font: Amiri +glyph [2096] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 1377 y_position: -34560 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 1767 y_position: -34560 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 2246 y_position: -34560 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 2682 y_position: -34560 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 3337 y_position: -34456 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 2927 y_position: -34560 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3184 y_position: -34560 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 3684 y_position: -34560 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4044 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4490 y_position: -34560 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 4966 y_position: -34560 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 5090 y_position: -34560 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 5812 y_position: -34560 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 5846 y_position: -34560 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 6555 y_position: -34560 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 6811 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7737 y_position: -34560 font: Amiri +glyph [422] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 8337 y_position: -34560 font: Amiri +glyph [1914] x_offset: 458 y_offset: 104 x_advance: 0 x_position: 10361 y_position: -34456 font: Amiri +glyph [430] x_offset: 48 y_offset: 0 x_advance: 0 x_position: 9951 y_position: -34560 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 9903 y_position: -34560 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 10662 y_position: -34560 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 10868 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 11312 y_position: -34560 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 11618 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 11657 y_position: -34560 font: Amiri +glyph [3753] x_offset: 0 y_offset: 0 x_advance: 562 x_position: 11963 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12525 y_position: -34560 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 13125 y_position: -34560 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 13881 y_position: -34560 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14095 y_position: -34560 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 14351 y_position: -34560 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 15167 y_position: -34595 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 14936 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15416 y_position: -34560 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16016 y_position: -34560 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 17331 y_position: -34560 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 16956 y_position: -34560 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 18589 y_position: -34560 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18766 y_position: -34560 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 19419 y_position: -34456 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 19009 y_position: -34560 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19266 y_position: -34560 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 19405 y_position: -34560 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19766 y_position: -34560 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 19805 y_position: -34560 font: Amiri +glyph [4466] x_offset: 0 y_offset: 0 x_advance: 511 x_position: 20266 y_position: -34560 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 20777 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21717 y_position: -34560 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 22191 y_position: -34560 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 22317 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23138 y_position: -34560 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 23382 y_position: -34560 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 23738 y_position: -34560 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 24285 y_position: -34560 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 24441 y_position: -34560 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 25385 y_position: -34560 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 25241 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26404 y_position: -34560 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 26734 y_position: -35500 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 27004 y_position: -34560 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 27910 y_position: -34560 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 27786 y_position: -34560 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 29490 y_position: -34456 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 29080 y_position: -34560 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 29282 y_position: -34560 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30062 y_position: -34560 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30422 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30868 y_position: -34560 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31468 y_position: -34560 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 32378 y_position: -34560 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 32408 y_position: -34560 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 33502 y_position: -34456 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 33092 y_position: -34560 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 33520 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 33661 y_position: -34560 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 33967 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 34006 y_position: -34560 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 34312 y_position: -34560 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34966 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35906 y_position: -34560 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 36380 y_position: -34560 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 36506 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37327 y_position: -34560 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 37647 y_position: -34560 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 37927 y_position: -34560 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 38304 y_position: -34560 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38704 y_position: -34560 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 38992 y_position: -34560 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 39204 y_position: -34560 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 x_position: 39773 y_position: -35510 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 x_position: 39809 y_position: -34560 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 40623 y_position: -34560 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 40779 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41757 y_position: -34560 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 42357 y_position: -34560 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 42571 y_position: -34560 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 42827 y_position: -34560 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43643 y_position: -34595 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43412 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43892 y_position: -34560 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44492 y_position: -34560 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 45152 y_position: -34560 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 45432 y_position: -34560 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 45809 y_position: -34560 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 46209 y_position: -34560 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 46532 y_position: -34560 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 46709 y_position: -34560 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46823 y_position: -34560 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47209 y_position: -34560 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 47348 y_position: -34560 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47709 y_position: -34560 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 48487 y_position: -34560 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 48209 y_position: -34560 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 49373 y_position: -34560 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: -434 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -38144 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 730 y_position: -38144 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 600 y_position: -38144 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 1708 y_position: -38144 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 1910 y_position: -38144 font: Amiri +glyph [1916] x_offset: 723 y_offset: 184 x_advance: 0 x_position: 3133 y_position: -37960 font: Amiri +glyph [430] x_offset: 313 y_offset: 0 x_advance: 0 x_position: 2723 y_position: -38144 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 2410 y_position: -38144 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 3890 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4250 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4696 y_position: -38144 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5296 y_position: -38144 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 6206 y_position: -38144 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 6236 y_position: -38144 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 7330 y_position: -38040 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 6920 y_position: -38144 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 7348 y_position: -38144 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 7359 y_position: -38144 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 7795 y_position: -38144 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 8185 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9125 y_position: -38144 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 9828 y_position: -38144 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 9725 y_position: -38144 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 10294 y_position: -38144 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 10690 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11295 y_position: -38144 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 11895 y_position: -38144 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 12413 y_position: -38244 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 12347 y_position: -38144 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 13281 y_position: -38144 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13667 y_position: -38144 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 13861 y_position: -38144 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 14167 y_position: -38144 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 14545 y_position: -38144 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 14747 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15175 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15621 y_position: -38144 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 16221 y_position: -38144 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 x_position: 16912 y_position: -38284 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 x_position: 17196 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 17557 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17683 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18504 y_position: -38144 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 19104 y_position: -38144 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 19990 y_position: -38144 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 19860 y_position: -38144 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 21215 y_position: -38144 font: Amiri +glyph [428] x_offset: 60 y_offset: 0 x_advance: 0 x_position: 21983 y_position: -38144 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 21923 y_position: -38144 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 23083 y_position: -38144 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 23353 y_position: -38144 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 23769 y_position: -38144 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 24061 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 24421 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24867 y_position: -38144 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25467 y_position: -38144 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 26108 y_position: -38144 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 25937 y_position: -38144 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 27165 y_position: -38144 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 27417 y_position: -38144 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 28038 y_position: -38179 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 27807 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28287 y_position: -38144 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 28631 y_position: -38144 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 28887 y_position: -38144 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 29325 y_position: -38144 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 29595 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 30395 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 30521 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31342 y_position: -38144 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 32072 y_position: -38144 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 31942 y_position: -38144 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 33297 y_position: -38144 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 33911 y_position: -38144 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 33767 y_position: -38144 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 35247 y_position: -38144 font: Amiri +glyph [1918] x_offset: 723 y_offset: -345 x_advance: 0 x_position: 36360 y_position: -38489 font: Amiri +glyph [3006] x_offset: 170 y_offset: 0 x_advance: 868 x_position: 35807 y_position: -38144 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 36533 y_position: -38144 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 36505 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37124 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37570 y_position: -38144 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 38170 y_position: -38144 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 39066 y_position: -38144 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 39110 y_position: -38144 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 40222 y_position: -38144 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 40375 y_position: -38144 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 40669 y_position: -38144 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 40992 y_position: -38144 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41169 y_position: -38144 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 41822 y_position: -38040 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 41412 y_position: -38144 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41669 y_position: -38144 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 42169 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 42529 y_position: -38144 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 42975 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43915 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44389 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44515 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45336 y_position: -38144 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 45936 y_position: -38144 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 46416 y_position: -38144 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 46586 y_position: -38144 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 47156 y_position: -38144 font: Amiri +glyph [2363] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 47512 y_position: -38144 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 47973 y_position: -38144 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 48215 y_position: -38144 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 48184 y_position: -38144 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 48620 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 49010 y_position: -38144 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: -327 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -41728 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 330 y_position: -42668 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 600 y_position: -41728 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 1382 y_position: -41728 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 2388 y_position: -41728 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 2582 y_position: -41728 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 2849 y_position: -41728 font: Amiri +glyph [4271] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 2695 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3899 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 4499 y_position: -41728 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 4563 y_position: -41728 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 4969 y_position: -41728 font: Amiri +glyph [1914] x_offset: 195 y_offset: 104 x_advance: 0 x_position: 5520 y_position: -41624 font: Amiri +glyph [430] x_offset: -215 y_offset: 0 x_advance: 0 x_position: 5110 y_position: -41728 font: Amiri +glyph [3437] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 5325 y_position: -41728 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 6198 y_position: -41873 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 5868 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6314 y_position: -41728 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 6758 y_position: -41728 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 6914 y_position: -41728 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 7699 y_position: -41728 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 7733 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8656 y_position: -41728 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 9310 y_position: -41728 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 9126 y_position: -41728 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 10300 y_position: -41728 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 10606 y_position: -41728 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 10984 y_position: -41728 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 11186 y_position: -41728 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 11614 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12060 y_position: -41728 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 13193 y_position: -41624 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 12783 y_position: -41728 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 12660 y_position: -41728 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 14048 y_position: -41784 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 13833 y_position: -41728 font: Amiri +glyph [429] x_offset: -294 y_offset: -60 x_advance: 0 x_position: 14237 y_position: -41788 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 14531 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15150 y_position: -41728 font: Amiri +glyph [5976] x_offset: -197 y_offset: 304 x_advance: 0 x_position: 15553 y_position: -41424 font: Amiri +glyph [430] x_offset: -7 y_offset: 0 x_advance: 0 x_position: 15743 y_position: -41728 font: Amiri +glyph [397] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 15750 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 16673 y_position: -41728 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 17237 y_position: -41728 font: Amiri +glyph [2399] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 17143 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18307 y_position: -41728 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 18651 y_position: -41728 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 18907 y_position: -41728 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 19345 y_position: -41728 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 19615 y_position: -41728 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20415 y_position: -41728 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20541 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21362 y_position: -41728 font: Amiri +glyph [425] x_offset: -110 y_offset: 0 x_advance: 0 x_position: 21852 y_position: -41728 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 21962 y_position: -41728 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 22700 y_position: -41728 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 22781 y_position: -41728 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 24114 y_position: -41728 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 23746 y_position: -41728 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 25070 y_position: -41728 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 25226 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26023 y_position: -41728 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 26623 y_position: -41728 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 27543 y_position: -41728 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 27563 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28736 y_position: -41728 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 28820 y_position: -41728 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29206 y_position: -41728 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 29529 y_position: -41728 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29706 y_position: -41728 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 29912 y_position: -41728 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 29949 y_position: -41728 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30206 y_position: -41728 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30706 y_position: -41728 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 31066 y_position: -41728 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31512 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32452 y_position: -41728 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 32926 y_position: -41728 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 33052 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33873 y_position: -41728 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 34473 y_position: -41728 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 35093 y_position: -41728 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 35123 y_position: -41728 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 36217 y_position: -41624 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 35807 y_position: -41728 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 36235 y_position: -41728 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 36376 y_position: -41728 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 36682 y_position: -41728 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 36721 y_position: -41728 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 37027 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37681 y_position: -41728 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 38709 y_position: -41728 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 38281 y_position: -41728 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 40078 y_position: -41763 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 39847 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40327 y_position: -41728 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 40883 y_position: -41728 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 40927 y_position: -41728 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 41666 y_position: -41728 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 42039 y_position: -41728 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 42100 y_position: -41728 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42486 y_position: -41728 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 42784 y_position: -41728 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42986 y_position: -41728 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 43330 y_position: -41728 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 43486 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44464 y_position: -41728 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45064 y_position: -41728 font: Amiri +glyph [429] x_offset: -92 y_offset: 0 x_advance: 0 x_position: 46538 y_position: -41728 font: Amiri +glyph [4908] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 46630 y_position: -41728 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 47630 y_position: -41728 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 0 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 940 y_position: -45312 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 1540 y_position: -45312 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 2621 y_position: -45208 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 2211 y_position: -45312 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 2238 y_position: -45312 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 3187 y_position: -45457 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 2857 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3303 y_position: -45312 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 3839 y_position: -45312 font: Amiri +glyph [4185] x_offset: 0 y_offset: 0 x_advance: 1134 x_position: 3903 y_position: -45312 font: Amiri +glyph [431] x_offset: -147 y_offset: 0 x_advance: 0 x_position: 4890 y_position: -45312 font: Amiri +glyph [4421] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 5037 y_position: -45312 font: Amiri +glyph [427] x_offset: 3 y_offset: 0 x_advance: 0 x_position: 5820 y_position: -45312 font: Amiri +glyph [2298] x_offset: 0 y_offset: 0 x_advance: 1206 x_position: 5817 y_position: -45312 font: Amiri +glyph [431] x_offset: 88 y_offset: 0 x_advance: 0 x_position: 7111 y_position: -45312 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 x_position: 7023 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 7403 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 7763 y_position: -45312 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 8004 y_position: -45312 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 8233 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8818 y_position: -45312 font: Amiri +glyph [431] x_offset: -92 y_offset: -620 x_advance: 0 x_position: 9326 y_position: -45932 font: Amiri +glyph [2452] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 9418 y_position: -45312 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 10424 y_position: -45312 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 10618 y_position: -45312 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 10885 y_position: -45312 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 10731 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11935 y_position: -45312 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 12563 y_position: -45312 font: Amiri +glyph [5985] x_offset: 0 y_offset: 0 x_advance: 990 x_position: 12535 y_position: -45312 font: Amiri +glyph [427] x_offset: -356 y_offset: 70 x_advance: 0 x_position: 13169 y_position: -45242 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 13525 y_position: -45312 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 13887 y_position: -45312 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 14013 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14834 y_position: -45312 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 x_position: 15978 y_position: -45312 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 15434 y_position: -45312 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 17449 y_position: -45312 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 17685 y_position: -45312 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 17834 y_position: -45312 font: Amiri +glyph [431] x_offset: -372 y_offset: 0 x_advance: 0 x_position: 18666 y_position: -45312 font: Amiri +glyph [2439] x_offset: -300 y_offset: 0 x_advance: 408 x_position: 18738 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 19599 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 19189 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19446 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 19946 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20306 y_position: -45312 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20626 y_position: -45312 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20752 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21573 y_position: -45312 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 22147 y_position: -45312 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 22173 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22992 y_position: -45312 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 23082 y_position: -45312 font: Amiri +glyph [3385] x_offset: 0 y_offset: 0 x_advance: 565 x_position: 23438 y_position: -45312 font: Amiri +glyph [431] x_offset: -82 y_offset: 0 x_advance: 0 x_position: 23921 y_position: -45312 font: Amiri +glyph [3358] x_offset: 0 y_offset: 0 x_advance: 792 x_position: 24003 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 24948 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 24538 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 24795 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 25295 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 25655 y_position: -45312 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 25975 y_position: -45312 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 26101 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26922 y_position: -45312 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 27496 y_position: -45312 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 27522 y_position: -45312 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 28341 y_position: -45312 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 28577 y_position: -45312 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 28726 y_position: -45312 font: Amiri +glyph [431] x_offset: -297 y_offset: 0 x_advance: 0 x_position: 29633 y_position: -45312 font: Amiri +glyph [2154] x_offset: -400 y_offset: 0 x_advance: 565 x_position: 29530 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 30648 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 30238 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30495 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30995 y_position: -45312 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 31355 y_position: -45312 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 31591 y_position: -45312 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 31740 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32944 y_position: -45312 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 33440 y_position: -44582 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 33544 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 34326 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 34949 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 34539 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 34796 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 35296 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 35656 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36102 y_position: -45312 font: Amiri +glyph [429] x_offset: 266 y_offset: 620 x_advance: 0 x_position: 36968 y_position: -44692 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 36702 y_position: -45312 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 37810 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38012 y_position: -45312 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 38406 y_position: -45312 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 38512 y_position: -45312 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 38923 y_position: -45312 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 39287 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39677 y_position: -45312 font: Amiri +glyph [429] x_offset: 46 y_offset: 0 x_advance: 0 x_position: 40323 y_position: -45312 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 40277 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 41513 y_position: -45312 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 41777 y_position: -45312 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41983 y_position: -45312 font: Amiri +glyph [431] x_offset: 78 y_offset: 0 x_advance: 0 x_position: 42811 y_position: -45312 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 42733 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 43661 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 43251 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 43508 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 44008 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 44368 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44814 y_position: -45312 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 45414 y_position: -45312 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 45819 y_position: -45312 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 46375 y_position: -45312 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 46776 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -48896 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 474 y_position: -48896 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 600 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1421 y_position: -48896 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 2021 y_position: -48896 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2671 y_position: -48896 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 3627 y_position: -48896 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 3611 y_position: -48896 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 4723 y_position: -48896 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 4876 y_position: -48896 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 5170 y_position: -48896 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 5500 y_position: -48896 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 5670 y_position: -48896 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 6467 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7407 y_position: -48896 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 7751 y_position: -48896 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 8007 y_position: -48896 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 8545 y_position: -48896 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 8715 y_position: -48896 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 9119 y_position: -48896 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 9515 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10120 y_position: -48896 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 10350 y_position: -48896 font: Amiri +glyph [4898] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 10720 y_position: -48896 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 10985 y_position: -48896 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 11548 y_position: -48896 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 12116 y_position: -48896 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 11932 y_position: -48896 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 13016 y_position: -48896 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 13412 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14017 y_position: -48896 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 15045 y_position: -48896 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 14617 y_position: -48896 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 16414 y_position: -48931 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 16183 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16663 y_position: -48896 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 17139 y_position: -48896 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 17263 y_position: -48896 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 17985 y_position: -48896 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 18019 y_position: -48896 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 18928 y_position: -48896 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 18984 y_position: -48896 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 x_position: 20203 y_position: -48896 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 x_position: 20149 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21492 y_position: -48896 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 22400 y_position: -48896 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 22092 y_position: -48896 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 23218 y_position: -48896 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 23352 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24149 y_position: -48896 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 24469 y_position: -48896 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 24749 y_position: -48896 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 25620 y_position: -48896 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 25526 y_position: -48896 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 26921 y_position: -48931 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 26690 y_position: -48896 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 27014 y_position: -48896 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 27170 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27989 y_position: -48896 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 28589 y_position: -48896 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 29523 y_position: -48896 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 29529 y_position: -48896 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 30702 y_position: -48896 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 30916 y_position: -48896 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 31172 y_position: -48896 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 32058 y_position: -48931 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 31757 y_position: -48896 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 32254 y_position: -48896 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 32650 y_position: -48896 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 33255 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34195 y_position: -48896 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 34515 y_position: -48896 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 34795 y_position: -48896 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 35136 y_position: -48896 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 35572 y_position: -48896 font: Amiri +glyph [427] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 35942 y_position: -48896 font: Amiri +glyph [4185] x_offset: 170 y_offset: 0 x_advance: 1304 x_position: 36132 y_position: -48896 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 37010 y_position: -48896 font: Amiri +glyph [4432] x_offset: 0 y_offset: 0 x_advance: 1092 x_position: 37266 y_position: -48896 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 38232 y_position: -48896 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 38358 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39179 y_position: -48896 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 39779 y_position: -48896 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 40159 y_position: -49836 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 40429 y_position: -48896 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 41211 y_position: -48896 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 41575 y_position: -48896 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 41681 y_position: -48896 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 42214 y_position: -48896 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 42456 y_position: -48896 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 42567 y_position: -48896 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 42604 y_position: -48896 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42861 y_position: -48896 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43361 y_position: -48896 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43721 y_position: -48896 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44041 y_position: -48896 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44167 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44988 y_position: -48896 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 45588 y_position: -48896 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 46508 y_position: -48896 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 46528 y_position: -48896 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 47701 y_position: -48896 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 47785 y_position: -48896 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 48171 y_position: -48896 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 48494 y_position: -48896 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 48671 y_position: -48896 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 48877 y_position: -48896 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 48914 y_position: -48896 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 49171 y_position: -48896 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 49671 y_position: -48896 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 50031 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -52480 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 600 y_position: -52480 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 1108 y_position: -52480 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 1464 y_position: -52480 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 2072 y_position: -52480 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 2094 y_position: -52480 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 2438 y_position: -52480 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 2844 y_position: -52480 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 2958 y_position: -52480 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 3200 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3743 y_position: -52480 font: Amiri +glyph [425] x_offset: -310 y_offset: 0 x_advance: 0 x_position: 4033 y_position: -52480 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 4343 y_position: -52480 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 4608 y_position: -52480 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 5171 y_position: -52480 font: Amiri +glyph [429] x_offset: -113 y_offset: 0 x_advance: 0 x_position: 5442 y_position: -52480 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 5555 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6355 y_position: -52480 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 6429 y_position: -52480 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 6825 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7430 y_position: -52480 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 7874 y_position: -52480 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 8030 y_position: -52480 font: Amiri +glyph [429] x_offset: 109 y_offset: 0 x_advance: 0 x_position: 9114 y_position: -52480 font: Amiri +glyph [5116] x_offset: 0 y_offset: 0 x_advance: 1132 x_position: 9005 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 10011 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 10137 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10958 y_position: -52480 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11558 y_position: -52480 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 12278 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 12498 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 12969 y_position: -52480 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 13275 y_position: -52480 font: Amiri +glyph [429] x_offset: -384 y_offset: 0 x_advance: 0 x_position: 13236 y_position: -52480 font: Amiri +glyph [3742] x_offset: 0 y_offset: 0 x_advance: 620 x_position: 13620 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 14240 y_position: -52480 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14454 y_position: -52480 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 14710 y_position: -52480 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15295 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16235 y_position: -52480 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 16615 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 16835 y_position: -52480 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 17506 y_position: -52480 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 17612 y_position: -52480 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18387 y_position: -52480 font: Amiri +glyph [429] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 18543 y_position: -52480 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 18887 y_position: -52480 font: Amiri +glyph [431] x_offset: 128 y_offset: 0 x_advance: 0 x_position: 19420 y_position: -52480 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 19292 y_position: -52480 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 19986 y_position: -52480 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 20422 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20686 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20812 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21633 y_position: -52480 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 22233 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22883 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 23329 y_position: -52480 font: Amiri +glyph [428] x_offset: -167 y_offset: 0 x_advance: 0 x_position: 23983 y_position: -52480 font: Amiri +glyph [4014] x_offset: 0 y_offset: 0 x_advance: 613 x_position: 24150 y_position: -52480 font: Amiri +glyph [427] x_offset: -87 y_offset: 0 x_advance: 0 x_position: 24676 y_position: -52480 font: Amiri +glyph [3989] x_offset: 0 y_offset: 0 x_advance: 1187 x_position: 24763 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25950 y_position: -52480 font: Amiri +glyph [427] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 26076 y_position: -52480 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 26420 y_position: -52480 font: Amiri +glyph [427] x_offset: -13 y_offset: 0 x_advance: 0 x_position: 26709 y_position: -52480 font: Amiri +glyph [5280] x_offset: 0 y_offset: 0 x_advance: 787 x_position: 26722 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27509 y_position: -52480 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 27939 y_position: -52480 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 28109 y_position: -52480 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 28963 y_position: -52480 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 29035 y_position: -52480 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 29637 y_position: -52480 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 29743 y_position: -52480 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 30226 y_position: -52480 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30518 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30878 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31324 y_position: -52480 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31924 y_position: -52480 font: Amiri +glyph [427] x_offset: 104 y_offset: 0 x_advance: 0 x_position: 32968 y_position: -52480 font: Amiri +glyph [3217] x_offset: 0 y_offset: 0 x_advance: 1152 x_position: 32864 y_position: -52480 font: Amiri +glyph [427] x_offset: -555 y_offset: 0 x_advance: 0 x_position: 33461 y_position: -52480 font: Amiri +glyph [3189] x_offset: 0 y_offset: 0 x_advance: 299 x_position: 34016 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 34315 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 34479 y_position: -52480 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 34785 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 34824 y_position: -52480 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 35130 y_position: -52480 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 35784 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36724 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 37198 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 37324 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38145 y_position: -52480 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 38465 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 38745 y_position: -52480 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 39126 y_position: -52480 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 39522 y_position: -52480 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 39971 y_position: -52480 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 40127 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40946 y_position: -52480 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 41310 y_position: -52480 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 41416 y_position: -52480 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 41871 y_position: -52480 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 42191 y_position: -52480 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 42569 y_position: -52480 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 42771 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43199 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43645 y_position: -52480 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44245 y_position: -52480 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 44905 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 45185 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 45656 y_position: -52480 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 45962 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 46001 y_position: -52480 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 46307 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 46913 y_position: -52480 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46997 y_position: -52480 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47383 y_position: -52480 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 47563 y_position: -52480 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 47883 y_position: -52480 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 48261 y_position: -52480 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 48463 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48891 y_position: -52480 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 49337 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -56064 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 574 y_position: -56064 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 600 y_position: -56064 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1419 y_position: -56064 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 1783 y_position: -56064 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 1889 y_position: -56064 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 2462 y_position: -56064 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 2664 y_position: -56064 font: Amiri +glyph [429] x_offset: -534 y_offset: 0 x_advance: 0 x_position: 2630 y_position: -56064 font: Amiri +glyph [2999] x_offset: 0 y_offset: 0 x_advance: 303 x_position: 3164 y_position: -56064 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 3265 y_position: -56064 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 3467 y_position: -56064 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 3895 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4341 y_position: -56064 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 4571 y_position: -56064 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 4941 y_position: -56064 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 5288 y_position: -56064 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 5644 y_position: -56064 font: Amiri +glyph [431] x_offset: 140 y_offset: 0 x_advance: 0 x_position: 6228 y_position: -56064 font: Amiri +glyph [4974] x_offset: 0 y_offset: 0 x_advance: 1054 x_position: 6088 y_position: -56064 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 7357 y_position: -56120 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 7142 y_position: -56064 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 7868 y_position: -56064 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 7840 y_position: -56064 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 8459 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8905 y_position: -56064 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9249 y_position: -56064 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 9505 y_position: -56064 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 9943 y_position: -56064 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 10213 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11139 y_position: -56064 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 11739 y_position: -56064 font: Amiri +glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 x_position: 12757 y_position: -56064 font: Amiri +glyph [392] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 12191 y_position: -56064 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 14016 y_position: -56064 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14088 y_position: -56064 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 14590 y_position: -56064 font: Amiri +glyph [2042] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 14796 y_position: -56064 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 15254 y_position: -56064 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 15546 y_position: -56064 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15906 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16352 y_position: -56064 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 16952 y_position: -56064 font: Amiri +glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 x_position: 17210 y_position: -56064 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 17660 y_position: -56064 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 18281 y_position: -56099 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 18050 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18530 y_position: -56064 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 19174 y_position: -56064 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 19130 y_position: -56064 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 20366 y_position: -56064 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 20440 y_position: -56064 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 20836 y_position: -56064 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 21315 y_position: -56064 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 21441 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22262 y_position: -56064 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 22862 y_position: -56064 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 23648 y_position: -56064 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 23618 y_position: -56064 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 24522 y_position: -56064 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 24628 y_position: -56064 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 25151 y_position: -56064 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 25403 y_position: -56064 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 26008 y_position: -56120 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 25793 y_position: -56064 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 26519 y_position: -56064 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 26491 y_position: -56064 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 27110 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27556 y_position: -56064 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 27900 y_position: -56064 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 28156 y_position: -56064 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 28594 y_position: -56064 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 28864 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29790 y_position: -56064 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 30390 y_position: -56064 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 31286 y_position: -56064 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 31330 y_position: -56064 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 32069 y_position: -56064 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 32442 y_position: -56064 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 32503 y_position: -56064 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 32889 y_position: -56064 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 33097 y_position: -56064 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 33389 y_position: -56064 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 33749 y_position: -56064 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34195 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35135 y_position: -56064 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 36110 y_position: -56064 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 35735 y_position: -56064 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37632 y_position: -56064 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 x_position: 38042 y_position: -57014 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 x_position: 38078 y_position: -56064 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 38878 y_position: -56064 font: Amiri +glyph [2035] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 39048 y_position: -56064 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 39900 y_position: -56064 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 40026 y_position: -56064 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40847 y_position: -56064 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 41447 y_position: -56064 font: Amiri +glyph [426] x_offset: -99 y_offset: 0 x_advance: 0 x_position: 41998 y_position: -56064 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 42097 y_position: -56064 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 x_position: 42294 y_position: -56064 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 42925 y_position: -56064 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 43180 y_position: -56064 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 43214 y_position: -56064 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 43900 y_position: -56064 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 43922 y_position: -56064 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 44566 y_position: -56064 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 44672 y_position: -56064 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 45277 y_position: -56064 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 45447 y_position: -56064 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: -436 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -59648 font: Amiri +glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 x_position: 1044 y_position: -59648 font: Amiri +glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 x_position: 600 y_position: -59648 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 2418 y_position: -59648 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 2140 y_position: -59648 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 3178 y_position: -59648 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 3304 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4125 y_position: -59648 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 4725 y_position: -59648 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 5233 y_position: -59648 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 5589 y_position: -59648 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 6197 y_position: -59648 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 6219 y_position: -59648 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 6563 y_position: -59648 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 6969 y_position: -59648 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 7083 y_position: -59648 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 7325 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7868 y_position: -59648 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 8468 y_position: -59648 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 9378 y_position: -59648 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 9408 y_position: -59648 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 10147 y_position: -59648 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 10520 y_position: -59648 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 10531 y_position: -59648 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 10967 y_position: -59648 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11357 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12297 y_position: -59648 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 12771 y_position: -59648 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 12897 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13718 y_position: -59648 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 14318 y_position: -59648 font: Amiri +glyph [429] x_offset: 166 y_offset: 0 x_advance: 0 x_position: 15134 y_position: -59648 font: Amiri +glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 x_position: 14968 y_position: -59648 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 16375 y_position: -59648 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 16465 y_position: -59648 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 16821 y_position: -59648 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 17320 y_position: -59648 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 17524 y_position: -59648 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 18007 y_position: -59648 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 18299 y_position: -59648 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 18659 y_position: -59648 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 18900 y_position: -59648 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 19129 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19714 y_position: -59648 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 19944 y_position: -59648 font: Amiri +glyph [2646] x_offset: 0 y_offset: 0 x_advance: 457 x_position: 20314 y_position: -59648 font: Amiri +glyph [429] x_offset: -84 y_offset: 0 x_advance: 0 x_position: 20687 y_position: -59648 font: Amiri +glyph [2631] x_offset: 0 y_offset: 0 x_advance: 692 x_position: 20771 y_position: -59648 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 x_position: 21271 y_position: -59648 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 21463 y_position: -59648 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 21730 y_position: -59648 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 21576 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22780 y_position: -59648 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 23100 y_position: -59648 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 23380 y_position: -59648 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 24260 y_position: -59544 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 23850 y_position: -59648 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 24157 y_position: -59648 font: Amiri +glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 x_position: 24797 y_position: -59823 font: Amiri +glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 24547 y_position: -59648 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 24621 y_position: -59648 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 25017 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25622 y_position: -59648 font: Amiri +glyph [428] x_offset: -390 y_offset: 0 x_advance: 0 x_position: 25832 y_position: -59648 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 26222 y_position: -59648 font: Amiri +glyph [429] x_offset: 69 y_offset: 0 x_advance: 0 x_position: 26707 y_position: -59648 font: Amiri +glyph [5184] x_offset: 0 y_offset: 0 x_advance: 801 x_position: 26638 y_position: -59648 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 27439 y_position: -59648 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 27353 y_position: -59648 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 27909 y_position: -59648 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 28196 y_position: -59648 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 28058 y_position: -59648 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 29204 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29650 y_position: -59648 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 29994 y_position: -59648 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 30250 y_position: -59648 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 30788 y_position: -59648 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 30958 y_position: -59648 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 31362 y_position: -59648 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 31758 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32363 y_position: -59648 font: Amiri +glyph [428] x_offset: -150 y_offset: 0 x_advance: 0 x_position: 32813 y_position: -59648 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 32963 y_position: -59648 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 33630 y_position: -59648 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 33886 y_position: -59648 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 34872 y_position: -59648 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 34594 y_position: -59648 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 35973 y_position: -59704 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 35758 y_position: -59648 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 36484 y_position: -59648 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 36456 y_position: -59648 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37075 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37521 y_position: -59648 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 38121 y_position: -59648 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 38974 y_position: -59544 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 38564 y_position: -59648 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 38591 y_position: -59648 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 39689 y_position: -59683 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 39388 y_position: -59648 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 39885 y_position: -59648 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 40281 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40886 y_position: -59648 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 41486 y_position: -59648 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 42198 y_position: -59648 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 42242 y_position: -59648 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 42981 y_position: -59648 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 43354 y_position: -59648 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 x_position: 43375 y_position: -59648 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 43801 y_position: -59648 font: Amiri +glyph [431] x_offset: -2 y_offset: 0 x_advance: 0 x_position: 44204 y_position: -59648 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 44206 y_position: -59648 font: Amiri +glyph [429] x_offset: -164 y_offset: 0 x_advance: 0 x_position: 45284 y_position: -59648 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 45172 y_position: -59648 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45448 y_position: -59648 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 46048 y_position: -59648 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 46492 y_position: -59648 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 46938 y_position: -59648 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: -396 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -63232 font: Amiri +glyph [425] x_offset: 790 y_offset: 0 x_advance: 0 x_position: 1390 y_position: -63232 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 600 y_position: -63232 font: Amiri +glyph [431] x_offset: -172 y_offset: 0 x_advance: 0 x_position: 2443 y_position: -63232 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 2615 y_position: -63232 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 3462 y_position: -63232 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 3318 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4481 y_position: -63232 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 4825 y_position: -63232 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 5081 y_position: -63232 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 5519 y_position: -63232 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 5789 y_position: -63232 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6589 y_position: -63232 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6715 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7536 y_position: -63232 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 8136 y_position: -63232 font: Amiri +glyph [429] x_offset: 466 y_offset: 0 x_advance: 0 x_position: 9358 y_position: -63232 font: Amiri +glyph [2165] x_offset: 0 y_offset: 0 x_advance: 2060 x_position: 8892 y_position: -63232 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 10952 y_position: -63232 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 11248 y_position: -63232 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 11452 y_position: -63232 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 12505 y_position: -63232 font: Amiri +glyph [2232] x_offset: 0 y_offset: 0 x_advance: 1250 x_position: 12227 y_position: -63232 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 13630 y_position: -63128 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 13220 y_position: -63232 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13477 y_position: -63232 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 13977 y_position: -63232 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 14337 y_position: -63232 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 14578 y_position: -63232 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 14807 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15392 y_position: -63232 font: Amiri +glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 x_position: 16108 y_position: -63362 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 15992 y_position: -63232 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 16846 y_position: -63232 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 16918 y_position: -63232 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 17520 y_position: -63232 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 17626 y_position: -63232 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 18109 y_position: -63232 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 18401 y_position: -63232 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 18761 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19207 y_position: -63232 font: Amiri +glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 x_position: 20251 y_position: -63232 font: Amiri +glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 x_position: 19807 y_position: -63232 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 21625 y_position: -63232 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 21347 y_position: -63232 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 22385 y_position: -63232 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 22511 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23332 y_position: -63232 font: Amiri +glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 x_position: 24876 y_position: -63232 font: Amiri +glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 x_position: 23932 y_position: -63232 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 x_position: 25716 y_position: -63232 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 26142 y_position: -63232 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 26361 y_position: -63232 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 26547 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27789 y_position: -63232 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 28419 y_position: -63232 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 28389 y_position: -63232 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 29625 y_position: -63232 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 30213 y_position: -63232 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 30333 y_position: -63232 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 30672 y_position: -63232 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 31108 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31498 y_position: -63232 font: Amiri +glyph [4822] x_offset: 0 y_offset: 0 x_advance: 354 x_position: 32098 y_position: -63232 font: Amiri +glyph [427] x_offset: -336 y_offset: 0 x_advance: 0 x_position: 32116 y_position: -63232 font: Amiri +glyph [4808] x_offset: 0 y_offset: 0 x_advance: 76 x_position: 32452 y_position: -63232 font: Amiri +glyph [427] x_offset: 169 y_offset: 0 x_advance: 0 x_position: 32697 y_position: -63232 font: Amiri +glyph [4776] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 32528 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33728 y_position: -63232 font: Amiri +glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 x_position: 34444 y_position: -63362 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 34328 y_position: -63232 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 35182 y_position: -63232 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 35254 y_position: -63232 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 35856 y_position: -63232 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 35962 y_position: -63232 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 36445 y_position: -63232 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 36737 y_position: -63232 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37097 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37543 y_position: -63232 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 38113 y_position: -63232 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 38143 y_position: -63232 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 38882 y_position: -63232 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 39255 y_position: -63232 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 39266 y_position: -63232 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 39702 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40092 y_position: -63232 font: Amiri +glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 x_position: 41636 y_position: -63232 font: Amiri +glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 x_position: 40692 y_position: -63232 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 x_position: 42476 y_position: -63232 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 42902 y_position: -63232 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 43121 y_position: -63232 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 43307 y_position: -63232 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44549 y_position: -63232 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 45179 y_position: -63232 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 45149 y_position: -63232 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 46385 y_position: -63232 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 46973 y_position: -63232 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 47093 y_position: -63232 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 47868 y_position: -63232 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: -436 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -66816 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 570 y_position: -66816 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 600 y_position: -66816 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 1339 y_position: -66816 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 1712 y_position: -66816 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 1723 y_position: -66816 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 2159 y_position: -66816 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2549 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3489 y_position: -66816 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 3819 y_position: -67756 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 4089 y_position: -66816 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 4995 y_position: -66816 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 4871 y_position: -66816 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 6575 y_position: -66712 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 6165 y_position: -66816 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 6367 y_position: -66816 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 7147 y_position: -66816 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 7507 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7953 y_position: -66816 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 8553 y_position: -66816 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 8918 y_position: -66816 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 8999 y_position: -66816 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9708 y_position: -66816 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 9964 y_position: -66816 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 10764 y_position: -66816 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 10890 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11711 y_position: -66816 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 12311 y_position: -66816 font: Amiri +glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 x_position: 13027 y_position: -66816 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 12961 y_position: -66816 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14134 y_position: -66816 font: Amiri +glyph [1916] x_offset: 153 y_offset: 184 x_advance: 0 x_position: 14995 y_position: -66632 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 14585 y_position: -66816 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14842 y_position: -66816 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 15342 y_position: -66816 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15702 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16148 y_position: -66816 font: Amiri +glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 x_position: 16914 y_position: -66196 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 16748 y_position: -66816 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 17546 y_position: -66816 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 17758 y_position: -66816 font: Amiri +glyph [427] x_offset: -216 y_offset: 0 x_advance: 0 x_position: 18147 y_position: -66816 font: Amiri +glyph [2517] x_offset: 0 y_offset: 0 x_advance: 613 x_position: 18363 y_position: -66816 font: Amiri +glyph [429] x_offset: -340 y_offset: 0 x_advance: 0 x_position: 18636 y_position: -66816 font: Amiri +glyph [2483] x_offset: 0 y_offset: 0 x_advance: 362 x_position: 18976 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19338 y_position: -66816 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 19938 y_position: -66816 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 20812 y_position: -66816 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 20694 y_position: -66816 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 21543 y_position: -66816 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 21713 y_position: -66816 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 22271 y_position: -66816 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 22671 y_position: -66816 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 22994 y_position: -66816 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23171 y_position: -66816 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 23210 y_position: -66816 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 23671 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24149 y_position: -66816 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 24793 y_position: -66816 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 24749 y_position: -66816 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 x_position: 26242 y_position: -66712 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 x_position: 25832 y_position: -66816 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 25759 y_position: -66816 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 26783 y_position: -66816 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 26889 y_position: -66816 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 27228 y_position: -66816 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 27664 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28054 y_position: -66816 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 28757 y_position: -66816 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 28654 y_position: -66816 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 29513 y_position: -66816 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 29619 y_position: -66816 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 x_position: 29918 y_position: -66816 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30394 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30754 y_position: -66816 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 31354 y_position: -66816 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 31836 y_position: -66816 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 31806 y_position: -66816 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 33042 y_position: -66816 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 33630 y_position: -66816 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 33750 y_position: -66816 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 34089 y_position: -66816 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 34525 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34915 y_position: -66816 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 35235 y_position: -66816 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 35515 y_position: -66816 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 35986 y_position: -66816 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 36292 y_position: -66816 font: Amiri +glyph [431] x_offset: -122 y_offset: 0 x_advance: 0 x_position: 36515 y_position: -66816 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 x_position: 36637 y_position: -66816 font: Amiri +glyph [427] x_offset: 144 y_offset: -950 x_advance: 0 x_position: 37288 y_position: -67766 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 37324 y_position: -66816 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 38322 y_position: -66816 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 38294 y_position: -66816 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 39503 y_position: -66851 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 39272 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39752 y_position: -66816 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40352 y_position: -66816 font: Amiri +glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 x_position: 40493 y_position: -66816 font: Amiri +glyph [5010] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 40822 y_position: -66816 font: Amiri +glyph [431] x_offset: 137 y_offset: 0 x_advance: 0 x_position: 41315 y_position: -66816 font: Amiri +glyph [4995] x_offset: 0 y_offset: 0 x_advance: 1077 x_position: 41178 y_position: -66816 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 42255 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42701 y_position: -66816 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 43021 y_position: -66816 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 43301 y_position: -66816 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 43692 y_position: -66816 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 44078 y_position: -66816 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 44336 y_position: -66816 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 44578 y_position: -66816 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 44777 y_position: -66816 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 44983 y_position: -66816 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 x_position: 45787 y_position: -66816 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 x_position: 45733 y_position: -66816 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 47076 y_position: -66816 font: Amiri +glyph [431] x_offset: 178 y_offset: 0 x_advance: 0 x_position: 47854 y_position: -66816 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 47676 y_position: -66816 font: Amiri +glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 x_position: 49099 y_position: -66991 font: Amiri +glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 48849 y_position: -66816 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 49319 y_position: -66816 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 0 y_position: -70400 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 546 y_position: -69670 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 650 y_position: -70400 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 1432 y_position: -70400 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 2964 y_position: -70400 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 2998 y_position: -70400 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 x_position: 4055 y_position: -70296 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 3645 y_position: -70400 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3921 y_position: -70400 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 4521 y_position: -70400 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4965 y_position: -70400 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 5285 y_position: -70400 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 5411 y_position: -70400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6232 y_position: -70400 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 6798 y_position: -70400 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 6832 y_position: -70400 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 7503 y_position: -70400 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 7540 y_position: -70400 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 7797 y_position: -70400 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 7741 y_position: -70400 font: Amiri +glyph [3125] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 8297 y_position: -70400 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 8584 y_position: -70400 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 8446 y_position: -70400 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 9592 y_position: -70400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10038 y_position: -70400 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 10608 y_position: -70400 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 10638 y_position: -70400 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 11377 y_position: -70400 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 11750 y_position: -70400 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 11761 y_position: -70400 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12197 y_position: -70400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12587 y_position: -70400 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 13615 y_position: -70400 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 13187 y_position: -70400 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 14984 y_position: -70435 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 14753 y_position: -70400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15233 y_position: -70400 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15833 y_position: -70400 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 16743 y_position: -70400 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 16773 y_position: -70400 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 17512 y_position: -70400 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 17885 y_position: -70400 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 18332 y_position: -70400 font: Amiri + +UTF-32 clusters: 113 112 111 109 109 108 106 106 104 104 102 102 100 100 99 98 96 96 94 94 93 91 91 89 89 87 87 86 84 84 82 82 80 80 78 78 77 76 74 74 72 72 70 70 68 68 67 65 65 64 63 62 60 60 58 58 56 56 55 54 52 52 50 50 49 47 47 45 45 43 43 42 41 39 39 38 36 36 35 33 33 32 30 30 28 28 27 25 25 23 23 22 20 20 19 17 17 15 15 13 13 12 11 10 08 08 06 06 04 04 02 02 01 00 220 219 217 217 215 215 213 213 211 211 210 209 208 206 206 204 204 203 201 201 199 199 196 196 196 195 194 192 192 191 189 189 187 187 184 184 184 183 182 180 180 179 177 177 175 175 172 172 172 171 170 168 168 167 166 165 163 164 162 161 160 159 158 157 156 155 154 153 152 151 149 149 147 147 145 145 143 143 141 141 140 138 138 135 135 135 133 133 131 131 130 128 128 126 126 124 124 123 122 121 119 119 117 117 115 115 113 323 322 320 320 318 318 316 316 314 314 313 312 311 309 309 307 307 305 305 303 303 302 301 300 298 298 297 296 294 294 292 292 290 290 288 288 286 286 285 284 282 282 281 279 279 278 276 276 274 274 273 271 271 269 269 267 267 265 265 264 263 262 260 260 258 258 257 255 255 253 253 250 250 250 249 248 246 246 245 243 243 241 241 239 239 239 237 237 235 235 234 232 232 229 229 229 227 227 225 225 224 222 222 220 433 432 431 429 429 428 426 426 424 424 423 422 420 420 418 418 416 416 415 414 412 412 411 409 409 408 406 406 404 404 403 402 400 400 398 398 396 396 395 394 393 391 391 389 389 387 387 385 385 383 383 381 381 380 379 377 377 376 374 374 372 372 371 369 369 368 366 366 365 363 363 362 360 360 359 357 357 355 355 354 353 351 351 349 349 348 346 346 345 344 342 342 340 340 338 338 337 335 335 332 332 332 330 330 328 328 326 326 325 323 550 549 548 546 546 545 543 543 541 541 539 539 538 537 536 534 534 533 532 530 530 528 528 526 526 525 524 522 522 521 520 519 517 517 515 515 513 513 512 511 510 508 508 506 506 504 504 502 502 500 500 499 496 496 496 494 494 493 492 490 490 489 487 487 485 485 483 483 482 480 480 478 478 476 476 474 474 473 472 471 469 469 467 467 465 465 463 463 462 461 458 458 458 456 456 454 454 453 452 450 450 448 448 446 446 444 444 443 441 441 440 438 438 436 436 435 433 654 653 651 651 649 649 648 647 645 645 643 643 641 641 639 639 638 637 635 635 634 632 632 630 630 628 628 627 626 625 623 623 621 621 619 619 617 617 616 614 614 613 611 611 609 609 607 607 606 605 603 603 601 601 600 597 597 597 595 595 594 593 592 590 590 589 587 587 585 585 583 583 582 581 580 578 578 576 576 575 574 572 572 570 570 567 567 567 566 565 563 563 562 560 560 558 558 557 555 555 553 553 551 551 765 763 763 761 761 760 758 758 756 756 753 753 753 752 751 750 748 748 746 746 745 744 742 742 739 739 739 737 737 735 735 733 733 732 731 730 728 728 727 726 724 724 722 722 720 720 719 718 716 716 715 713 713 711 711 709 709 708 707 706 704 704 703 702 701 699 699 698 696 696 694 694 693 691 691 689 689 687 687 685 685 683 683 682 680 680 678 678 676 676 675 673 673 671 671 669 669 667 667 666 664 664 662 662 661 659 659 658 656 656 654 876 875 874 872 872 871 869 869 867 867 866 865 864 862 862 860 860 858 858 857 856 854 854 851 851 851 849 849 848 847 845 845 843 843 841 841 840 838 838 836 836 833 833 833 832 831 830 829 827 827 826 824 824 822 822 821 820 818 818 817 815 815 813 813 812 810 810 808 808 805 805 805 804 803 802 801 799 799 798 796 796 795 794 792 792 791 790 789 787 787 785 785 783 783 781 781 779 779 778 776 776 774 774 773 771 771 768 768 768 767 766 979 978 976 976 975 973 973 971 971 969 969 968 966 966 964 964 961 961 961 960 959 958 957 955 955 954 952 952 950 950 948 948 947 946 945 943 943 942 940 940 938 938 936 936 934 934 932 932 930 930 929 927 927 925 925 924 923 921 921 919 919 918 917 915 915 913 913 911 911 909 909 907 907 906 905 903 903 902 901 899 899 898 896 896 894 894 893 892 890 890 888 888 886 886 885 883 883 881 881 878 878 878 877 1099 1098 1096 1096 1094 1094 1093 1091 1091 1088 1088 1088 1087 1086 1085 1083 1083 1081 1081 1079 1079 1078 1077 1074 1074 1074 1072 1072 1070 1070 1068 1068 1067 1066 1065 1063 1063 1061 1061 1060 1059 1057 1057 1055 1055 1052 1052 1052 1050 1050 1048 1048 1047 1046 1044 1044 1043 1041 1041 1039 1039 1037 1037 1036 1034 1034 1032 1032 1029 1029 1029 1028 1027 1026 1025 1023 1023 1020 1020 1020 1018 1018 1016 1016 1015 1014 1012 1012 1011 1009 1009 1007 1007 1005 1005 1003 1003 1001 1001 1000 999 997 997 995 995 994 993 991 991 989 989 987 987 985 985 983 983 981 981 980 1210 1209 1207 1207 1205 1205 1202 1202 1202 1201 1200 1199 1198 1196 1196 1193 1193 1193 1191 1191 1190 1189 1187 1187 1185 1185 1184 1183 1181 1181 1179 1179 1177 1177 1175 1175 1174 1173 1172 1170 1170 1168 1168 1167 1166 1164 1164 1163 1161 1161 1159 1159 1157 1157 1156 1155 1154 1152 1152 1150 1150 1148 1148 1147 1145 1145 1143 1143 1141 1141 1140 1138 1138 1137 1135 1135 1134 1132 1132 1130 1130 1129 1128 1127 1125 1125 1124 1122 1122 1120 1120 1117 1117 1117 1116 1115 1114 1113 1111 1111 1110 1109 1107 1107 1105 1105 1103 1103 1101 1101 1099 1322 1321 1319 1319 1318 1316 1316 1314 1314 1313 1312 1310 1310 1307 1307 1307 1305 1305 1304 1302 1302 1300 1300 1299 1297 1297 1295 1295 1293 1293 1292 1291 1288 1288 1288 1286 1286 1284 1284 1283 1280 1280 1280 1279 1277 1277 1276 1274 1274 1272 1272 1270 1270 1269 1267 1267 1265 1265 1263 1263 1261 1261 1260 1259 1257 1257 1256 1254 1254 1252 1252 1249 1249 1249 1248 1247 1246 1245 1243 1243 1242 1241 1239 1239 1236 1236 1236 1234 1234 1232 1232 1231 1229 1229 1227 1227 1226 1224 1224 1222 1222 1220 1220 1218 1218 1216 1216 1215 1214 1212 1212 1210 1437 1436 1435 1432 1432 1432 1430 1430 1429 1427 1427 1425 1425 1423 1423 1421 1421 1421 1420 1418 1418 1417 1415 1415 1413 1413 1411 1411 1410 1408 1408 1406 1406 1404 1404 1403 1401 1401 1400 1398 1398 1396 1396 1393 1393 1393 1392 1391 1389 1389 1388 1386 1386 1385 1383 1383 1381 1381 1378 1378 1378 1377 1376 1374 1374 1373 1371 1371 1370 1368 1368 1366 1366 1363 1363 1363 1362 1361 1359 1359 1358 1356 1356 1355 1352 1352 1352 1351 1350 1349 1347 1347 1345 1345 1343 1343 1341 1341 1340 1338 1338 1337 1335 1335 1333 1333 1330 1330 1330 1329 1328 1327 1326 1324 1324 1322 1548 1546 1546 1545 1544 1543 1541 1541 1540 1538 1538 1536 1536 1535 1534 1532 1532 1530 1530 1528 1528 1527 1525 1525 1523 1523 1521 1521 1519 1519 1518 1516 1516 1514 1514 1513 1511 1511 1509 1509 1507 1507 1505 1505 1504 1502 1502 1500 1500 1499 1497 1497 1495 1495 1493 1493 1491 1491 1490 1489 1487 1487 1486 1484 1484 1482 1482 1480 1480 1479 1478 1476 1476 1474 1474 1472 1472 1470 1470 1468 1468 1467 1466 1464 1464 1463 1461 1461 1459 1459 1456 1456 1456 1455 1454 1452 1452 1451 1450 1448 1448 1447 1445 1445 1443 1443 1440 1440 1440 1439 1438 1671 1670 1668 1668 1666 1666 1664 1664 1662 1662 1661 1659 1659 1657 1657 1655 1655 1654 1652 1652 1651 1649 1649 1647 1647 1645 1645 1644 1643 1641 1641 1639 1639 1637 1637 1636 1634 1634 1633 1632 1630 1630 1628 1628 1627 1625 1625 1623 1623 1621 1621 1619 1619 1618 1617 1616 1615 1613 1613 1611 1611 1610 1608 1608 1606 1606 1605 1603 1603 1601 1601 1599 1599 1597 1597 1596 1595 1594 1592 1592 1590 1590 1589 1587 1587 1585 1585 1584 1583 1581 1581 1580 1578 1578 1576 1576 1574 1574 1573 1571 1571 1569 1569 1567 1567 1566 1565 1564 1562 1562 1560 1560 1558 1558 1557 1555 1555 1553 1553 1551 1551 1550 1549 1781 1780 1778 1778 1777 1775 1775 1773 1773 1771 1771 1769 1769 1768 1767 1765 1765 1763 1763 1761 1761 1759 1759 1757 1757 1756 1755 1753 1753 1751 1751 1750 1749 1747 1747 1745 1745 1743 1743 1741 1741 1740 1739 1738 1736 1736 1734 1734 1733 1731 1731 1730 1728 1728 1726 1726 1725 1724 1722 1722 1720 1720 1718 1718 1716 1716 1714 1714 1713 1712 1710 1710 1708 1708 1707 1706 1704 1704 1702 1702 1700 1700 1698 1698 1697 1696 1695 1693 1693 1692 1690 1690 1688 1688 1686 1686 1685 1684 1682 1682 1680 1680 1678 1678 1676 1676 1674 1674 1672 1672 1899 1898 1896 1896 1894 1894 1892 1892 1891 1890 1888 1888 1886 1886 1884 1884 1882 1882 1881 1880 1878 1878 1876 1876 1874 1874 1873 1872 1870 1870 1869 1868 1866 1866 1865 1863 1863 1861 1861 1859 1859 1858 1856 1856 1855 1853 1853 1851 1851 1849 1849 1847 1847 1846 1844 1844 1841 1841 1841 1839 1839 1837 1837 1836 1834 1834 1832 1832 1831 1829 1829 1827 1827 1826 1825 1823 1823 1821 1821 1819 1819 1818 1816 1816 1814 1814 1812 1812 1810 1810 1808 1808 1807 1806 1805 1802 1802 1802 1800 1800 1798 1798 1797 1796 1794 1794 1792 1792 1790 1790 1788 1788 1785 1785 1785 1784 1783 1781 1999 1998 1996 1996 1994 1994 1992 1992 1991 1989 1989 1987 1987 1985 1985 1984 1983 1981 1981 1980 1978 1978 1976 1976 1973 1973 1973 1972 1971 1969 1969 1968 1966 1966 1964 1964 1962 1962 1960 1960 1959 1958 1956 1956 1954 1954 1952 1952 1951 1949 1949 1947 1947 1945 1945 1944 1942 1942 1941 1939 1939 1937 1937 1936 1935 1933 1933 1931 1931 1930 1928 1928 1926 1926 1924 1924 1922 1922 1921 1920 1918 1918 1916 1916 1914 1914 1913 1911 1911 1909 1909 1907 1907 1906 1904 1904 1903 1901 1901 1899 2120 2119 2117 2117 2115 2115 2113 2113 2112 2111 2109 2109 2107 2107 2104 2104 2104 2103 2102 2101 2100 2098 2098 2096 2096 2094 2094 2093 2092 2090 2090 2089 2086 2086 2086 2085 2084 2083 2081 2081 2079 2079 2077 2077 2075 2075 2074 2073 2071 2071 2069 2069 2067 2067 2065 2065 2063 2063 2062 2060 2060 2057 2057 2057 2055 2055 2053 2053 2052 2050 2050 2048 2048 2046 2046 2045 2044 2042 2042 2041 2039 2039 2037 2037 2036 2034 2034 2032 2032 2030 2030 2028 2028 2026 2026 2024 2024 2023 2022 2020 2020 2018 2018 2017 2016 2014 2014 2012 2012 2010 2010 2008 2008 2006 2006 2005 2003 2003 2001 2001 1999 2163 2161 2161 2160 2158 2158 2155 2155 2155 2154 2153 2151 2151 2150 2148 2148 2145 2145 2145 2143 2143 2141 2141 2140 2139 2137 2137 2135 2135 2133 2133 2132 2130 2130 2128 2128 2127 2126 2124 2124 2122 2122 2120 +UTF-8 clusters: 208 207 206 202 202 200 196 196 192 192 188 188 184 184 182 181 177 177 173 173 172 168 168 164 164 160 160 159 155 155 151 151 147 147 143 143 141 140 136 136 132 132 128 128 124 124 122 118 118 117 116 114 110 110 106 106 102 102 101 100 96 96 92 92 90 86 86 82 82 78 78 77 76 72 72 71 67 67 65 61 61 60 56 56 52 52 50 46 46 42 42 41 37 37 35 31 31 27 27 23 23 21 20 19 15 15 11 11 07 07 03 03 01 00 404 403 399 399 395 395 391 391 387 387 385 384 382 378 378 374 374 373 369 369 365 365 359 359 359 357 355 351 351 350 346 346 342 342 336 336 336 334 332 328 328 327 323 323 319 319 313 313 313 311 309 305 305 304 302 301 299 300 298 297 295 293 291 289 287 285 283 282 281 280 276 276 272 272 268 268 264 264 260 260 259 255 255 249 249 249 245 245 241 241 240 236 236 232 232 228 228 227 225 224 220 220 216 216 212 212 208 595 594 590 590 586 586 582 582 578 578 576 575 574 570 570 566 566 562 562 558 558 556 555 554 550 550 549 548 544 544 540 540 536 536 532 532 528 528 527 525 521 521 520 516 516 514 510 510 506 506 505 501 501 497 497 493 493 489 489 487 486 484 480 480 476 476 475 471 471 467 467 461 461 461 459 457 453 453 452 448 448 444 444 440 440 440 436 436 432 432 431 427 427 421 421 421 417 417 413 413 412 408 408 404 796 795 793 789 789 787 783 783 779 779 778 777 773 773 769 769 765 765 764 763 759 759 758 754 754 752 748 748 744 744 743 742 738 738 734 734 730 730 729 728 726 722 722 718 718 714 714 710 710 706 706 702 702 701 699 695 695 693 689 689 685 685 684 680 680 678 674 674 673 669 669 667 663 663 662 658 658 654 654 653 652 648 648 644 644 642 638 638 637 636 632 632 628 628 624 624 623 619 619 613 613 613 609 609 605 605 601 601 599 595 1011 1010 1009 1005 1005 1003 999 999 995 995 991 991 989 988 987 983 983 982 981 977 977 973 973 969 969 968 966 962 962 961 960 958 954 954 950 950 946 946 945 944 942 938 938 934 934 930 930 926 926 922 922 921 915 915 915 911 911 910 909 905 905 903 899 899 895 895 891 891 890 886 886 882 882 878 878 874 874 872 871 869 865 865 861 861 857 857 853 853 852 850 844 844 844 840 840 836 836 835 833 829 829 825 825 821 821 817 817 816 812 812 810 806 806 802 802 800 796 1204 1203 1199 1199 1195 1195 1194 1193 1189 1189 1185 1185 1181 1181 1177 1177 1176 1175 1171 1171 1169 1165 1165 1161 1161 1157 1157 1156 1154 1152 1148 1148 1144 1144 1140 1140 1136 1136 1135 1131 1131 1129 1125 1125 1121 1121 1117 1117 1115 1114 1110 1110 1106 1106 1105 1099 1099 1099 1095 1095 1093 1092 1091 1087 1087 1085 1081 1081 1077 1077 1073 1073 1071 1070 1068 1064 1064 1060 1060 1059 1058 1054 1054 1050 1050 1044 1044 1044 1042 1040 1036 1036 1035 1031 1031 1027 1027 1025 1021 1021 1017 1017 1013 1013 1408 1404 1404 1400 1400 1399 1395 1395 1391 1391 1385 1385 1385 1383 1381 1380 1376 1376 1372 1372 1371 1370 1366 1366 1360 1360 1360 1356 1356 1352 1352 1348 1348 1347 1346 1344 1340 1340 1339 1337 1333 1333 1329 1329 1325 1325 1324 1323 1319 1319 1317 1313 1313 1309 1309 1305 1305 1303 1302 1301 1297 1297 1296 1295 1293 1289 1289 1287 1283 1283 1279 1279 1278 1274 1274 1270 1270 1266 1266 1262 1262 1258 1258 1257 1253 1253 1249 1249 1245 1245 1244 1240 1240 1236 1236 1232 1232 1228 1228 1227 1223 1223 1219 1219 1218 1214 1214 1212 1208 1208 1204 1608 1607 1606 1602 1602 1600 1596 1596 1592 1592 1591 1590 1588 1584 1584 1580 1580 1576 1576 1575 1574 1570 1570 1564 1564 1564 1560 1560 1559 1558 1554 1554 1550 1550 1546 1546 1545 1541 1541 1537 1537 1531 1531 1531 1529 1528 1527 1525 1521 1521 1519 1515 1515 1511 1511 1510 1509 1505 1505 1503 1499 1499 1495 1495 1494 1490 1490 1486 1486 1480 1480 1480 1478 1476 1475 1474 1470 1470 1468 1464 1464 1463 1462 1458 1458 1457 1456 1454 1450 1450 1446 1446 1442 1442 1438 1438 1434 1434 1433 1429 1429 1425 1425 1423 1419 1419 1413 1413 1413 1411 1409 1795 1794 1790 1790 1789 1785 1785 1781 1781 1777 1777 1776 1772 1772 1768 1768 1762 1762 1762 1760 1758 1757 1756 1752 1752 1750 1746 1746 1742 1742 1738 1738 1736 1735 1734 1730 1730 1729 1725 1725 1721 1721 1717 1717 1713 1713 1709 1709 1705 1705 1704 1700 1700 1696 1696 1695 1693 1689 1689 1685 1685 1684 1683 1679 1679 1675 1675 1671 1671 1667 1667 1663 1663 1662 1661 1657 1657 1656 1655 1651 1651 1649 1645 1645 1641 1641 1640 1639 1635 1635 1631 1631 1627 1627 1626 1622 1622 1618 1618 1612 1612 1612 1610 2016 2015 2011 2011 2007 2007 2005 2001 2001 1995 1995 1995 1993 1991 1990 1986 1986 1982 1982 1978 1978 1977 1975 1969 1969 1969 1965 1965 1961 1961 1957 1957 1956 1954 1952 1948 1948 1944 1944 1943 1942 1938 1938 1934 1934 1928 1928 1928 1924 1924 1920 1920 1919 1918 1914 1914 1913 1909 1909 1905 1905 1901 1901 1900 1896 1896 1892 1892 1886 1886 1886 1884 1882 1881 1880 1876 1876 1870 1870 1870 1866 1866 1862 1862 1861 1860 1856 1856 1855 1851 1851 1847 1847 1843 1843 1839 1839 1835 1835 1834 1832 1828 1828 1824 1824 1823 1822 1818 1818 1814 1814 1810 1810 1806 1806 1802 1802 1798 1798 1796 2220 2219 2215 2215 2211 2211 2205 2205 2205 2203 2201 2200 2199 2195 2195 2189 2189 2189 2185 2185 2184 2183 2179 2179 2175 2175 2174 2173 2169 2169 2165 2165 2161 2161 2157 2157 2155 2154 2152 2148 2148 2144 2144 2143 2141 2137 2137 2135 2131 2131 2127 2127 2123 2123 2121 2120 2118 2114 2114 2110 2110 2106 2106 2105 2101 2101 2097 2097 2093 2093 2092 2088 2088 2086 2082 2082 2080 2076 2076 2072 2072 2070 2069 2068 2064 2064 2062 2058 2058 2054 2054 2048 2048 2048 2046 2044 2043 2042 2038 2038 2037 2036 2032 2032 2028 2028 2024 2024 2020 2020 2016 2428 2427 2423 2423 2421 2417 2417 2413 2413 2412 2410 2406 2406 2400 2400 2400 2396 2396 2395 2391 2391 2387 2387 2385 2381 2381 2377 2377 2373 2373 2371 2370 2364 2364 2364 2360 2360 2356 2356 2355 2349 2349 2349 2347 2343 2343 2342 2338 2338 2334 2334 2330 2330 2329 2325 2325 2321 2321 2317 2317 2313 2313 2312 2311 2307 2307 2305 2301 2301 2297 2297 2291 2291 2291 2289 2287 2286 2285 2281 2281 2280 2279 2275 2275 2269 2269 2269 2265 2265 2261 2261 2260 2256 2256 2252 2252 2251 2247 2247 2243 2243 2239 2239 2235 2235 2231 2231 2230 2228 2224 2224 2220 2647 2646 2644 2638 2638 2638 2634 2634 2633 2629 2629 2625 2625 2621 2621 2617 2617 2617 2615 2611 2611 2610 2606 2606 2602 2602 2598 2598 2597 2593 2593 2589 2589 2585 2585 2584 2580 2580 2578 2574 2574 2570 2570 2564 2564 2564 2562 2560 2556 2556 2555 2551 2551 2549 2545 2545 2541 2541 2535 2535 2535 2533 2531 2527 2527 2526 2522 2522 2520 2516 2516 2512 2512 2506 2506 2506 2504 2502 2498 2498 2497 2493 2493 2491 2485 2485 2485 2483 2481 2480 2476 2476 2472 2472 2468 2468 2464 2464 2463 2459 2459 2457 2453 2453 2449 2449 2443 2443 2443 2441 2439 2438 2436 2432 2432 2428 2850 2846 2846 2845 2844 2843 2839 2839 2837 2833 2833 2829 2829 2828 2827 2823 2823 2819 2819 2815 2815 2814 2810 2810 2806 2806 2802 2802 2798 2798 2797 2793 2793 2789 2789 2788 2784 2784 2780 2780 2776 2776 2772 2772 2771 2767 2767 2763 2763 2762 2758 2758 2754 2754 2750 2750 2746 2746 2745 2744 2740 2740 2738 2734 2734 2730 2730 2726 2726 2725 2724 2720 2720 2716 2716 2712 2712 2708 2708 2704 2704 2703 2702 2698 2698 2696 2692 2692 2688 2688 2682 2682 2682 2680 2678 2674 2674 2673 2672 2668 2668 2666 2662 2662 2658 2658 2652 2652 2652 2650 2648 3078 3076 3072 3072 3068 3068 3064 3064 3060 3060 3059 3055 3055 3051 3051 3047 3047 3045 3041 3041 3040 3036 3036 3032 3032 3028 3028 3027 3026 3022 3022 3018 3018 3014 3014 3012 3008 3008 3007 3006 3002 3002 2998 2998 2996 2992 2992 2988 2988 2984 2984 2980 2980 2979 2978 2976 2974 2970 2970 2966 2966 2964 2960 2960 2956 2956 2955 2951 2951 2947 2947 2943 2943 2939 2939 2937 2936 2935 2931 2931 2927 2927 2925 2921 2921 2917 2917 2916 2915 2911 2911 2910 2906 2906 2902 2902 2898 2898 2896 2892 2892 2888 2888 2884 2884 2882 2881 2880 2876 2876 2872 2872 2868 2868 2866 2862 2862 2858 2858 2854 2854 2852 2851 3282 3281 3277 3277 3275 3271 3271 3267 3267 3263 3263 3259 3259 3257 3256 3252 3252 3248 3248 3244 3244 3240 3240 3236 3236 3234 3233 3229 3229 3225 3225 3224 3223 3219 3219 3215 3215 3211 3211 3207 3207 3205 3204 3202 3198 3198 3194 3194 3193 3189 3189 3187 3183 3183 3179 3179 3178 3176 3172 3172 3168 3168 3164 3164 3160 3160 3156 3156 3154 3153 3149 3149 3145 3145 3144 3143 3139 3139 3135 3135 3131 3131 3127 3127 3125 3124 3123 3119 3119 3117 3113 3113 3109 3109 3105 3105 3104 3103 3099 3099 3095 3095 3091 3091 3087 3087 3083 3083 3079 3079 3503 3502 3498 3498 3494 3494 3490 3490 3489 3487 3483 3483 3479 3479 3475 3475 3471 3471 3470 3469 3465 3465 3461 3461 3457 3457 3456 3455 3451 3451 3450 3449 3445 3445 3443 3439 3439 3435 3435 3431 3431 3429 3425 3425 3424 3420 3420 3416 3416 3412 3412 3408 3408 3407 3403 3403 3397 3397 3397 3393 3393 3389 3389 3388 3384 3384 3380 3380 3378 3374 3374 3370 3370 3368 3367 3363 3363 3359 3359 3355 3355 3354 3350 3350 3346 3346 3342 3342 3338 3338 3334 3334 3332 3331 3329 3323 3323 3323 3319 3319 3315 3315 3314 3312 3308 3308 3304 3304 3300 3300 3296 3296 3290 3290 3290 3288 3286 3282 3691 3690 3686 3686 3682 3682 3678 3678 3677 3673 3673 3669 3669 3665 3665 3664 3662 3658 3658 3656 3652 3652 3648 3648 3642 3642 3642 3640 3638 3634 3634 3633 3629 3629 3625 3625 3621 3621 3617 3617 3615 3614 3610 3610 3606 3606 3602 3602 3601 3597 3597 3593 3593 3589 3589 3588 3584 3584 3582 3578 3578 3574 3574 3573 3571 3567 3567 3563 3563 3562 3558 3558 3554 3554 3550 3550 3546 3546 3544 3543 3539 3539 3535 3535 3531 3531 3530 3526 3526 3522 3522 3518 3518 3517 3513 3513 3511 3507 3507 3503 3917 3916 3912 3912 3908 3908 3904 3904 3903 3902 3898 3898 3894 3894 3888 3888 3888 3886 3884 3883 3881 3877 3877 3873 3873 3869 3869 3868 3867 3863 3863 3861 3855 3855 3855 3853 3851 3850 3846 3846 3842 3842 3838 3838 3834 3834 3833 3831 3827 3827 3823 3823 3819 3819 3815 3815 3811 3811 3810 3806 3806 3800 3800 3800 3796 3796 3792 3792 3791 3787 3787 3783 3783 3779 3779 3778 3777 3773 3773 3771 3767 3767 3763 3763 3762 3758 3758 3754 3754 3750 3750 3746 3746 3742 3742 3738 3738 3737 3735 3731 3731 3727 3727 3725 3724 3720 3720 3716 3716 3712 3712 3708 3708 3704 3704 3703 3699 3699 3695 3695 3691 3998 3994 3994 3992 3988 3988 3982 3982 3982 3980 3978 3974 3974 3973 3969 3969 3963 3963 3963 3959 3959 3955 3955 3953 3952 3948 3948 3944 3944 3940 3940 3939 3935 3935 3931 3931 3930 3929 3925 3925 3921 3921 3917 From 65b74e2c0b65431ec48a69a5605b0aa2ce01120d Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 20:39:43 +0200 Subject: [PATCH 38/43] Move alignment handling to its own function --- src/raqm.c | 197 ++++++++++++++++++++++++++++------------------------- 1 file changed, 103 insertions(+), 94 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index dceb5703..398d91db 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1364,6 +1364,107 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) return true; } +static void +_raqm_align_text (raqm_t *rq, size_t glyph_count) +{ + raqm_glyph_t *glyphs = rq->glyphs; + int line_width = rq->line_width; + + switch (rq->alignment) + { + case RAQM_ALIGNMENT_RIGHT: + { + size_t j = 0; + int line = -1; + for (size_t i = glyph_count - 1; i != 0; i--) + { + if (glyphs[i].line != line) + { + int offset = line_width - (glyphs[i].x + glyphs[i].x_advance); + line = glyphs[i].line; + for (j = i; j != 0 && glyphs[j].line == line; j--) + { + /* check if at the start of the line there is a space */ + if (_raqm_is_space_glyph (rq, j) && (line != glyphs[j + 1].line)) + { + int space_width = glyphs[j].x_advance; + + /* apply shift */ + for (j = i; j != 0 && glyphs[j].line == line; j--) + { + glyphs[j - 1].x = glyphs[j - 1].x + space_width; + glyphs[j - 1].x += offset; + } + } + else + { + glyphs[j].x += offset; + } + } + } + i = j + 1; + } + break; + } + case RAQM_ALIGNMENT_CENTER: + { + size_t j = 0; + int line = -1; + for (size_t i = glyph_count - 1; i != 0; i--) + { + if (glyphs[i].line != line) + { + int offset = (line_width - (glyphs[i].x + glyphs[i].x_advance)) / 2; + line = glyphs[i].line; + for (j = i; j != 0 && glyphs[j].line == line; j--) + glyphs[j].x += offset; + } + i = j + 1; + } + break; + } + case RAQM_ALIGNMENT_JUSTIFY: + { + int space_count = 0; + size_t j = 0; + int line = -1; + for (size_t i = glyph_count - 1; i != 0; i--) + { + if (glyphs[i].line != line) + { + int space_extension = 0; + int offset = line_width - (glyphs[i].x + glyphs[i].x_advance); + line = glyphs[i].line; + + /* counting spaces in one line */ + for (j = i; j != 0 && glyphs[j].line == line; j--) + { + if (_raqm_is_space_glyph (rq, j)) + space_count++; + } + + /* distributing align offset to all spaces */ + if (space_count == 0) + offset = 0; + else + offset = offset / space_count; + for (size_t k = j + 1; glyphs[k].line == line; k++) + { + glyphs[k].x += space_extension; + if (_raqm_is_space_glyph (rq, k)) + space_extension += offset; + } + } + i = j + 1; + } + break; + } + case RAQM_ALIGNMENT_LEFT: + default: + break; + } +} + static bool _raqm_line_break (raqm_t *rq) { @@ -1446,100 +1547,8 @@ _raqm_line_break (raqm_t *rq) x += rq->glyphs[i].x_advance; } - /* handeling alighnment */ - switch (rq->alignment) - { - case RAQM_ALIGNMENT_RIGHT: - { - size_t j = 0; - line = -1; - for (size_t i = glyph_count - 1; i != 0; i--) - { - if (rq->glyphs[i].line != line) - { - int offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); - line = rq->glyphs[i].line; - for (j = i; j != 0 && rq->glyphs[j].line == line; j--) - { - /* check if at the start of the line there is a space */ - if (_raqm_is_space_glyph (rq, j) && (line != rq->glyphs[j+1].line)) - { - int space_width = rq->glyphs[j].x_advance; - - /* apply shift */ - for (j = i; j != 0 && rq->glyphs[j].line == line; j--) - { - rq->glyphs[j-1].x = rq->glyphs[j-1].x + space_width; - rq->glyphs[j-1].x += offset; - } - } - else - { - rq->glyphs[j].x += offset; - } - } - } - i = j + 1; - } - break; - } - case RAQM_ALIGNMENT_CENTER: - { - size_t j = 0; - line = -1; - for (size_t i = glyph_count - 1; i != 0; i--) - { - if (rq->glyphs[i].line != line) - { - int offset = (rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance)) / 2; - line = rq->glyphs[i].line; - for (j = i; j != 0 && rq->glyphs[j].line == line; j--) - rq->glyphs[j].x += offset; - } - i = j + 1; - } - break; - } - case RAQM_ALIGNMENT_JUSTIFY: - { - int space_count = 0; - size_t j = 0; - line = -1; - for (size_t i = glyph_count - 1; i != 0; i--) - { - if (rq->glyphs[i].line != line) - { - int space_extension = 0; - int offset = rq->line_width - (rq->glyphs[i].x + rq->glyphs[i].x_advance); - line = rq->glyphs[i].line; - - /* counting spaces in one line */ - for (j = i; j != 0 && rq->glyphs[j].line == line; j--) - { - if (_raqm_is_space_glyph (rq, j)) - space_count++; - } - - /* distributing align offset to all spaces */ - if (space_count == 0) - offset = 0; - else - offset = offset / space_count; - for (size_t k = j + 1; rq->glyphs[k].line == line; k++) - { - rq->glyphs[k].x += space_extension; - if (_raqm_is_space_glyph (rq, k)) - space_extension += offset; - } - } - i = j + 1; - } - break; - } - case RAQM_ALIGNMENT_LEFT: - default: - break; - } + /* Do text alignment */ + _raqm_align_text (rq, glyph_count); return true; } From 40038a141884751cc3c01d296a2c6e3a7f5b433a Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 15 Apr 2017 23:36:43 +0200 Subject: [PATCH 39/43] Add direction agonistic start/end alignment --- src/raqm.c | 35 +++++++++++++++++++++++++++++++++++ src/raqm.h | 8 ++++++++ 2 files changed, 43 insertions(+) diff --git a/src/raqm.c b/src/raqm.c index 398d91db..cee949b0 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -1369,8 +1369,37 @@ _raqm_align_text (raqm_t *rq, size_t glyph_count) { raqm_glyph_t *glyphs = rq->glyphs; int line_width = rq->line_width; + raqm_alignment_t alignment = rq->alignment; + raqm_alignment_t last_alignment = rq->alignment; switch (rq->alignment) + { + case RAQM_ALIGNMENT_START: + if (rq->resolved_dir == RAQM_DIRECTION_RTL) + alignment = RAQM_ALIGNMENT_RIGHT; + else + alignment = RAQM_ALIGNMENT_LEFT; + break; + case RAQM_ALIGNMENT_END: + if (rq->resolved_dir == RAQM_DIRECTION_RTL) + alignment = RAQM_ALIGNMENT_LEFT; + else + alignment = RAQM_ALIGNMENT_RIGHT; + break; + case RAQM_ALIGNMENT_JUSTIFY: + if (rq->resolved_dir == RAQM_DIRECTION_RTL) + last_alignment = RAQM_ALIGNMENT_RIGHT; + else + last_alignment = RAQM_ALIGNMENT_LEFT; + break; + case RAQM_ALIGNMENT_CENTER: + case RAQM_ALIGNMENT_RIGHT: + case RAQM_ALIGNMENT_LEFT: + default: + break; + } + + switch (alignment) { case RAQM_ALIGNMENT_RIGHT: { @@ -1428,6 +1457,7 @@ _raqm_align_text (raqm_t *rq, size_t glyph_count) int space_count = 0; size_t j = 0; int line = -1; + (void)last_alignment; for (size_t i = glyph_count - 1; i != 0; i--) { if (glyphs[i].line != line) @@ -1459,6 +1489,11 @@ _raqm_align_text (raqm_t *rq, size_t glyph_count) } break; } + case RAQM_ALIGNMENT_START: + case RAQM_ALIGNMENT_END: + /* Should have been resolved earlier. */ + assert(false); + break; case RAQM_ALIGNMENT_LEFT: default: break; diff --git a/src/raqm.h b/src/raqm.h index 98f624c5..dcd2ccf3 100644 --- a/src/raqm.h +++ b/src/raqm.h @@ -70,6 +70,12 @@ typedef enum /** * raqm_alignment_t: + * @RAQM_ALIGNMENT_START: Same as #RAQM_ALIGNMENT_RIGHT if paragraph direction + * is #RAQM_DIRECTION_RTL, same as #RAQM_ALIGNMENT_LEFT + * otherwise. + * @RAQM_ALIGNMENT_END: Same as #RAQM_ALIGNMENT_LEFT if paragraph direction is + * #RAQM_DIRECTION_RTL, same as #RAQM_ALIGNMENT_RIGHT + * otherwise. * @RAQM_ALIGNMENT_RIGHT: Paragraph is right aligned. * @RAQM_ALIGNMENT_LEFT: Paragraph is left aligned. * @RAQM_ALIGNMENT_CENTER: Paragraph is center aligned.. @@ -81,6 +87,8 @@ typedef enum */ typedef enum { + RAQM_ALIGNMENT_START, + RAQM_ALIGNMENT_END, RAQM_ALIGNMENT_RIGHT, RAQM_ALIGNMENT_LEFT, RAQM_ALIGNMENT_CENTER, From 352bf8cad630caed7dff5f6320bc267f110ef6ae Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 16 Apr 2017 02:21:22 +0200 Subject: [PATCH 40/43] Switch to libunibreak for finding possible breaks Our own implementation is based on: http://unicode.org/Public/PROGRAMS/LineBreakSampleCpp/ Which right there it says this is outdated and does not support the algorithm after Unicode 5.2. Further more the code was even more broken as there is mismatch between the number of break classes supported by UCDN abd that outdated code, which was resulting in out of bounds array access, fun! --- configure.ac | 1 + docs/Makefile.am | 2 +- src/Makefile.am | 5 +- src/raqm.c | 180 +-- tests/line-breaking-ltr.test | 764 ++++++------- tests/line-breaking-rtl.test | 2060 +++++++++++++++++----------------- 6 files changed, 1433 insertions(+), 1579 deletions(-) diff --git a/configure.ac b/configure.ac index f58881a0..82198329 100644 --- a/configure.ac +++ b/configure.ac @@ -33,6 +33,7 @@ PKG_PROG_PKG_CONFIG([0.20]) AX_PKG_CHECK_MODULES(FREETYPE, [freetype2 >= 12.0.6], []) AX_PKG_CHECK_MODULES(HARFBUZZ, [], harfbuzz) AX_PKG_CHECK_MODULES(FRIBIDI, [], fribidi) +AX_PKG_CHECK_MODULES(UNIBREAK, [], libunibreak) PKG_CHECK_MODULES(GLIB, glib-2.0, have_glib=true, have_glib=false) _save_libs="$LIBS" diff --git a/docs/Makefile.am b/docs/Makefile.am index 2fe86537..8ab9d732 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -32,7 +32,7 @@ SCAN_OPTIONS=--rebuild-types # Header files or dirs to ignore when scanning. Use base file/dir names # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code -IGNORE_HFILES=reorder_runs.h ucdn +IGNORE_HFILES=reorder_runs.h # Extra options to supply to gtkdoc-mkdb. # e.g. MKDB_OPTIONS=--xml-mode --output-format=xml diff --git a/src/Makefile.am b/src/Makefile.am index 7bc8cad6..fce4f519 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,9 +6,6 @@ check_LTLIBRARIES = libraqm-test.la libraqm_la_SOURCES = \ raqm.c \ raqm.h \ - ucdn/ucdn.h \ - ucdn/ucdn.c \ - ucdn/unicodedata_db.h \ $(NULL) include_HEADERS = \ @@ -19,6 +16,7 @@ libraqm_la_LIBADD = \ $(FREETYPE_LIBS) \ $(HARFBUZZ_LIBS) \ $(FRIBIDI_LIBS) \ + $(UNIBREAK_LIBS) \ $(WARN_LDLAGS) \ $(NULL) @@ -26,6 +24,7 @@ libraqm_la_CPPFLAGS = \ $(FREETYPE_CFLAGS) \ $(HARFBUZZ_CFLAGS) \ $(FRIBIDI_CFLAGS) \ + $(UNIBREAK_CFLAGS) \ $(WARN_CFLAGS) \ $(NULL) diff --git a/src/raqm.c b/src/raqm.c index cee949b0..f1fa7376 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -32,8 +32,8 @@ #include #include #include +#include -#include "ucdn/ucdn.h" #include "raqm.h" #if FRIBIDI_MAJOR_VERSION >= 1 @@ -1080,179 +1080,32 @@ _raqm_reorder_runs (const FriBidiCharType *types, return runs; } -typedef enum { - RAQM_DIRECT_BREAK = 0, /* _ in table, oo in array */ - RAQM_INDIRECT_BREAK, /* % in table, SS in array */ - RAQM_COMBINING_INDIRECT_BREAK, /* # in table, cc in array */ - RAQM_COMBINING_PROHIBITED_BREAK, /* @ in table CC in array */ - RAQM_PROHIBITED_BREAK, /* ^ in table, XX in array */ -} raqm_break_action_t; - static bool -_raqm_find_line_breaks (raqm_t *rq, bool *breaks) +_raqm_find_line_breaks (raqm_t *rq, bool *result) { - size_t length = rq->text_len; - int current_class; - int next_class; - raqm_break_action_t *actions; - -/* Define some short-cuts for the table */ -#define oo RAQM_DIRECT_BREAK /* '_' break allowed */ -#define SS RAQM_INDIRECT_BREAK /* '%' only break across space (aka 'indirect break' below) */ -#define cc RAQM_COMBINING_INDIRECT_BREAK /* '#' indirect break for combining marks */ -#define CC RAQM_COMBINING_PROHIBITED_BREAK /* '@' indirect break for combining marks */ -#define XX RAQM_PROHIBITED_BREAK /* '^' no break allowed_BRK */ - - static raqm_break_action_t break_pairs[][UCDN_LINEBREAK_CLASS_JT+1] = { - /* 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 */ - /* OP, CL, CL, QU, GL, NS, EX, SY, IS, PR, PO, NU, AL, ID, IN, HY, BA, BB, B2, ZW, CM, WJ, H2, H3, JL, JV, JT, = after class */ - /*OP*/ { XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, CC, XX, XX, XX, XX, XX, XX }, /* OP open */ - /*CL*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* CL close */ - /*CP*/ { oo, XX, XX, SS, SS, XX, XX, XX, XX, SS, SS, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* CL close */ - /*QU*/ { XX, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* QU quotation */ - /*GL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* GL glue */ - /*NS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* NS no-start */ - /*EX*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* EX exclamation/interrogation */ - /*SY*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* SY Syntax (slash) */ - /*IS*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* IS infix (numeric) separator */ - /*PR*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, SS, oo, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, SS }, /* PR prefix */ - /*PO*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* NU numeric */ - /*NU*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* AL alphabetic */ - /*AL*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* AL alphabetic */ - /*ID*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* ID ideograph (atomic) */ - /*IN*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* IN inseparable */ - /*HY*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, SS, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* HY hyphens and spaces */ - /*BA*/ { oo, XX, XX, SS, oo, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* BA break after */ - /*BB*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* BB break before */ - /*B2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, oo, oo, oo, oo, SS, SS, oo, XX, XX, cc, XX, oo, oo, oo, oo, oo }, /* B2 break either side, but not pair */ - /*ZW*/ { oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, oo, XX, oo, oo, oo, oo, oo, oo, oo }, /* ZW zero width space */ - /*CM*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, oo, SS, SS, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, oo }, /* CM combining mark */ - /*WJ*/ { SS, XX, XX, SS, SS, SS, XX, XX, XX, SS, SS, SS, SS, SS, SS, SS, SS, SS, SS, XX, cc, XX, SS, SS, SS, SS, SS }, /* WJ word joiner */ - /*H2*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, /* Hangul 2 Jamo syllable */ - /*H3*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, /* Hangul 3 Jamo syllable */ - /*JL*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, SS, SS, SS, SS, oo }, /* Jamo Leading Consonant */ - /*JV*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, SS, SS }, /* Jamo Vowel */ - /*JT*/ { oo, XX, XX, SS, SS, SS, XX, XX, XX, oo, SS, oo, oo, oo, SS, SS, SS, oo, oo, XX, cc, XX, oo, oo, oo, oo, SS }, /* Jamo Trailing Consonant */ - }; - -#undef oo -#undef SS -#undef cc -#undef CC -#undef XX - - if (length < 2) - return true; + char *breaks = NULL; + const char *lang; - actions = malloc (sizeof (raqm_break_action_t) * length); - if (!actions) + breaks = calloc (1, rq->text_len); + if (!breaks) return false; - for (size_t i = 0; i < length; i++) - actions[i] = RAQM_PROHIBITED_BREAK; - - current_class = ucdn_get_resolved_linebreak_class (rq->text[0]); - next_class = ucdn_get_resolved_linebreak_class (rq->text[1]); + lang = hb_language_to_string (rq->text_info[0].lang); - /* handle case where input starts with an LF */ - if (current_class == UCDN_LINEBREAK_CLASS_LF) - current_class = UCDN_LINEBREAK_CLASS_BK; + init_linebreak (); + set_linebreaks_utf32 (rq->text, rq->text_len, lang, breaks); - /* treat NL like BK */ - if (current_class == UCDN_LINEBREAK_CLASS_NL) - current_class = UCDN_LINEBREAK_CLASS_BK; - - /* treat SP at start of input as if it followed WJ */ - if (current_class == UCDN_LINEBREAK_CLASS_SP) - current_class = UCDN_LINEBREAK_CLASS_WJ; - - /* loop over all pairs in the string up to a hard break or CRLF pair */ - for (size_t i = 1; - (i < length) && (current_class != UCDN_LINEBREAK_CLASS_BK) && - (current_class != UCDN_LINEBREAK_CLASS_CR || - next_class == UCDN_LINEBREAK_CLASS_LF); - i++) + for (size_t i = 0; i < rq->text_len; i++) { - raqm_break_action_t action; - int class; - - next_class = ucdn_get_resolved_linebreak_class (rq->text[i]); - - /* handle spaces explicitly */ - if (next_class == UCDN_LINEBREAK_CLASS_SP) + if (breaks[i] == LINEBREAK_MUSTBREAK || breaks[i] == LINEBREAK_ALLOWBREAK) { - actions[i-1] = RAQM_PROHIBITED_BREAK; - continue; + result[i] = true; } - - if (next_class == UCDN_LINEBREAK_CLASS_BK || - next_class == UCDN_LINEBREAK_CLASS_NL || - next_class == UCDN_LINEBREAK_CLASS_LF) - { - actions[i-1] = RAQM_PROHIBITED_BREAK; - current_class = UCDN_LINEBREAK_CLASS_BK; - continue; - } - - if (next_class == UCDN_LINEBREAK_CLASS_CR) - { - actions[i-1] = RAQM_PROHIBITED_BREAK; - current_class = UCDN_LINEBREAK_CLASS_CR; - continue; - } - - action = break_pairs[current_class][next_class]; - actions[i - 1] = action; - class = ucdn_get_resolved_linebreak_class (rq->text[i - 1]); - - switch (action) - { - case RAQM_INDIRECT_BREAK: - if (class == UCDN_LINEBREAK_CLASS_SP) - actions[i - 1] = RAQM_INDIRECT_BREAK; - else - actions[i - 1] = RAQM_PROHIBITED_BREAK; - break; - case RAQM_COMBINING_PROHIBITED_BREAK: - actions[i - 1] = RAQM_COMBINING_PROHIBITED_BREAK; - if (class != UCDN_LINEBREAK_CLASS_SP) - continue; - break; - case RAQM_COMBINING_INDIRECT_BREAK: - actions[i - 1] = RAQM_PROHIBITED_BREAK; - if (class == UCDN_LINEBREAK_CLASS_SP) - { - actions[i - 1] = RAQM_PROHIBITED_BREAK; - if (i > 1) - { - int class2 = ucdn_get_resolved_linebreak_class (rq->text[i - 2]); - if (class2 == UCDN_LINEBREAK_CLASS_SP) - actions[i - 2] = RAQM_INDIRECT_BREAK; - else - actions[i - 2] = RAQM_DIRECT_BREAK; - } - } - else - continue; - break; - case RAQM_DIRECT_BREAK: - case RAQM_PROHIBITED_BREAK: - default: - break; - } - - current_class = next_class; - } - - for (size_t i = 0; i < length; i++) - { - if (actions[i] == RAQM_INDIRECT_BREAK || actions[i] == RAQM_DIRECT_BREAK) - breaks[i] = true; else - breaks[i] = false; + result[i] = false; } - free (actions); + free (breaks); return true; } @@ -1282,7 +1135,8 @@ static bool _raqm_is_space_glyph (raqm_t *rq, int idx) { uint32_t ch = rq->text[rq->glyphs[idx].cluster]; - return ucdn_get_general_category (ch) == UCDN_GENERAL_CATEGORY_ZS; + return hb_unicode_general_category (hb_unicode_funcs_get_default (), ch) == + HB_UNICODE_GENERAL_CATEGORY_SPACE_SEPARATOR; } static bool @@ -1337,7 +1191,7 @@ _raqm_break_lines (raqm_t *rq, size_t glyph_count) else cluster = rq->glyphs[j].cluster; - if (breaks[cluster]) + if (cluster < rq->text_len - 1 && breaks[cluster + 1]) break; } diff --git a/tests/line-breaking-ltr.test b/tests/line-breaking-ltr.test index e3cfa176..c51d0b92 100644 --- a/tests/line-breaking-ltr.test +++ b/tests/line-breaking-ltr.test @@ -970,388 +970,388 @@ glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 45938 y_position: glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46676 y_position: -2304 font: Amiri glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47536 y_position: -2304 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48566 y_position: -2304 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 49166 y_position: -2304 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1018 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 1618 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2478 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 3018 y_position: -5888 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 4048 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 4786 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6366 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 7384 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8414 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 9014 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9636 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10496 y_position: -5888 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 12076 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13096 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 14114 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14880 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15480 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 16020 y_position: -5888 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 17084 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17930 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 18470 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 19500 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20040 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 22100 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 23164 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23786 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 24386 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 25416 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26038 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 26638 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 27148 y_position: -5888 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 28010 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 29006 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 30024 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 30782 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31642 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 32242 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 33102 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33724 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34324 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 35354 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 36372 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36882 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 37900 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 38658 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39518 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 40118 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 41698 y_position: -5888 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 42560 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 43492 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44556 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45418 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 46018 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 0 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 510 y_position: -9472 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1050 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2044 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3074 y_position: -9472 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 3936 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4350 y_position: -9472 font: Amiri -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 4950 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6358 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6980 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 7580 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8440 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 9504 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10044 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11624 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 12224 y_position: -9472 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13086 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14116 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 14716 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16296 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 16836 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17900 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 18440 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20020 y_position: -9472 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 20620 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 21540 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 22400 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 23464 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24004 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 24866 y_position: -9472 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 26446 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26848 y_position: -9472 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 27448 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28442 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29472 y_position: -9472 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30012 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30750 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 31350 y_position: -9472 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 32414 y_position: -9472 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 33432 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34170 y_position: -9472 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 34792 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35558 y_position: -9472 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36588 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37618 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 38218 y_position: -9472 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39078 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39982 y_position: -9472 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 40842 y_position: -9472 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 41592 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 42438 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42978 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 43600 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44462 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45084 y_position: -9472 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 45624 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 46642 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 47706 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 48306 y_position: -9472 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 0 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 510 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1020 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1882 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 3462 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 4308 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5326 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 5926 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6436 y_position: -13056 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 7298 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8294 y_position: -13056 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 9312 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10078 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 10618 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11356 y_position: -13056 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 11956 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 13020 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 13560 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14298 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14838 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 15438 y_position: -13056 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 16468 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17090 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17690 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 18552 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 19062 y_position: -13056 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 19602 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20596 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 21626 y_position: -13056 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 22166 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23186 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23786 y_position: -13056 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 24646 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25598 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 26198 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 27058 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27920 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 28520 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 29366 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 30384 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31964 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33544 y_position: -13056 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34562 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 35592 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36610 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 37210 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 38056 y_position: -13056 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 39074 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 40138 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40876 y_position: -13056 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 41736 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 42730 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 43760 y_position: -13056 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44622 y_position: -13056 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 45244 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45658 y_position: -13056 font: Amiri -glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 46258 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47678 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 48708 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 49248 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49986 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 862 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 1892 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2514 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3374 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3974 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 4514 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5280 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 6310 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 7068 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7928 y_position: -16640 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8528 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9558 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 10576 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 11086 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 12104 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12870 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 13470 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 14010 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15074 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 15674 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 16432 y_position: -16640 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 17292 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 18312 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 19070 y_position: -16640 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 19930 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20962 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 21822 y_position: -16640 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22886 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23916 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 24776 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 25542 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26082 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26704 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 27304 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 27844 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28908 y_position: -16640 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 29508 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30428 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 31446 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31956 y_position: -16640 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 32986 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34006 y_position: -16640 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 34628 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35490 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36112 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36972 y_position: -16640 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 37572 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 38492 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 39352 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39862 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 40402 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41024 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41624 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 42484 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 43222 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 43960 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44820 y_position: -16640 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 45420 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 0 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 540 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1050 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1560 y_position: -20224 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2590 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4170 y_position: -20224 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4770 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5800 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6818 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7328 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 8346 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9104 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9964 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10564 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 11424 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12454 y_position: -20224 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13054 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13670 y_position: -20224 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 14700 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15632 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 16172 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17034 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17656 y_position: -20224 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18256 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19320 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20350 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20860 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 21370 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22232 y_position: -20224 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 22832 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 23852 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 24714 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 25480 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26020 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26882 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27504 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 28534 y_position: -20224 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 29276 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29690 y_position: -20224 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 30290 y_position: -20224 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 31464 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 32364 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33210 y_position: -20224 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34070 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35090 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 35712 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36572 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 37602 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38368 y_position: -20224 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 38968 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39706 y_position: -20224 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40246 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 41310 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41932 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 42532 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 43550 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 44396 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45242 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46104 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 46964 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 47810 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 48672 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49294 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 49894 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 1030 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2050 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2590 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3620 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 4482 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5104 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 5966 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6588 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 7188 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8252 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9270 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10334 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 10934 y_position: -23808 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 11954 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 12712 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 13730 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14270 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 15300 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 16160 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17224 y_position: -23808 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 17846 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18248 y_position: -23808 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 18848 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19586 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 20616 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 21680 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22302 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22902 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23442 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24506 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 25106 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25952 y_position: -23808 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 26982 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 27492 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28512 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29374 y_position: -23808 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 29974 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 30968 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31998 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32538 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33138 y_position: -23808 font: Amiri -glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 34156 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 35786 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 36632 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 37172 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38034 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 38634 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39664 y_position: -23808 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 40524 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41262 y_position: -23808 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 42122 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 42888 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 43918 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44982 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45604 y_position: -23808 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 46204 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1018 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1528 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2038 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 2578 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3200 y_position: -27392 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3800 y_position: -27392 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 4662 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5726 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 6266 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7846 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8446 y_position: -27392 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8986 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10016 y_position: -27392 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10616 y_position: -27392 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11476 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 12214 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12836 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 13436 y_position: -27392 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13946 y_position: -27392 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 14808 y_position: -27392 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15804 y_position: -27392 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16822 y_position: -27392 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 17588 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 18618 y_position: -27392 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 20198 y_position: -27392 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1030 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2048 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2648 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3508 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4048 y_position: -5888 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 5078 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 5816 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7396 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8414 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9444 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 10044 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10666 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 11526 y_position: -5888 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 13106 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14126 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15144 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15910 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16510 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17050 y_position: -5888 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 18114 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18960 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19500 y_position: -5888 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20530 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22100 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23130 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 24194 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24816 y_position: -5888 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25416 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26446 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27068 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27668 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28178 y_position: -5888 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 29040 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30036 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 31054 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 31812 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32672 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33272 y_position: -5888 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34132 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34754 y_position: -5888 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35354 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36384 y_position: -5888 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 37402 y_position: -5888 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 37912 y_position: -5888 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 38930 y_position: -5888 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39688 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40548 y_position: -5888 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 41148 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 42728 y_position: -5888 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 43590 y_position: -5888 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44522 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45586 y_position: -5888 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46448 y_position: -5888 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -9472 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 862 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1372 y_position: -9472 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1912 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2906 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3936 y_position: -9472 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 4798 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5212 y_position: -9472 font: Amiri +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 5812 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 7220 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7842 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 8442 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9302 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10366 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10906 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12486 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13086 y_position: -9472 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13948 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14978 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15578 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17158 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17698 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18762 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19302 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20882 y_position: -9472 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 21482 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 22402 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23262 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 24326 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24866 y_position: -9472 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 25728 y_position: -9472 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 27308 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27710 y_position: -9472 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 28310 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 29304 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 30334 y_position: -9472 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30874 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31612 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32212 y_position: -9472 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33276 y_position: -9472 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 34294 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35032 y_position: -9472 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 35654 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36420 y_position: -9472 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37450 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38480 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39080 y_position: -9472 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39940 y_position: -9472 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40844 y_position: -9472 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41704 y_position: -9472 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 42454 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43300 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 43840 y_position: -9472 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44462 y_position: -9472 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45324 y_position: -9472 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45946 y_position: -9472 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 46486 y_position: -9472 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 47504 y_position: -9472 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48568 y_position: -9472 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1030 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1540 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2050 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2912 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4492 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5338 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6356 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6956 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7466 y_position: -13056 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 8328 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9324 y_position: -13056 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10342 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11108 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11648 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12386 y_position: -13056 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 12986 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14050 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 14590 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15328 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15868 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 16468 y_position: -13056 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17498 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18120 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18720 y_position: -13056 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 19582 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20092 y_position: -13056 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 20632 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21626 y_position: -13056 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22656 y_position: -13056 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23196 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24216 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 24816 y_position: -13056 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 25676 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26628 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27228 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28088 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28950 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 29550 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30396 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31414 y_position: -13056 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 32994 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34574 y_position: -13056 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35592 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36622 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37640 y_position: -13056 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38240 y_position: -13056 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 39086 y_position: -13056 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40104 y_position: -13056 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41168 y_position: -13056 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41906 y_position: -13056 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 42766 y_position: -13056 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43760 y_position: -13056 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44790 y_position: -13056 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45652 y_position: -13056 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 46274 y_position: -13056 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46688 y_position: -13056 font: Amiri +glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 0 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1420 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2450 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 2990 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3728 y_position: -16640 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4328 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5190 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6220 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 6842 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7702 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8302 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8842 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 9608 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 10638 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11396 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12256 y_position: -16640 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12856 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13886 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 14904 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15414 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16432 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17198 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17798 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18338 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19402 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20002 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20760 y_position: -16640 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 21620 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 22640 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23398 y_position: -16640 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 24258 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 25290 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 26150 y_position: -16640 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27214 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 28244 y_position: -16640 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 29104 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29870 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30410 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31032 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31632 y_position: -16640 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32172 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33236 y_position: -16640 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 33836 y_position: -16640 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34756 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35774 y_position: -16640 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36284 y_position: -16640 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 37314 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 38334 y_position: -16640 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38956 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 39818 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40440 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41300 y_position: -16640 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 41900 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42820 y_position: -16640 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43680 y_position: -16640 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44190 y_position: -16640 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44730 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45352 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 45952 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 46812 y_position: -16640 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 47550 y_position: -16640 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 48288 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49148 y_position: -16640 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 846 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1386 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1896 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2406 y_position: -20224 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3436 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5016 y_position: -20224 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5616 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6646 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7664 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8174 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 9192 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9950 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10810 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11410 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12270 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13300 y_position: -20224 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13900 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14516 y_position: -20224 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 15546 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16478 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17018 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17880 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18502 y_position: -20224 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 19102 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20166 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21196 y_position: -20224 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21706 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 22216 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23078 y_position: -20224 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23678 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24698 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25560 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 26326 y_position: -20224 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26866 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 27728 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28350 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 29380 y_position: -20224 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 30122 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30536 y_position: -20224 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 31136 y_position: -20224 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 32310 y_position: -20224 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33210 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 34056 y_position: -20224 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34916 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35936 y_position: -20224 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36558 y_position: -20224 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37418 y_position: -20224 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 38448 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39214 y_position: -20224 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 39814 y_position: -20224 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40552 y_position: -20224 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 41092 y_position: -20224 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42156 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42778 y_position: -20224 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 1018 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 1864 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2710 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 3572 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4432 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5278 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6140 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6762 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 7362 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8208 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 9238 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10258 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 10798 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 11828 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 12690 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13312 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 14174 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14796 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 15396 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 16460 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17478 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18542 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 19142 y_position: -23808 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20162 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 20920 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 21938 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22478 y_position: -23808 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23508 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 24368 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 25432 y_position: -23808 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 26054 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26456 y_position: -23808 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 27056 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27794 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 28824 y_position: -23808 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 29888 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30510 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31110 y_position: -23808 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 31650 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32714 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33314 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34160 y_position: -23808 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35190 y_position: -23808 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 35700 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 36720 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37582 y_position: -23808 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 38182 y_position: -23808 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 39176 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40206 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40746 y_position: -23808 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 41346 y_position: -23808 font: Amiri +glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 42364 y_position: -23808 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 43994 y_position: -23808 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44840 y_position: -23808 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45380 y_position: -23808 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46242 y_position: -23808 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -27392 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 1030 y_position: -27392 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 1890 y_position: -27392 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2628 y_position: -27392 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 3488 y_position: -27392 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4254 y_position: -27392 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 5284 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6348 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6970 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 7570 y_position: -27392 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9150 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 10168 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 10678 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11188 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 11728 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12350 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 12950 y_position: -27392 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 13812 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14876 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15416 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16996 y_position: -27392 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17596 y_position: -27392 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 18136 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19166 y_position: -27392 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 19766 y_position: -27392 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 20626 y_position: -27392 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 21364 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21986 y_position: -27392 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 22586 y_position: -27392 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 23096 y_position: -27392 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 23958 y_position: -27392 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 24954 y_position: -27392 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25972 y_position: -27392 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 26738 y_position: -27392 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 27768 y_position: -27392 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 29348 y_position: -27392 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 diff --git a/tests/line-breaking-rtl.test b/tests/line-breaking-rtl.test index 997ffd69..c987bc62 100644 --- a/tests/line-breaking-rtl.test +++ b/tests/line-breaking-rtl.test @@ -4352,7 +4352,6 @@ run[2]: start: 1 length: 162 direction: rtl script: Arab font: Amiri run[3]: start: 0 length: 1 direction: rtl script: Zyyy font: Amiri Glyph information: -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -2304 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -2304 font: Amiri glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 600 y_position: -2304 font: Amiri glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 1216 y_position: -2304 font: Amiri @@ -4466,7 +4465,6 @@ glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 47582 y_position glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47874 y_position: -2304 font: Amiri glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48234 y_position: -2304 font: Amiri glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 48680 y_position: -2304 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 231 y_position: -5923 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -5888 font: Amiri glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 666 y_position: -5988 font: Amiri glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 600 y_position: -5888 font: Amiri @@ -4572,8 +4570,8 @@ glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 47409 y_position: glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 47443 y_position: -5888 font: Amiri glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 47736 y_position: -5888 font: Amiri glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 48146 y_position: -5888 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 48625 y_position: -5888 font: Amiri glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 48751 y_position: -5888 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -9472 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -9472 font: Amiri glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 630 y_position: -9472 font: Amiri glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 600 y_position: -9472 font: Amiri @@ -4676,8 +4674,8 @@ glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 44949 y_position glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45339 y_position: -9472 font: Amiri glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 46367 y_position: -9472 font: Amiri glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45939 y_position: -9472 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 47736 y_position: -9507 font: Amiri glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 47505 y_position: -9472 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -13056 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -13056 font: Amiri glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 600 y_position: -13056 font: Amiri glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 x_position: 1321 y_position: -13056 font: Amiri @@ -4786,125 +4784,125 @@ glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 46738 y_position glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 47116 y_position: -13056 font: Amiri glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 47318 y_position: -13056 font: Amiri glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47746 y_position: -13056 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 48066 y_position: -13056 font: Amiri glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 48192 y_position: -13056 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 0 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 446 y_position: -16640 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 1046 y_position: -16640 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 1966 y_position: -16640 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1986 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 3159 y_position: -16640 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 3243 y_position: -16640 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3629 y_position: -16640 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 3743 y_position: -16640 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 4129 y_position: -16640 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 4337 y_position: -16640 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 4629 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4989 y_position: -16640 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5435 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6375 y_position: -16640 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6849 y_position: -16640 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6975 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7796 y_position: -16640 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 8396 y_position: -16640 font: Amiri -glyph [428] x_offset: -216 y_offset: 0 x_advance: 0 x_position: 8830 y_position: -16640 font: Amiri -glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 9046 y_position: -16640 font: Amiri -glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 9502 y_position: -16640 font: Amiri -glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 9644 y_position: -16640 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 9847 y_position: -16640 font: Amiri -glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 10174 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10974 y_position: -16640 font: Amiri -glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 11574 y_position: -16640 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 12116 y_position: -16640 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 12272 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12891 y_position: -16640 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13491 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 14431 y_position: -16640 font: Amiri -glyph [424] x_offset: -359 y_offset: 0 x_advance: 0 x_position: 14542 y_position: -16640 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14901 y_position: -16640 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 15224 y_position: -16640 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15401 y_position: -16640 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 15440 y_position: -16640 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 15901 y_position: -16640 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16379 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17319 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17919 y_position: -16640 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 18233 y_position: -16640 font: Amiri -glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 x_position: 18389 y_position: -16640 font: Amiri -glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 x_position: 18981 y_position: -16640 font: Amiri -glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 19339 y_position: -16640 font: Amiri -glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 x_position: 19475 y_position: -16640 font: Amiri -glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 x_position: 19641 y_position: -16640 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 20102 y_position: -16640 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 20279 y_position: -16640 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 20318 y_position: -16640 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 20779 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21257 y_position: -16640 font: Amiri -glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 22390 y_position: -16536 font: Amiri -glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 21980 y_position: -16640 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 21857 y_position: -16640 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 23360 y_position: -16785 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 23030 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23476 y_position: -16640 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 24076 y_position: -16640 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 24558 y_position: -16640 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 24528 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25764 y_position: -16640 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 26128 y_position: -16640 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 26234 y_position: -16640 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 26609 y_position: -16640 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 27009 y_position: -16640 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 27113 y_position: -16640 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 27509 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28114 y_position: -16640 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 28680 y_position: -16640 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 28714 y_position: -16640 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 29657 y_position: -16640 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 29679 y_position: -16640 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 30029 y_position: -16640 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30429 y_position: -16640 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 30637 y_position: -16640 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30929 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 31289 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31735 y_position: -16640 font: Amiri -glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 32335 y_position: -16640 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 32843 y_position: -16640 font: Amiri -glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 33199 y_position: -16640 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 33807 y_position: -16640 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 33829 y_position: -16640 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 34173 y_position: -16640 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 34579 y_position: -16640 font: Amiri -glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 34693 y_position: -16640 font: Amiri -glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 34935 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35478 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 36078 y_position: -16640 font: Amiri -glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 36931 y_position: -16536 font: Amiri -glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 36521 y_position: -16640 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 36548 y_position: -16640 font: Amiri -glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 37646 y_position: -16675 font: Amiri -glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 37345 y_position: -16640 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 37842 y_position: -16640 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 38238 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38843 y_position: -16640 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 39443 y_position: -16640 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 40329 y_position: -16640 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 40199 y_position: -16640 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 41693 y_position: -16640 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 41509 y_position: -16640 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 42777 y_position: -16640 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 42989 y_position: -16640 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43825 y_position: -16675 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43594 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44074 y_position: -16640 font: Amiri -glyph [428] x_offset: -140 y_offset: 0 x_advance: 0 x_position: 44534 y_position: -16640 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44674 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45495 y_position: -16640 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 45685 y_position: -16640 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 45941 y_position: -16640 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 46357 y_position: -16640 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 46649 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47009 y_position: -16640 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 47455 y_position: -16640 font: Amiri -glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: -410 y_position: -20224 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -16640 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 600 y_position: -16640 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 1520 y_position: -16640 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1540 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 2713 y_position: -16640 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 2797 y_position: -16640 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3183 y_position: -16640 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 3297 y_position: -16640 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3683 y_position: -16640 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 3891 y_position: -16640 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 4183 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4543 y_position: -16640 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4989 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5929 y_position: -16640 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6403 y_position: -16640 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6529 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7350 y_position: -16640 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 7950 y_position: -16640 font: Amiri +glyph [428] x_offset: -216 y_offset: 0 x_advance: 0 x_position: 8384 y_position: -16640 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 8600 y_position: -16640 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 9056 y_position: -16640 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 9198 y_position: -16640 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 9401 y_position: -16640 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 9728 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10528 y_position: -16640 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 11128 y_position: -16640 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 11670 y_position: -16640 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 11826 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12445 y_position: -16640 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13045 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 13985 y_position: -16640 font: Amiri +glyph [424] x_offset: -359 y_offset: 0 x_advance: 0 x_position: 14096 y_position: -16640 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14455 y_position: -16640 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 14778 y_position: -16640 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14955 y_position: -16640 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 14994 y_position: -16640 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 15455 y_position: -16640 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15933 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16873 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17473 y_position: -16640 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 17787 y_position: -16640 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 x_position: 17943 y_position: -16640 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 x_position: 18535 y_position: -16640 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 18893 y_position: -16640 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 x_position: 19029 y_position: -16640 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 x_position: 19195 y_position: -16640 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 19656 y_position: -16640 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19833 y_position: -16640 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 19872 y_position: -16640 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 20333 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20811 y_position: -16640 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 21944 y_position: -16536 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 21534 y_position: -16640 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 21411 y_position: -16640 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 22914 y_position: -16785 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22584 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23030 y_position: -16640 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 23630 y_position: -16640 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 24112 y_position: -16640 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 24082 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25318 y_position: -16640 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 25682 y_position: -16640 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 25788 y_position: -16640 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 26163 y_position: -16640 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 26563 y_position: -16640 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 26667 y_position: -16640 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 27063 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27668 y_position: -16640 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 28234 y_position: -16640 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 28268 y_position: -16640 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 29211 y_position: -16640 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 29233 y_position: -16640 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 29583 y_position: -16640 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29983 y_position: -16640 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 30191 y_position: -16640 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30483 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30843 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31289 y_position: -16640 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 31889 y_position: -16640 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 32397 y_position: -16640 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 32753 y_position: -16640 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 33361 y_position: -16640 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 33383 y_position: -16640 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 33727 y_position: -16640 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 34133 y_position: -16640 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 34247 y_position: -16640 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 34489 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35032 y_position: -16640 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 35632 y_position: -16640 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 36485 y_position: -16536 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 36075 y_position: -16640 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 36102 y_position: -16640 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 37200 y_position: -16675 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 36899 y_position: -16640 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 37396 y_position: -16640 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 37792 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38397 y_position: -16640 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 38997 y_position: -16640 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 39883 y_position: -16640 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 39753 y_position: -16640 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 41247 y_position: -16640 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 41063 y_position: -16640 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 42331 y_position: -16640 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 42543 y_position: -16640 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43379 y_position: -16675 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43148 y_position: -16640 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43628 y_position: -16640 font: Amiri +glyph [428] x_offset: -140 y_offset: 0 x_advance: 0 x_position: 44088 y_position: -16640 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44228 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45049 y_position: -16640 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 45239 y_position: -16640 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 45495 y_position: -16640 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 45911 y_position: -16640 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 46203 y_position: -16640 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 46563 y_position: -16640 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 46883 y_position: -16640 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 47009 y_position: -16640 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -20224 font: Amiri glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 908 y_position: -20224 font: Amiri glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 600 y_position: -20224 font: Amiri @@ -5008,6 +5006,7 @@ glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 46345 y_position glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 46451 y_position: -20224 font: Amiri glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 46934 y_position: -20224 font: Amiri glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47226 y_position: -20224 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47586 y_position: -20224 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -23808 font: Amiri glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 724 y_position: -23808 font: Amiri glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 600 y_position: -23808 font: Amiri @@ -5118,915 +5117,905 @@ glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 47357 y_position glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 48530 y_position: -23808 font: Amiri glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 49009 y_position: -23808 font: Amiri glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 49445 y_position: -23808 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 49537 y_position: -23808 font: Amiri glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 49947 y_position: -23808 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 0 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 446 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 1046 y_position: -27392 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 1980 y_position: -27392 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1986 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 3159 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 3373 y_position: -27392 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 3629 y_position: -27392 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 4445 y_position: -27427 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 4214 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4694 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5634 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 6234 y_position: -27392 font: Amiri -glyph [427] x_offset: -185 y_offset: 0 x_advance: 0 x_position: 6495 y_position: -27392 font: Amiri -glyph [4877] x_offset: 0 y_offset: 0 x_advance: 827 x_position: 6680 y_position: -27392 font: Amiri -glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 7321 y_position: -27392 font: Amiri -glyph [4835] x_offset: 0 y_offset: 0 x_advance: 1382 x_position: 7507 y_position: -27392 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 8763 y_position: -27392 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 8889 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9710 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 10310 y_position: -27392 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 11266 y_position: -27392 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 11250 y_position: -27392 font: Amiri -glyph [429] x_offset: -495 y_offset: 0 x_advance: 0 x_position: 11867 y_position: -27392 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 11934 y_position: -27392 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 12362 y_position: -27392 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 12373 y_position: -27392 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12809 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13199 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14139 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14483 y_position: -27392 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14739 y_position: -27392 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 15277 y_position: -27392 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 15447 y_position: -27392 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 15851 y_position: -27392 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 16247 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16852 y_position: -27392 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 17596 y_position: -27392 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 17452 y_position: -27392 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 18906 y_position: -27392 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 18762 y_position: -27392 font: Amiri -glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 20345 y_position: -27288 font: Amiri -glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 19935 y_position: -27392 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 20242 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20632 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21078 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 21678 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22618 y_position: -27392 font: Amiri -glyph [424] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 22859 y_position: -27392 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 23088 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 23673 y_position: -27392 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 23837 y_position: -27392 font: Amiri -glyph [3053] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 24143 y_position: -27392 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 24182 y_position: -27392 font: Amiri -glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 x_position: 24488 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 24995 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25935 y_position: -27392 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 26491 y_position: -27392 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 26535 y_position: -27392 font: Amiri -glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 27647 y_position: -27392 font: Amiri -glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: 27660 y_position: -27392 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 28094 y_position: -27392 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 28133 y_position: -27392 font: Amiri -glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 28439 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29045 y_position: -27392 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 29375 y_position: -28332 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 29645 y_position: -27392 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 30551 y_position: -27392 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 30427 y_position: -27392 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 32131 y_position: -27288 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 31721 y_position: -27392 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 31923 y_position: -27392 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 32703 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 33063 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33509 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34109 y_position: -27392 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 35043 y_position: -27392 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 35049 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 36222 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 36436 y_position: -27392 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 36692 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 37277 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38217 y_position: -27392 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 38691 y_position: -27392 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 38817 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39638 y_position: -27392 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 40238 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40888 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 41102 y_position: -27392 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 41358 y_position: -27392 font: Amiri -glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 42220 y_position: -27392 font: Amiri -glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 42284 y_position: -27392 font: Amiri -glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 42740 y_position: -27392 font: Amiri -glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 42882 y_position: -27392 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 43085 y_position: -27392 font: Amiri -glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 43412 y_position: -27392 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44086 y_position: -27392 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44212 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45033 y_position: -27392 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 45499 y_position: -27392 font: Amiri -glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 45633 y_position: -27392 font: Amiri -glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 x_position: 45830 y_position: -27392 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 46461 y_position: -27392 font: Amiri -glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 46750 y_position: -27392 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 47292 y_position: -27392 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 47448 y_position: -27392 font: Amiri -glyph [1914] x_offset: 333 y_offset: 104 x_advance: 0 x_position: 48400 y_position: -27288 font: Amiri -glyph [430] x_offset: -77 y_offset: 0 x_advance: 0 x_position: 47990 y_position: -27392 font: Amiri -glyph [4909] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 48067 y_position: -27392 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 49067 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 49356 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 0 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 940 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 1414 y_position: -30976 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 1540 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2361 y_position: -30976 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 2605 y_position: -30976 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 2961 y_position: -30976 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 3508 y_position: -30976 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 3664 y_position: -30976 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 4608 y_position: -30976 font: Amiri -glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 4464 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5627 y_position: -30976 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 5957 y_position: -31916 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 6227 y_position: -30976 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 7133 y_position: -30976 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 7009 y_position: -30976 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 8713 y_position: -30872 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 8303 y_position: -30976 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 8505 y_position: -30976 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 9285 y_position: -30976 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 9645 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10091 y_position: -30976 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 10691 y_position: -30976 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 11625 y_position: -30976 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 11631 y_position: -30976 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 12804 y_position: -30976 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 12888 y_position: -30976 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13274 y_position: -30976 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 13413 y_position: -30976 font: Amiri -glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13774 y_position: -30976 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 14552 y_position: -30976 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 14274 y_position: -30976 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15438 y_position: -30976 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15884 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16824 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 17298 y_position: -30976 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17424 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18245 y_position: -30976 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 18565 y_position: -30976 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 18845 y_position: -30976 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 19222 y_position: -30976 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19622 y_position: -30976 font: Amiri -glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 x_position: 19930 y_position: -30976 font: Amiri -glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 20122 y_position: -30976 font: Amiri -glyph [427] x_offset: 316 y_offset: 0 x_advance: 0 x_position: 20551 y_position: -30976 font: Amiri -glyph [4043] x_offset: 0 y_offset: 0 x_advance: 1656 x_position: 20235 y_position: -30976 font: Amiri -glyph [431] x_offset: -42 y_offset: 0 x_advance: 0 x_position: 21849 y_position: -30976 font: Amiri -glyph [421] x_offset: -100 y_offset: 0 x_advance: 721 x_position: 21791 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 22843 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 22612 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23092 y_position: -30976 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 24120 y_position: -30976 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 23692 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 25489 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 25258 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25738 y_position: -30976 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 26338 y_position: -30976 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 26552 y_position: -30976 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 26808 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 27624 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 27393 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27873 y_position: -30976 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 28473 y_position: -30976 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 29133 y_position: -30976 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 29413 y_position: -30976 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 29790 y_position: -30976 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30190 y_position: -30976 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 30513 y_position: -30976 font: Amiri -glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30690 y_position: -30976 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 30729 y_position: -30976 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 31190 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 31899 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 31668 y_position: -30976 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 32148 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33088 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 33562 y_position: -30976 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 33688 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34509 y_position: -30976 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 35109 y_position: -30976 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 36065 y_position: -30976 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 36049 y_position: -30976 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 37161 y_position: -30976 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 37314 y_position: -30976 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 37608 y_position: -30976 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 37938 y_position: -30976 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 38108 y_position: -30976 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 38905 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39845 y_position: -30976 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 40189 y_position: -30976 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 40445 y_position: -30976 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 40983 y_position: -30976 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 41153 y_position: -30976 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 41557 y_position: -30976 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 41953 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42558 y_position: -30976 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 42888 y_position: -31916 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 43158 y_position: -30976 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 44064 y_position: -30976 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 43940 y_position: -30976 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 45644 y_position: -30872 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 45234 y_position: -30976 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 45436 y_position: -30976 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 46216 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 600 y_position: -27392 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 1534 y_position: -27392 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1540 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 2713 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 2927 y_position: -27392 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 3183 y_position: -27392 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 3999 y_position: -27427 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 3768 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4248 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5188 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 5788 y_position: -27392 font: Amiri +glyph [427] x_offset: -185 y_offset: 0 x_advance: 0 x_position: 6049 y_position: -27392 font: Amiri +glyph [4877] x_offset: 0 y_offset: 0 x_advance: 827 x_position: 6234 y_position: -27392 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 6875 y_position: -27392 font: Amiri +glyph [4835] x_offset: 0 y_offset: 0 x_advance: 1382 x_position: 7061 y_position: -27392 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 8317 y_position: -27392 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 8443 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9264 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9864 y_position: -27392 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 10820 y_position: -27392 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 10804 y_position: -27392 font: Amiri +glyph [429] x_offset: -495 y_offset: 0 x_advance: 0 x_position: 11421 y_position: -27392 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 11488 y_position: -27392 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 11916 y_position: -27392 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 11927 y_position: -27392 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12363 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 12753 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13693 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14037 y_position: -27392 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14293 y_position: -27392 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 14831 y_position: -27392 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 15001 y_position: -27392 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 15405 y_position: -27392 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 15801 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16406 y_position: -27392 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 17150 y_position: -27392 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 17006 y_position: -27392 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 18460 y_position: -27392 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 18316 y_position: -27392 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 19899 y_position: -27288 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 19489 y_position: -27392 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 19796 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20186 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20632 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 21232 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22172 y_position: -27392 font: Amiri +glyph [424] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 22413 y_position: -27392 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 22642 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 23227 y_position: -27392 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 23391 y_position: -27392 font: Amiri +glyph [3053] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 23697 y_position: -27392 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 23736 y_position: -27392 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 x_position: 24042 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 24549 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25489 y_position: -27392 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 26045 y_position: -27392 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 26089 y_position: -27392 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 27201 y_position: -27392 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: 27214 y_position: -27392 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 27648 y_position: -27392 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 27687 y_position: -27392 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 27993 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28599 y_position: -27392 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 28929 y_position: -28332 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 29199 y_position: -27392 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 30105 y_position: -27392 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 29981 y_position: -27392 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 31685 y_position: -27288 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 31275 y_position: -27392 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 31477 y_position: -27392 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 32257 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 32617 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33063 y_position: -27392 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 33663 y_position: -27392 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 34597 y_position: -27392 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 34603 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 35776 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 35990 y_position: -27392 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 36246 y_position: -27392 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 36831 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37771 y_position: -27392 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 38245 y_position: -27392 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 38371 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39192 y_position: -27392 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 39792 y_position: -27392 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40442 y_position: -27392 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 40656 y_position: -27392 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 40912 y_position: -27392 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 41774 y_position: -27392 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 41838 y_position: -27392 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 42294 y_position: -27392 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 42436 y_position: -27392 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 42639 y_position: -27392 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 42966 y_position: -27392 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 43640 y_position: -27392 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 43766 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44587 y_position: -27392 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 45053 y_position: -27392 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 45187 y_position: -27392 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 x_position: 45384 y_position: -27392 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 46015 y_position: -27392 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 46304 y_position: -27392 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 46846 y_position: -27392 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 47002 y_position: -27392 font: Amiri +glyph [1914] x_offset: 333 y_offset: 104 x_advance: 0 x_position: 47954 y_position: -27288 font: Amiri +glyph [430] x_offset: -77 y_offset: 0 x_advance: 0 x_position: 47544 y_position: -27392 font: Amiri +glyph [4909] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 47621 y_position: -27392 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 48621 y_position: -27392 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48910 y_position: -27392 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 474 y_position: -30976 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 600 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1421 y_position: -30976 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 1665 y_position: -30976 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 2021 y_position: -30976 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 2568 y_position: -30976 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 2724 y_position: -30976 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 3668 y_position: -30976 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 3524 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4687 y_position: -30976 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 5017 y_position: -31916 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 5287 y_position: -30976 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 6193 y_position: -30976 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 6069 y_position: -30976 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 7773 y_position: -30872 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 7363 y_position: -30976 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 7565 y_position: -30976 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 8345 y_position: -30976 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 8705 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9151 y_position: -30976 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9751 y_position: -30976 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 10685 y_position: -30976 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 10691 y_position: -30976 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 11864 y_position: -30976 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 11948 y_position: -30976 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12334 y_position: -30976 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 12473 y_position: -30976 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12834 y_position: -30976 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 13612 y_position: -30976 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 13334 y_position: -30976 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 14498 y_position: -30976 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 14944 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15884 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16358 y_position: -30976 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 16484 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17305 y_position: -30976 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 17625 y_position: -30976 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 17905 y_position: -30976 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 18282 y_position: -30976 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18682 y_position: -30976 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 x_position: 18990 y_position: -30976 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 19182 y_position: -30976 font: Amiri +glyph [427] x_offset: 316 y_offset: 0 x_advance: 0 x_position: 19611 y_position: -30976 font: Amiri +glyph [4043] x_offset: 0 y_offset: 0 x_advance: 1656 x_position: 19295 y_position: -30976 font: Amiri +glyph [431] x_offset: -42 y_offset: 0 x_advance: 0 x_position: 20909 y_position: -30976 font: Amiri +glyph [421] x_offset: -100 y_offset: 0 x_advance: 721 x_position: 20851 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 21903 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 21672 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22152 y_position: -30976 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 23180 y_position: -30976 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 22752 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 24549 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 24318 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24798 y_position: -30976 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25398 y_position: -30976 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 25612 y_position: -30976 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 25868 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 26684 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 26453 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26933 y_position: -30976 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 27533 y_position: -30976 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 28193 y_position: -30976 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 28473 y_position: -30976 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 28850 y_position: -30976 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29250 y_position: -30976 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 29573 y_position: -30976 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29750 y_position: -30976 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 29789 y_position: -30976 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 30250 y_position: -30976 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 30959 y_position: -31011 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 30728 y_position: -30976 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31208 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32148 y_position: -30976 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 32622 y_position: -30976 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 32748 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33569 y_position: -30976 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34169 y_position: -30976 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 35125 y_position: -30976 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 35109 y_position: -30976 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 36221 y_position: -30976 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 36374 y_position: -30976 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36668 y_position: -30976 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 36998 y_position: -30976 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 37168 y_position: -30976 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 37965 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38905 y_position: -30976 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 39249 y_position: -30976 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 39505 y_position: -30976 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 40043 y_position: -30976 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 40213 y_position: -30976 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 40617 y_position: -30976 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 41013 y_position: -30976 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41618 y_position: -30976 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 41948 y_position: -31916 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 42218 y_position: -30976 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 43124 y_position: -30976 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 43000 y_position: -30976 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 44704 y_position: -30872 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 44294 y_position: -30976 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 44496 y_position: -30976 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 45276 y_position: -30976 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45636 y_position: -30976 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -34560 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 320 y_position: -34560 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 600 y_position: -34560 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 941 y_position: -34560 font: Amiri -glyph [2096] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 1377 y_position: -34560 font: Amiri -glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 1767 y_position: -34560 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 2246 y_position: -34560 font: Amiri -glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 2682 y_position: -34560 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 3337 y_position: -34456 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 2927 y_position: -34560 font: Amiri -glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3184 y_position: -34560 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 3684 y_position: -34560 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4044 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4490 y_position: -34560 font: Amiri -glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 4966 y_position: -34560 font: Amiri -glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 5090 y_position: -34560 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 5812 y_position: -34560 font: Amiri -glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 5846 y_position: -34560 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 6555 y_position: -34560 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 6811 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7737 y_position: -34560 font: Amiri -glyph [422] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 8337 y_position: -34560 font: Amiri -glyph [1914] x_offset: 458 y_offset: 104 x_advance: 0 x_position: 10361 y_position: -34456 font: Amiri -glyph [430] x_offset: 48 y_offset: 0 x_advance: 0 x_position: 9951 y_position: -34560 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 9903 y_position: -34560 font: Amiri -glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 10662 y_position: -34560 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 10868 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 11312 y_position: -34560 font: Amiri -glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 11618 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 11657 y_position: -34560 font: Amiri -glyph [3753] x_offset: 0 y_offset: 0 x_advance: 562 x_position: 11963 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12525 y_position: -34560 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 13125 y_position: -34560 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 13881 y_position: -34560 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14095 y_position: -34560 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 14351 y_position: -34560 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 15167 y_position: -34595 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 14936 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15416 y_position: -34560 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16016 y_position: -34560 font: Amiri -glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 17331 y_position: -34560 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 16956 y_position: -34560 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 18589 y_position: -34560 font: Amiri -glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18766 y_position: -34560 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 19419 y_position: -34456 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 19009 y_position: -34560 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19266 y_position: -34560 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 19405 y_position: -34560 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19766 y_position: -34560 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 19805 y_position: -34560 font: Amiri -glyph [4466] x_offset: 0 y_offset: 0 x_advance: 511 x_position: 20266 y_position: -34560 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 20777 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21717 y_position: -34560 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 22191 y_position: -34560 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 22317 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23138 y_position: -34560 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 23382 y_position: -34560 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 23738 y_position: -34560 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 24285 y_position: -34560 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 24441 y_position: -34560 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 25385 y_position: -34560 font: Amiri -glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 25241 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26404 y_position: -34560 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 26734 y_position: -35500 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 27004 y_position: -34560 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 27910 y_position: -34560 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 27786 y_position: -34560 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 29490 y_position: -34456 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 29080 y_position: -34560 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 29282 y_position: -34560 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30062 y_position: -34560 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30422 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30868 y_position: -34560 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31468 y_position: -34560 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 32378 y_position: -34560 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 32408 y_position: -34560 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 33502 y_position: -34456 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 33092 y_position: -34560 font: Amiri -glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 33520 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 33661 y_position: -34560 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 33967 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 34006 y_position: -34560 font: Amiri -glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 34312 y_position: -34560 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34966 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35906 y_position: -34560 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 36380 y_position: -34560 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 36506 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37327 y_position: -34560 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 37647 y_position: -34560 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 37927 y_position: -34560 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 38304 y_position: -34560 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38704 y_position: -34560 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 38992 y_position: -34560 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 39204 y_position: -34560 font: Amiri -glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 x_position: 39773 y_position: -35510 font: Amiri -glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 x_position: 39809 y_position: -34560 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 40623 y_position: -34560 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 40779 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41757 y_position: -34560 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 42357 y_position: -34560 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 42571 y_position: -34560 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 42827 y_position: -34560 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43643 y_position: -34595 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43412 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43892 y_position: -34560 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44492 y_position: -34560 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 45152 y_position: -34560 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 45432 y_position: -34560 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 45809 y_position: -34560 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 46209 y_position: -34560 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 46532 y_position: -34560 font: Amiri -glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 46709 y_position: -34560 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46823 y_position: -34560 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47209 y_position: -34560 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 47348 y_position: -34560 font: Amiri -glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47709 y_position: -34560 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 48487 y_position: -34560 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 48209 y_position: -34560 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 49373 y_position: -34560 font: Amiri -glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: -434 y_position: -38144 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 476 y_position: -34560 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 600 y_position: -34560 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 1322 y_position: -34560 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 1356 y_position: -34560 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 2065 y_position: -34560 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 2321 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3247 y_position: -34560 font: Amiri +glyph [422] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 3847 y_position: -34560 font: Amiri +glyph [1914] x_offset: 458 y_offset: 104 x_advance: 0 x_position: 5871 y_position: -34456 font: Amiri +glyph [430] x_offset: 48 y_offset: 0 x_advance: 0 x_position: 5461 y_position: -34560 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 5413 y_position: -34560 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 6172 y_position: -34560 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 6378 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 6822 y_position: -34560 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 7128 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 7167 y_position: -34560 font: Amiri +glyph [3753] x_offset: 0 y_offset: 0 x_advance: 562 x_position: 7473 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8035 y_position: -34560 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 8635 y_position: -34560 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 9391 y_position: -34560 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9605 y_position: -34560 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 9861 y_position: -34560 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 10677 y_position: -34595 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 10446 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10926 y_position: -34560 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11526 y_position: -34560 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 12841 y_position: -34560 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 12466 y_position: -34560 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 14099 y_position: -34560 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14276 y_position: -34560 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 14929 y_position: -34456 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 14519 y_position: -34560 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14776 y_position: -34560 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 14915 y_position: -34560 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15276 y_position: -34560 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 15315 y_position: -34560 font: Amiri +glyph [4466] x_offset: 0 y_offset: 0 x_advance: 511 x_position: 15776 y_position: -34560 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16287 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17227 y_position: -34560 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 17701 y_position: -34560 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17827 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18648 y_position: -34560 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 18892 y_position: -34560 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 19248 y_position: -34560 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 19795 y_position: -34560 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 19951 y_position: -34560 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 20895 y_position: -34560 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 20751 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21914 y_position: -34560 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 22244 y_position: -35500 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 22514 y_position: -34560 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 23420 y_position: -34560 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 23296 y_position: -34560 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 25000 y_position: -34456 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 24590 y_position: -34560 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 24792 y_position: -34560 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 25572 y_position: -34560 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 25932 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26378 y_position: -34560 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 26978 y_position: -34560 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 27888 y_position: -34560 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 27918 y_position: -34560 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 29012 y_position: -34456 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 28602 y_position: -34560 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 29030 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 29171 y_position: -34560 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 29477 y_position: -34560 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 29516 y_position: -34560 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 29822 y_position: -34560 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 30476 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31416 y_position: -34560 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 31890 y_position: -34560 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 32016 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32837 y_position: -34560 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 33157 y_position: -34560 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 33437 y_position: -34560 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 33814 y_position: -34560 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 34214 y_position: -34560 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 34502 y_position: -34560 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 34714 y_position: -34560 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 x_position: 35283 y_position: -35510 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 x_position: 35319 y_position: -34560 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 36133 y_position: -34560 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 36289 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37267 y_position: -34560 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 37867 y_position: -34560 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 38081 y_position: -34560 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 38337 y_position: -34560 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 39153 y_position: -34595 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 38922 y_position: -34560 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39402 y_position: -34560 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 40002 y_position: -34560 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 40662 y_position: -34560 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 40942 y_position: -34560 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 41319 y_position: -34560 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41719 y_position: -34560 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 42042 y_position: -34560 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42219 y_position: -34560 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 42333 y_position: -34560 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42719 y_position: -34560 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 42858 y_position: -34560 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 43219 y_position: -34560 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 43997 y_position: -34560 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 43719 y_position: -34560 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 44883 y_position: -34560 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 45329 y_position: -34560 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -38144 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 730 y_position: -38144 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 600 y_position: -38144 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 1708 y_position: -38144 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 1910 y_position: -38144 font: Amiri -glyph [1916] x_offset: 723 y_offset: 184 x_advance: 0 x_position: 3133 y_position: -37960 font: Amiri -glyph [430] x_offset: 313 y_offset: 0 x_advance: 0 x_position: 2723 y_position: -38144 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 2410 y_position: -38144 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 3890 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4250 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4696 y_position: -38144 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5296 y_position: -38144 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 6206 y_position: -38144 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 6236 y_position: -38144 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 7330 y_position: -38040 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 6920 y_position: -38144 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 7348 y_position: -38144 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 7359 y_position: -38144 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 7795 y_position: -38144 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 8185 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9125 y_position: -38144 font: Amiri -glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 9828 y_position: -38144 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 9725 y_position: -38144 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 10294 y_position: -38144 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 10690 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11295 y_position: -38144 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 11895 y_position: -38144 font: Amiri -glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 12413 y_position: -38244 font: Amiri -glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 12347 y_position: -38144 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 13281 y_position: -38144 font: Amiri -glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13667 y_position: -38144 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 13861 y_position: -38144 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 14167 y_position: -38144 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 14545 y_position: -38144 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 14747 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15175 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15621 y_position: -38144 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 16221 y_position: -38144 font: Amiri -glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 x_position: 16912 y_position: -38284 font: Amiri -glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 x_position: 17196 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 17557 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17683 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18504 y_position: -38144 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 19104 y_position: -38144 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 19990 y_position: -38144 font: Amiri -glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 19860 y_position: -38144 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 21215 y_position: -38144 font: Amiri -glyph [428] x_offset: 60 y_offset: 0 x_advance: 0 x_position: 21983 y_position: -38144 font: Amiri -glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 21923 y_position: -38144 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 23083 y_position: -38144 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 23353 y_position: -38144 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 23769 y_position: -38144 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 24061 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 24421 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24867 y_position: -38144 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25467 y_position: -38144 font: Amiri -glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 26108 y_position: -38144 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 25937 y_position: -38144 font: Amiri -glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 27165 y_position: -38144 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 27417 y_position: -38144 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 28038 y_position: -38179 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 27807 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28287 y_position: -38144 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 28631 y_position: -38144 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 28887 y_position: -38144 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 29325 y_position: -38144 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 29595 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 30395 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 30521 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31342 y_position: -38144 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 32072 y_position: -38144 font: Amiri -glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 31942 y_position: -38144 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 33297 y_position: -38144 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 33911 y_position: -38144 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 33767 y_position: -38144 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 35247 y_position: -38144 font: Amiri -glyph [1918] x_offset: 723 y_offset: -345 x_advance: 0 x_position: 36360 y_position: -38489 font: Amiri -glyph [3006] x_offset: 170 y_offset: 0 x_advance: 868 x_position: 35807 y_position: -38144 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 36533 y_position: -38144 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 36505 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37124 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37570 y_position: -38144 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 38170 y_position: -38144 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 39066 y_position: -38144 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 39110 y_position: -38144 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 40222 y_position: -38144 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 40375 y_position: -38144 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 40669 y_position: -38144 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 40992 y_position: -38144 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41169 y_position: -38144 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 41822 y_position: -38040 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 41412 y_position: -38144 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41669 y_position: -38144 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 42169 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 42529 y_position: -38144 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 42975 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43915 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44389 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44515 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45336 y_position: -38144 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 45936 y_position: -38144 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 46416 y_position: -38144 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 46586 y_position: -38144 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 47156 y_position: -38144 font: Amiri -glyph [2363] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 47512 y_position: -38144 font: Amiri -glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 47973 y_position: -38144 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 48215 y_position: -38144 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 48184 y_position: -38144 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 48620 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 49010 y_position: -38144 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: -327 y_position: -41728 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 600 y_position: -38144 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 1510 y_position: -38144 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 1540 y_position: -38144 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 2634 y_position: -38040 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 2224 y_position: -38144 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 2652 y_position: -38144 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 2663 y_position: -38144 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 3099 y_position: -38144 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 3489 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4429 y_position: -38144 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 5132 y_position: -38144 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 5029 y_position: -38144 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 5598 y_position: -38144 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 5994 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6599 y_position: -38144 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 7199 y_position: -38144 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 7717 y_position: -38244 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 7651 y_position: -38144 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 8585 y_position: -38144 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 8971 y_position: -38144 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 9165 y_position: -38144 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 9471 y_position: -38144 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 9849 y_position: -38144 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 10051 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 10479 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10925 y_position: -38144 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 11525 y_position: -38144 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 x_position: 12216 y_position: -38284 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 x_position: 12500 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 12861 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 12987 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13808 y_position: -38144 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 14408 y_position: -38144 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 15294 y_position: -38144 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 15164 y_position: -38144 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 16519 y_position: -38144 font: Amiri +glyph [428] x_offset: 60 y_offset: 0 x_advance: 0 x_position: 17287 y_position: -38144 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 17227 y_position: -38144 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 18387 y_position: -38144 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 18657 y_position: -38144 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 19073 y_position: -38144 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 19365 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 19725 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20171 y_position: -38144 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 20771 y_position: -38144 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 21412 y_position: -38144 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 21241 y_position: -38144 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 22469 y_position: -38144 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 22721 y_position: -38144 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 23342 y_position: -38179 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 23111 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23591 y_position: -38144 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 23935 y_position: -38144 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 24191 y_position: -38144 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 24629 y_position: -38144 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 24899 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 25699 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 25825 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26646 y_position: -38144 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 27376 y_position: -38144 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 27246 y_position: -38144 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28601 y_position: -38144 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 29215 y_position: -38144 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 29071 y_position: -38144 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 30551 y_position: -38144 font: Amiri +glyph [1918] x_offset: 723 y_offset: -345 x_advance: 0 x_position: 31664 y_position: -38489 font: Amiri +glyph [3006] x_offset: 170 y_offset: 0 x_advance: 868 x_position: 31111 y_position: -38144 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 31837 y_position: -38144 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 31809 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 32428 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32874 y_position: -38144 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 33474 y_position: -38144 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 34370 y_position: -38144 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 34414 y_position: -38144 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 35526 y_position: -38144 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 35679 y_position: -38144 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 35973 y_position: -38144 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 36296 y_position: -38144 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36473 y_position: -38144 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 37126 y_position: -38040 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 36716 y_position: -38144 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36973 y_position: -38144 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 37473 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37833 y_position: -38144 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 38279 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39219 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 39693 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 39819 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40640 y_position: -38144 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 41240 y_position: -38144 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 41720 y_position: -38144 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 41890 y_position: -38144 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 42460 y_position: -38144 font: Amiri +glyph [2363] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 42816 y_position: -38144 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 43277 y_position: -38144 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 43519 y_position: -38144 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 43488 y_position: -38144 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 43924 y_position: -38144 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44188 y_position: -38144 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44314 y_position: -38144 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45135 y_position: -38144 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 45455 y_position: -38144 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 45735 y_position: -38144 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 46076 y_position: -38144 font: Amiri +glyph [2096] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 46512 y_position: -38144 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 46902 y_position: -38144 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 47381 y_position: -38144 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 47817 y_position: -38144 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 48472 y_position: -38040 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 48062 y_position: -38144 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 48319 y_position: -38144 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 48819 y_position: -38144 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 49179 y_position: -38144 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -41728 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 330 y_position: -42668 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 600 y_position: -41728 font: Amiri -glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 1382 y_position: -41728 font: Amiri -glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 2388 y_position: -41728 font: Amiri -glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 2582 y_position: -41728 font: Amiri -glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 2849 y_position: -41728 font: Amiri -glyph [4271] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 2695 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3899 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 4499 y_position: -41728 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 4563 y_position: -41728 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 4969 y_position: -41728 font: Amiri -glyph [1914] x_offset: 195 y_offset: 104 x_advance: 0 x_position: 5520 y_position: -41624 font: Amiri -glyph [430] x_offset: -215 y_offset: 0 x_advance: 0 x_position: 5110 y_position: -41728 font: Amiri -glyph [3437] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 5325 y_position: -41728 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 6198 y_position: -41873 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 5868 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6314 y_position: -41728 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 6758 y_position: -41728 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 6914 y_position: -41728 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 7699 y_position: -41728 font: Amiri -glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 7733 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8656 y_position: -41728 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 9310 y_position: -41728 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 9126 y_position: -41728 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 10300 y_position: -41728 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 10606 y_position: -41728 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 10984 y_position: -41728 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 11186 y_position: -41728 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 11614 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12060 y_position: -41728 font: Amiri -glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 13193 y_position: -41624 font: Amiri -glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 12783 y_position: -41728 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 12660 y_position: -41728 font: Amiri -glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 14048 y_position: -41784 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 13833 y_position: -41728 font: Amiri -glyph [429] x_offset: -294 y_offset: -60 x_advance: 0 x_position: 14237 y_position: -41788 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 14531 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15150 y_position: -41728 font: Amiri -glyph [5976] x_offset: -197 y_offset: 304 x_advance: 0 x_position: 15553 y_position: -41424 font: Amiri -glyph [430] x_offset: -7 y_offset: 0 x_advance: 0 x_position: 15743 y_position: -41728 font: Amiri -glyph [397] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 15750 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 16673 y_position: -41728 font: Amiri -glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 17237 y_position: -41728 font: Amiri -glyph [2399] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 17143 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18307 y_position: -41728 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 18651 y_position: -41728 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 18907 y_position: -41728 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 19345 y_position: -41728 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 19615 y_position: -41728 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20415 y_position: -41728 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20541 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21362 y_position: -41728 font: Amiri -glyph [425] x_offset: -110 y_offset: 0 x_advance: 0 x_position: 21852 y_position: -41728 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 21962 y_position: -41728 font: Amiri -glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 22700 y_position: -41728 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 22781 y_position: -41728 font: Amiri -glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 24114 y_position: -41728 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 23746 y_position: -41728 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 25070 y_position: -41728 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 25226 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26023 y_position: -41728 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 26623 y_position: -41728 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 27543 y_position: -41728 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 27563 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28736 y_position: -41728 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 28820 y_position: -41728 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29206 y_position: -41728 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 29529 y_position: -41728 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29706 y_position: -41728 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 29912 y_position: -41728 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 29949 y_position: -41728 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30206 y_position: -41728 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30706 y_position: -41728 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 31066 y_position: -41728 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31512 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32452 y_position: -41728 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 32926 y_position: -41728 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 33052 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33873 y_position: -41728 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 34473 y_position: -41728 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 35093 y_position: -41728 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 35123 y_position: -41728 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 36217 y_position: -41624 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 35807 y_position: -41728 font: Amiri -glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 36235 y_position: -41728 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 36376 y_position: -41728 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 36682 y_position: -41728 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 36721 y_position: -41728 font: Amiri -glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 37027 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37681 y_position: -41728 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 38709 y_position: -41728 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 38281 y_position: -41728 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 40078 y_position: -41763 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 39847 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40327 y_position: -41728 font: Amiri -glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 40883 y_position: -41728 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 40927 y_position: -41728 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 41666 y_position: -41728 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 42039 y_position: -41728 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 42100 y_position: -41728 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42486 y_position: -41728 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 42784 y_position: -41728 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42986 y_position: -41728 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 43330 y_position: -41728 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 43486 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44464 y_position: -41728 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45064 y_position: -41728 font: Amiri -glyph [429] x_offset: -92 y_offset: 0 x_advance: 0 x_position: 46538 y_position: -41728 font: Amiri -glyph [4908] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 46630 y_position: -41728 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 47630 y_position: -41728 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 0 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 940 y_position: -45312 font: Amiri -glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 1540 y_position: -45312 font: Amiri -glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 2621 y_position: -45208 font: Amiri -glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 2211 y_position: -45312 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 2238 y_position: -45312 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 3187 y_position: -45457 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 2857 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3303 y_position: -45312 font: Amiri -glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 3839 y_position: -45312 font: Amiri -glyph [4185] x_offset: 0 y_offset: 0 x_advance: 1134 x_position: 3903 y_position: -45312 font: Amiri -glyph [431] x_offset: -147 y_offset: 0 x_advance: 0 x_position: 4890 y_position: -45312 font: Amiri -glyph [4421] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 5037 y_position: -45312 font: Amiri -glyph [427] x_offset: 3 y_offset: 0 x_advance: 0 x_position: 5820 y_position: -45312 font: Amiri -glyph [2298] x_offset: 0 y_offset: 0 x_advance: 1206 x_position: 5817 y_position: -45312 font: Amiri -glyph [431] x_offset: 88 y_offset: 0 x_advance: 0 x_position: 7111 y_position: -45312 font: Amiri -glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 x_position: 7023 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 7403 y_position: -45312 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 7763 y_position: -45312 font: Amiri -glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 8004 y_position: -45312 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 8233 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8818 y_position: -45312 font: Amiri -glyph [431] x_offset: -92 y_offset: -620 x_advance: 0 x_position: 9326 y_position: -45932 font: Amiri -glyph [2452] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 9418 y_position: -45312 font: Amiri -glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 10424 y_position: -45312 font: Amiri -glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 10618 y_position: -45312 font: Amiri -glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 10885 y_position: -45312 font: Amiri -glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 10731 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11935 y_position: -45312 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 12563 y_position: -45312 font: Amiri -glyph [5985] x_offset: 0 y_offset: 0 x_advance: 990 x_position: 12535 y_position: -45312 font: Amiri -glyph [427] x_offset: -356 y_offset: 70 x_advance: 0 x_position: 13169 y_position: -45242 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 13525 y_position: -45312 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 13887 y_position: -45312 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 14013 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14834 y_position: -45312 font: Amiri -glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 x_position: 15978 y_position: -45312 font: Amiri -glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 15434 y_position: -45312 font: Amiri -glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 17449 y_position: -45312 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 17685 y_position: -45312 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 17834 y_position: -45312 font: Amiri -glyph [431] x_offset: -372 y_offset: 0 x_advance: 0 x_position: 18666 y_position: -45312 font: Amiri -glyph [2439] x_offset: -300 y_offset: 0 x_advance: 408 x_position: 18738 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 19599 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 19189 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19446 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 19946 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20306 y_position: -45312 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20626 y_position: -45312 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20752 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21573 y_position: -45312 font: Amiri -glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 22147 y_position: -45312 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 22173 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22992 y_position: -45312 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 23082 y_position: -45312 font: Amiri -glyph [3385] x_offset: 0 y_offset: 0 x_advance: 565 x_position: 23438 y_position: -45312 font: Amiri -glyph [431] x_offset: -82 y_offset: 0 x_advance: 0 x_position: 23921 y_position: -45312 font: Amiri -glyph [3358] x_offset: 0 y_offset: 0 x_advance: 792 x_position: 24003 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 24948 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 24538 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 24795 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 25295 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 25655 y_position: -45312 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 25975 y_position: -45312 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 26101 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26922 y_position: -45312 font: Amiri -glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 27496 y_position: -45312 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 27522 y_position: -45312 font: Amiri -glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 28341 y_position: -45312 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 28577 y_position: -45312 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 28726 y_position: -45312 font: Amiri -glyph [431] x_offset: -297 y_offset: 0 x_advance: 0 x_position: 29633 y_position: -45312 font: Amiri -glyph [2154] x_offset: -400 y_offset: 0 x_advance: 565 x_position: 29530 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 30648 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 30238 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 30495 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30995 y_position: -45312 font: Amiri -glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 31355 y_position: -45312 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 31591 y_position: -45312 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 31740 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32944 y_position: -45312 font: Amiri -glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 33440 y_position: -44582 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 33544 y_position: -45312 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 34326 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 34949 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 34539 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 34796 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 35296 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 35656 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36102 y_position: -45312 font: Amiri -glyph [429] x_offset: 266 y_offset: 620 x_advance: 0 x_position: 36968 y_position: -44692 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 36702 y_position: -45312 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 37810 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38012 y_position: -45312 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 38406 y_position: -45312 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 38512 y_position: -45312 font: Amiri -glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 38923 y_position: -45312 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 39287 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39677 y_position: -45312 font: Amiri -glyph [429] x_offset: 46 y_offset: 0 x_advance: 0 x_position: 40323 y_position: -45312 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 40277 y_position: -45312 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 41513 y_position: -45312 font: Amiri -glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 41777 y_position: -45312 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41983 y_position: -45312 font: Amiri -glyph [431] x_offset: 78 y_offset: 0 x_advance: 0 x_position: 42811 y_position: -45312 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 42733 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 43661 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 43251 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 43508 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 44008 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 44368 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44814 y_position: -45312 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 45414 y_position: -45312 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 45819 y_position: -45312 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 46375 y_position: -45312 font: Amiri -glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 46776 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 600 y_position: -41728 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 664 y_position: -41728 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 1070 y_position: -41728 font: Amiri +glyph [1914] x_offset: 195 y_offset: 104 x_advance: 0 x_position: 1621 y_position: -41624 font: Amiri +glyph [430] x_offset: -215 y_offset: 0 x_advance: 0 x_position: 1211 y_position: -41728 font: Amiri +glyph [3437] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 1426 y_position: -41728 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 2299 y_position: -41873 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 1969 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2415 y_position: -41728 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 2859 y_position: -41728 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 3015 y_position: -41728 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 3800 y_position: -41728 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 3834 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 4757 y_position: -41728 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 5411 y_position: -41728 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5227 y_position: -41728 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 6401 y_position: -41728 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 6707 y_position: -41728 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 7085 y_position: -41728 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 7287 y_position: -41728 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 7715 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8161 y_position: -41728 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 9294 y_position: -41624 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 8884 y_position: -41728 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 8761 y_position: -41728 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 10149 y_position: -41784 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 9934 y_position: -41728 font: Amiri +glyph [429] x_offset: -294 y_offset: -60 x_advance: 0 x_position: 10338 y_position: -41788 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 10632 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11251 y_position: -41728 font: Amiri +glyph [5976] x_offset: -197 y_offset: 304 x_advance: 0 x_position: 11654 y_position: -41424 font: Amiri +glyph [430] x_offset: -7 y_offset: 0 x_advance: 0 x_position: 11844 y_position: -41728 font: Amiri +glyph [397] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 11851 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 12774 y_position: -41728 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 13338 y_position: -41728 font: Amiri +glyph [2399] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 13244 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14408 y_position: -41728 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14752 y_position: -41728 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 15008 y_position: -41728 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 15446 y_position: -41728 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 15716 y_position: -41728 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16516 y_position: -41728 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 16642 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17463 y_position: -41728 font: Amiri +glyph [425] x_offset: -110 y_offset: 0 x_advance: 0 x_position: 17953 y_position: -41728 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 18063 y_position: -41728 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 18801 y_position: -41728 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 18882 y_position: -41728 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 20215 y_position: -41728 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 19847 y_position: -41728 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 21171 y_position: -41728 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 21327 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22124 y_position: -41728 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 22724 y_position: -41728 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 23644 y_position: -41728 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 23664 y_position: -41728 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 24837 y_position: -41728 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 24921 y_position: -41728 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 25307 y_position: -41728 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 25630 y_position: -41728 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 25807 y_position: -41728 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 26013 y_position: -41728 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 26050 y_position: -41728 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 26307 y_position: -41728 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 26807 y_position: -41728 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 27167 y_position: -41728 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 27613 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28553 y_position: -41728 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 29027 y_position: -41728 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 29153 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29974 y_position: -41728 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 30574 y_position: -41728 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 31194 y_position: -41728 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 31224 y_position: -41728 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 32318 y_position: -41624 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 31908 y_position: -41728 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 32336 y_position: -41728 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 32477 y_position: -41728 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 32783 y_position: -41728 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 32822 y_position: -41728 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 33128 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33782 y_position: -41728 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 34810 y_position: -41728 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 34382 y_position: -41728 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 36179 y_position: -41763 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 35948 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36428 y_position: -41728 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 36984 y_position: -41728 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 37028 y_position: -41728 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 37767 y_position: -41728 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 38140 y_position: -41728 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 38201 y_position: -41728 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38587 y_position: -41728 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 38885 y_position: -41728 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 39087 y_position: -41728 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 39431 y_position: -41728 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 39587 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40565 y_position: -41728 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 41165 y_position: -41728 font: Amiri +glyph [429] x_offset: -92 y_offset: 0 x_advance: 0 x_position: 42639 y_position: -41728 font: Amiri +glyph [4908] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 42731 y_position: -41728 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: 43297 y_position: -41728 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 43731 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44020 y_position: -41728 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 44750 y_position: -41728 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 44620 y_position: -41728 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 45728 y_position: -41728 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 45930 y_position: -41728 font: Amiri +glyph [1916] x_offset: 723 y_offset: 184 x_advance: 0 x_position: 47153 y_position: -41544 font: Amiri +glyph [430] x_offset: 313 y_offset: 0 x_advance: 0 x_position: 46743 y_position: -41728 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 46430 y_position: -41728 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47910 y_position: -41728 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48270 y_position: -41728 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -45312 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 600 y_position: -45312 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 1681 y_position: -45208 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 1271 y_position: -45312 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 1298 y_position: -45312 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 2247 y_position: -45457 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 1917 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2363 y_position: -45312 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 2899 y_position: -45312 font: Amiri +glyph [4185] x_offset: 0 y_offset: 0 x_advance: 1134 x_position: 2963 y_position: -45312 font: Amiri +glyph [431] x_offset: -147 y_offset: 0 x_advance: 0 x_position: 3950 y_position: -45312 font: Amiri +glyph [4421] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 4097 y_position: -45312 font: Amiri +glyph [427] x_offset: 3 y_offset: 0 x_advance: 0 x_position: 4880 y_position: -45312 font: Amiri +glyph [2298] x_offset: 0 y_offset: 0 x_advance: 1206 x_position: 4877 y_position: -45312 font: Amiri +glyph [431] x_offset: 88 y_offset: 0 x_advance: 0 x_position: 6171 y_position: -45312 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 x_position: 6083 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 6463 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6823 y_position: -45312 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 7064 y_position: -45312 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 7293 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7878 y_position: -45312 font: Amiri +glyph [431] x_offset: -92 y_offset: -620 x_advance: 0 x_position: 8386 y_position: -45932 font: Amiri +glyph [2452] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 8478 y_position: -45312 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 9484 y_position: -45312 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 9678 y_position: -45312 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 9945 y_position: -45312 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 9791 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10995 y_position: -45312 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 11623 y_position: -45312 font: Amiri +glyph [5985] x_offset: 0 y_offset: 0 x_advance: 990 x_position: 11595 y_position: -45312 font: Amiri +glyph [427] x_offset: -356 y_offset: 70 x_advance: 0 x_position: 12229 y_position: -45242 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 12585 y_position: -45312 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 12947 y_position: -45312 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 13073 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13894 y_position: -45312 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 x_position: 15038 y_position: -45312 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 14494 y_position: -45312 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 16509 y_position: -45312 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 16745 y_position: -45312 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 16894 y_position: -45312 font: Amiri +glyph [431] x_offset: -372 y_offset: 0 x_advance: 0 x_position: 17726 y_position: -45312 font: Amiri +glyph [2439] x_offset: -300 y_offset: 0 x_advance: 408 x_position: 17798 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 18659 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 18249 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18506 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 19006 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 19366 y_position: -45312 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 19686 y_position: -45312 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 19812 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20633 y_position: -45312 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 21207 y_position: -45312 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 21233 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22052 y_position: -45312 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 22142 y_position: -45312 font: Amiri +glyph [3385] x_offset: 0 y_offset: 0 x_advance: 565 x_position: 22498 y_position: -45312 font: Amiri +glyph [431] x_offset: -82 y_offset: 0 x_advance: 0 x_position: 22981 y_position: -45312 font: Amiri +glyph [3358] x_offset: 0 y_offset: 0 x_advance: 792 x_position: 23063 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 24008 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 23598 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23855 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 24355 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 24715 y_position: -45312 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 25035 y_position: -45312 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 25161 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25982 y_position: -45312 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 26556 y_position: -45312 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 26582 y_position: -45312 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 27401 y_position: -45312 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 27637 y_position: -45312 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 27786 y_position: -45312 font: Amiri +glyph [431] x_offset: -297 y_offset: 0 x_advance: 0 x_position: 28693 y_position: -45312 font: Amiri +glyph [2154] x_offset: -400 y_offset: 0 x_advance: 565 x_position: 28590 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 29708 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 29298 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29555 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30055 y_position: -45312 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 30415 y_position: -45312 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 30651 y_position: -45312 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 30800 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32004 y_position: -45312 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 32500 y_position: -44582 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 32604 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 33386 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 34009 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 33599 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 33856 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 34356 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 34716 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35162 y_position: -45312 font: Amiri +glyph [429] x_offset: 266 y_offset: 620 x_advance: 0 x_position: 36028 y_position: -44692 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 35762 y_position: -45312 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 36870 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 37072 y_position: -45312 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 37466 y_position: -45312 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 37572 y_position: -45312 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 37983 y_position: -45312 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 38347 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38737 y_position: -45312 font: Amiri +glyph [429] x_offset: 46 y_offset: 0 x_advance: 0 x_position: 39383 y_position: -45312 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 39337 y_position: -45312 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40573 y_position: -45312 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 40837 y_position: -45312 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41043 y_position: -45312 font: Amiri +glyph [431] x_offset: 78 y_offset: 0 x_advance: 0 x_position: 41871 y_position: -45312 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 41793 y_position: -45312 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 42721 y_position: -45208 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 42311 y_position: -45312 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42568 y_position: -45312 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43068 y_position: -45312 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43428 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43874 y_position: -45312 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 44474 y_position: -45312 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 44879 y_position: -45312 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 45435 y_position: -45312 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 45509 y_position: -45312 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 45836 y_position: -45312 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46636 y_position: -45312 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 46966 y_position: -46252 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 47236 y_position: -45312 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 48018 y_position: -45312 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 49024 y_position: -45312 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 49218 y_position: -45312 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 49485 y_position: -45312 font: Amiri +glyph [4271] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 49331 y_position: -45312 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -48896 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 474 y_position: -48896 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 600 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1421 y_position: -48896 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 2021 y_position: -48896 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2671 y_position: -48896 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 3627 y_position: -48896 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 3611 y_position: -48896 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 4723 y_position: -48896 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 4876 y_position: -48896 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 5170 y_position: -48896 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 5500 y_position: -48896 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 5670 y_position: -48896 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 6467 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7407 y_position: -48896 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 7751 y_position: -48896 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 8007 y_position: -48896 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 8545 y_position: -48896 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 8715 y_position: -48896 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 9119 y_position: -48896 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 9515 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10120 y_position: -48896 font: Amiri -glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 10350 y_position: -48896 font: Amiri -glyph [4898] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 10720 y_position: -48896 font: Amiri -glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 10985 y_position: -48896 font: Amiri -glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 11548 y_position: -48896 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 12116 y_position: -48896 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 11932 y_position: -48896 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 13016 y_position: -48896 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 13412 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14017 y_position: -48896 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 15045 y_position: -48896 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 14617 y_position: -48896 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 16414 y_position: -48931 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 16183 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16663 y_position: -48896 font: Amiri -glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 17139 y_position: -48896 font: Amiri -glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 17263 y_position: -48896 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 17985 y_position: -48896 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 18019 y_position: -48896 font: Amiri -glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 18928 y_position: -48896 font: Amiri -glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 18984 y_position: -48896 font: Amiri -glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 x_position: 20203 y_position: -48896 font: Amiri -glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 x_position: 20149 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21492 y_position: -48896 font: Amiri -glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 22400 y_position: -48896 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 22092 y_position: -48896 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 23218 y_position: -48896 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 23352 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24149 y_position: -48896 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 24469 y_position: -48896 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 24749 y_position: -48896 font: Amiri -glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 25620 y_position: -48896 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 25526 y_position: -48896 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 26921 y_position: -48931 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 26690 y_position: -48896 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 27014 y_position: -48896 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 27170 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27989 y_position: -48896 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 28589 y_position: -48896 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 29523 y_position: -48896 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 29529 y_position: -48896 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 30702 y_position: -48896 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 30916 y_position: -48896 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 31172 y_position: -48896 font: Amiri -glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 32058 y_position: -48931 font: Amiri -glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 31757 y_position: -48896 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 32254 y_position: -48896 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 32650 y_position: -48896 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 33255 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34195 y_position: -48896 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 34515 y_position: -48896 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 34795 y_position: -48896 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 35136 y_position: -48896 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 35572 y_position: -48896 font: Amiri -glyph [427] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 35942 y_position: -48896 font: Amiri -glyph [4185] x_offset: 170 y_offset: 0 x_advance: 1304 x_position: 36132 y_position: -48896 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 37010 y_position: -48896 font: Amiri -glyph [4432] x_offset: 0 y_offset: 0 x_advance: 1092 x_position: 37266 y_position: -48896 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 38232 y_position: -48896 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 38358 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39179 y_position: -48896 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 39779 y_position: -48896 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 40159 y_position: -49836 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 40429 y_position: -48896 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 41211 y_position: -48896 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 41575 y_position: -48896 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 41681 y_position: -48896 font: Amiri -glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 42214 y_position: -48896 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 42456 y_position: -48896 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 42567 y_position: -48896 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 42604 y_position: -48896 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42861 y_position: -48896 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43361 y_position: -48896 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43721 y_position: -48896 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44041 y_position: -48896 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44167 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44988 y_position: -48896 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 45588 y_position: -48896 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 46508 y_position: -48896 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 46528 y_position: -48896 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 47701 y_position: -48896 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 47785 y_position: -48896 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 48171 y_position: -48896 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 48494 y_position: -48896 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 48671 y_position: -48896 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 48877 y_position: -48896 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 48914 y_position: -48896 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 49171 y_position: -48896 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 49671 y_position: -48896 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 50031 y_position: -48896 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 600 y_position: -48896 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 1250 y_position: -48896 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 2206 y_position: -48896 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 2190 y_position: -48896 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 3302 y_position: -48896 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 3455 y_position: -48896 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3749 y_position: -48896 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 4079 y_position: -48896 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 4249 y_position: -48896 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5046 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5986 y_position: -48896 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 6330 y_position: -48896 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 6586 y_position: -48896 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 7124 y_position: -48896 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 7294 y_position: -48896 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 7698 y_position: -48896 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 8094 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8699 y_position: -48896 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 8929 y_position: -48896 font: Amiri +glyph [4898] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 9299 y_position: -48896 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 9564 y_position: -48896 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 10127 y_position: -48896 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 10695 y_position: -48896 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 10511 y_position: -48896 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 11595 y_position: -48896 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 11991 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12596 y_position: -48896 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 13624 y_position: -48896 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 13196 y_position: -48896 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 14993 y_position: -48931 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 14762 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15242 y_position: -48896 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 15718 y_position: -48896 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 15842 y_position: -48896 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 16564 y_position: -48896 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 16598 y_position: -48896 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 17507 y_position: -48896 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 17563 y_position: -48896 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 x_position: 18782 y_position: -48896 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 x_position: 18728 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20071 y_position: -48896 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 20979 y_position: -48896 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 20671 y_position: -48896 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 21797 y_position: -48896 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 21931 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22728 y_position: -48896 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 23048 y_position: -48896 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 23328 y_position: -48896 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 24199 y_position: -48896 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 24105 y_position: -48896 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 25500 y_position: -48931 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 25269 y_position: -48896 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 25593 y_position: -48896 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 25749 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26568 y_position: -48896 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 27168 y_position: -48896 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 28102 y_position: -48896 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 28108 y_position: -48896 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 29281 y_position: -48896 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 29495 y_position: -48896 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 29751 y_position: -48896 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 30637 y_position: -48931 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 30336 y_position: -48896 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 30833 y_position: -48896 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 31229 y_position: -48896 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31834 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32774 y_position: -48896 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 33094 y_position: -48896 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 33374 y_position: -48896 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 33715 y_position: -48896 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 34151 y_position: -48896 font: Amiri +glyph [427] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 34521 y_position: -48896 font: Amiri +glyph [4185] x_offset: 170 y_offset: 0 x_advance: 1304 x_position: 34711 y_position: -48896 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 35589 y_position: -48896 font: Amiri +glyph [4432] x_offset: 0 y_offset: 0 x_advance: 1092 x_position: 35845 y_position: -48896 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 36811 y_position: -48896 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 36937 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37758 y_position: -48896 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 38358 y_position: -48896 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 38738 y_position: -49836 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 39008 y_position: -48896 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 39790 y_position: -48896 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 40154 y_position: -48896 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 40260 y_position: -48896 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 40793 y_position: -48896 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 41035 y_position: -48896 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 41146 y_position: -48896 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 41183 y_position: -48896 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41440 y_position: -48896 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 41940 y_position: -48896 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 42300 y_position: -48896 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 42620 y_position: -48896 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 42746 y_position: -48896 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43567 y_position: -48896 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44167 y_position: -48896 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 45087 y_position: -48896 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 45107 y_position: -48896 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 46280 y_position: -48896 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46364 y_position: -48896 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 46750 y_position: -48896 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 47073 y_position: -48896 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47250 y_position: -48896 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 47456 y_position: -48896 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 47493 y_position: -48896 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47750 y_position: -48896 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 48250 y_position: -48896 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48610 y_position: -48896 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 49056 y_position: -48896 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -52480 font: Amiri -glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 600 y_position: -52480 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 1108 y_position: -52480 font: Amiri -glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 1464 y_position: -52480 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 2072 y_position: -52480 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 2094 y_position: -52480 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 2438 y_position: -52480 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 2844 y_position: -52480 font: Amiri -glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 2958 y_position: -52480 font: Amiri -glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 3200 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3743 y_position: -52480 font: Amiri -glyph [425] x_offset: -310 y_offset: 0 x_advance: 0 x_position: 4033 y_position: -52480 font: Amiri -glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 4343 y_position: -52480 font: Amiri -glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 4608 y_position: -52480 font: Amiri -glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 5171 y_position: -52480 font: Amiri -glyph [429] x_offset: -113 y_offset: 0 x_advance: 0 x_position: 5442 y_position: -52480 font: Amiri -glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 5555 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6355 y_position: -52480 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 6429 y_position: -52480 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 6825 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7430 y_position: -52480 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 7874 y_position: -52480 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 8030 y_position: -52480 font: Amiri -glyph [429] x_offset: 109 y_offset: 0 x_advance: 0 x_position: 9114 y_position: -52480 font: Amiri -glyph [5116] x_offset: 0 y_offset: 0 x_advance: 1132 x_position: 9005 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 10011 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 10137 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10958 y_position: -52480 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11558 y_position: -52480 font: Amiri -glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 12278 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 12498 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 12969 y_position: -52480 font: Amiri -glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 13275 y_position: -52480 font: Amiri -glyph [429] x_offset: -384 y_offset: 0 x_advance: 0 x_position: 13236 y_position: -52480 font: Amiri -glyph [3742] x_offset: 0 y_offset: 0 x_advance: 620 x_position: 13620 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 14240 y_position: -52480 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14454 y_position: -52480 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 14710 y_position: -52480 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15295 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16235 y_position: -52480 font: Amiri -glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 16615 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 16835 y_position: -52480 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 17506 y_position: -52480 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 17612 y_position: -52480 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18387 y_position: -52480 font: Amiri -glyph [429] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 18543 y_position: -52480 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 18887 y_position: -52480 font: Amiri -glyph [431] x_offset: 128 y_offset: 0 x_advance: 0 x_position: 19420 y_position: -52480 font: Amiri -glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 19292 y_position: -52480 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 19986 y_position: -52480 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 20422 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20686 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20812 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21633 y_position: -52480 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 22233 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22883 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 23329 y_position: -52480 font: Amiri -glyph [428] x_offset: -167 y_offset: 0 x_advance: 0 x_position: 23983 y_position: -52480 font: Amiri -glyph [4014] x_offset: 0 y_offset: 0 x_advance: 613 x_position: 24150 y_position: -52480 font: Amiri -glyph [427] x_offset: -87 y_offset: 0 x_advance: 0 x_position: 24676 y_position: -52480 font: Amiri -glyph [3989] x_offset: 0 y_offset: 0 x_advance: 1187 x_position: 24763 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25950 y_position: -52480 font: Amiri -glyph [427] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 26076 y_position: -52480 font: Amiri -glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 26420 y_position: -52480 font: Amiri -glyph [427] x_offset: -13 y_offset: 0 x_advance: 0 x_position: 26709 y_position: -52480 font: Amiri -glyph [5280] x_offset: 0 y_offset: 0 x_advance: 787 x_position: 26722 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27509 y_position: -52480 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 27939 y_position: -52480 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 28109 y_position: -52480 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 28963 y_position: -52480 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 29035 y_position: -52480 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 29637 y_position: -52480 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 29743 y_position: -52480 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 30226 y_position: -52480 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30518 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30878 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31324 y_position: -52480 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31924 y_position: -52480 font: Amiri -glyph [427] x_offset: 104 y_offset: 0 x_advance: 0 x_position: 32968 y_position: -52480 font: Amiri -glyph [3217] x_offset: 0 y_offset: 0 x_advance: 1152 x_position: 32864 y_position: -52480 font: Amiri -glyph [427] x_offset: -555 y_offset: 0 x_advance: 0 x_position: 33461 y_position: -52480 font: Amiri -glyph [3189] x_offset: 0 y_offset: 0 x_advance: 299 x_position: 34016 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 34315 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 34479 y_position: -52480 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 34785 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 34824 y_position: -52480 font: Amiri -glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 35130 y_position: -52480 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 35784 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36724 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 37198 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 37324 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38145 y_position: -52480 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 38465 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 38745 y_position: -52480 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 39126 y_position: -52480 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 39522 y_position: -52480 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 39971 y_position: -52480 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 40127 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40946 y_position: -52480 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 41310 y_position: -52480 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 41416 y_position: -52480 font: Amiri -glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 41871 y_position: -52480 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 42191 y_position: -52480 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 42569 y_position: -52480 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 42771 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43199 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43645 y_position: -52480 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44245 y_position: -52480 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 44905 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 45185 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 45656 y_position: -52480 font: Amiri -glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 45962 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 46001 y_position: -52480 font: Amiri -glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 46307 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 46913 y_position: -52480 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46997 y_position: -52480 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47383 y_position: -52480 font: Amiri -glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 47563 y_position: -52480 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 47883 y_position: -52480 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 48261 y_position: -52480 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 48463 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48891 y_position: -52480 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 49337 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: -126 y_position: -56064 font: Amiri +glyph [425] x_offset: -310 y_offset: 0 x_advance: 0 x_position: 290 y_position: -52480 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 600 y_position: -52480 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 865 y_position: -52480 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 1428 y_position: -52480 font: Amiri +glyph [429] x_offset: -113 y_offset: 0 x_advance: 0 x_position: 1699 y_position: -52480 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 1812 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 2612 y_position: -52480 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 2686 y_position: -52480 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 3082 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3687 y_position: -52480 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 4131 y_position: -52480 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 4287 y_position: -52480 font: Amiri +glyph [429] x_offset: 109 y_offset: 0 x_advance: 0 x_position: 5371 y_position: -52480 font: Amiri +glyph [5116] x_offset: 0 y_offset: 0 x_advance: 1132 x_position: 5262 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6268 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6394 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7215 y_position: -52480 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 7815 y_position: -52480 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 8535 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 8755 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 9226 y_position: -52480 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 9532 y_position: -52480 font: Amiri +glyph [429] x_offset: -384 y_offset: 0 x_advance: 0 x_position: 9493 y_position: -52480 font: Amiri +glyph [3742] x_offset: 0 y_offset: 0 x_advance: 620 x_position: 9877 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 10497 y_position: -52480 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 10711 y_position: -52480 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 10967 y_position: -52480 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11552 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12492 y_position: -52480 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 12872 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 13092 y_position: -52480 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 13763 y_position: -52480 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 13869 y_position: -52480 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14644 y_position: -52480 font: Amiri +glyph [429] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 14800 y_position: -52480 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 15144 y_position: -52480 font: Amiri +glyph [431] x_offset: 128 y_offset: 0 x_advance: 0 x_position: 15677 y_position: -52480 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 15549 y_position: -52480 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 16243 y_position: -52480 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 16679 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16943 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17069 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17890 y_position: -52480 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 18490 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 19140 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 19586 y_position: -52480 font: Amiri +glyph [428] x_offset: -167 y_offset: 0 x_advance: 0 x_position: 20240 y_position: -52480 font: Amiri +glyph [4014] x_offset: 0 y_offset: 0 x_advance: 613 x_position: 20407 y_position: -52480 font: Amiri +glyph [427] x_offset: -87 y_offset: 0 x_advance: 0 x_position: 20933 y_position: -52480 font: Amiri +glyph [3989] x_offset: 0 y_offset: 0 x_advance: 1187 x_position: 21020 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22207 y_position: -52480 font: Amiri +glyph [427] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 22333 y_position: -52480 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 22677 y_position: -52480 font: Amiri +glyph [427] x_offset: -13 y_offset: 0 x_advance: 0 x_position: 22966 y_position: -52480 font: Amiri +glyph [5280] x_offset: 0 y_offset: 0 x_advance: 787 x_position: 22979 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23766 y_position: -52480 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 24196 y_position: -52480 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 24366 y_position: -52480 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 25220 y_position: -52480 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 25292 y_position: -52480 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 25894 y_position: -52480 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 26000 y_position: -52480 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 26483 y_position: -52480 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 26775 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 27135 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27581 y_position: -52480 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 28181 y_position: -52480 font: Amiri +glyph [427] x_offset: 104 y_offset: 0 x_advance: 0 x_position: 29225 y_position: -52480 font: Amiri +glyph [3217] x_offset: 0 y_offset: 0 x_advance: 1152 x_position: 29121 y_position: -52480 font: Amiri +glyph [427] x_offset: -555 y_offset: 0 x_advance: 0 x_position: 29718 y_position: -52480 font: Amiri +glyph [3189] x_offset: 0 y_offset: 0 x_advance: 299 x_position: 30273 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 30572 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 30736 y_position: -52480 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 31042 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 31081 y_position: -52480 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 31387 y_position: -52480 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 32041 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32981 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 33455 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 33581 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34402 y_position: -52480 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 34722 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 35002 y_position: -52480 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 35383 y_position: -52480 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 35779 y_position: -52480 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 36228 y_position: -52480 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 36384 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 37203 y_position: -52480 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 37567 y_position: -52480 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 37673 y_position: -52480 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 38128 y_position: -52480 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 38448 y_position: -52480 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 38826 y_position: -52480 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 39028 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 39456 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39902 y_position: -52480 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 40502 y_position: -52480 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 41162 y_position: -52480 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 41442 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 41913 y_position: -52480 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 42219 y_position: -52480 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 42258 y_position: -52480 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 42564 y_position: -52480 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 43170 y_position: -52480 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 43254 y_position: -52480 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 43640 y_position: -52480 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 43820 y_position: -52480 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 44140 y_position: -52480 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 44518 y_position: -52480 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 44720 y_position: -52480 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45148 y_position: -52480 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 45594 y_position: -52480 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46534 y_position: -52480 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 47008 y_position: -52480 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 47134 y_position: -52480 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -56064 font: Amiri glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 574 y_position: -56064 font: Amiri glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 600 y_position: -56064 font: Amiri @@ -6136,7 +6125,16 @@ glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 44566 y_position glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 44672 y_position: -56064 font: Amiri glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 45277 y_position: -56064 font: Amiri glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 45447 y_position: -56064 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: -436 y_position: -59648 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46244 y_position: -56064 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 46844 y_position: -56064 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 47352 y_position: -56064 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 47708 y_position: -56064 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 48316 y_position: -56064 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 48338 y_position: -56064 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 48682 y_position: -56064 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 49088 y_position: -56064 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 49202 y_position: -56064 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 49444 y_position: -56064 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -59648 font: Amiri glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 x_position: 1044 y_position: -59648 font: Amiri glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 x_position: 600 y_position: -59648 font: Amiri @@ -6253,8 +6251,8 @@ glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 45172 y_position glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45448 y_position: -59648 font: Amiri glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 46048 y_position: -59648 font: Amiri glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 46492 y_position: -59648 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 46812 y_position: -59648 font: Amiri glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 46938 y_position: -59648 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: -396 y_position: -63232 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -63232 font: Amiri glyph [425] x_offset: 790 y_offset: 0 x_advance: 0 x_position: 1390 y_position: -63232 font: Amiri glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 600 y_position: -63232 font: Amiri @@ -6353,8 +6351,8 @@ glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 45149 y_position glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 46385 y_position: -63232 font: Amiri glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 46973 y_position: -63232 font: Amiri glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 47093 y_position: -63232 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 47432 y_position: -63232 font: Amiri glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 47868 y_position: -63232 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: -436 y_position: -66816 font: Amiri glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -66816 font: Amiri glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 570 y_position: -66816 font: Amiri glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 600 y_position: -66816 font: Amiri @@ -6474,6 +6472,7 @@ glyph [431] x_offset: 178 y_offset: 0 x_advance: 0 x_position: 47854 y_position: glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 47676 y_position: -66816 font: Amiri glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 x_position: 49099 y_position: -66991 font: Amiri glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 48849 y_position: -66816 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 48923 y_position: -66816 font: Amiri glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 49319 y_position: -66816 font: Amiri glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 0 y_position: -70400 font: Amiri glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 546 y_position: -69670 font: Amiri @@ -6517,7 +6516,8 @@ glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 16743 y_position: glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 16773 y_position: -70400 font: Amiri glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 17512 y_position: -70400 font: Amiri glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 17885 y_position: -70400 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 17896 y_position: -70400 font: Amiri glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 18332 y_position: -70400 font: Amiri -UTF-32 clusters: 113 112 111 109 109 108 106 106 104 104 102 102 100 100 99 98 96 96 94 94 93 91 91 89 89 87 87 86 84 84 82 82 80 80 78 78 77 76 74 74 72 72 70 70 68 68 67 65 65 64 63 62 60 60 58 58 56 56 55 54 52 52 50 50 49 47 47 45 45 43 43 42 41 39 39 38 36 36 35 33 33 32 30 30 28 28 27 25 25 23 23 22 20 20 19 17 17 15 15 13 13 12 11 10 08 08 06 06 04 04 02 02 01 00 220 219 217 217 215 215 213 213 211 211 210 209 208 206 206 204 204 203 201 201 199 199 196 196 196 195 194 192 192 191 189 189 187 187 184 184 184 183 182 180 180 179 177 177 175 175 172 172 172 171 170 168 168 167 166 165 163 164 162 161 160 159 158 157 156 155 154 153 152 151 149 149 147 147 145 145 143 143 141 141 140 138 138 135 135 135 133 133 131 131 130 128 128 126 126 124 124 123 122 121 119 119 117 117 115 115 113 323 322 320 320 318 318 316 316 314 314 313 312 311 309 309 307 307 305 305 303 303 302 301 300 298 298 297 296 294 294 292 292 290 290 288 288 286 286 285 284 282 282 281 279 279 278 276 276 274 274 273 271 271 269 269 267 267 265 265 264 263 262 260 260 258 258 257 255 255 253 253 250 250 250 249 248 246 246 245 243 243 241 241 239 239 239 237 237 235 235 234 232 232 229 229 229 227 227 225 225 224 222 222 220 433 432 431 429 429 428 426 426 424 424 423 422 420 420 418 418 416 416 415 414 412 412 411 409 409 408 406 406 404 404 403 402 400 400 398 398 396 396 395 394 393 391 391 389 389 387 387 385 385 383 383 381 381 380 379 377 377 376 374 374 372 372 371 369 369 368 366 366 365 363 363 362 360 360 359 357 357 355 355 354 353 351 351 349 349 348 346 346 345 344 342 342 340 340 338 338 337 335 335 332 332 332 330 330 328 328 326 326 325 323 550 549 548 546 546 545 543 543 541 541 539 539 538 537 536 534 534 533 532 530 530 528 528 526 526 525 524 522 522 521 520 519 517 517 515 515 513 513 512 511 510 508 508 506 506 504 504 502 502 500 500 499 496 496 496 494 494 493 492 490 490 489 487 487 485 485 483 483 482 480 480 478 478 476 476 474 474 473 472 471 469 469 467 467 465 465 463 463 462 461 458 458 458 456 456 454 454 453 452 450 450 448 448 446 446 444 444 443 441 441 440 438 438 436 436 435 433 654 653 651 651 649 649 648 647 645 645 643 643 641 641 639 639 638 637 635 635 634 632 632 630 630 628 628 627 626 625 623 623 621 621 619 619 617 617 616 614 614 613 611 611 609 609 607 607 606 605 603 603 601 601 600 597 597 597 595 595 594 593 592 590 590 589 587 587 585 585 583 583 582 581 580 578 578 576 576 575 574 572 572 570 570 567 567 567 566 565 563 563 562 560 560 558 558 557 555 555 553 553 551 551 765 763 763 761 761 760 758 758 756 756 753 753 753 752 751 750 748 748 746 746 745 744 742 742 739 739 739 737 737 735 735 733 733 732 731 730 728 728 727 726 724 724 722 722 720 720 719 718 716 716 715 713 713 711 711 709 709 708 707 706 704 704 703 702 701 699 699 698 696 696 694 694 693 691 691 689 689 687 687 685 685 683 683 682 680 680 678 678 676 676 675 673 673 671 671 669 669 667 667 666 664 664 662 662 661 659 659 658 656 656 654 876 875 874 872 872 871 869 869 867 867 866 865 864 862 862 860 860 858 858 857 856 854 854 851 851 851 849 849 848 847 845 845 843 843 841 841 840 838 838 836 836 833 833 833 832 831 830 829 827 827 826 824 824 822 822 821 820 818 818 817 815 815 813 813 812 810 810 808 808 805 805 805 804 803 802 801 799 799 798 796 796 795 794 792 792 791 790 789 787 787 785 785 783 783 781 781 779 779 778 776 776 774 774 773 771 771 768 768 768 767 766 979 978 976 976 975 973 973 971 971 969 969 968 966 966 964 964 961 961 961 960 959 958 957 955 955 954 952 952 950 950 948 948 947 946 945 943 943 942 940 940 938 938 936 936 934 934 932 932 930 930 929 927 927 925 925 924 923 921 921 919 919 918 917 915 915 913 913 911 911 909 909 907 907 906 905 903 903 902 901 899 899 898 896 896 894 894 893 892 890 890 888 888 886 886 885 883 883 881 881 878 878 878 877 1099 1098 1096 1096 1094 1094 1093 1091 1091 1088 1088 1088 1087 1086 1085 1083 1083 1081 1081 1079 1079 1078 1077 1074 1074 1074 1072 1072 1070 1070 1068 1068 1067 1066 1065 1063 1063 1061 1061 1060 1059 1057 1057 1055 1055 1052 1052 1052 1050 1050 1048 1048 1047 1046 1044 1044 1043 1041 1041 1039 1039 1037 1037 1036 1034 1034 1032 1032 1029 1029 1029 1028 1027 1026 1025 1023 1023 1020 1020 1020 1018 1018 1016 1016 1015 1014 1012 1012 1011 1009 1009 1007 1007 1005 1005 1003 1003 1001 1001 1000 999 997 997 995 995 994 993 991 991 989 989 987 987 985 985 983 983 981 981 980 1210 1209 1207 1207 1205 1205 1202 1202 1202 1201 1200 1199 1198 1196 1196 1193 1193 1193 1191 1191 1190 1189 1187 1187 1185 1185 1184 1183 1181 1181 1179 1179 1177 1177 1175 1175 1174 1173 1172 1170 1170 1168 1168 1167 1166 1164 1164 1163 1161 1161 1159 1159 1157 1157 1156 1155 1154 1152 1152 1150 1150 1148 1148 1147 1145 1145 1143 1143 1141 1141 1140 1138 1138 1137 1135 1135 1134 1132 1132 1130 1130 1129 1128 1127 1125 1125 1124 1122 1122 1120 1120 1117 1117 1117 1116 1115 1114 1113 1111 1111 1110 1109 1107 1107 1105 1105 1103 1103 1101 1101 1099 1322 1321 1319 1319 1318 1316 1316 1314 1314 1313 1312 1310 1310 1307 1307 1307 1305 1305 1304 1302 1302 1300 1300 1299 1297 1297 1295 1295 1293 1293 1292 1291 1288 1288 1288 1286 1286 1284 1284 1283 1280 1280 1280 1279 1277 1277 1276 1274 1274 1272 1272 1270 1270 1269 1267 1267 1265 1265 1263 1263 1261 1261 1260 1259 1257 1257 1256 1254 1254 1252 1252 1249 1249 1249 1248 1247 1246 1245 1243 1243 1242 1241 1239 1239 1236 1236 1236 1234 1234 1232 1232 1231 1229 1229 1227 1227 1226 1224 1224 1222 1222 1220 1220 1218 1218 1216 1216 1215 1214 1212 1212 1210 1437 1436 1435 1432 1432 1432 1430 1430 1429 1427 1427 1425 1425 1423 1423 1421 1421 1421 1420 1418 1418 1417 1415 1415 1413 1413 1411 1411 1410 1408 1408 1406 1406 1404 1404 1403 1401 1401 1400 1398 1398 1396 1396 1393 1393 1393 1392 1391 1389 1389 1388 1386 1386 1385 1383 1383 1381 1381 1378 1378 1378 1377 1376 1374 1374 1373 1371 1371 1370 1368 1368 1366 1366 1363 1363 1363 1362 1361 1359 1359 1358 1356 1356 1355 1352 1352 1352 1351 1350 1349 1347 1347 1345 1345 1343 1343 1341 1341 1340 1338 1338 1337 1335 1335 1333 1333 1330 1330 1330 1329 1328 1327 1326 1324 1324 1322 1548 1546 1546 1545 1544 1543 1541 1541 1540 1538 1538 1536 1536 1535 1534 1532 1532 1530 1530 1528 1528 1527 1525 1525 1523 1523 1521 1521 1519 1519 1518 1516 1516 1514 1514 1513 1511 1511 1509 1509 1507 1507 1505 1505 1504 1502 1502 1500 1500 1499 1497 1497 1495 1495 1493 1493 1491 1491 1490 1489 1487 1487 1486 1484 1484 1482 1482 1480 1480 1479 1478 1476 1476 1474 1474 1472 1472 1470 1470 1468 1468 1467 1466 1464 1464 1463 1461 1461 1459 1459 1456 1456 1456 1455 1454 1452 1452 1451 1450 1448 1448 1447 1445 1445 1443 1443 1440 1440 1440 1439 1438 1671 1670 1668 1668 1666 1666 1664 1664 1662 1662 1661 1659 1659 1657 1657 1655 1655 1654 1652 1652 1651 1649 1649 1647 1647 1645 1645 1644 1643 1641 1641 1639 1639 1637 1637 1636 1634 1634 1633 1632 1630 1630 1628 1628 1627 1625 1625 1623 1623 1621 1621 1619 1619 1618 1617 1616 1615 1613 1613 1611 1611 1610 1608 1608 1606 1606 1605 1603 1603 1601 1601 1599 1599 1597 1597 1596 1595 1594 1592 1592 1590 1590 1589 1587 1587 1585 1585 1584 1583 1581 1581 1580 1578 1578 1576 1576 1574 1574 1573 1571 1571 1569 1569 1567 1567 1566 1565 1564 1562 1562 1560 1560 1558 1558 1557 1555 1555 1553 1553 1551 1551 1550 1549 1781 1780 1778 1778 1777 1775 1775 1773 1773 1771 1771 1769 1769 1768 1767 1765 1765 1763 1763 1761 1761 1759 1759 1757 1757 1756 1755 1753 1753 1751 1751 1750 1749 1747 1747 1745 1745 1743 1743 1741 1741 1740 1739 1738 1736 1736 1734 1734 1733 1731 1731 1730 1728 1728 1726 1726 1725 1724 1722 1722 1720 1720 1718 1718 1716 1716 1714 1714 1713 1712 1710 1710 1708 1708 1707 1706 1704 1704 1702 1702 1700 1700 1698 1698 1697 1696 1695 1693 1693 1692 1690 1690 1688 1688 1686 1686 1685 1684 1682 1682 1680 1680 1678 1678 1676 1676 1674 1674 1672 1672 1899 1898 1896 1896 1894 1894 1892 1892 1891 1890 1888 1888 1886 1886 1884 1884 1882 1882 1881 1880 1878 1878 1876 1876 1874 1874 1873 1872 1870 1870 1869 1868 1866 1866 1865 1863 1863 1861 1861 1859 1859 1858 1856 1856 1855 1853 1853 1851 1851 1849 1849 1847 1847 1846 1844 1844 1841 1841 1841 1839 1839 1837 1837 1836 1834 1834 1832 1832 1831 1829 1829 1827 1827 1826 1825 1823 1823 1821 1821 1819 1819 1818 1816 1816 1814 1814 1812 1812 1810 1810 1808 1808 1807 1806 1805 1802 1802 1802 1800 1800 1798 1798 1797 1796 1794 1794 1792 1792 1790 1790 1788 1788 1785 1785 1785 1784 1783 1781 1999 1998 1996 1996 1994 1994 1992 1992 1991 1989 1989 1987 1987 1985 1985 1984 1983 1981 1981 1980 1978 1978 1976 1976 1973 1973 1973 1972 1971 1969 1969 1968 1966 1966 1964 1964 1962 1962 1960 1960 1959 1958 1956 1956 1954 1954 1952 1952 1951 1949 1949 1947 1947 1945 1945 1944 1942 1942 1941 1939 1939 1937 1937 1936 1935 1933 1933 1931 1931 1930 1928 1928 1926 1926 1924 1924 1922 1922 1921 1920 1918 1918 1916 1916 1914 1914 1913 1911 1911 1909 1909 1907 1907 1906 1904 1904 1903 1901 1901 1899 2120 2119 2117 2117 2115 2115 2113 2113 2112 2111 2109 2109 2107 2107 2104 2104 2104 2103 2102 2101 2100 2098 2098 2096 2096 2094 2094 2093 2092 2090 2090 2089 2086 2086 2086 2085 2084 2083 2081 2081 2079 2079 2077 2077 2075 2075 2074 2073 2071 2071 2069 2069 2067 2067 2065 2065 2063 2063 2062 2060 2060 2057 2057 2057 2055 2055 2053 2053 2052 2050 2050 2048 2048 2046 2046 2045 2044 2042 2042 2041 2039 2039 2037 2037 2036 2034 2034 2032 2032 2030 2030 2028 2028 2026 2026 2024 2024 2023 2022 2020 2020 2018 2018 2017 2016 2014 2014 2012 2012 2010 2010 2008 2008 2006 2006 2005 2003 2003 2001 2001 1999 2163 2161 2161 2160 2158 2158 2155 2155 2155 2154 2153 2151 2151 2150 2148 2148 2145 2145 2145 2143 2143 2141 2141 2140 2139 2137 2137 2135 2135 2133 2133 2132 2130 2130 2128 2128 2127 2126 2124 2124 2122 2122 2120 -UTF-8 clusters: 208 207 206 202 202 200 196 196 192 192 188 188 184 184 182 181 177 177 173 173 172 168 168 164 164 160 160 159 155 155 151 151 147 147 143 143 141 140 136 136 132 132 128 128 124 124 122 118 118 117 116 114 110 110 106 106 102 102 101 100 96 96 92 92 90 86 86 82 82 78 78 77 76 72 72 71 67 67 65 61 61 60 56 56 52 52 50 46 46 42 42 41 37 37 35 31 31 27 27 23 23 21 20 19 15 15 11 11 07 07 03 03 01 00 404 403 399 399 395 395 391 391 387 387 385 384 382 378 378 374 374 373 369 369 365 365 359 359 359 357 355 351 351 350 346 346 342 342 336 336 336 334 332 328 328 327 323 323 319 319 313 313 313 311 309 305 305 304 302 301 299 300 298 297 295 293 291 289 287 285 283 282 281 280 276 276 272 272 268 268 264 264 260 260 259 255 255 249 249 249 245 245 241 241 240 236 236 232 232 228 228 227 225 224 220 220 216 216 212 212 208 595 594 590 590 586 586 582 582 578 578 576 575 574 570 570 566 566 562 562 558 558 556 555 554 550 550 549 548 544 544 540 540 536 536 532 532 528 528 527 525 521 521 520 516 516 514 510 510 506 506 505 501 501 497 497 493 493 489 489 487 486 484 480 480 476 476 475 471 471 467 467 461 461 461 459 457 453 453 452 448 448 444 444 440 440 440 436 436 432 432 431 427 427 421 421 421 417 417 413 413 412 408 408 404 796 795 793 789 789 787 783 783 779 779 778 777 773 773 769 769 765 765 764 763 759 759 758 754 754 752 748 748 744 744 743 742 738 738 734 734 730 730 729 728 726 722 722 718 718 714 714 710 710 706 706 702 702 701 699 695 695 693 689 689 685 685 684 680 680 678 674 674 673 669 669 667 663 663 662 658 658 654 654 653 652 648 648 644 644 642 638 638 637 636 632 632 628 628 624 624 623 619 619 613 613 613 609 609 605 605 601 601 599 595 1011 1010 1009 1005 1005 1003 999 999 995 995 991 991 989 988 987 983 983 982 981 977 977 973 973 969 969 968 966 962 962 961 960 958 954 954 950 950 946 946 945 944 942 938 938 934 934 930 930 926 926 922 922 921 915 915 915 911 911 910 909 905 905 903 899 899 895 895 891 891 890 886 886 882 882 878 878 874 874 872 871 869 865 865 861 861 857 857 853 853 852 850 844 844 844 840 840 836 836 835 833 829 829 825 825 821 821 817 817 816 812 812 810 806 806 802 802 800 796 1204 1203 1199 1199 1195 1195 1194 1193 1189 1189 1185 1185 1181 1181 1177 1177 1176 1175 1171 1171 1169 1165 1165 1161 1161 1157 1157 1156 1154 1152 1148 1148 1144 1144 1140 1140 1136 1136 1135 1131 1131 1129 1125 1125 1121 1121 1117 1117 1115 1114 1110 1110 1106 1106 1105 1099 1099 1099 1095 1095 1093 1092 1091 1087 1087 1085 1081 1081 1077 1077 1073 1073 1071 1070 1068 1064 1064 1060 1060 1059 1058 1054 1054 1050 1050 1044 1044 1044 1042 1040 1036 1036 1035 1031 1031 1027 1027 1025 1021 1021 1017 1017 1013 1013 1408 1404 1404 1400 1400 1399 1395 1395 1391 1391 1385 1385 1385 1383 1381 1380 1376 1376 1372 1372 1371 1370 1366 1366 1360 1360 1360 1356 1356 1352 1352 1348 1348 1347 1346 1344 1340 1340 1339 1337 1333 1333 1329 1329 1325 1325 1324 1323 1319 1319 1317 1313 1313 1309 1309 1305 1305 1303 1302 1301 1297 1297 1296 1295 1293 1289 1289 1287 1283 1283 1279 1279 1278 1274 1274 1270 1270 1266 1266 1262 1262 1258 1258 1257 1253 1253 1249 1249 1245 1245 1244 1240 1240 1236 1236 1232 1232 1228 1228 1227 1223 1223 1219 1219 1218 1214 1214 1212 1208 1208 1204 1608 1607 1606 1602 1602 1600 1596 1596 1592 1592 1591 1590 1588 1584 1584 1580 1580 1576 1576 1575 1574 1570 1570 1564 1564 1564 1560 1560 1559 1558 1554 1554 1550 1550 1546 1546 1545 1541 1541 1537 1537 1531 1531 1531 1529 1528 1527 1525 1521 1521 1519 1515 1515 1511 1511 1510 1509 1505 1505 1503 1499 1499 1495 1495 1494 1490 1490 1486 1486 1480 1480 1480 1478 1476 1475 1474 1470 1470 1468 1464 1464 1463 1462 1458 1458 1457 1456 1454 1450 1450 1446 1446 1442 1442 1438 1438 1434 1434 1433 1429 1429 1425 1425 1423 1419 1419 1413 1413 1413 1411 1409 1795 1794 1790 1790 1789 1785 1785 1781 1781 1777 1777 1776 1772 1772 1768 1768 1762 1762 1762 1760 1758 1757 1756 1752 1752 1750 1746 1746 1742 1742 1738 1738 1736 1735 1734 1730 1730 1729 1725 1725 1721 1721 1717 1717 1713 1713 1709 1709 1705 1705 1704 1700 1700 1696 1696 1695 1693 1689 1689 1685 1685 1684 1683 1679 1679 1675 1675 1671 1671 1667 1667 1663 1663 1662 1661 1657 1657 1656 1655 1651 1651 1649 1645 1645 1641 1641 1640 1639 1635 1635 1631 1631 1627 1627 1626 1622 1622 1618 1618 1612 1612 1612 1610 2016 2015 2011 2011 2007 2007 2005 2001 2001 1995 1995 1995 1993 1991 1990 1986 1986 1982 1982 1978 1978 1977 1975 1969 1969 1969 1965 1965 1961 1961 1957 1957 1956 1954 1952 1948 1948 1944 1944 1943 1942 1938 1938 1934 1934 1928 1928 1928 1924 1924 1920 1920 1919 1918 1914 1914 1913 1909 1909 1905 1905 1901 1901 1900 1896 1896 1892 1892 1886 1886 1886 1884 1882 1881 1880 1876 1876 1870 1870 1870 1866 1866 1862 1862 1861 1860 1856 1856 1855 1851 1851 1847 1847 1843 1843 1839 1839 1835 1835 1834 1832 1828 1828 1824 1824 1823 1822 1818 1818 1814 1814 1810 1810 1806 1806 1802 1802 1798 1798 1796 2220 2219 2215 2215 2211 2211 2205 2205 2205 2203 2201 2200 2199 2195 2195 2189 2189 2189 2185 2185 2184 2183 2179 2179 2175 2175 2174 2173 2169 2169 2165 2165 2161 2161 2157 2157 2155 2154 2152 2148 2148 2144 2144 2143 2141 2137 2137 2135 2131 2131 2127 2127 2123 2123 2121 2120 2118 2114 2114 2110 2110 2106 2106 2105 2101 2101 2097 2097 2093 2093 2092 2088 2088 2086 2082 2082 2080 2076 2076 2072 2072 2070 2069 2068 2064 2064 2062 2058 2058 2054 2054 2048 2048 2048 2046 2044 2043 2042 2038 2038 2037 2036 2032 2032 2028 2028 2024 2024 2020 2020 2016 2428 2427 2423 2423 2421 2417 2417 2413 2413 2412 2410 2406 2406 2400 2400 2400 2396 2396 2395 2391 2391 2387 2387 2385 2381 2381 2377 2377 2373 2373 2371 2370 2364 2364 2364 2360 2360 2356 2356 2355 2349 2349 2349 2347 2343 2343 2342 2338 2338 2334 2334 2330 2330 2329 2325 2325 2321 2321 2317 2317 2313 2313 2312 2311 2307 2307 2305 2301 2301 2297 2297 2291 2291 2291 2289 2287 2286 2285 2281 2281 2280 2279 2275 2275 2269 2269 2269 2265 2265 2261 2261 2260 2256 2256 2252 2252 2251 2247 2247 2243 2243 2239 2239 2235 2235 2231 2231 2230 2228 2224 2224 2220 2647 2646 2644 2638 2638 2638 2634 2634 2633 2629 2629 2625 2625 2621 2621 2617 2617 2617 2615 2611 2611 2610 2606 2606 2602 2602 2598 2598 2597 2593 2593 2589 2589 2585 2585 2584 2580 2580 2578 2574 2574 2570 2570 2564 2564 2564 2562 2560 2556 2556 2555 2551 2551 2549 2545 2545 2541 2541 2535 2535 2535 2533 2531 2527 2527 2526 2522 2522 2520 2516 2516 2512 2512 2506 2506 2506 2504 2502 2498 2498 2497 2493 2493 2491 2485 2485 2485 2483 2481 2480 2476 2476 2472 2472 2468 2468 2464 2464 2463 2459 2459 2457 2453 2453 2449 2449 2443 2443 2443 2441 2439 2438 2436 2432 2432 2428 2850 2846 2846 2845 2844 2843 2839 2839 2837 2833 2833 2829 2829 2828 2827 2823 2823 2819 2819 2815 2815 2814 2810 2810 2806 2806 2802 2802 2798 2798 2797 2793 2793 2789 2789 2788 2784 2784 2780 2780 2776 2776 2772 2772 2771 2767 2767 2763 2763 2762 2758 2758 2754 2754 2750 2750 2746 2746 2745 2744 2740 2740 2738 2734 2734 2730 2730 2726 2726 2725 2724 2720 2720 2716 2716 2712 2712 2708 2708 2704 2704 2703 2702 2698 2698 2696 2692 2692 2688 2688 2682 2682 2682 2680 2678 2674 2674 2673 2672 2668 2668 2666 2662 2662 2658 2658 2652 2652 2652 2650 2648 3078 3076 3072 3072 3068 3068 3064 3064 3060 3060 3059 3055 3055 3051 3051 3047 3047 3045 3041 3041 3040 3036 3036 3032 3032 3028 3028 3027 3026 3022 3022 3018 3018 3014 3014 3012 3008 3008 3007 3006 3002 3002 2998 2998 2996 2992 2992 2988 2988 2984 2984 2980 2980 2979 2978 2976 2974 2970 2970 2966 2966 2964 2960 2960 2956 2956 2955 2951 2951 2947 2947 2943 2943 2939 2939 2937 2936 2935 2931 2931 2927 2927 2925 2921 2921 2917 2917 2916 2915 2911 2911 2910 2906 2906 2902 2902 2898 2898 2896 2892 2892 2888 2888 2884 2884 2882 2881 2880 2876 2876 2872 2872 2868 2868 2866 2862 2862 2858 2858 2854 2854 2852 2851 3282 3281 3277 3277 3275 3271 3271 3267 3267 3263 3263 3259 3259 3257 3256 3252 3252 3248 3248 3244 3244 3240 3240 3236 3236 3234 3233 3229 3229 3225 3225 3224 3223 3219 3219 3215 3215 3211 3211 3207 3207 3205 3204 3202 3198 3198 3194 3194 3193 3189 3189 3187 3183 3183 3179 3179 3178 3176 3172 3172 3168 3168 3164 3164 3160 3160 3156 3156 3154 3153 3149 3149 3145 3145 3144 3143 3139 3139 3135 3135 3131 3131 3127 3127 3125 3124 3123 3119 3119 3117 3113 3113 3109 3109 3105 3105 3104 3103 3099 3099 3095 3095 3091 3091 3087 3087 3083 3083 3079 3079 3503 3502 3498 3498 3494 3494 3490 3490 3489 3487 3483 3483 3479 3479 3475 3475 3471 3471 3470 3469 3465 3465 3461 3461 3457 3457 3456 3455 3451 3451 3450 3449 3445 3445 3443 3439 3439 3435 3435 3431 3431 3429 3425 3425 3424 3420 3420 3416 3416 3412 3412 3408 3408 3407 3403 3403 3397 3397 3397 3393 3393 3389 3389 3388 3384 3384 3380 3380 3378 3374 3374 3370 3370 3368 3367 3363 3363 3359 3359 3355 3355 3354 3350 3350 3346 3346 3342 3342 3338 3338 3334 3334 3332 3331 3329 3323 3323 3323 3319 3319 3315 3315 3314 3312 3308 3308 3304 3304 3300 3300 3296 3296 3290 3290 3290 3288 3286 3282 3691 3690 3686 3686 3682 3682 3678 3678 3677 3673 3673 3669 3669 3665 3665 3664 3662 3658 3658 3656 3652 3652 3648 3648 3642 3642 3642 3640 3638 3634 3634 3633 3629 3629 3625 3625 3621 3621 3617 3617 3615 3614 3610 3610 3606 3606 3602 3602 3601 3597 3597 3593 3593 3589 3589 3588 3584 3584 3582 3578 3578 3574 3574 3573 3571 3567 3567 3563 3563 3562 3558 3558 3554 3554 3550 3550 3546 3546 3544 3543 3539 3539 3535 3535 3531 3531 3530 3526 3526 3522 3522 3518 3518 3517 3513 3513 3511 3507 3507 3503 3917 3916 3912 3912 3908 3908 3904 3904 3903 3902 3898 3898 3894 3894 3888 3888 3888 3886 3884 3883 3881 3877 3877 3873 3873 3869 3869 3868 3867 3863 3863 3861 3855 3855 3855 3853 3851 3850 3846 3846 3842 3842 3838 3838 3834 3834 3833 3831 3827 3827 3823 3823 3819 3819 3815 3815 3811 3811 3810 3806 3806 3800 3800 3800 3796 3796 3792 3792 3791 3787 3787 3783 3783 3779 3779 3778 3777 3773 3773 3771 3767 3767 3763 3763 3762 3758 3758 3754 3754 3750 3750 3746 3746 3742 3742 3738 3738 3737 3735 3731 3731 3727 3727 3725 3724 3720 3720 3716 3716 3712 3712 3708 3708 3704 3704 3703 3699 3699 3695 3695 3691 3998 3994 3994 3992 3988 3988 3982 3982 3982 3980 3978 3974 3974 3973 3969 3969 3963 3963 3963 3959 3959 3955 3955 3953 3952 3948 3948 3944 3944 3940 3940 3939 3935 3935 3931 3931 3930 3929 3925 3925 3921 3921 3917 +UTF-32 clusters: 112 111 109 109 108 106 106 104 104 102 102 100 100 99 98 96 96 94 94 93 91 91 89 89 87 87 86 84 84 82 82 80 80 78 78 77 76 74 74 72 72 70 70 68 68 67 65 65 64 63 62 60 60 58 58 56 56 55 54 52 52 50 50 49 47 47 45 45 43 43 42 41 39 39 38 36 36 35 33 33 32 30 30 28 28 27 25 25 23 23 22 20 20 19 17 17 15 15 13 13 12 11 10 08 08 06 06 04 04 02 02 01 00 219 217 217 215 215 213 213 211 211 210 209 208 206 206 204 204 203 201 201 199 199 196 196 196 195 194 192 192 191 189 189 187 187 184 184 184 183 182 180 180 179 177 177 175 175 172 172 172 171 170 168 168 167 166 165 163 164 162 161 160 159 158 157 156 155 154 153 152 151 149 149 147 147 145 145 143 143 141 141 140 138 138 135 135 135 133 133 131 131 130 128 128 126 126 124 124 123 122 121 119 119 117 117 115 115 113 113 322 320 320 318 318 316 316 314 314 313 312 311 309 309 307 307 305 305 303 303 302 301 300 298 298 297 296 294 294 292 292 290 290 288 288 286 286 285 284 282 282 281 279 279 278 276 276 274 274 273 271 271 269 269 267 267 265 265 264 263 262 260 260 258 258 257 255 255 253 253 250 250 250 249 248 246 246 245 243 243 241 241 239 239 239 237 237 235 235 234 232 232 229 229 229 227 227 225 225 224 222 222 220 220 432 431 429 429 428 426 426 424 424 423 422 420 420 418 418 416 416 415 414 412 412 411 409 409 408 406 406 404 404 403 402 400 400 398 398 396 396 395 394 393 391 391 389 389 387 387 385 385 383 383 381 381 380 379 377 377 376 374 374 372 372 371 369 369 368 366 366 365 363 363 362 360 360 359 357 357 355 355 354 353 351 351 349 349 348 346 346 345 344 342 342 340 340 338 338 337 335 335 332 332 332 330 330 328 328 326 326 325 323 323 549 548 546 546 545 543 543 541 541 539 539 538 537 536 534 534 533 532 530 530 528 528 526 526 525 524 522 522 521 520 519 517 517 515 515 513 513 512 511 510 508 508 506 506 504 504 502 502 500 500 499 496 496 496 494 494 493 492 490 490 489 487 487 485 485 483 483 482 480 480 478 478 476 476 474 474 473 472 471 469 469 467 467 465 465 463 463 462 461 458 458 458 456 456 454 454 453 452 450 450 448 448 446 446 444 444 443 441 441 440 438 438 436 436 435 433 433 653 651 651 649 649 648 647 645 645 643 643 641 641 639 639 638 637 635 635 634 632 632 630 630 628 628 627 626 625 623 623 621 621 619 619 617 617 616 614 614 613 611 611 609 609 607 607 606 605 603 603 601 601 600 597 597 597 595 595 594 593 592 590 590 589 587 587 585 585 583 583 582 581 580 578 578 576 576 575 574 572 572 570 570 567 567 567 566 565 563 563 562 560 560 558 558 557 555 555 553 553 551 551 550 765 763 763 761 761 760 758 758 756 756 753 753 753 752 751 750 748 748 746 746 745 744 742 742 739 739 739 737 737 735 735 733 733 732 731 730 728 728 727 726 724 724 722 722 720 720 719 718 716 716 715 713 713 711 711 709 709 708 707 706 704 704 703 702 701 699 699 698 696 696 694 694 693 691 691 689 689 687 687 685 685 683 683 682 680 680 678 678 676 676 675 673 673 671 671 669 669 667 667 666 664 664 662 662 661 659 659 658 656 656 654 654 875 874 872 872 871 869 869 867 867 866 865 864 862 862 860 860 858 858 857 856 854 854 851 851 851 849 849 848 847 845 845 843 843 841 841 840 838 838 836 836 833 833 833 832 831 830 829 827 827 826 824 824 822 822 821 820 818 818 817 815 815 813 813 812 810 810 808 808 805 805 805 804 803 802 801 799 799 798 796 796 795 794 792 792 791 790 789 787 787 785 785 783 783 781 781 779 779 778 776 776 774 774 773 771 771 768 768 768 767 766 978 976 976 975 973 973 971 971 969 969 968 966 966 964 964 961 961 961 960 959 958 957 955 955 954 952 952 950 950 948 948 947 946 945 943 943 942 940 940 938 938 936 936 934 934 932 932 930 930 929 927 927 925 925 924 923 921 921 919 919 918 917 915 915 913 913 911 911 909 909 907 907 906 905 903 903 902 901 899 899 898 896 896 894 894 893 892 890 890 888 888 886 886 885 883 883 881 881 878 878 878 877 876 1085 1083 1083 1081 1081 1079 1079 1078 1077 1074 1074 1074 1072 1072 1070 1070 1068 1068 1067 1066 1065 1063 1063 1061 1061 1060 1059 1057 1057 1055 1055 1052 1052 1052 1050 1050 1048 1048 1047 1046 1044 1044 1043 1041 1041 1039 1039 1037 1037 1036 1034 1034 1032 1032 1029 1029 1029 1028 1027 1026 1025 1023 1023 1020 1020 1020 1018 1018 1016 1016 1015 1014 1012 1012 1011 1009 1009 1007 1007 1005 1005 1003 1003 1001 1001 1000 999 997 997 995 995 994 993 991 991 989 989 987 987 985 985 983 983 981 981 980 979 1199 1198 1196 1196 1193 1193 1193 1191 1191 1190 1189 1187 1187 1185 1185 1184 1183 1181 1181 1179 1179 1177 1177 1175 1175 1174 1173 1172 1170 1170 1168 1168 1167 1166 1164 1164 1163 1161 1161 1159 1159 1157 1157 1156 1155 1154 1152 1152 1150 1150 1148 1148 1147 1145 1145 1143 1143 1141 1141 1140 1138 1138 1137 1135 1135 1134 1132 1132 1130 1130 1129 1128 1127 1125 1125 1124 1122 1122 1120 1120 1117 1117 1117 1116 1115 1114 1113 1111 1111 1110 1109 1107 1107 1105 1105 1103 1103 1101 1101 1099 1099 1098 1096 1096 1094 1094 1093 1091 1091 1088 1088 1088 1087 1086 1313 1312 1310 1310 1307 1307 1307 1305 1305 1304 1302 1302 1300 1300 1299 1297 1297 1295 1295 1293 1293 1292 1291 1288 1288 1288 1286 1286 1284 1284 1283 1280 1280 1280 1279 1277 1277 1276 1274 1274 1272 1272 1270 1270 1269 1267 1267 1265 1265 1263 1263 1261 1261 1260 1259 1257 1257 1256 1254 1254 1252 1252 1249 1249 1249 1248 1247 1246 1245 1243 1243 1242 1241 1239 1239 1236 1236 1236 1234 1234 1232 1232 1231 1229 1229 1227 1227 1226 1224 1224 1222 1222 1220 1220 1218 1218 1216 1216 1215 1214 1212 1212 1210 1210 1209 1207 1207 1205 1205 1202 1202 1202 1201 1200 1436 1435 1432 1432 1432 1430 1430 1429 1427 1427 1425 1425 1423 1423 1421 1421 1421 1420 1418 1418 1417 1415 1415 1413 1413 1411 1411 1410 1408 1408 1406 1406 1404 1404 1403 1401 1401 1400 1398 1398 1396 1396 1393 1393 1393 1392 1391 1389 1389 1388 1386 1386 1385 1383 1383 1381 1381 1378 1378 1378 1377 1376 1374 1374 1373 1371 1371 1370 1368 1368 1366 1366 1363 1363 1363 1362 1361 1359 1359 1358 1356 1356 1355 1352 1352 1352 1351 1350 1349 1347 1347 1345 1345 1343 1343 1341 1341 1340 1338 1338 1337 1335 1335 1333 1333 1330 1330 1330 1329 1328 1327 1326 1324 1324 1322 1322 1321 1319 1319 1318 1316 1316 1314 1314 1545 1544 1543 1541 1541 1540 1538 1538 1536 1536 1535 1534 1532 1532 1530 1530 1528 1528 1527 1525 1525 1523 1523 1521 1521 1519 1519 1518 1516 1516 1514 1514 1513 1511 1511 1509 1509 1507 1507 1505 1505 1504 1502 1502 1500 1500 1499 1497 1497 1495 1495 1493 1493 1491 1491 1490 1489 1487 1487 1486 1484 1484 1482 1482 1480 1480 1479 1478 1476 1476 1474 1474 1472 1472 1470 1470 1468 1468 1467 1466 1464 1464 1463 1461 1461 1459 1459 1456 1456 1456 1455 1454 1452 1452 1451 1450 1448 1448 1447 1445 1445 1443 1443 1440 1440 1440 1439 1438 1437 1661 1659 1659 1657 1657 1655 1655 1654 1652 1652 1651 1649 1649 1647 1647 1645 1645 1644 1643 1641 1641 1639 1639 1637 1637 1636 1634 1634 1633 1632 1630 1630 1628 1628 1627 1625 1625 1623 1623 1621 1621 1619 1619 1618 1617 1616 1615 1613 1613 1611 1611 1610 1608 1608 1606 1606 1605 1603 1603 1601 1601 1599 1599 1597 1597 1596 1595 1594 1592 1592 1590 1590 1589 1587 1587 1585 1585 1584 1583 1581 1581 1580 1578 1578 1576 1576 1574 1574 1573 1571 1571 1569 1569 1567 1567 1566 1565 1564 1562 1562 1560 1560 1558 1558 1557 1555 1555 1553 1553 1551 1551 1550 1549 1548 1546 1546 1780 1778 1778 1777 1775 1775 1773 1773 1771 1771 1769 1769 1768 1767 1765 1765 1763 1763 1761 1761 1759 1759 1757 1757 1756 1755 1753 1753 1751 1751 1750 1749 1747 1747 1745 1745 1743 1743 1741 1741 1740 1739 1738 1736 1736 1734 1734 1733 1731 1731 1730 1728 1728 1726 1726 1725 1724 1722 1722 1720 1720 1718 1718 1716 1716 1714 1714 1713 1712 1710 1710 1708 1708 1707 1706 1704 1704 1702 1702 1700 1700 1698 1698 1697 1696 1695 1693 1693 1692 1690 1690 1688 1688 1686 1686 1685 1684 1682 1682 1680 1680 1678 1678 1676 1676 1674 1674 1672 1672 1671 1670 1668 1668 1666 1666 1664 1664 1662 1662 1898 1896 1896 1894 1894 1892 1892 1891 1890 1888 1888 1886 1886 1884 1884 1882 1882 1881 1880 1878 1878 1876 1876 1874 1874 1873 1872 1870 1870 1869 1868 1866 1866 1865 1863 1863 1861 1861 1859 1859 1858 1856 1856 1855 1853 1853 1851 1851 1849 1849 1847 1847 1846 1844 1844 1841 1841 1841 1839 1839 1837 1837 1836 1834 1834 1832 1832 1831 1829 1829 1827 1827 1826 1825 1823 1823 1821 1821 1819 1819 1818 1816 1816 1814 1814 1812 1812 1810 1810 1808 1808 1807 1806 1805 1802 1802 1802 1800 1800 1798 1798 1797 1796 1794 1794 1792 1792 1790 1790 1788 1788 1785 1785 1785 1784 1783 1781 1781 1998 1996 1996 1994 1994 1992 1992 1991 1989 1989 1987 1987 1985 1985 1984 1983 1981 1981 1980 1978 1978 1976 1976 1973 1973 1973 1972 1971 1969 1969 1968 1966 1966 1964 1964 1962 1962 1960 1960 1959 1958 1956 1956 1954 1954 1952 1952 1951 1949 1949 1947 1947 1945 1945 1944 1942 1942 1941 1939 1939 1937 1937 1936 1935 1933 1933 1931 1931 1930 1928 1928 1926 1926 1924 1924 1922 1922 1921 1920 1918 1918 1916 1916 1914 1914 1913 1911 1911 1909 1909 1907 1907 1906 1904 1904 1903 1901 1901 1899 1899 2119 2117 2117 2115 2115 2113 2113 2112 2111 2109 2109 2107 2107 2104 2104 2104 2103 2102 2101 2100 2098 2098 2096 2096 2094 2094 2093 2092 2090 2090 2089 2086 2086 2086 2085 2084 2083 2081 2081 2079 2079 2077 2077 2075 2075 2074 2073 2071 2071 2069 2069 2067 2067 2065 2065 2063 2063 2062 2060 2060 2057 2057 2057 2055 2055 2053 2053 2052 2050 2050 2048 2048 2046 2046 2045 2044 2042 2042 2041 2039 2039 2037 2037 2036 2034 2034 2032 2032 2030 2030 2028 2028 2026 2026 2024 2024 2023 2022 2020 2020 2018 2018 2017 2016 2014 2014 2012 2012 2010 2010 2008 2008 2006 2006 2005 2003 2003 2001 2001 1999 1999 2163 2161 2161 2160 2158 2158 2155 2155 2155 2154 2153 2151 2151 2150 2148 2148 2145 2145 2145 2143 2143 2141 2141 2140 2139 2137 2137 2135 2135 2133 2133 2132 2130 2130 2128 2128 2127 2126 2124 2124 2122 2122 2120 2120 +UTF-8 clusters: 207 206 202 202 200 196 196 192 192 188 188 184 184 182 181 177 177 173 173 172 168 168 164 164 160 160 159 155 155 151 151 147 147 143 143 141 140 136 136 132 132 128 128 124 124 122 118 118 117 116 114 110 110 106 106 102 102 101 100 96 96 92 92 90 86 86 82 82 78 78 77 76 72 72 71 67 67 65 61 61 60 56 56 52 52 50 46 46 42 42 41 37 37 35 31 31 27 27 23 23 21 20 19 15 15 11 11 07 07 03 03 01 00 403 399 399 395 395 391 391 387 387 385 384 382 378 378 374 374 373 369 369 365 365 359 359 359 357 355 351 351 350 346 346 342 342 336 336 336 334 332 328 328 327 323 323 319 319 313 313 313 311 309 305 305 304 302 301 299 300 298 297 295 293 291 289 287 285 283 282 281 280 276 276 272 272 268 268 264 264 260 260 259 255 255 249 249 249 245 245 241 241 240 236 236 232 232 228 228 227 225 224 220 220 216 216 212 212 208 208 594 590 590 586 586 582 582 578 578 576 575 574 570 570 566 566 562 562 558 558 556 555 554 550 550 549 548 544 544 540 540 536 536 532 532 528 528 527 525 521 521 520 516 516 514 510 510 506 506 505 501 501 497 497 493 493 489 489 487 486 484 480 480 476 476 475 471 471 467 467 461 461 461 459 457 453 453 452 448 448 444 444 440 440 440 436 436 432 432 431 427 427 421 421 421 417 417 413 413 412 408 408 404 404 795 793 789 789 787 783 783 779 779 778 777 773 773 769 769 765 765 764 763 759 759 758 754 754 752 748 748 744 744 743 742 738 738 734 734 730 730 729 728 726 722 722 718 718 714 714 710 710 706 706 702 702 701 699 695 695 693 689 689 685 685 684 680 680 678 674 674 673 669 669 667 663 663 662 658 658 654 654 653 652 648 648 644 644 642 638 638 637 636 632 632 628 628 624 624 623 619 619 613 613 613 609 609 605 605 601 601 599 595 595 1010 1009 1005 1005 1003 999 999 995 995 991 991 989 988 987 983 983 982 981 977 977 973 973 969 969 968 966 962 962 961 960 958 954 954 950 950 946 946 945 944 942 938 938 934 934 930 930 926 926 922 922 921 915 915 915 911 911 910 909 905 905 903 899 899 895 895 891 891 890 886 886 882 882 878 878 874 874 872 871 869 865 865 861 861 857 857 853 853 852 850 844 844 844 840 840 836 836 835 833 829 829 825 825 821 821 817 817 816 812 812 810 806 806 802 802 800 796 796 1203 1199 1199 1195 1195 1194 1193 1189 1189 1185 1185 1181 1181 1177 1177 1176 1175 1171 1171 1169 1165 1165 1161 1161 1157 1157 1156 1154 1152 1148 1148 1144 1144 1140 1140 1136 1136 1135 1131 1131 1129 1125 1125 1121 1121 1117 1117 1115 1114 1110 1110 1106 1106 1105 1099 1099 1099 1095 1095 1093 1092 1091 1087 1087 1085 1081 1081 1077 1077 1073 1073 1071 1070 1068 1064 1064 1060 1060 1059 1058 1054 1054 1050 1050 1044 1044 1044 1042 1040 1036 1036 1035 1031 1031 1027 1027 1025 1021 1021 1017 1017 1013 1013 1011 1408 1404 1404 1400 1400 1399 1395 1395 1391 1391 1385 1385 1385 1383 1381 1380 1376 1376 1372 1372 1371 1370 1366 1366 1360 1360 1360 1356 1356 1352 1352 1348 1348 1347 1346 1344 1340 1340 1339 1337 1333 1333 1329 1329 1325 1325 1324 1323 1319 1319 1317 1313 1313 1309 1309 1305 1305 1303 1302 1301 1297 1297 1296 1295 1293 1289 1289 1287 1283 1283 1279 1279 1278 1274 1274 1270 1270 1266 1266 1262 1262 1258 1258 1257 1253 1253 1249 1249 1245 1245 1244 1240 1240 1236 1236 1232 1232 1228 1228 1227 1223 1223 1219 1219 1218 1214 1214 1212 1208 1208 1204 1204 1607 1606 1602 1602 1600 1596 1596 1592 1592 1591 1590 1588 1584 1584 1580 1580 1576 1576 1575 1574 1570 1570 1564 1564 1564 1560 1560 1559 1558 1554 1554 1550 1550 1546 1546 1545 1541 1541 1537 1537 1531 1531 1531 1529 1528 1527 1525 1521 1521 1519 1515 1515 1511 1511 1510 1509 1505 1505 1503 1499 1499 1495 1495 1494 1490 1490 1486 1486 1480 1480 1480 1478 1476 1475 1474 1470 1470 1468 1464 1464 1463 1462 1458 1458 1457 1456 1454 1450 1450 1446 1446 1442 1442 1438 1438 1434 1434 1433 1429 1429 1425 1425 1423 1419 1419 1413 1413 1413 1411 1409 1794 1790 1790 1789 1785 1785 1781 1781 1777 1777 1776 1772 1772 1768 1768 1762 1762 1762 1760 1758 1757 1756 1752 1752 1750 1746 1746 1742 1742 1738 1738 1736 1735 1734 1730 1730 1729 1725 1725 1721 1721 1717 1717 1713 1713 1709 1709 1705 1705 1704 1700 1700 1696 1696 1695 1693 1689 1689 1685 1685 1684 1683 1679 1679 1675 1675 1671 1671 1667 1667 1663 1663 1662 1661 1657 1657 1656 1655 1651 1651 1649 1645 1645 1641 1641 1640 1639 1635 1635 1631 1631 1627 1627 1626 1622 1622 1618 1618 1612 1612 1612 1610 1608 1990 1986 1986 1982 1982 1978 1978 1977 1975 1969 1969 1969 1965 1965 1961 1961 1957 1957 1956 1954 1952 1948 1948 1944 1944 1943 1942 1938 1938 1934 1934 1928 1928 1928 1924 1924 1920 1920 1919 1918 1914 1914 1913 1909 1909 1905 1905 1901 1901 1900 1896 1896 1892 1892 1886 1886 1886 1884 1882 1881 1880 1876 1876 1870 1870 1870 1866 1866 1862 1862 1861 1860 1856 1856 1855 1851 1851 1847 1847 1843 1843 1839 1839 1835 1835 1834 1832 1828 1828 1824 1824 1823 1822 1818 1818 1814 1814 1810 1810 1806 1806 1802 1802 1798 1798 1796 1795 2200 2199 2195 2195 2189 2189 2189 2185 2185 2184 2183 2179 2179 2175 2175 2174 2173 2169 2169 2165 2165 2161 2161 2157 2157 2155 2154 2152 2148 2148 2144 2144 2143 2141 2137 2137 2135 2131 2131 2127 2127 2123 2123 2121 2120 2118 2114 2114 2110 2110 2106 2106 2105 2101 2101 2097 2097 2093 2093 2092 2088 2088 2086 2082 2082 2080 2076 2076 2072 2072 2070 2069 2068 2064 2064 2062 2058 2058 2054 2054 2048 2048 2048 2046 2044 2043 2042 2038 2038 2037 2036 2032 2032 2028 2028 2024 2024 2020 2020 2016 2016 2015 2011 2011 2007 2007 2005 2001 2001 1995 1995 1995 1993 1991 2412 2410 2406 2406 2400 2400 2400 2396 2396 2395 2391 2391 2387 2387 2385 2381 2381 2377 2377 2373 2373 2371 2370 2364 2364 2364 2360 2360 2356 2356 2355 2349 2349 2349 2347 2343 2343 2342 2338 2338 2334 2334 2330 2330 2329 2325 2325 2321 2321 2317 2317 2313 2313 2312 2311 2307 2307 2305 2301 2301 2297 2297 2291 2291 2291 2289 2287 2286 2285 2281 2281 2280 2279 2275 2275 2269 2269 2269 2265 2265 2261 2261 2260 2256 2256 2252 2252 2251 2247 2247 2243 2243 2239 2239 2235 2235 2231 2231 2230 2228 2224 2224 2220 2220 2219 2215 2215 2211 2211 2205 2205 2205 2203 2201 2646 2644 2638 2638 2638 2634 2634 2633 2629 2629 2625 2625 2621 2621 2617 2617 2617 2615 2611 2611 2610 2606 2606 2602 2602 2598 2598 2597 2593 2593 2589 2589 2585 2585 2584 2580 2580 2578 2574 2574 2570 2570 2564 2564 2564 2562 2560 2556 2556 2555 2551 2551 2549 2545 2545 2541 2541 2535 2535 2535 2533 2531 2527 2527 2526 2522 2522 2520 2516 2516 2512 2512 2506 2506 2506 2504 2502 2498 2498 2497 2493 2493 2491 2485 2485 2485 2483 2481 2480 2476 2476 2472 2472 2468 2468 2464 2464 2463 2459 2459 2457 2453 2453 2449 2449 2443 2443 2443 2441 2439 2438 2436 2432 2432 2428 2428 2427 2423 2423 2421 2417 2417 2413 2413 2845 2844 2843 2839 2839 2837 2833 2833 2829 2829 2828 2827 2823 2823 2819 2819 2815 2815 2814 2810 2810 2806 2806 2802 2802 2798 2798 2797 2793 2793 2789 2789 2788 2784 2784 2780 2780 2776 2776 2772 2772 2771 2767 2767 2763 2763 2762 2758 2758 2754 2754 2750 2750 2746 2746 2745 2744 2740 2740 2738 2734 2734 2730 2730 2726 2726 2725 2724 2720 2720 2716 2716 2712 2712 2708 2708 2704 2704 2703 2702 2698 2698 2696 2692 2692 2688 2688 2682 2682 2682 2680 2678 2674 2674 2673 2672 2668 2668 2666 2662 2662 2658 2658 2652 2652 2652 2650 2648 2647 3059 3055 3055 3051 3051 3047 3047 3045 3041 3041 3040 3036 3036 3032 3032 3028 3028 3027 3026 3022 3022 3018 3018 3014 3014 3012 3008 3008 3007 3006 3002 3002 2998 2998 2996 2992 2992 2988 2988 2984 2984 2980 2980 2979 2978 2976 2974 2970 2970 2966 2966 2964 2960 2960 2956 2956 2955 2951 2951 2947 2947 2943 2943 2939 2939 2937 2936 2935 2931 2931 2927 2927 2925 2921 2921 2917 2917 2916 2915 2911 2911 2910 2906 2906 2902 2902 2898 2898 2896 2892 2892 2888 2888 2884 2884 2882 2881 2880 2876 2876 2872 2872 2868 2868 2866 2862 2862 2858 2858 2854 2854 2852 2851 2850 2846 2846 3281 3277 3277 3275 3271 3271 3267 3267 3263 3263 3259 3259 3257 3256 3252 3252 3248 3248 3244 3244 3240 3240 3236 3236 3234 3233 3229 3229 3225 3225 3224 3223 3219 3219 3215 3215 3211 3211 3207 3207 3205 3204 3202 3198 3198 3194 3194 3193 3189 3189 3187 3183 3183 3179 3179 3178 3176 3172 3172 3168 3168 3164 3164 3160 3160 3156 3156 3154 3153 3149 3149 3145 3145 3144 3143 3139 3139 3135 3135 3131 3131 3127 3127 3125 3124 3123 3119 3119 3117 3113 3113 3109 3109 3105 3105 3104 3103 3099 3099 3095 3095 3091 3091 3087 3087 3083 3083 3079 3079 3078 3076 3072 3072 3068 3068 3064 3064 3060 3060 3502 3498 3498 3494 3494 3490 3490 3489 3487 3483 3483 3479 3479 3475 3475 3471 3471 3470 3469 3465 3465 3461 3461 3457 3457 3456 3455 3451 3451 3450 3449 3445 3445 3443 3439 3439 3435 3435 3431 3431 3429 3425 3425 3424 3420 3420 3416 3416 3412 3412 3408 3408 3407 3403 3403 3397 3397 3397 3393 3393 3389 3389 3388 3384 3384 3380 3380 3378 3374 3374 3370 3370 3368 3367 3363 3363 3359 3359 3355 3355 3354 3350 3350 3346 3346 3342 3342 3338 3338 3334 3334 3332 3331 3329 3323 3323 3323 3319 3319 3315 3315 3314 3312 3308 3308 3304 3304 3300 3300 3296 3296 3290 3290 3290 3288 3286 3282 3282 3690 3686 3686 3682 3682 3678 3678 3677 3673 3673 3669 3669 3665 3665 3664 3662 3658 3658 3656 3652 3652 3648 3648 3642 3642 3642 3640 3638 3634 3634 3633 3629 3629 3625 3625 3621 3621 3617 3617 3615 3614 3610 3610 3606 3606 3602 3602 3601 3597 3597 3593 3593 3589 3589 3588 3584 3584 3582 3578 3578 3574 3574 3573 3571 3567 3567 3563 3563 3562 3558 3558 3554 3554 3550 3550 3546 3546 3544 3543 3539 3539 3535 3535 3531 3531 3530 3526 3526 3522 3522 3518 3518 3517 3513 3513 3511 3507 3507 3503 3503 3916 3912 3912 3908 3908 3904 3904 3903 3902 3898 3898 3894 3894 3888 3888 3888 3886 3884 3883 3881 3877 3877 3873 3873 3869 3869 3868 3867 3863 3863 3861 3855 3855 3855 3853 3851 3850 3846 3846 3842 3842 3838 3838 3834 3834 3833 3831 3827 3827 3823 3823 3819 3819 3815 3815 3811 3811 3810 3806 3806 3800 3800 3800 3796 3796 3792 3792 3791 3787 3787 3783 3783 3779 3779 3778 3777 3773 3773 3771 3767 3767 3763 3763 3762 3758 3758 3754 3754 3750 3750 3746 3746 3742 3742 3738 3738 3737 3735 3731 3731 3727 3727 3725 3724 3720 3720 3716 3716 3712 3712 3708 3708 3704 3704 3703 3699 3699 3695 3695 3691 3691 3998 3994 3994 3992 3988 3988 3982 3982 3982 3980 3978 3974 3974 3973 3969 3969 3963 3963 3963 3959 3959 3955 3955 3953 3952 3948 3948 3944 3944 3940 3940 3939 3935 3935 3931 3931 3930 3929 3925 3925 3921 3921 3917 3917 From 31dcb5575ee33a1c02eef1b665e71946bdac8fa4 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 16 Apr 2017 02:26:35 +0200 Subject: [PATCH 41/43] Remove unused ucdn submodule --- .appveyor.yml | 3 +-- .gitmodules | 4 ---- configure.ac | 2 +- src/ucdn | 1 - 4 files changed, 2 insertions(+), 8 deletions(-) delete mode 160000 src/ucdn diff --git a/.appveyor.yml b/.appveyor.yml index f6d25291..67fb291f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,7 +7,6 @@ install: - call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% - appveyor-retry C:\msys64\usr\bin\pacman -Syuu --needed --noconfirm --noprogressbar --ask=127 - appveyor-retry C:\msys64\usr\bin\pacman -S --noconfirm autoconf automake libtool gtk-doc mingw-w64-x86_64-pkg-config mingw-w64-x86_64-harfbuzz mingw-w64-x86_64-fribidi mingw-w64-x86_64-freetype - - git submodule update --init --recursive build_script: - set CC=cccl @@ -17,7 +16,7 @@ build_script: - bash -c "mv cccl /usr/bin" - bash -c "exec 0 Date: Sun, 16 Apr 2017 04:22:46 +0200 Subject: [PATCH 42/43] Make testing line breaks a bit more reliable Testing absolute positions seems to be sensitive to FreeType version. --- src/raqm.c | 6 +- tests/buffer-flags-1.test | 10 +- tests/cursor_position1.test | 20 +- tests/cursor_position2.test | 20 +- tests/cursor_position3.test | 20 +- tests/cursor_position4.test | 20 +- tests/cursor_position_GB3.test | 12 +- tests/cursor_position_GB4.test | 18 +- tests/cursor_position_GB5.test | 18 +- tests/cursor_position_GB8a.test | 8 +- tests/cursor_position_GB9.test | 20 +- tests/cursor_position_GB9a.test | 6 +- tests/features-arabic.test | 26 +- tests/features-kerning.test | 26 +- tests/features-ligature.test | 30 +- tests/languages-sr-ru.test | 8 +- tests/languages-sr.test | 4 +- tests/line-breaking-ltr.test | 886 +++---- tests/line-breaking-rtl.test | 4332 +++++++++++++++---------------- tests/multi-fonts.test | 42 +- tests/multi-fonts2.test | 8 +- tests/scripts-backward-ltr.test | 70 +- tests/scripts-backward-rtl.test | 70 +- tests/scripts-backward.test | 70 +- tests/scripts-forward-ltr.test | 32 +- tests/scripts-forward-rtl.test | 32 +- tests/scripts-forward.test | 32 +- tests/test1.test | 38 +- tests/test1_LTR.test | 38 +- tests/test1_RTL.test | 38 +- tests/test2.test | 30 +- tests/test2_LTR.test | 30 +- tests/test2_RTL.test | 30 +- tests/test3.test | 56 +- tests/test3_LTR.test | 56 +- tests/test3_RTL.test | 56 +- tests/test4.test | 36 +- tests/test4_LTR.test | 36 +- tests/test4_RTL.test | 36 +- tests/test5.test | 20 +- tests/test5_LTR.test | 20 +- tests/test5_RTL.test | 20 +- tests/xyoffset.test | 10 +- 43 files changed, 3198 insertions(+), 3198 deletions(-) diff --git a/src/raqm.c b/src/raqm.c index f1fa7376..e051d04c 100644 --- a/src/raqm.c +++ b/src/raqm.c @@ -926,11 +926,11 @@ raqm_get_glyphs (raqm_t *rq, for (size_t i = 0; i < *length; i++) { - RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance:" - " %d\tx_position: %d\ty_position: %d\tfont: %s\n", + RAQM_TEST ("glyph [%d]\tx_offset: %d\ty_offset: %d\tx_advance: %d\t" + "line: %02d\tfont: %s\n", rq->glyphs[i].index, rq->glyphs[i].x_offset, rq->glyphs[i].y_offset, rq->glyphs[i].x_advance, - rq->glyphs[i].x, rq->glyphs[i].y, + rq->glyphs[i].line, rq->glyphs[i].ftface->family_name); } #endif diff --git a/tests/buffer-flags-1.test b/tests/buffer-flags-1.test index e46ed818..27a1ab1b 100644 --- a/tests/buffer-flags-1.test +++ b/tests/buffer-flags-1.test @@ -28,11 +28,11 @@ run[0]: start: 1 length: 3 direction: rtl script: Arab font: Amiri run[1]: start: 0 length: 1 direction: rtl script: Zinh font: Amiri Glyph information: -glyph [427] x_offset: 0 y_offset: 0 x_advance: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 font: Amiri -glyph [782] x_offset: 0 y_offset: 0 x_advance: 1392 font: Amiri -glyph [427] x_offset: -1245 y_offset: -430 x_advance: 0 font: Amiri +glyph [427] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 00 font: Amiri +glyph [782] x_offset: 0 y_offset: 0 x_advance: 1392 line: 00 font: Amiri +glyph [427] x_offset: -1245 y_offset: -430 x_advance: 0 line: 00 font: Amiri UTF-32 clusters: 02 02 01 00 00 UTF-8 clusters: 04 04 02 00 00 diff --git a/tests/cursor_position1.test b/tests/cursor_position1.test index 420ad718..2c6e9480 100644 --- a/tests/cursor_position1.test +++ b/tests/cursor_position1.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 6977 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position2.test b/tests/cursor_position2.test index f5fdf638..f164e203 100644 --- a/tests/cursor_position2.test +++ b/tests/cursor_position2.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 6977 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position3.test b/tests/cursor_position3.test index b39faa38..7c462271 100644 --- a/tests/cursor_position3.test +++ b/tests/cursor_position3.test @@ -41,16 +41,16 @@ run[0]: start: 6 length: 4 direction: ltr script: Latn font: Amiri run[1]: start: 0 length: 6 direction: rtl script: Arab font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 6411 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 06 07 08 09 05 04 03 01 01 00 UTF-8 clusters: 11 12 13 14 10 08 06 02 02 00 diff --git a/tests/cursor_position4.test b/tests/cursor_position4.test index e1bb32dc..52ebade9 100644 --- a/tests/cursor_position4.test +++ b/tests/cursor_position4.test @@ -41,16 +41,16 @@ run[0]: start: 6 length: 4 direction: ltr script: Latn font: Amiri run[1]: start: 0 length: 6 direction: rtl script: Arab font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 6411 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 06 07 08 09 05 04 03 01 01 00 UTF-8 clusters: 11 12 13 14 10 08 06 02 02 00 diff --git a/tests/cursor_position_GB3.test b/tests/cursor_position_GB3.test index 79b60439..4ed6dbee 100644 --- a/tests/cursor_position_GB3.test +++ b/tests/cursor_position_GB3.test @@ -32,12 +32,12 @@ Final Runs: run[0]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 2598 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 3346 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4094 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 4956 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 UTF-8 clusters: 00 01 02 03 04 05 diff --git a/tests/cursor_position_GB4.test b/tests/cursor_position_GB4.test index 0678eb19..b961c088 100644 --- a/tests/cursor_position_GB4.test +++ b/tests/cursor_position_GB4.test @@ -37,15 +37,15 @@ Final Runs: run[0]: start: 0 length: 9 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 4524 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5272 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 6290 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7870 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8732 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 UTF-8 clusters: 00 01 02 03 04 06 07 08 09 diff --git a/tests/cursor_position_GB5.test b/tests/cursor_position_GB5.test index 53082239..9db242f3 100644 --- a/tests/cursor_position_GB5.test +++ b/tests/cursor_position_GB5.test @@ -37,15 +37,15 @@ Final Runs: run[0]: start: 0 length: 9 direction: ltr script: Latn font: Amiri Glyph information: -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 4524 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5272 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 6290 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7870 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 8732 y_position: 0 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 UTF-8 clusters: 00 01 02 03 04 06 07 08 09 diff --git a/tests/cursor_position_GB8a.test b/tests/cursor_position_GB8a.test index 8c9d4825..0c138c2a 100644 --- a/tests/cursor_position_GB8a.test +++ b/tests/cursor_position_GB8a.test @@ -27,10 +27,10 @@ Final Runs: run[0]: start: 0 length: 4 direction: ltr script: Zyyy font: Amiri Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 0 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 748 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 1496 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 2244 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 UTF-8 clusters: 00 04 08 12 diff --git a/tests/cursor_position_GB9.test b/tests/cursor_position_GB9.test index 420ad718..2c6e9480 100644 --- a/tests/cursor_position_GB9.test +++ b/tests/cursor_position_GB9.test @@ -45,16 +45,16 @@ run[0]: start: 0 length: 7 direction: ltr script: Latn font: Amiri run[1]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: 0 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 1018 y_position: 0 font: Amiri -glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2598 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 3460 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4524 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5124 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6297 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 6767 y_position: 0 font: Amiri -glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 6977 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7211 y_position: 0 font: Amiri +glyph [183] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [162] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [428] x_offset: -234 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri UTF-32 clusters: 00 02 03 05 06 11 10 09 07 07 UTF-8 clusters: 00 03 04 07 08 17 15 13 09 09 diff --git a/tests/cursor_position_GB9a.test b/tests/cursor_position_GB9a.test index 2ef89b22..cee4a3fb 100644 --- a/tests/cursor_position_GB9a.test +++ b/tests/cursor_position_GB9a.test @@ -25,9 +25,9 @@ Final Runs: run[0]: start: 0 length: 3 direction: ltr script: Deva font: Amiri Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 0 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 748 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 1496 y_position: 0 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Amiri UTF-32 clusters: 00 00 02 UTF-8 clusters: 00 00 06 diff --git a/tests/features-arabic.test b/tests/features-arabic.test index ab69f3f3..42dd968f 100644 --- a/tests/features-arabic.test +++ b/tests/features-arabic.test @@ -45,19 +45,19 @@ Final Runs: run[0]: start: 0 length: 13 direction: rtl script: Arab font: Amiri Glyph information: -glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 0 y_position: 0 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 756 y_position: 0 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 2322 y_position: 0 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 4219 y_position: 0 font: Amiri -glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 5038 y_position: 0 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 6145 y_position: 0 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 7381 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7827 y_position: 0 font: Amiri -glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 8427 y_position: 0 font: Amiri -glyph [407] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 9183 y_position: 0 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 10290 y_position: 0 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 11526 y_position: 0 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 12762 y_position: 0 font: Amiri +glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 line: 00 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 00 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 00 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 00 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 line: 00 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [390] x_offset: 0 y_offset: 0 x_advance: 756 line: 00 font: Amiri +glyph [407] x_offset: 0 y_offset: 0 x_advance: 1107 line: 00 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 00 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri UTF-32 clusters: 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 23 21 19 17 15 13 11 10 08 06 04 02 00 diff --git a/tests/features-kerning.test b/tests/features-kerning.test index 40808ae5..77ad0efb 100644 --- a/tests/features-kerning.test +++ b/tests/features-kerning.test @@ -45,19 +45,19 @@ Final Runs: run[0]: start: 0 length: 13 direction: ltr script: Latn font: Amiri Glyph information: -glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 x_position: 0 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1128 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 1668 y_position: 0 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2732 y_position: 0 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 3762 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4714 y_position: 0 font: Amiri -glyph [54] x_offset: 0 y_offset: 0 x_advance: 1004 x_position: 5314 y_position: 0 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 6318 y_position: 0 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 7348 y_position: 0 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 8368 y_position: 0 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9388 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10406 y_position: 0 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 11172 y_position: 0 font: Amiri +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [54] x_offset: 0 y_offset: 0 x_advance: 1004 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 diff --git a/tests/features-ligature.test b/tests/features-ligature.test index 2b16c7a7..66c40f28 100644 --- a/tests/features-ligature.test +++ b/tests/features-ligature.test @@ -49,21 +49,21 @@ Final Runs: run[0]: start: 0 length: 15 direction: ltr script: Latn font: Amiri Glyph information: -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 0 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 616 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1156 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 1666 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2526 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3126 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 3666 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4404 y_position: 0 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 5004 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5620 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6160 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6670 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 7180 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 7720 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 8784 y_position: 0 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 diff --git a/tests/languages-sr-ru.test b/tests/languages-sr-ru.test index 6b1b4bda..83f9dfa7 100644 --- a/tests/languages-sr-ru.test +++ b/tests/languages-sr-ru.test @@ -28,10 +28,10 @@ run[0]: start: 0 length: 2 direction: ltr script: Cyrl font: DejaVu Serif run[1]: start: 2 length: 2 direction: ltr script: Cyrl font: DejaVu Serif Glyph information: -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 x_position: 0 y_position: 0 font: DejaVu Serif -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 x_position: 1940 y_position: 0 font: DejaVu Serif -glyph [3] x_offset: 0 y_offset: 0 x_advance: 1942 x_position: 3173 y_position: 0 font: DejaVu Serif -glyph [2] x_offset: 0 y_offset: 0 x_advance: 1250 x_position: 5115 y_position: 0 font: DejaVu Serif +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 line: 00 font: DejaVu Serif +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 line: 00 font: DejaVu Serif +glyph [3] x_offset: 0 y_offset: 0 x_advance: 1942 line: 00 font: DejaVu Serif +glyph [2] x_offset: 0 y_offset: 0 x_advance: 1250 line: 00 font: DejaVu Serif UTF-32 clusters: 00 01 02 03 UTF-8 clusters: 00 02 04 06 diff --git a/tests/languages-sr.test b/tests/languages-sr.test index 7a298094..b5ac6fee 100644 --- a/tests/languages-sr.test +++ b/tests/languages-sr.test @@ -23,8 +23,8 @@ Final Runs: run[0]: start: 0 length: 2 direction: ltr script: Cyrl font: DejaVu Serif Glyph information: -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 x_position: 0 y_position: 0 font: DejaVu Serif -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 x_position: 1940 y_position: 0 font: DejaVu Serif +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1940 line: 00 font: DejaVu Serif +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1233 line: 00 font: DejaVu Serif UTF-32 clusters: 00 01 UTF-8 clusters: 00 02 diff --git a/tests/line-breaking-ltr.test b/tests/line-breaking-ltr.test index c51d0b92..5c984bab 100644 --- a/tests/line-breaking-ltr.test +++ b/tests/line-breaking-ltr.test @@ -909,449 +909,449 @@ Final Runs: run[0]: start: 0 length: 445 direction: ltr script: Latn font: Amiri Glyph information: -glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 x_position: 0 y_position: -2304 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1128 y_position: -2304 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 2146 y_position: -2304 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2904 y_position: -2304 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3764 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5344 y_position: -2304 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 5944 y_position: -2304 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 6484 y_position: -2304 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 7504 y_position: -2304 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8242 y_position: -2304 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 9272 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10852 y_position: -2304 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 11452 y_position: -2304 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 12482 y_position: -2304 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 13500 y_position: -2304 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14010 y_position: -2304 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15028 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15794 y_position: -2304 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 16394 y_position: -2304 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17132 y_position: -2304 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17672 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18294 y_position: -2304 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18894 y_position: -2304 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19756 y_position: -2304 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 21336 y_position: -2304 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 22196 y_position: -2304 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 22818 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23220 y_position: -2304 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 23820 y_position: -2304 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 24666 y_position: -2304 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 25684 y_position: -2304 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 26748 y_position: -2304 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27486 y_position: -2304 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 28346 y_position: -2304 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 29192 y_position: -2304 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 29814 y_position: -2304 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30674 y_position: -2304 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 31296 y_position: -2304 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 32326 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33092 y_position: -2304 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 33692 y_position: -2304 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34554 y_position: -2304 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 35584 y_position: -2304 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 36124 y_position: -2304 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 37144 y_position: -2304 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 37684 y_position: -2304 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38422 y_position: -2304 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 39268 y_position: -2304 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 39808 y_position: -2304 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 40872 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41804 y_position: -2304 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42404 y_position: -2304 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43264 y_position: -2304 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43774 y_position: -2304 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44314 y_position: -2304 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 44936 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45338 y_position: -2304 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 45938 y_position: -2304 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 46676 y_position: -2304 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 47536 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48566 y_position: -2304 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 1030 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2048 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2648 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3508 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4048 y_position: -5888 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 5078 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 5816 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 7396 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8414 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9444 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 10044 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 10666 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 11526 y_position: -5888 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 13106 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 14126 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 15144 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15910 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16510 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17050 y_position: -5888 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 18114 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18960 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 19500 y_position: -5888 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20530 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21070 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22100 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23130 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 24194 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24816 y_position: -5888 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 25416 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 26446 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27068 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 27668 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28178 y_position: -5888 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 29040 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30036 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 31054 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 31812 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32672 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 33272 y_position: -5888 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 34132 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34754 y_position: -5888 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35354 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36384 y_position: -5888 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 37402 y_position: -5888 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 37912 y_position: -5888 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 38930 y_position: -5888 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39688 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40548 y_position: -5888 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 41148 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 42728 y_position: -5888 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 43590 y_position: -5888 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 44522 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45586 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46448 y_position: -5888 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: -9472 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 862 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 1372 y_position: -9472 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 1912 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2906 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 3936 y_position: -9472 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 4798 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5212 y_position: -9472 font: Amiri -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 x_position: 5812 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 7220 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7842 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 8442 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 9302 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10366 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 10906 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12486 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13086 y_position: -9472 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 13948 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14978 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15578 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17158 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17698 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 18762 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 19302 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20882 y_position: -9472 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 21482 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 22402 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 23262 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 24326 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24866 y_position: -9472 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 25728 y_position: -9472 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 27308 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27710 y_position: -9472 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 28310 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 29304 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 30334 y_position: -9472 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 30874 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31612 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32212 y_position: -9472 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 33276 y_position: -9472 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 34294 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35032 y_position: -9472 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 35654 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36420 y_position: -9472 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37450 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38480 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 39080 y_position: -9472 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 x_position: 39940 y_position: -9472 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40844 y_position: -9472 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41704 y_position: -9472 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 42454 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 43300 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 43840 y_position: -9472 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44462 y_position: -9472 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45324 y_position: -9472 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 45946 y_position: -9472 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 46486 y_position: -9472 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 47504 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 48568 y_position: -9472 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1030 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1540 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2050 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 2912 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4492 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 5338 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6356 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 6956 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7466 y_position: -13056 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 8328 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9324 y_position: -13056 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 10342 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11108 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 11648 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12386 y_position: -13056 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 12986 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14050 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 14590 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 15328 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15868 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 16468 y_position: -13056 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17498 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18120 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18720 y_position: -13056 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 19582 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20092 y_position: -13056 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 20632 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 21626 y_position: -13056 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 22656 y_position: -13056 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23196 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24216 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 24816 y_position: -13056 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 x_position: 25676 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26628 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 27228 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 28088 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28950 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 29550 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 30396 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 31414 y_position: -13056 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 32994 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34574 y_position: -13056 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 35592 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 36622 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37640 y_position: -13056 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 38240 y_position: -13056 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 39086 y_position: -13056 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 40104 y_position: -13056 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 41168 y_position: -13056 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 41906 y_position: -13056 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 42766 y_position: -13056 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 43760 y_position: -13056 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 44790 y_position: -13056 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 45652 y_position: -13056 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 46274 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46688 y_position: -13056 font: Amiri -glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 x_position: 0 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 1420 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 2450 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 2990 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3728 y_position: -16640 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 4328 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5190 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6220 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 6842 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7702 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8302 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8842 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 9608 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 10638 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11396 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12256 y_position: -16640 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12856 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 13886 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 14904 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 15414 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 16432 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17198 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17798 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18338 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19402 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20002 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 20760 y_position: -16640 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 21620 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 22640 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23398 y_position: -16640 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 24258 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 25290 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 26150 y_position: -16640 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27214 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 28244 y_position: -16640 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 29104 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 29870 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 30410 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31032 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31632 y_position: -16640 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 32172 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33236 y_position: -16640 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 33836 y_position: -16640 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 34756 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35774 y_position: -16640 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 36284 y_position: -16640 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 37314 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 38334 y_position: -16640 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 38956 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 39818 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 40440 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41300 y_position: -16640 font: Amiri -glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 x_position: 41900 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 42820 y_position: -16640 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 43680 y_position: -16640 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44190 y_position: -16640 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 44730 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45352 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 45952 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 46812 y_position: -16640 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 47550 y_position: -16640 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 48288 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 49148 y_position: -16640 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 0 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 846 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1386 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 1896 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 2406 y_position: -20224 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 3436 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5016 y_position: -20224 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 5616 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 6646 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7664 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 8174 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 9192 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 9950 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10810 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 11410 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 12270 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13300 y_position: -20224 font: Amiri -glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 x_position: 13900 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 14516 y_position: -20224 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 15546 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 16478 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 17018 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 17880 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18502 y_position: -20224 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 19102 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 20166 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21196 y_position: -20224 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 21706 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 22216 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23078 y_position: -20224 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 23678 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 24698 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25560 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 26326 y_position: -20224 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 26866 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 27728 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 28350 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 x_position: 29380 y_position: -20224 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 30122 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30536 y_position: -20224 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 31136 y_position: -20224 font: Amiri -glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 x_position: 32310 y_position: -20224 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33210 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 34056 y_position: -20224 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 34916 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 35936 y_position: -20224 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 36558 y_position: -20224 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 37418 y_position: -20224 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 38448 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39214 y_position: -20224 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 39814 y_position: -20224 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40552 y_position: -20224 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 41092 y_position: -20224 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 42156 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42778 y_position: -20224 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 0 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 1018 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 1864 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 2710 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 3572 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4432 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 5278 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6140 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6762 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 7362 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 8208 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 9238 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 10258 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 10798 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 11828 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 12690 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 13312 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 14174 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14796 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 15396 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 16460 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 17478 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18542 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 19142 y_position: -23808 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 x_position: 20162 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 20920 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 21938 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 22478 y_position: -23808 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 23508 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 24368 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 25432 y_position: -23808 font: Amiri -glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 x_position: 26054 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26456 y_position: -23808 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 27056 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 27794 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 28824 y_position: -23808 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 29888 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30510 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 31110 y_position: -23808 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 31650 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32714 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 33314 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 34160 y_position: -23808 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 35190 y_position: -23808 font: Amiri -glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 x_position: 35700 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 36720 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37582 y_position: -23808 font: Amiri -glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 x_position: 38182 y_position: -23808 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 39176 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 40206 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40746 y_position: -23808 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 41346 y_position: -23808 font: Amiri -glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 x_position: 42364 y_position: -23808 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 43994 y_position: -23808 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 44840 y_position: -23808 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 45380 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46242 y_position: -23808 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 0 y_position: -27392 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 1030 y_position: -27392 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 1890 y_position: -27392 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 2628 y_position: -27392 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 3488 y_position: -27392 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 4254 y_position: -27392 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 5284 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 6348 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6970 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 7570 y_position: -27392 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 9150 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 10168 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 10678 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11188 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 11728 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12350 y_position: -27392 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 12950 y_position: -27392 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 13812 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 14876 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 15416 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16996 y_position: -27392 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 17596 y_position: -27392 font: Amiri -glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 18136 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19166 y_position: -27392 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 19766 y_position: -27392 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 20626 y_position: -27392 font: Amiri -glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 x_position: 21364 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21986 y_position: -27392 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 22586 y_position: -27392 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 23096 y_position: -27392 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 23958 y_position: -27392 font: Amiri -glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 x_position: 24954 y_position: -27392 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 25972 y_position: -27392 font: Amiri -glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 x_position: 26738 y_position: -27392 font: Amiri -glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 x_position: 27768 y_position: -27392 font: Amiri -glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 x_position: 29348 y_position: -27392 font: Amiri +glyph [47] x_offset: 0 y_offset: 0 x_advance: 1128 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 00 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 01 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 01 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 01 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 01 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 01 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 01 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 01 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 01 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 01 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1408 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 02 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 02 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 904 line: 02 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 02 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 750 line: 02 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 02 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 02 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 02 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 02 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 03 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 03 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 03 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 03 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 952 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 03 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 03 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 03 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 03 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 03 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 03 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 03 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 03 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 03 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 03 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [39] x_offset: 0 y_offset: 0 x_advance: 1420 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 04 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 04 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 04 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 line: 04 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 04 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 04 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 04 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [89] x_offset: 0 y_offset: 0 x_advance: 920 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 04 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 04 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 04 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 04 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [73] x_offset: 0 y_offset: 0 x_advance: 616 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 742 line: 05 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 05 font: Amiri +glyph [91] x_offset: 0 y_offset: 0 x_advance: 900 line: 05 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 05 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 05 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 05 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 05 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 05 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 06 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 758 line: 06 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [15] x_offset: 0 y_offset: 0 x_advance: 402 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 06 font: Amiri +glyph [83] x_offset: 0 y_offset: 0 x_advance: 1020 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [84] x_offset: 0 y_offset: 0 x_advance: 994 line: 06 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 06 font: Amiri +glyph [786] x_offset: 0 y_offset: 0 x_advance: 1630 line: 06 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 06 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 06 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 07 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 07 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 07 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 07 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 07 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 07 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 07 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 07 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 07 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 07 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 07 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 07 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 07 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 07 font: Amiri +glyph [71] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 07 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 07 font: Amiri +glyph [87] x_offset: 0 y_offset: 0 x_advance: 622 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 07 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 07 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 07 font: Amiri +glyph [82] x_offset: 0 y_offset: 0 x_advance: 1018 line: 07 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 07 font: Amiri +glyph [88] x_offset: 0 y_offset: 0 x_advance: 1030 line: 07 font: Amiri +glyph [80] x_offset: 0 y_offset: 0 x_advance: 1580 line: 07 font: Amiri +glyph [17] x_offset: 0 y_offset: 0 x_advance: 414 line: 07 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 diff --git a/tests/line-breaking-rtl.test b/tests/line-breaking-rtl.test index c987bc62..b210ab59 100644 --- a/tests/line-breaking-rtl.test +++ b/tests/line-breaking-rtl.test @@ -4352,2172 +4352,2172 @@ run[2]: start: 1 length: 162 direction: rtl script: Arab font: Amiri run[3]: start: 0 length: 1 direction: rtl script: Zyyy font: Amiri Glyph information: -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -2304 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 600 y_position: -2304 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 1216 y_position: -2304 font: Amiri -glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 1250 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 2173 y_position: -2304 font: Amiri -glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 2538 y_position: -2304 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 2619 y_position: -2304 font: Amiri -glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 x_position: 3842 y_position: -2304 font: Amiri -glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 3584 y_position: -2304 font: Amiri -glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 5229 y_position: -2360 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 5014 y_position: -2304 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 5740 y_position: -2304 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 5712 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 6331 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6777 y_position: -2304 font: Amiri -glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 7501 y_position: -2304 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 7377 y_position: -2304 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 8503 y_position: -2304 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 8637 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9434 y_position: -2304 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9778 y_position: -2304 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 10034 y_position: -2304 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 10472 y_position: -2304 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 10742 y_position: -2304 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 11542 y_position: -2304 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 11668 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12489 y_position: -2304 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 13119 y_position: -2304 font: Amiri -glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 13089 y_position: -2304 font: Amiri -glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 x_position: 14667 y_position: -2304 font: Amiri -glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 14409 y_position: -2304 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 15583 y_position: -2304 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 15839 y_position: -2304 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 16255 y_position: -2304 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 16547 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 16907 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17353 y_position: -2304 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 17909 y_position: -2304 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 17953 y_position: -2304 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 18692 y_position: -2304 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 19065 y_position: -2304 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 19126 y_position: -2304 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19512 y_position: -2304 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 19720 y_position: -2304 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 20012 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20372 y_position: -2304 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 20692 y_position: -2304 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 20818 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21639 y_position: -2304 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 22239 y_position: -2304 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22889 y_position: -2304 font: Amiri -glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 23530 y_position: -2304 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 23359 y_position: -2304 font: Amiri -glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 24587 y_position: -2304 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 24839 y_position: -2304 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 25460 y_position: -2339 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 25229 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25709 y_position: -2304 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 26309 y_position: -2304 font: Amiri -glyph [424] x_offset: -239 y_offset: 0 x_advance: 0 x_position: 27010 y_position: -2304 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 27249 y_position: -2304 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 27590 y_position: -2304 font: Amiri -glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 28026 y_position: -2304 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 28416 y_position: -2304 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 28724 y_position: -2304 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29124 y_position: -2304 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 29447 y_position: -2304 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29624 y_position: -2304 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 29663 y_position: -2304 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 30124 y_position: -2304 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 30602 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31542 y_position: -2304 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 32016 y_position: -2304 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 32142 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32963 y_position: -2304 font: Amiri -glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 33507 y_position: -2304 font: Amiri -glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 33563 y_position: -2304 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 34670 y_position: -2304 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 34884 y_position: -2304 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 35140 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35725 y_position: -2304 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 36045 y_position: -2304 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 36325 y_position: -2304 font: Amiri -glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 x_position: 36652 y_position: -2304 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 37102 y_position: -2304 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 37492 y_position: -2304 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 37706 y_position: -2304 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 37962 y_position: -2304 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 38591 y_position: -2304 font: Amiri -glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 x_position: 38717 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39538 y_position: -2304 font: Amiri -glyph [428] x_offset: 330 y_offset: 0 x_advance: 0 x_position: 40468 y_position: -2304 font: Amiri -glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 x_position: 40138 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 41545 y_position: -2304 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 41635 y_position: -2304 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 41991 y_position: -2304 font: Amiri -glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 42490 y_position: -2304 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 42694 y_position: -2304 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 43177 y_position: -2304 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43469 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43829 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44275 y_position: -2304 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44875 y_position: -2304 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 45771 y_position: -2304 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 45815 y_position: -2304 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 46554 y_position: -2304 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 46927 y_position: -2304 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46988 y_position: -2304 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47374 y_position: -2304 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 47582 y_position: -2304 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47874 y_position: -2304 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48234 y_position: -2304 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 48680 y_position: -2304 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -5888 font: Amiri -glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 666 y_position: -5988 font: Amiri -glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 600 y_position: -5888 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 1898 y_position: -5888 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 1920 y_position: -5888 font: Amiri -glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 2466 y_position: -5888 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 2670 y_position: -5888 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 3153 y_position: -5888 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 3445 y_position: -5888 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 3805 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4251 y_position: -5888 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 4851 y_position: -5888 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 5256 y_position: -5888 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 5812 y_position: -5888 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 5886 y_position: -5888 font: Amiri -glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 6213 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7013 y_position: -5888 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 7643 y_position: -5888 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 7613 y_position: -5888 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 8411 y_position: -5888 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 8623 y_position: -5888 font: Amiri -glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 x_position: 9362 y_position: -5784 font: Amiri -glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 8952 y_position: -5888 font: Amiri -glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9228 y_position: -5888 font: Amiri -glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 9828 y_position: -5888 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 10272 y_position: -5888 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 10346 y_position: -5888 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 10742 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11347 y_position: -5888 font: Amiri -glyph [429] x_offset: 506 y_offset: 0 x_advance: 0 x_position: 12453 y_position: -5888 font: Amiri -glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11947 y_position: -5888 font: Amiri -glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 14125 y_position: -5888 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 13757 y_position: -5888 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 15390 y_position: -5784 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 14980 y_position: -5888 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15237 y_position: -5888 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 15737 y_position: -5888 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 16097 y_position: -5888 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16417 y_position: -5888 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 16543 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17364 y_position: -5888 font: Amiri -glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 x_position: 18130 y_position: -5268 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 17964 y_position: -5888 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 18762 y_position: -5888 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 18974 y_position: -5888 font: Amiri -glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 x_position: 19713 y_position: -5784 font: Amiri -glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 19303 y_position: -5888 font: Amiri -glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19579 y_position: -5888 font: Amiri -glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 20179 y_position: -5888 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 20623 y_position: -5888 font: Amiri -glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 20864 y_position: -5888 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 21093 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21678 y_position: -5888 font: Amiri -glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 22278 y_position: -5888 font: Amiri -glyph [62] x_offset: 0 y_offset: 0 x_advance: 740 x_position: 23128 y_position: -5888 font: Amiri -glyph [28] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 23868 y_position: -5888 font: Amiri -glyph [23] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 24958 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26048 y_position: -5888 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 26648 y_position: -5888 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 27100 y_position: -5888 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28026 y_position: -5888 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 28496 y_position: -5888 font: Amiri -glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 29246 y_position: -5888 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 29636 y_position: -5888 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 30334 y_position: -5888 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30953 y_position: -5888 font: Amiri -glyph [64] x_offset: 0 y_offset: 0 x_advance: 740 x_position: 31399 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32139 y_position: -5888 font: Amiri -glyph [94] x_offset: 0 y_offset: 0 x_advance: 814 x_position: 32739 y_position: -5888 font: Amiri -glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 33671 y_position: -5888 font: Amiri -glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 33553 y_position: -5888 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 34402 y_position: -5888 font: Amiri -glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 34572 y_position: -5888 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 35130 y_position: -5888 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 35530 y_position: -5888 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 35853 y_position: -5888 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36030 y_position: -5888 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 36069 y_position: -5888 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 36530 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37008 y_position: -5888 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 37652 y_position: -5888 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 37608 y_position: -5888 font: Amiri -glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 x_position: 39101 y_position: -5784 font: Amiri -glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 x_position: 38691 y_position: -5888 font: Amiri -glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 38618 y_position: -5888 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 39642 y_position: -5888 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 39748 y_position: -5888 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 40087 y_position: -5888 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 40523 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40913 y_position: -5888 font: Amiri -glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 41616 y_position: -5888 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 41513 y_position: -5888 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 42372 y_position: -5888 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 42478 y_position: -5888 font: Amiri -glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 x_position: 42777 y_position: -5888 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43253 y_position: -5888 font: Amiri -glyph [96] x_offset: 0 y_offset: 0 x_advance: 814 x_position: 43613 y_position: -5888 font: Amiri -glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 44427 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45277 y_position: -5888 font: Amiri -glyph [427] x_offset: -221 y_offset: -292 x_advance: 0 x_position: 45656 y_position: -6180 font: Amiri -glyph [387] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45877 y_position: -5888 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 47409 y_position: -5888 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 47443 y_position: -5888 font: Amiri -glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 47736 y_position: -5888 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 48146 y_position: -5888 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 48625 y_position: -5888 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 48751 y_position: -5888 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -9472 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 630 y_position: -9472 font: Amiri -glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 600 y_position: -9472 font: Amiri -glyph [431] x_offset: 328 y_offset: 0 x_advance: 0 x_position: 2248 y_position: -9472 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 1920 y_position: -9472 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 3294 y_position: -9472 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 3400 y_position: -9472 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 3883 y_position: -9472 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 4175 y_position: -9472 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4535 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4981 y_position: -9472 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5581 y_position: -9472 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 6501 y_position: -9472 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 6521 y_position: -9472 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 7622 y_position: -9472 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 7694 y_position: -9472 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 8016 y_position: -9472 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 8402 y_position: -9472 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 8610 y_position: -9472 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 8902 y_position: -9472 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 9262 y_position: -9472 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9708 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10648 y_position: -9472 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 11122 y_position: -9472 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 11248 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12069 y_position: -9472 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 12669 y_position: -9472 font: Amiri -glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 13437 y_position: -9472 font: Amiri -glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 13319 y_position: -9472 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 14168 y_position: -9472 font: Amiri -glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 14338 y_position: -9472 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 14910 y_position: -9472 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15296 y_position: -9472 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 15619 y_position: -9472 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15796 y_position: -9472 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 15835 y_position: -9472 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 16296 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16774 y_position: -9472 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17374 y_position: -9472 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 17688 y_position: -9472 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 17844 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18641 y_position: -9472 font: Amiri -glyph [428] x_offset: -138 y_offset: 0 x_advance: 0 x_position: 19103 y_position: -9472 font: Amiri -glyph [2747] x_offset: 0 y_offset: 0 x_advance: 986 x_position: 19241 y_position: -9472 font: Amiri -glyph [2713] x_offset: 0 y_offset: 0 x_advance: 349 x_position: 20227 y_position: -9472 font: Amiri -glyph [429] x_offset: 36 y_offset: 0 x_advance: 0 x_position: 20612 y_position: -9472 font: Amiri -glyph [2517] x_offset: 170 y_offset: 0 x_advance: 783 x_position: 20746 y_position: -9472 font: Amiri -glyph [428] x_offset: -326 y_offset: 0 x_advance: 0 x_position: 21033 y_position: -9472 font: Amiri -glyph [2476] x_offset: 0 y_offset: 0 x_advance: 362 x_position: 21359 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21721 y_position: -9472 font: Amiri -glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 x_position: 22865 y_position: -9472 font: Amiri -glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 22321 y_position: -9472 font: Amiri -glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 24439 y_position: -9472 font: Amiri -glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 24336 y_position: -9472 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 24745 y_position: -9472 font: Amiri -glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 25301 y_position: -9472 font: Amiri -glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 25588 y_position: -9472 font: Amiri -glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 25450 y_position: -9472 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 26596 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27042 y_position: -9472 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 27642 y_position: -9472 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 28047 y_position: -9472 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 28603 y_position: -9472 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 28677 y_position: -9472 font: Amiri -glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 29004 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29804 y_position: -9472 font: Amiri -glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 30779 y_position: -9472 font: Amiri -glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 30404 y_position: -9472 font: Amiri -glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 32582 y_position: -9472 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 32214 y_position: -9472 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 33847 y_position: -9368 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 33437 y_position: -9472 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 33694 y_position: -9472 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 34194 y_position: -9472 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 34554 y_position: -9472 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 34874 y_position: -9472 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 35000 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35821 y_position: -9472 font: Amiri -glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 36539 y_position: -9472 font: Amiri -glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 36421 y_position: -9472 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 37270 y_position: -9472 font: Amiri -glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 37440 y_position: -9472 font: Amiri -glyph [428] x_offset: -60 y_offset: 0 x_advance: 0 x_position: 38338 y_position: -9472 font: Amiri -glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 x_position: 38398 y_position: -9472 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 38778 y_position: -9472 font: Amiri -glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 x_position: 39441 y_position: -9472 font: Amiri -glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 39183 y_position: -9472 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 40487 y_position: -9472 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 40613 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41434 y_position: -9472 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 42078 y_position: -9472 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 42034 y_position: -9472 font: Amiri -glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 x_position: 43527 y_position: -9368 font: Amiri -glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 x_position: 43117 y_position: -9472 font: Amiri -glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 43044 y_position: -9472 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 44068 y_position: -9472 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 44174 y_position: -9472 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 44513 y_position: -9472 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 44949 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45339 y_position: -9472 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 46367 y_position: -9472 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 45939 y_position: -9472 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 47736 y_position: -9507 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 47505 y_position: -9472 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -13056 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 600 y_position: -13056 font: Amiri -glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 x_position: 1321 y_position: -13056 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 1356 y_position: -13056 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 2321 y_position: -13056 font: Amiri -glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 2587 y_position: -13056 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 2821 y_position: -13056 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 3135 y_position: -13056 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 3571 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3961 y_position: -13056 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4561 y_position: -13056 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 5517 y_position: -13056 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 5501 y_position: -13056 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 6240 y_position: -13056 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 6613 y_position: -13056 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 6624 y_position: -13056 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 7060 y_position: -13056 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 7450 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8390 y_position: -13056 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 8864 y_position: -13056 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 8990 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9811 y_position: -13056 font: Amiri -glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 x_position: 10376 y_position: -13056 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 10411 y_position: -13056 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 11376 y_position: -13056 font: Amiri -glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 x_position: 11642 y_position: -13056 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 11876 y_position: -13056 font: Amiri -glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 12262 y_position: -13056 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12626 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13016 y_position: -13056 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13616 y_position: -13056 font: Amiri -glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 x_position: 14596 y_position: -13056 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 14556 y_position: -13056 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 15657 y_position: -13056 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 15729 y_position: -13056 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 16001 y_position: -13056 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 16437 y_position: -13056 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16827 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17767 y_position: -13056 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 18367 y_position: -13056 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 18681 y_position: -13056 font: Amiri -glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 x_position: 18837 y_position: -13056 font: Amiri -glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 x_position: 19429 y_position: -13056 font: Amiri -glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 19787 y_position: -13056 font: Amiri -glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 x_position: 19923 y_position: -13056 font: Amiri -glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 x_position: 20089 y_position: -13056 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 20550 y_position: -13056 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 20727 y_position: -13056 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 20766 y_position: -13056 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 21227 y_position: -13056 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 21749 y_position: -13056 font: Amiri -glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 x_position: 21875 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22696 y_position: -13056 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 23296 y_position: -13056 font: Amiri -glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 23996 y_position: -13056 font: Amiri -glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 x_position: 24052 y_position: -13056 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25159 y_position: -13056 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 25373 y_position: -13056 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 25629 y_position: -13056 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 26258 y_position: -13056 font: Amiri -glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 x_position: 26384 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27205 y_position: -13056 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 27849 y_position: -13056 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 27805 y_position: -13056 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 29041 y_position: -13056 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 29115 y_position: -13056 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 29511 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30116 y_position: -13056 font: Amiri -glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 x_position: 31282 y_position: -13056 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 30716 y_position: -13056 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 32613 y_position: -13056 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 32827 y_position: -13056 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 33083 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33668 y_position: -13056 font: Amiri -glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 34576 y_position: -13056 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 34268 y_position: -13056 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 35394 y_position: -13056 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 35528 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36325 y_position: -13056 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 36925 y_position: -13056 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 37585 y_position: -13056 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 37865 y_position: -13056 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 38206 y_position: -13056 font: Amiri -glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 38642 y_position: -13056 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 39032 y_position: -13056 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 39246 y_position: -13056 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 39502 y_position: -13056 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 40087 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41027 y_position: -13056 font: Amiri -glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 41730 y_position: -13056 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 41627 y_position: -13056 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 42196 y_position: -13056 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 42592 y_position: -13056 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 43071 y_position: -13056 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 43197 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44018 y_position: -13056 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 44338 y_position: -13056 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 44618 y_position: -13056 font: Amiri -glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 45498 y_position: -12952 font: Amiri -glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 45088 y_position: -13056 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 45395 y_position: -13056 font: Amiri -glyph [429] x_offset: 216 y_offset: 0 x_advance: 0 x_position: 46001 y_position: -13056 font: Amiri -glyph [2363] x_offset: 250 y_offset: 0 x_advance: 953 x_position: 46035 y_position: -13056 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 46432 y_position: -13056 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 46738 y_position: -13056 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 47116 y_position: -13056 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 47318 y_position: -13056 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47746 y_position: -13056 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 48066 y_position: -13056 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 48192 y_position: -13056 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -16640 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 600 y_position: -16640 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 1520 y_position: -16640 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1540 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 2713 y_position: -16640 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 2797 y_position: -16640 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3183 y_position: -16640 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 3297 y_position: -16640 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3683 y_position: -16640 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 3891 y_position: -16640 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 4183 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4543 y_position: -16640 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4989 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5929 y_position: -16640 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6403 y_position: -16640 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6529 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7350 y_position: -16640 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 7950 y_position: -16640 font: Amiri -glyph [428] x_offset: -216 y_offset: 0 x_advance: 0 x_position: 8384 y_position: -16640 font: Amiri -glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 8600 y_position: -16640 font: Amiri -glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 9056 y_position: -16640 font: Amiri -glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 9198 y_position: -16640 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 9401 y_position: -16640 font: Amiri -glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 9728 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10528 y_position: -16640 font: Amiri -glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 11128 y_position: -16640 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 11670 y_position: -16640 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 11826 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12445 y_position: -16640 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13045 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 13985 y_position: -16640 font: Amiri -glyph [424] x_offset: -359 y_offset: 0 x_advance: 0 x_position: 14096 y_position: -16640 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14455 y_position: -16640 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 14778 y_position: -16640 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14955 y_position: -16640 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 14994 y_position: -16640 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 15455 y_position: -16640 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15933 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16873 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17473 y_position: -16640 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 17787 y_position: -16640 font: Amiri -glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 x_position: 17943 y_position: -16640 font: Amiri -glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 x_position: 18535 y_position: -16640 font: Amiri -glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 18893 y_position: -16640 font: Amiri -glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 x_position: 19029 y_position: -16640 font: Amiri -glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 x_position: 19195 y_position: -16640 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 19656 y_position: -16640 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19833 y_position: -16640 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 19872 y_position: -16640 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 20333 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20811 y_position: -16640 font: Amiri -glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 21944 y_position: -16536 font: Amiri -glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 21534 y_position: -16640 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 21411 y_position: -16640 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 22914 y_position: -16785 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22584 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23030 y_position: -16640 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 23630 y_position: -16640 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 24112 y_position: -16640 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 24082 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25318 y_position: -16640 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 25682 y_position: -16640 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 25788 y_position: -16640 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 26163 y_position: -16640 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 26563 y_position: -16640 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 26667 y_position: -16640 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 27063 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27668 y_position: -16640 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 28234 y_position: -16640 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 28268 y_position: -16640 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 29211 y_position: -16640 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 29233 y_position: -16640 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 29583 y_position: -16640 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29983 y_position: -16640 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 30191 y_position: -16640 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30483 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 30843 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31289 y_position: -16640 font: Amiri -glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 31889 y_position: -16640 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 32397 y_position: -16640 font: Amiri -glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 32753 y_position: -16640 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 33361 y_position: -16640 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 33383 y_position: -16640 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 33727 y_position: -16640 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 34133 y_position: -16640 font: Amiri -glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 34247 y_position: -16640 font: Amiri -glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 34489 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35032 y_position: -16640 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 35632 y_position: -16640 font: Amiri -glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 36485 y_position: -16536 font: Amiri -glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 36075 y_position: -16640 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 36102 y_position: -16640 font: Amiri -glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 37200 y_position: -16675 font: Amiri -glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 36899 y_position: -16640 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 37396 y_position: -16640 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 37792 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38397 y_position: -16640 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 38997 y_position: -16640 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 39883 y_position: -16640 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 39753 y_position: -16640 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 41247 y_position: -16640 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 41063 y_position: -16640 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 42331 y_position: -16640 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 42543 y_position: -16640 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43379 y_position: -16675 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43148 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43628 y_position: -16640 font: Amiri -glyph [428] x_offset: -140 y_offset: 0 x_advance: 0 x_position: 44088 y_position: -16640 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44228 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45049 y_position: -16640 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 45239 y_position: -16640 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 45495 y_position: -16640 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 45911 y_position: -16640 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 46203 y_position: -16640 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 46563 y_position: -16640 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 46883 y_position: -16640 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 47009 y_position: -16640 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -20224 font: Amiri -glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 908 y_position: -20224 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 600 y_position: -20224 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 1726 y_position: -20224 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 1860 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2657 y_position: -20224 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 3257 y_position: -20224 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 4153 y_position: -20224 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 4197 y_position: -20224 font: Amiri -glyph [427] x_offset: -557 y_offset: 0 x_advance: 0 x_position: 4752 y_position: -20224 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 5309 y_position: -20224 font: Amiri -glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 5504 y_position: -20224 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 5756 y_position: -20224 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 6377 y_position: -20259 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 6146 y_position: -20224 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 6626 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7566 y_position: -20224 font: Amiri -glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 x_position: 8206 y_position: -20224 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 8166 y_position: -20224 font: Amiri -glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 9339 y_position: -20224 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 9818 y_position: -20224 font: Amiri -glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 10254 y_position: -20224 font: Amiri -glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 10346 y_position: -20224 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 10756 y_position: -20224 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 11235 y_position: -20224 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 11361 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12182 y_position: -20224 font: Amiri -glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 12782 y_position: -20224 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 13632 y_position: -20224 font: Amiri -glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 x_position: 13749 y_position: -20224 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 14078 y_position: -20224 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 15059 y_position: -20224 font: Amiri -glyph [2233] x_offset: 0 y_offset: 0 x_advance: 1250 x_position: 14781 y_position: -20224 font: Amiri -glyph [429] x_offset: 86 y_offset: 0 x_advance: 0 x_position: 16117 y_position: -20224 font: Amiri -glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 16031 y_position: -20224 font: Amiri -glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 x_position: 16720 y_position: -20224 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 17196 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17556 y_position: -20224 font: Amiri -glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 x_position: 18222 y_position: -20224 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 18156 y_position: -20224 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 19329 y_position: -20224 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 19413 y_position: -20224 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 19799 y_position: -20224 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 19913 y_position: -20224 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 20299 y_position: -20224 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 20507 y_position: -20224 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 20799 y_position: -20224 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 21159 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21605 y_position: -20224 font: Amiri -glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 22329 y_position: -20224 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 22205 y_position: -20224 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 23331 y_position: -20224 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 23465 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24262 y_position: -20224 font: Amiri -glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 25395 y_position: -20120 font: Amiri -glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 24985 y_position: -20224 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 24862 y_position: -20224 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 26365 y_position: -20369 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 26035 y_position: -20224 font: Amiri -glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 x_position: 26481 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27331 y_position: -20224 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 27931 y_position: -20224 font: Amiri -glyph [429] x_offset: 416 y_offset: 0 x_advance: 0 x_position: 28799 y_position: -20224 font: Amiri -glyph [3779] x_offset: 0 y_offset: 0 x_advance: 1583 x_position: 28383 y_position: -20224 font: Amiri -glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 29966 y_position: -20224 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 30538 y_position: -20224 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 30572 y_position: -20224 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 30981 y_position: -20224 font: Amiri -glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 31537 y_position: -20224 font: Amiri -glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 31824 y_position: -20224 font: Amiri -glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 31686 y_position: -20224 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 32832 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33278 y_position: -20224 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 33878 y_position: -20224 font: Amiri -glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 x_position: 34569 y_position: -20364 font: Amiri -glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 x_position: 34853 y_position: -20224 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 35214 y_position: -20224 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 35340 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36161 y_position: -20224 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 36761 y_position: -20224 font: Amiri -glyph [428] x_offset: 110 y_offset: 0 x_advance: 0 x_position: 37521 y_position: -20224 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 37411 y_position: -20224 font: Amiri -glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 38615 y_position: -20224 font: Amiri -glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 38671 y_position: -20224 font: Amiri -glyph [1914] x_offset: 133 y_offset: 104 x_advance: 0 x_position: 39969 y_position: -20120 font: Amiri -glyph [430] x_offset: -277 y_offset: 0 x_advance: 0 x_position: 39559 y_position: -20224 font: Amiri -glyph [5354] x_offset: 0 y_offset: 0 x_advance: 454 x_position: 39836 y_position: -20224 font: Amiri -glyph [5348] x_offset: 0 y_offset: 0 x_advance: 325 x_position: 40290 y_position: -20224 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 40615 y_position: -20224 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 40935 y_position: -20224 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 41061 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41882 y_position: -20224 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 42202 y_position: -20224 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 42482 y_position: -20224 font: Amiri -glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 43073 y_position: -20224 font: Amiri -glyph [4375] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 43259 y_position: -20224 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 44501 y_position: -20224 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 45155 y_position: -20224 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 44971 y_position: -20224 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 46345 y_position: -20224 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 46451 y_position: -20224 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 46934 y_position: -20224 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47226 y_position: -20224 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 47586 y_position: -20224 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -23808 font: Amiri -glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 724 y_position: -23808 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 600 y_position: -23808 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 1726 y_position: -23808 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 1860 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2657 y_position: -23808 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 2987 y_position: -24748 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 3257 y_position: -23808 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 4163 y_position: -23808 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 4039 y_position: -23808 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 5743 y_position: -23704 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 5333 y_position: -23808 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 5535 y_position: -23808 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 6315 y_position: -23808 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 6675 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7121 y_position: -23808 font: Amiri -glyph [429] x_offset: -144 y_offset: 0 x_advance: 0 x_position: 7577 y_position: -23808 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 7721 y_position: -23808 font: Amiri -glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 8134 y_position: -23808 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 8498 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8888 y_position: -23808 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9488 y_position: -23808 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 10384 y_position: -23808 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 10428 y_position: -23808 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 11522 y_position: -23704 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 11112 y_position: -23808 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 11540 y_position: -23808 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 11601 y_position: -23808 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 11987 y_position: -23808 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 12126 y_position: -23808 font: Amiri -glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12487 y_position: -23808 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 12526 y_position: -23808 font: Amiri -glyph [4453] x_offset: 0 y_offset: 0 x_advance: 645 x_position: 12987 y_position: -23808 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 13632 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14572 y_position: -23808 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 15172 y_position: -23808 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 15486 y_position: -23808 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 15642 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16439 y_position: -23808 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 17039 y_position: -23808 font: Amiri -glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 17680 y_position: -23808 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 17509 y_position: -23808 font: Amiri -glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 18737 y_position: -23808 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 18989 y_position: -23808 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 19610 y_position: -23843 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 19379 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19859 y_position: -23808 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 20459 y_position: -23808 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 21379 y_position: -23808 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 21399 y_position: -23808 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22572 y_position: -23808 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 22656 y_position: -23808 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23042 y_position: -23808 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 23156 y_position: -23808 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23542 y_position: -23808 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 23750 y_position: -23808 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 24042 y_position: -23808 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 24402 y_position: -23808 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 24848 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25788 y_position: -23808 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 26262 y_position: -23808 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 26388 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27209 y_position: -23808 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 27809 y_position: -23808 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28459 y_position: -23808 font: Amiri -glyph [424] x_offset: -129 y_offset: 0 x_advance: 0 x_position: 28800 y_position: -23808 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 28929 y_position: -23808 font: Amiri -glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 29726 y_position: -23808 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 30085 y_position: -23808 font: Amiri -glyph [4752] x_offset: 0 y_offset: 0 x_advance: 443 x_position: 30641 y_position: -23808 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 30935 y_position: -23808 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 31084 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32288 y_position: -23808 font: Amiri -glyph [428] x_offset: -243 y_offset: 0 x_advance: 0 x_position: 32645 y_position: -23808 font: Amiri -glyph [4345] x_offset: 0 y_offset: 0 x_advance: 213 x_position: 32888 y_position: -23808 font: Amiri -glyph [427] x_offset: 372 y_offset: -4 x_advance: 0 x_position: 33473 y_position: -23812 font: Amiri -glyph [2649] x_offset: 0 y_offset: -4 x_advance: 1739 x_position: 33101 y_position: -23812 font: Amiri -glyph [431] x_offset: 58 y_offset: 0 x_advance: 0 x_position: 34898 y_position: -23808 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 34840 y_position: -23808 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 35892 y_position: -23843 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 35661 y_position: -23808 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 36015 y_position: -23808 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 36141 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36962 y_position: -23808 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 37282 y_position: -23808 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 37562 y_position: -23808 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 38137 y_position: -23808 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38339 y_position: -23808 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 38705 y_position: -23808 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 38839 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39636 y_position: -23808 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 40366 y_position: -23808 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 40236 y_position: -23808 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 41730 y_position: -23808 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 41546 y_position: -23808 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 42814 y_position: -23808 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 43026 y_position: -23808 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 43862 y_position: -23843 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 43631 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44111 y_position: -23808 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 45139 y_position: -23808 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 44711 y_position: -23808 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 46508 y_position: -23843 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 46277 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46757 y_position: -23808 font: Amiri -glyph [426] x_offset: 101 y_offset: 0 x_advance: 0 x_position: 47458 y_position: -23808 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 47357 y_position: -23808 font: Amiri -glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 48530 y_position: -23808 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 49009 y_position: -23808 font: Amiri -glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 49445 y_position: -23808 font: Amiri -glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 x_position: 49537 y_position: -23808 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 49947 y_position: -23808 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 600 y_position: -27392 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 1534 y_position: -27392 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 1540 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 2713 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 2927 y_position: -27392 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 3183 y_position: -27392 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 3999 y_position: -27427 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 3768 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4248 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5188 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 5788 y_position: -27392 font: Amiri -glyph [427] x_offset: -185 y_offset: 0 x_advance: 0 x_position: 6049 y_position: -27392 font: Amiri -glyph [4877] x_offset: 0 y_offset: 0 x_advance: 827 x_position: 6234 y_position: -27392 font: Amiri -glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 6875 y_position: -27392 font: Amiri -glyph [4835] x_offset: 0 y_offset: 0 x_advance: 1382 x_position: 7061 y_position: -27392 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 8317 y_position: -27392 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 8443 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9264 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9864 y_position: -27392 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 10820 y_position: -27392 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 10804 y_position: -27392 font: Amiri -glyph [429] x_offset: -495 y_offset: 0 x_advance: 0 x_position: 11421 y_position: -27392 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 11488 y_position: -27392 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 11916 y_position: -27392 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 11927 y_position: -27392 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12363 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 12753 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13693 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14037 y_position: -27392 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14293 y_position: -27392 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 14831 y_position: -27392 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 15001 y_position: -27392 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 15405 y_position: -27392 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 15801 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16406 y_position: -27392 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 17150 y_position: -27392 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 17006 y_position: -27392 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 18460 y_position: -27392 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 18316 y_position: -27392 font: Amiri -glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 19899 y_position: -27288 font: Amiri -glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 19489 y_position: -27392 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 19796 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 20186 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20632 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 21232 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22172 y_position: -27392 font: Amiri -glyph [424] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 22413 y_position: -27392 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 22642 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 23227 y_position: -27392 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 23391 y_position: -27392 font: Amiri -glyph [3053] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 23697 y_position: -27392 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 23736 y_position: -27392 font: Amiri -glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 x_position: 24042 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 24549 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25489 y_position: -27392 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 26045 y_position: -27392 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 26089 y_position: -27392 font: Amiri -glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 27201 y_position: -27392 font: Amiri -glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: 27214 y_position: -27392 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 27648 y_position: -27392 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 27687 y_position: -27392 font: Amiri -glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 27993 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28599 y_position: -27392 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 28929 y_position: -28332 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 29199 y_position: -27392 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 30105 y_position: -27392 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 29981 y_position: -27392 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 31685 y_position: -27288 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 31275 y_position: -27392 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 31477 y_position: -27392 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 32257 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 32617 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33063 y_position: -27392 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 33663 y_position: -27392 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 34597 y_position: -27392 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 34603 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 35776 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 35990 y_position: -27392 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 36246 y_position: -27392 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 36831 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37771 y_position: -27392 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 38245 y_position: -27392 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 38371 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39192 y_position: -27392 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 39792 y_position: -27392 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40442 y_position: -27392 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 40656 y_position: -27392 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 40912 y_position: -27392 font: Amiri -glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 41774 y_position: -27392 font: Amiri -glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 x_position: 41838 y_position: -27392 font: Amiri -glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 x_position: 42294 y_position: -27392 font: Amiri -glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 x_position: 42436 y_position: -27392 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 42639 y_position: -27392 font: Amiri -glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 42966 y_position: -27392 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 43640 y_position: -27392 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 43766 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44587 y_position: -27392 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 45053 y_position: -27392 font: Amiri -glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 45187 y_position: -27392 font: Amiri -glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 x_position: 45384 y_position: -27392 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 46015 y_position: -27392 font: Amiri -glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 46304 y_position: -27392 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 46846 y_position: -27392 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 47002 y_position: -27392 font: Amiri -glyph [1914] x_offset: 333 y_offset: 104 x_advance: 0 x_position: 47954 y_position: -27288 font: Amiri -glyph [430] x_offset: -77 y_offset: 0 x_advance: 0 x_position: 47544 y_position: -27392 font: Amiri -glyph [4909] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 47621 y_position: -27392 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 48621 y_position: -27392 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48910 y_position: -27392 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 474 y_position: -30976 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 600 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1421 y_position: -30976 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 1665 y_position: -30976 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 2021 y_position: -30976 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 2568 y_position: -30976 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 2724 y_position: -30976 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 3668 y_position: -30976 font: Amiri -glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 3524 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4687 y_position: -30976 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 5017 y_position: -31916 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 5287 y_position: -30976 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 6193 y_position: -30976 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 6069 y_position: -30976 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 7773 y_position: -30872 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 7363 y_position: -30976 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 7565 y_position: -30976 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 8345 y_position: -30976 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 8705 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9151 y_position: -30976 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 9751 y_position: -30976 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 10685 y_position: -30976 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 10691 y_position: -30976 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 11864 y_position: -30976 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 11948 y_position: -30976 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12334 y_position: -30976 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 12473 y_position: -30976 font: Amiri -glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12834 y_position: -30976 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 13612 y_position: -30976 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 13334 y_position: -30976 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 14498 y_position: -30976 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 14944 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15884 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16358 y_position: -30976 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 16484 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17305 y_position: -30976 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 17625 y_position: -30976 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 17905 y_position: -30976 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 18282 y_position: -30976 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18682 y_position: -30976 font: Amiri -glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 x_position: 18990 y_position: -30976 font: Amiri -glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 19182 y_position: -30976 font: Amiri -glyph [427] x_offset: 316 y_offset: 0 x_advance: 0 x_position: 19611 y_position: -30976 font: Amiri -glyph [4043] x_offset: 0 y_offset: 0 x_advance: 1656 x_position: 19295 y_position: -30976 font: Amiri -glyph [431] x_offset: -42 y_offset: 0 x_advance: 0 x_position: 20909 y_position: -30976 font: Amiri -glyph [421] x_offset: -100 y_offset: 0 x_advance: 721 x_position: 20851 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 21903 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 21672 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22152 y_position: -30976 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 23180 y_position: -30976 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 22752 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 24549 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 24318 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24798 y_position: -30976 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 25398 y_position: -30976 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 25612 y_position: -30976 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 25868 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 26684 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 26453 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26933 y_position: -30976 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 27533 y_position: -30976 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 28193 y_position: -30976 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 28473 y_position: -30976 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 28850 y_position: -30976 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29250 y_position: -30976 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 29573 y_position: -30976 font: Amiri -glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29750 y_position: -30976 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 29789 y_position: -30976 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 30250 y_position: -30976 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 30959 y_position: -31011 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 30728 y_position: -30976 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31208 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32148 y_position: -30976 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 32622 y_position: -30976 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 32748 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33569 y_position: -30976 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34169 y_position: -30976 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 35125 y_position: -30976 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 35109 y_position: -30976 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 36221 y_position: -30976 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 36374 y_position: -30976 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36668 y_position: -30976 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 36998 y_position: -30976 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 37168 y_position: -30976 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 37965 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38905 y_position: -30976 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 39249 y_position: -30976 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 39505 y_position: -30976 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 40043 y_position: -30976 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 40213 y_position: -30976 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 40617 y_position: -30976 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 41013 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 41618 y_position: -30976 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 41948 y_position: -31916 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 42218 y_position: -30976 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 43124 y_position: -30976 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 43000 y_position: -30976 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 44704 y_position: -30872 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 44294 y_position: -30976 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 44496 y_position: -30976 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 45276 y_position: -30976 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45636 y_position: -30976 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -34560 font: Amiri -glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 476 y_position: -34560 font: Amiri -glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 600 y_position: -34560 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 1322 y_position: -34560 font: Amiri -glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 1356 y_position: -34560 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 2065 y_position: -34560 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 2321 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3247 y_position: -34560 font: Amiri -glyph [422] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 3847 y_position: -34560 font: Amiri -glyph [1914] x_offset: 458 y_offset: 104 x_advance: 0 x_position: 5871 y_position: -34456 font: Amiri -glyph [430] x_offset: 48 y_offset: 0 x_advance: 0 x_position: 5461 y_position: -34560 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 5413 y_position: -34560 font: Amiri -glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 6172 y_position: -34560 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 6378 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 6822 y_position: -34560 font: Amiri -glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 7128 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 7167 y_position: -34560 font: Amiri -glyph [3753] x_offset: 0 y_offset: 0 x_advance: 562 x_position: 7473 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8035 y_position: -34560 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 8635 y_position: -34560 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 9391 y_position: -34560 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9605 y_position: -34560 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 9861 y_position: -34560 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 10677 y_position: -34595 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 10446 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10926 y_position: -34560 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11526 y_position: -34560 font: Amiri -glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 12841 y_position: -34560 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 12466 y_position: -34560 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 14099 y_position: -34560 font: Amiri -glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14276 y_position: -34560 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 14929 y_position: -34456 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 14519 y_position: -34560 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14776 y_position: -34560 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 14915 y_position: -34560 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 15276 y_position: -34560 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 15315 y_position: -34560 font: Amiri -glyph [4466] x_offset: 0 y_offset: 0 x_advance: 511 x_position: 15776 y_position: -34560 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 16287 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17227 y_position: -34560 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 17701 y_position: -34560 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17827 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18648 y_position: -34560 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 18892 y_position: -34560 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 19248 y_position: -34560 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 19795 y_position: -34560 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 19951 y_position: -34560 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 20895 y_position: -34560 font: Amiri -glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 20751 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 21914 y_position: -34560 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 22244 y_position: -35500 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 22514 y_position: -34560 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 23420 y_position: -34560 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 23296 y_position: -34560 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 25000 y_position: -34456 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 24590 y_position: -34560 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 24792 y_position: -34560 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 25572 y_position: -34560 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 25932 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26378 y_position: -34560 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 26978 y_position: -34560 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 27888 y_position: -34560 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 27918 y_position: -34560 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 29012 y_position: -34456 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 28602 y_position: -34560 font: Amiri -glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 29030 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 29171 y_position: -34560 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 29477 y_position: -34560 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 29516 y_position: -34560 font: Amiri -glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 29822 y_position: -34560 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 30476 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31416 y_position: -34560 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 31890 y_position: -34560 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 32016 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32837 y_position: -34560 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 33157 y_position: -34560 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 33437 y_position: -34560 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 33814 y_position: -34560 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 34214 y_position: -34560 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 34502 y_position: -34560 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 34714 y_position: -34560 font: Amiri -glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 x_position: 35283 y_position: -35510 font: Amiri -glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 x_position: 35319 y_position: -34560 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 36133 y_position: -34560 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 36289 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37267 y_position: -34560 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 37867 y_position: -34560 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 38081 y_position: -34560 font: Amiri -glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 38337 y_position: -34560 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 39153 y_position: -34595 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 38922 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39402 y_position: -34560 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 40002 y_position: -34560 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 40662 y_position: -34560 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 40942 y_position: -34560 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 41319 y_position: -34560 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41719 y_position: -34560 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 42042 y_position: -34560 font: Amiri -glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42219 y_position: -34560 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 42333 y_position: -34560 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42719 y_position: -34560 font: Amiri -glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 x_position: 42858 y_position: -34560 font: Amiri -glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 43219 y_position: -34560 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 43997 y_position: -34560 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 43719 y_position: -34560 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 44883 y_position: -34560 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 45329 y_position: -34560 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -38144 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 600 y_position: -38144 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 1510 y_position: -38144 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 1540 y_position: -38144 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 2634 y_position: -38040 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 2224 y_position: -38144 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 2652 y_position: -38144 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 2663 y_position: -38144 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 3099 y_position: -38144 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 3489 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4429 y_position: -38144 font: Amiri -glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 5132 y_position: -38144 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 5029 y_position: -38144 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 5598 y_position: -38144 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 5994 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6599 y_position: -38144 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 7199 y_position: -38144 font: Amiri -glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 x_position: 7717 y_position: -38244 font: Amiri -glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 x_position: 7651 y_position: -38144 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 8585 y_position: -38144 font: Amiri -glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 8971 y_position: -38144 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 9165 y_position: -38144 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 9471 y_position: -38144 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 9849 y_position: -38144 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 10051 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 10479 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10925 y_position: -38144 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 11525 y_position: -38144 font: Amiri -glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 x_position: 12216 y_position: -38284 font: Amiri -glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 x_position: 12500 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 12861 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 12987 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13808 y_position: -38144 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 14408 y_position: -38144 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 15294 y_position: -38144 font: Amiri -glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 15164 y_position: -38144 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 16519 y_position: -38144 font: Amiri -glyph [428] x_offset: 60 y_offset: 0 x_advance: 0 x_position: 17287 y_position: -38144 font: Amiri -glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 x_position: 17227 y_position: -38144 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 18387 y_position: -38144 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 18657 y_position: -38144 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 19073 y_position: -38144 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 19365 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 19725 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20171 y_position: -38144 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 20771 y_position: -38144 font: Amiri -glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 x_position: 21412 y_position: -38144 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 21241 y_position: -38144 font: Amiri -glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 22469 y_position: -38144 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 22721 y_position: -38144 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 23342 y_position: -38179 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 23111 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23591 y_position: -38144 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 23935 y_position: -38144 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 24191 y_position: -38144 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 24629 y_position: -38144 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 24899 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 25699 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 25825 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26646 y_position: -38144 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 27376 y_position: -38144 font: Amiri -glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 x_position: 27246 y_position: -38144 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 28601 y_position: -38144 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 29215 y_position: -38144 font: Amiri -glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 29071 y_position: -38144 font: Amiri -glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 30551 y_position: -38144 font: Amiri -glyph [1918] x_offset: 723 y_offset: -345 x_advance: 0 x_position: 31664 y_position: -38489 font: Amiri -glyph [3006] x_offset: 170 y_offset: 0 x_advance: 868 x_position: 31111 y_position: -38144 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 31837 y_position: -38144 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 31809 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 32428 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32874 y_position: -38144 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 33474 y_position: -38144 font: Amiri -glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 34370 y_position: -38144 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 34414 y_position: -38144 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 35526 y_position: -38144 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 35679 y_position: -38144 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 35973 y_position: -38144 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 36296 y_position: -38144 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36473 y_position: -38144 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 37126 y_position: -38040 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 36716 y_position: -38144 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 36973 y_position: -38144 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 37473 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37833 y_position: -38144 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 38279 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39219 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 39693 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 39819 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40640 y_position: -38144 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 41240 y_position: -38144 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 41720 y_position: -38144 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 41890 y_position: -38144 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 42460 y_position: -38144 font: Amiri -glyph [2363] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 42816 y_position: -38144 font: Amiri -glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 43277 y_position: -38144 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 43519 y_position: -38144 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 43488 y_position: -38144 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 43924 y_position: -38144 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 44188 y_position: -38144 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 44314 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45135 y_position: -38144 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 45455 y_position: -38144 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 45735 y_position: -38144 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 46076 y_position: -38144 font: Amiri -glyph [2096] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 46512 y_position: -38144 font: Amiri -glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 x_position: 46902 y_position: -38144 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 47381 y_position: -38144 font: Amiri -glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 x_position: 47817 y_position: -38144 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 48472 y_position: -38040 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 48062 y_position: -38144 font: Amiri -glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 48319 y_position: -38144 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 48819 y_position: -38144 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 49179 y_position: -38144 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 600 y_position: -41728 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 664 y_position: -41728 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 1070 y_position: -41728 font: Amiri -glyph [1914] x_offset: 195 y_offset: 104 x_advance: 0 x_position: 1621 y_position: -41624 font: Amiri -glyph [430] x_offset: -215 y_offset: 0 x_advance: 0 x_position: 1211 y_position: -41728 font: Amiri -glyph [3437] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 1426 y_position: -41728 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 2299 y_position: -41873 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 1969 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2415 y_position: -41728 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 2859 y_position: -41728 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 3015 y_position: -41728 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 3800 y_position: -41728 font: Amiri -glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 3834 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 4757 y_position: -41728 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 5411 y_position: -41728 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5227 y_position: -41728 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 6401 y_position: -41728 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 6707 y_position: -41728 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 7085 y_position: -41728 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 7287 y_position: -41728 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 7715 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8161 y_position: -41728 font: Amiri -glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 x_position: 9294 y_position: -41624 font: Amiri -glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 x_position: 8884 y_position: -41728 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 8761 y_position: -41728 font: Amiri -glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 10149 y_position: -41784 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 9934 y_position: -41728 font: Amiri -glyph [429] x_offset: -294 y_offset: -60 x_advance: 0 x_position: 10338 y_position: -41788 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 10632 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11251 y_position: -41728 font: Amiri -glyph [5976] x_offset: -197 y_offset: 304 x_advance: 0 x_position: 11654 y_position: -41424 font: Amiri -glyph [430] x_offset: -7 y_offset: 0 x_advance: 0 x_position: 11844 y_position: -41728 font: Amiri -glyph [397] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 11851 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 12774 y_position: -41728 font: Amiri -glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 13338 y_position: -41728 font: Amiri -glyph [2399] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 13244 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 14408 y_position: -41728 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 14752 y_position: -41728 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 15008 y_position: -41728 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 15446 y_position: -41728 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 15716 y_position: -41728 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16516 y_position: -41728 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 16642 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17463 y_position: -41728 font: Amiri -glyph [425] x_offset: -110 y_offset: 0 x_advance: 0 x_position: 17953 y_position: -41728 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 18063 y_position: -41728 font: Amiri -glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 18801 y_position: -41728 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 18882 y_position: -41728 font: Amiri -glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 x_position: 20215 y_position: -41728 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 19847 y_position: -41728 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 21171 y_position: -41728 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 21327 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22124 y_position: -41728 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 22724 y_position: -41728 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 23644 y_position: -41728 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 23664 y_position: -41728 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 24837 y_position: -41728 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 24921 y_position: -41728 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 25307 y_position: -41728 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 25630 y_position: -41728 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 25807 y_position: -41728 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 26013 y_position: -41728 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 26050 y_position: -41728 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 26307 y_position: -41728 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 26807 y_position: -41728 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 27167 y_position: -41728 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 27613 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28553 y_position: -41728 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 29027 y_position: -41728 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 29153 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29974 y_position: -41728 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 30574 y_position: -41728 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 31194 y_position: -41728 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 31224 y_position: -41728 font: Amiri -glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 x_position: 32318 y_position: -41624 font: Amiri -glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 x_position: 31908 y_position: -41728 font: Amiri -glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 32336 y_position: -41728 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 32477 y_position: -41728 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 32783 y_position: -41728 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 32822 y_position: -41728 font: Amiri -glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 33128 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33782 y_position: -41728 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 34810 y_position: -41728 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 34382 y_position: -41728 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 36179 y_position: -41763 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 35948 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 36428 y_position: -41728 font: Amiri -glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 36984 y_position: -41728 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 37028 y_position: -41728 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 37767 y_position: -41728 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 38140 y_position: -41728 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 38201 y_position: -41728 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 38587 y_position: -41728 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 38885 y_position: -41728 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 39087 y_position: -41728 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 39431 y_position: -41728 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 39587 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40565 y_position: -41728 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 41165 y_position: -41728 font: Amiri -glyph [429] x_offset: -92 y_offset: 0 x_advance: 0 x_position: 42639 y_position: -41728 font: Amiri -glyph [4908] x_offset: 0 y_offset: 0 x_advance: 1000 x_position: 42731 y_position: -41728 font: Amiri -glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 x_position: 43297 y_position: -41728 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 43731 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44020 y_position: -41728 font: Amiri -glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 x_position: 44750 y_position: -41728 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 44620 y_position: -41728 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 45728 y_position: -41728 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 45930 y_position: -41728 font: Amiri -glyph [1916] x_offset: 723 y_offset: 184 x_advance: 0 x_position: 47153 y_position: -41544 font: Amiri -glyph [430] x_offset: 313 y_offset: 0 x_advance: 0 x_position: 46743 y_position: -41728 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 46430 y_position: -41728 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 47910 y_position: -41728 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48270 y_position: -41728 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -45312 font: Amiri -glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 600 y_position: -45312 font: Amiri -glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 1681 y_position: -45208 font: Amiri -glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 1271 y_position: -45312 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 1298 y_position: -45312 font: Amiri -glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 x_position: 2247 y_position: -45457 font: Amiri -glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 1917 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 2363 y_position: -45312 font: Amiri -glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 x_position: 2899 y_position: -45312 font: Amiri -glyph [4185] x_offset: 0 y_offset: 0 x_advance: 1134 x_position: 2963 y_position: -45312 font: Amiri -glyph [431] x_offset: -147 y_offset: 0 x_advance: 0 x_position: 3950 y_position: -45312 font: Amiri -glyph [4421] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 4097 y_position: -45312 font: Amiri -glyph [427] x_offset: 3 y_offset: 0 x_advance: 0 x_position: 4880 y_position: -45312 font: Amiri -glyph [2298] x_offset: 0 y_offset: 0 x_advance: 1206 x_position: 4877 y_position: -45312 font: Amiri -glyph [431] x_offset: 88 y_offset: 0 x_advance: 0 x_position: 6171 y_position: -45312 font: Amiri -glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 x_position: 6083 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 6463 y_position: -45312 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6823 y_position: -45312 font: Amiri -glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 7064 y_position: -45312 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 7293 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7878 y_position: -45312 font: Amiri -glyph [431] x_offset: -92 y_offset: -620 x_advance: 0 x_position: 8386 y_position: -45932 font: Amiri -glyph [2452] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 8478 y_position: -45312 font: Amiri -glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 9484 y_position: -45312 font: Amiri -glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 9678 y_position: -45312 font: Amiri -glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 9945 y_position: -45312 font: Amiri -glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 9791 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10995 y_position: -45312 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 11623 y_position: -45312 font: Amiri -glyph [5985] x_offset: 0 y_offset: 0 x_advance: 990 x_position: 11595 y_position: -45312 font: Amiri -glyph [427] x_offset: -356 y_offset: 70 x_advance: 0 x_position: 12229 y_position: -45242 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 12585 y_position: -45312 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 12947 y_position: -45312 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 13073 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13894 y_position: -45312 font: Amiri -glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 x_position: 15038 y_position: -45312 font: Amiri -glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 14494 y_position: -45312 font: Amiri -glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 16509 y_position: -45312 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 16745 y_position: -45312 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 16894 y_position: -45312 font: Amiri -glyph [431] x_offset: -372 y_offset: 0 x_advance: 0 x_position: 17726 y_position: -45312 font: Amiri -glyph [2439] x_offset: -300 y_offset: 0 x_advance: 408 x_position: 17798 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 18659 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 18249 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 18506 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 19006 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 19366 y_position: -45312 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 19686 y_position: -45312 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 19812 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20633 y_position: -45312 font: Amiri -glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 21207 y_position: -45312 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 21233 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 22052 y_position: -45312 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 22142 y_position: -45312 font: Amiri -glyph [3385] x_offset: 0 y_offset: 0 x_advance: 565 x_position: 22498 y_position: -45312 font: Amiri -glyph [431] x_offset: -82 y_offset: 0 x_advance: 0 x_position: 22981 y_position: -45312 font: Amiri -glyph [3358] x_offset: 0 y_offset: 0 x_advance: 792 x_position: 23063 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 24008 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 23598 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23855 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 24355 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 24715 y_position: -45312 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 25035 y_position: -45312 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 25161 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25982 y_position: -45312 font: Amiri -glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 26556 y_position: -45312 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 26582 y_position: -45312 font: Amiri -glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 27401 y_position: -45312 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 27637 y_position: -45312 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 27786 y_position: -45312 font: Amiri -glyph [431] x_offset: -297 y_offset: 0 x_advance: 0 x_position: 28693 y_position: -45312 font: Amiri -glyph [2154] x_offset: -400 y_offset: 0 x_advance: 565 x_position: 28590 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 29708 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 29298 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 29555 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30055 y_position: -45312 font: Amiri -glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 x_position: 30415 y_position: -45312 font: Amiri -glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 x_position: 30651 y_position: -45312 font: Amiri -glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 30800 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32004 y_position: -45312 font: Amiri -glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 32500 y_position: -44582 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 32604 y_position: -45312 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 33386 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 34009 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 33599 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 33856 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 34356 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 34716 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35162 y_position: -45312 font: Amiri -glyph [429] x_offset: 266 y_offset: 620 x_advance: 0 x_position: 36028 y_position: -44692 font: Amiri -glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 x_position: 35762 y_position: -45312 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 36870 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 37072 y_position: -45312 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 37466 y_position: -45312 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 37572 y_position: -45312 font: Amiri -glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 x_position: 37983 y_position: -45312 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 38347 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 38737 y_position: -45312 font: Amiri -glyph [429] x_offset: 46 y_offset: 0 x_advance: 0 x_position: 39383 y_position: -45312 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 39337 y_position: -45312 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40573 y_position: -45312 font: Amiri -glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 40837 y_position: -45312 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 41043 y_position: -45312 font: Amiri -glyph [431] x_offset: 78 y_offset: 0 x_advance: 0 x_position: 41871 y_position: -45312 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 41793 y_position: -45312 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 42721 y_position: -45208 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 42311 y_position: -45312 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 42568 y_position: -45312 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 43068 y_position: -45312 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 43428 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43874 y_position: -45312 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 44474 y_position: -45312 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 44879 y_position: -45312 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 45435 y_position: -45312 font: Amiri -glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 x_position: 45509 y_position: -45312 font: Amiri -glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 45836 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46636 y_position: -45312 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 46966 y_position: -46252 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 47236 y_position: -45312 font: Amiri -glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 48018 y_position: -45312 font: Amiri -glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 x_position: 49024 y_position: -45312 font: Amiri -glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 49218 y_position: -45312 font: Amiri -glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 49485 y_position: -45312 font: Amiri -glyph [4271] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 49331 y_position: -45312 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -48896 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 600 y_position: -48896 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 1250 y_position: -48896 font: Amiri -glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 x_position: 2206 y_position: -48896 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 2190 y_position: -48896 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 3302 y_position: -48896 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 3455 y_position: -48896 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 3749 y_position: -48896 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 4079 y_position: -48896 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 4249 y_position: -48896 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5046 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5986 y_position: -48896 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 6330 y_position: -48896 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 6586 y_position: -48896 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 7124 y_position: -48896 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 7294 y_position: -48896 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 7698 y_position: -48896 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 8094 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8699 y_position: -48896 font: Amiri -glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 8929 y_position: -48896 font: Amiri -glyph [4898] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 9299 y_position: -48896 font: Amiri -glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 9564 y_position: -48896 font: Amiri -glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 10127 y_position: -48896 font: Amiri -glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 x_position: 10695 y_position: -48896 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 10511 y_position: -48896 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 11595 y_position: -48896 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 11991 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12596 y_position: -48896 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 13624 y_position: -48896 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 13196 y_position: -48896 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 14993 y_position: -48931 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 14762 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15242 y_position: -48896 font: Amiri -glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 x_position: 15718 y_position: -48896 font: Amiri -glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 15842 y_position: -48896 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 16564 y_position: -48896 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 16598 y_position: -48896 font: Amiri -glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 x_position: 17507 y_position: -48896 font: Amiri -glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 x_position: 17563 y_position: -48896 font: Amiri -glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 x_position: 18782 y_position: -48896 font: Amiri -glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 x_position: 18728 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 20071 y_position: -48896 font: Amiri -glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 x_position: 20979 y_position: -48896 font: Amiri -glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 20671 y_position: -48896 font: Amiri -glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 x_position: 21797 y_position: -48896 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 21931 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22728 y_position: -48896 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 23048 y_position: -48896 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 23328 y_position: -48896 font: Amiri -glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 x_position: 24199 y_position: -48896 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 24105 y_position: -48896 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 25500 y_position: -48931 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 25269 y_position: -48896 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 25593 y_position: -48896 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 25749 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 26568 y_position: -48896 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 27168 y_position: -48896 font: Amiri -glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 x_position: 28102 y_position: -48896 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 28108 y_position: -48896 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 29281 y_position: -48896 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 29495 y_position: -48896 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 29751 y_position: -48896 font: Amiri -glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 30637 y_position: -48931 font: Amiri -glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 30336 y_position: -48896 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 30833 y_position: -48896 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 31229 y_position: -48896 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 31834 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32774 y_position: -48896 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 33094 y_position: -48896 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 33374 y_position: -48896 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 33715 y_position: -48896 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 34151 y_position: -48896 font: Amiri -glyph [427] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 34521 y_position: -48896 font: Amiri -glyph [4185] x_offset: 170 y_offset: 0 x_advance: 1304 x_position: 34711 y_position: -48896 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 35589 y_position: -48896 font: Amiri -glyph [4432] x_offset: 0 y_offset: 0 x_advance: 1092 x_position: 35845 y_position: -48896 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 36811 y_position: -48896 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 36937 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37758 y_position: -48896 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 38358 y_position: -48896 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 38738 y_position: -49836 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 39008 y_position: -48896 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 39790 y_position: -48896 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 40154 y_position: -48896 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 40260 y_position: -48896 font: Amiri -glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 40793 y_position: -48896 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 41035 y_position: -48896 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 41146 y_position: -48896 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 41183 y_position: -48896 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 41440 y_position: -48896 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 41940 y_position: -48896 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 42300 y_position: -48896 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 42620 y_position: -48896 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 42746 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 43567 y_position: -48896 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 44167 y_position: -48896 font: Amiri -glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 x_position: 45087 y_position: -48896 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 45107 y_position: -48896 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 46280 y_position: -48896 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 46364 y_position: -48896 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 46750 y_position: -48896 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 47073 y_position: -48896 font: Amiri -glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47250 y_position: -48896 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 47456 y_position: -48896 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 47493 y_position: -48896 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 47750 y_position: -48896 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 48250 y_position: -48896 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 48610 y_position: -48896 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 49056 y_position: -48896 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -52480 font: Amiri -glyph [425] x_offset: -310 y_offset: 0 x_advance: 0 x_position: 290 y_position: -52480 font: Amiri -glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 600 y_position: -52480 font: Amiri -glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 x_position: 865 y_position: -52480 font: Amiri -glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 x_position: 1428 y_position: -52480 font: Amiri -glyph [429] x_offset: -113 y_offset: 0 x_advance: 0 x_position: 1699 y_position: -52480 font: Amiri -glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 1812 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 2612 y_position: -52480 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 2686 y_position: -52480 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 3082 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3687 y_position: -52480 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 4131 y_position: -52480 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 4287 y_position: -52480 font: Amiri -glyph [429] x_offset: 109 y_offset: 0 x_advance: 0 x_position: 5371 y_position: -52480 font: Amiri -glyph [5116] x_offset: 0 y_offset: 0 x_advance: 1132 x_position: 5262 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6268 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6394 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7215 y_position: -52480 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 7815 y_position: -52480 font: Amiri -glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 8535 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 8755 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 9226 y_position: -52480 font: Amiri -glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 9532 y_position: -52480 font: Amiri -glyph [429] x_offset: -384 y_offset: 0 x_advance: 0 x_position: 9493 y_position: -52480 font: Amiri -glyph [3742] x_offset: 0 y_offset: 0 x_advance: 620 x_position: 9877 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 10497 y_position: -52480 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 10711 y_position: -52480 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 10967 y_position: -52480 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11552 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12492 y_position: -52480 font: Amiri -glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 x_position: 12872 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 13092 y_position: -52480 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 13763 y_position: -52480 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 13869 y_position: -52480 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14644 y_position: -52480 font: Amiri -glyph [429] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 14800 y_position: -52480 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 15144 y_position: -52480 font: Amiri -glyph [431] x_offset: 128 y_offset: 0 x_advance: 0 x_position: 15677 y_position: -52480 font: Amiri -glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 15549 y_position: -52480 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 16243 y_position: -52480 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 16679 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 16943 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 17069 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17890 y_position: -52480 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 18490 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 19140 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 19586 y_position: -52480 font: Amiri -glyph [428] x_offset: -167 y_offset: 0 x_advance: 0 x_position: 20240 y_position: -52480 font: Amiri -glyph [4014] x_offset: 0 y_offset: 0 x_advance: 613 x_position: 20407 y_position: -52480 font: Amiri -glyph [427] x_offset: -87 y_offset: 0 x_advance: 0 x_position: 20933 y_position: -52480 font: Amiri -glyph [3989] x_offset: 0 y_offset: 0 x_advance: 1187 x_position: 21020 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 22207 y_position: -52480 font: Amiri -glyph [427] x_offset: -344 y_offset: 0 x_advance: 0 x_position: 22333 y_position: -52480 font: Amiri -glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 22677 y_position: -52480 font: Amiri -glyph [427] x_offset: -13 y_offset: 0 x_advance: 0 x_position: 22966 y_position: -52480 font: Amiri -glyph [5280] x_offset: 0 y_offset: 0 x_advance: 787 x_position: 22979 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23766 y_position: -52480 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 24196 y_position: -52480 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 24366 y_position: -52480 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 25220 y_position: -52480 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 25292 y_position: -52480 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 25894 y_position: -52480 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 26000 y_position: -52480 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 26483 y_position: -52480 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 26775 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 27135 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27581 y_position: -52480 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 28181 y_position: -52480 font: Amiri -glyph [427] x_offset: 104 y_offset: 0 x_advance: 0 x_position: 29225 y_position: -52480 font: Amiri -glyph [3217] x_offset: 0 y_offset: 0 x_advance: 1152 x_position: 29121 y_position: -52480 font: Amiri -glyph [427] x_offset: -555 y_offset: 0 x_advance: 0 x_position: 29718 y_position: -52480 font: Amiri -glyph [3189] x_offset: 0 y_offset: 0 x_advance: 299 x_position: 30273 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 30572 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 30736 y_position: -52480 font: Amiri -glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 31042 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 31081 y_position: -52480 font: Amiri -glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 x_position: 31387 y_position: -52480 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 32041 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32981 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 33455 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 33581 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34402 y_position: -52480 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 34722 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 35002 y_position: -52480 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 35383 y_position: -52480 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 35779 y_position: -52480 font: Amiri -glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 x_position: 36228 y_position: -52480 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 36384 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 37203 y_position: -52480 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 37567 y_position: -52480 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 37673 y_position: -52480 font: Amiri -glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 38128 y_position: -52480 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 38448 y_position: -52480 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 38826 y_position: -52480 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 39028 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 39456 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39902 y_position: -52480 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 40502 y_position: -52480 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 41162 y_position: -52480 font: Amiri -glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 41442 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 41913 y_position: -52480 font: Amiri -glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 42219 y_position: -52480 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 42258 y_position: -52480 font: Amiri -glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 x_position: 42564 y_position: -52480 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 43170 y_position: -52480 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 43254 y_position: -52480 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 43640 y_position: -52480 font: Amiri -glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 x_position: 43820 y_position: -52480 font: Amiri -glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 x_position: 44140 y_position: -52480 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 44518 y_position: -52480 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 44720 y_position: -52480 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 45148 y_position: -52480 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 45594 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46534 y_position: -52480 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 47008 y_position: -52480 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 47134 y_position: -52480 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -56064 font: Amiri -glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 x_position: 574 y_position: -56064 font: Amiri -glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 x_position: 600 y_position: -56064 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1419 y_position: -56064 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 1783 y_position: -56064 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 1889 y_position: -56064 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 2462 y_position: -56064 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 2664 y_position: -56064 font: Amiri -glyph [429] x_offset: -534 y_offset: 0 x_advance: 0 x_position: 2630 y_position: -56064 font: Amiri -glyph [2999] x_offset: 0 y_offset: 0 x_advance: 303 x_position: 3164 y_position: -56064 font: Amiri -glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 3265 y_position: -56064 font: Amiri -glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 x_position: 3467 y_position: -56064 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 3895 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4341 y_position: -56064 font: Amiri -glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 4571 y_position: -56064 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 4941 y_position: -56064 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 5288 y_position: -56064 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 5644 y_position: -56064 font: Amiri -glyph [431] x_offset: 140 y_offset: 0 x_advance: 0 x_position: 6228 y_position: -56064 font: Amiri -glyph [4974] x_offset: 0 y_offset: 0 x_advance: 1054 x_position: 6088 y_position: -56064 font: Amiri -glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 7357 y_position: -56120 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 7142 y_position: -56064 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 7868 y_position: -56064 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 7840 y_position: -56064 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 8459 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8905 y_position: -56064 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9249 y_position: -56064 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 9505 y_position: -56064 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 9943 y_position: -56064 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 10213 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11139 y_position: -56064 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 11739 y_position: -56064 font: Amiri -glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 x_position: 12757 y_position: -56064 font: Amiri -glyph [392] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 12191 y_position: -56064 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 14016 y_position: -56064 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14088 y_position: -56064 font: Amiri -glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 14590 y_position: -56064 font: Amiri -glyph [2042] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 14796 y_position: -56064 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 15254 y_position: -56064 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 15546 y_position: -56064 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15906 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16352 y_position: -56064 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 16952 y_position: -56064 font: Amiri -glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 x_position: 17210 y_position: -56064 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 17660 y_position: -56064 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 18281 y_position: -56099 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 18050 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 18530 y_position: -56064 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 19174 y_position: -56064 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 19130 y_position: -56064 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 20366 y_position: -56064 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 20440 y_position: -56064 font: Amiri -glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 20836 y_position: -56064 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 21315 y_position: -56064 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 21441 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22262 y_position: -56064 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 22862 y_position: -56064 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 23648 y_position: -56064 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 23618 y_position: -56064 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 24522 y_position: -56064 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 24628 y_position: -56064 font: Amiri -glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 x_position: 25151 y_position: -56064 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 25403 y_position: -56064 font: Amiri -glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 26008 y_position: -56120 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 25793 y_position: -56064 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 26519 y_position: -56064 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 26491 y_position: -56064 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 27110 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27556 y_position: -56064 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 27900 y_position: -56064 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 28156 y_position: -56064 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 28594 y_position: -56064 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 28864 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29790 y_position: -56064 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 30390 y_position: -56064 font: Amiri -glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 31286 y_position: -56064 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 31330 y_position: -56064 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 32069 y_position: -56064 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 32442 y_position: -56064 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 32503 y_position: -56064 font: Amiri -glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 32889 y_position: -56064 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 33097 y_position: -56064 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 33389 y_position: -56064 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 33749 y_position: -56064 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 34195 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 35135 y_position: -56064 font: Amiri -glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 x_position: 36110 y_position: -56064 font: Amiri -glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 x_position: 35735 y_position: -56064 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37632 y_position: -56064 font: Amiri -glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 x_position: 38042 y_position: -57014 font: Amiri -glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 x_position: 38078 y_position: -56064 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 38878 y_position: -56064 font: Amiri -glyph [2035] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 39048 y_position: -56064 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 39900 y_position: -56064 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 40026 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40847 y_position: -56064 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 41447 y_position: -56064 font: Amiri -glyph [426] x_offset: -99 y_offset: 0 x_advance: 0 x_position: 41998 y_position: -56064 font: Amiri -glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 x_position: 42097 y_position: -56064 font: Amiri -glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 x_position: 42294 y_position: -56064 font: Amiri -glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 x_position: 42925 y_position: -56064 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 43180 y_position: -56064 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 43214 y_position: -56064 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 43900 y_position: -56064 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 43922 y_position: -56064 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 44566 y_position: -56064 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 44672 y_position: -56064 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 45277 y_position: -56064 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 45447 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 46244 y_position: -56064 font: Amiri -glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 46844 y_position: -56064 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 47352 y_position: -56064 font: Amiri -glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 47708 y_position: -56064 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 48316 y_position: -56064 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 48338 y_position: -56064 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 48682 y_position: -56064 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 49088 y_position: -56064 font: Amiri -glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 49202 y_position: -56064 font: Amiri -glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 49444 y_position: -56064 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -59648 font: Amiri -glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 x_position: 1044 y_position: -59648 font: Amiri -glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 x_position: 600 y_position: -59648 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 2418 y_position: -59648 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 2140 y_position: -59648 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 3178 y_position: -59648 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 3304 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4125 y_position: -59648 font: Amiri -glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 x_position: 4725 y_position: -59648 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 5233 y_position: -59648 font: Amiri -glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 x_position: 5589 y_position: -59648 font: Amiri -glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 x_position: 6197 y_position: -59648 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 6219 y_position: -59648 font: Amiri -glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 x_position: 6563 y_position: -59648 font: Amiri -glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 6969 y_position: -59648 font: Amiri -glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 7083 y_position: -59648 font: Amiri -glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 x_position: 7325 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7868 y_position: -59648 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 8468 y_position: -59648 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 9378 y_position: -59648 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 9408 y_position: -59648 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 10147 y_position: -59648 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 10520 y_position: -59648 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 10531 y_position: -59648 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 10967 y_position: -59648 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11357 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12297 y_position: -59648 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 12771 y_position: -59648 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 12897 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13718 y_position: -59648 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 14318 y_position: -59648 font: Amiri -glyph [429] x_offset: 166 y_offset: 0 x_advance: 0 x_position: 15134 y_position: -59648 font: Amiri -glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 x_position: 14968 y_position: -59648 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 16375 y_position: -59648 font: Amiri -glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 x_position: 16465 y_position: -59648 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 16821 y_position: -59648 font: Amiri -glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 17320 y_position: -59648 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 17524 y_position: -59648 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 18007 y_position: -59648 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 18299 y_position: -59648 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 18659 y_position: -59648 font: Amiri -glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 18900 y_position: -59648 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 19129 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19714 y_position: -59648 font: Amiri -glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 x_position: 19944 y_position: -59648 font: Amiri -glyph [2646] x_offset: 0 y_offset: 0 x_advance: 457 x_position: 20314 y_position: -59648 font: Amiri -glyph [429] x_offset: -84 y_offset: 0 x_advance: 0 x_position: 20687 y_position: -59648 font: Amiri -glyph [2631] x_offset: 0 y_offset: 0 x_advance: 692 x_position: 20771 y_position: -59648 font: Amiri -glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 x_position: 21271 y_position: -59648 font: Amiri -glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 x_position: 21463 y_position: -59648 font: Amiri -glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 x_position: 21730 y_position: -59648 font: Amiri -glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 x_position: 21576 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 22780 y_position: -59648 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 23100 y_position: -59648 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 23380 y_position: -59648 font: Amiri -glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 x_position: 24260 y_position: -59544 font: Amiri -glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 x_position: 23850 y_position: -59648 font: Amiri -glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 24157 y_position: -59648 font: Amiri -glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 x_position: 24797 y_position: -59823 font: Amiri -glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 24547 y_position: -59648 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 24621 y_position: -59648 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 25017 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 25622 y_position: -59648 font: Amiri -glyph [428] x_offset: -390 y_offset: 0 x_advance: 0 x_position: 25832 y_position: -59648 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 26222 y_position: -59648 font: Amiri -glyph [429] x_offset: 69 y_offset: 0 x_advance: 0 x_position: 26707 y_position: -59648 font: Amiri -glyph [5184] x_offset: 0 y_offset: 0 x_advance: 801 x_position: 26638 y_position: -59648 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 27439 y_position: -59648 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 27353 y_position: -59648 font: Amiri -glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 27909 y_position: -59648 font: Amiri -glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 28196 y_position: -59648 font: Amiri -glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 28058 y_position: -59648 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 29204 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 29650 y_position: -59648 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 29994 y_position: -59648 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 30250 y_position: -59648 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 30788 y_position: -59648 font: Amiri -glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 x_position: 30958 y_position: -59648 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 31362 y_position: -59648 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 31758 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 32363 y_position: -59648 font: Amiri -glyph [428] x_offset: -150 y_offset: 0 x_advance: 0 x_position: 32813 y_position: -59648 font: Amiri -glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 32963 y_position: -59648 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 33630 y_position: -59648 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 33886 y_position: -59648 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 34872 y_position: -59648 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 34594 y_position: -59648 font: Amiri -glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 x_position: 35973 y_position: -59704 font: Amiri -glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 x_position: 35758 y_position: -59648 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 36484 y_position: -59648 font: Amiri -glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 x_position: 36456 y_position: -59648 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37075 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37521 y_position: -59648 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 38121 y_position: -59648 font: Amiri -glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 x_position: 38974 y_position: -59544 font: Amiri -glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 x_position: 38564 y_position: -59648 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 38591 y_position: -59648 font: Amiri -glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 x_position: 39689 y_position: -59683 font: Amiri -glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 x_position: 39388 y_position: -59648 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 39885 y_position: -59648 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 40281 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40886 y_position: -59648 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 41486 y_position: -59648 font: Amiri -glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 x_position: 42198 y_position: -59648 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 42242 y_position: -59648 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 42981 y_position: -59648 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 43354 y_position: -59648 font: Amiri -glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 x_position: 43375 y_position: -59648 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 43801 y_position: -59648 font: Amiri -glyph [431] x_offset: -2 y_offset: 0 x_advance: 0 x_position: 44204 y_position: -59648 font: Amiri -glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 44206 y_position: -59648 font: Amiri -glyph [429] x_offset: -164 y_offset: 0 x_advance: 0 x_position: 45284 y_position: -59648 font: Amiri -glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 45172 y_position: -59648 font: Amiri -glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 45448 y_position: -59648 font: Amiri -glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 46048 y_position: -59648 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 46492 y_position: -59648 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 46812 y_position: -59648 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 46938 y_position: -59648 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -63232 font: Amiri -glyph [425] x_offset: 790 y_offset: 0 x_advance: 0 x_position: 1390 y_position: -63232 font: Amiri -glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 x_position: 600 y_position: -63232 font: Amiri -glyph [431] x_offset: -172 y_offset: 0 x_advance: 0 x_position: 2443 y_position: -63232 font: Amiri -glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 x_position: 2615 y_position: -63232 font: Amiri -glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 x_position: 3462 y_position: -63232 font: Amiri -glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 x_position: 3318 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4481 y_position: -63232 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 4825 y_position: -63232 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 5081 y_position: -63232 font: Amiri -glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 x_position: 5519 y_position: -63232 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 5789 y_position: -63232 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 6589 y_position: -63232 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 6715 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7536 y_position: -63232 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 8136 y_position: -63232 font: Amiri -glyph [429] x_offset: 466 y_offset: 0 x_advance: 0 x_position: 9358 y_position: -63232 font: Amiri -glyph [2165] x_offset: 0 y_offset: 0 x_advance: 2060 x_position: 8892 y_position: -63232 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 10952 y_position: -63232 font: Amiri -glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 x_position: 11248 y_position: -63232 font: Amiri -glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 11452 y_position: -63232 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 12505 y_position: -63232 font: Amiri -glyph [2232] x_offset: 0 y_offset: 0 x_advance: 1250 x_position: 12227 y_position: -63232 font: Amiri -glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 x_position: 13630 y_position: -63128 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 13220 y_position: -63232 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 13477 y_position: -63232 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 13977 y_position: -63232 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 14337 y_position: -63232 font: Amiri -glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 x_position: 14578 y_position: -63232 font: Amiri -glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 x_position: 14807 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15392 y_position: -63232 font: Amiri -glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 x_position: 16108 y_position: -63362 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 15992 y_position: -63232 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 16846 y_position: -63232 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 16918 y_position: -63232 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 17520 y_position: -63232 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 17626 y_position: -63232 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 18109 y_position: -63232 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 18401 y_position: -63232 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 18761 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19207 y_position: -63232 font: Amiri -glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 x_position: 20251 y_position: -63232 font: Amiri -glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 x_position: 19807 y_position: -63232 font: Amiri -glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 x_position: 21625 y_position: -63232 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 21347 y_position: -63232 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 22385 y_position: -63232 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 22511 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 23332 y_position: -63232 font: Amiri -glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 x_position: 24876 y_position: -63232 font: Amiri -glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 x_position: 23932 y_position: -63232 font: Amiri -glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 x_position: 25716 y_position: -63232 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 26142 y_position: -63232 font: Amiri -glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 26361 y_position: -63232 font: Amiri -glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 26547 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 27789 y_position: -63232 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 28419 y_position: -63232 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 28389 y_position: -63232 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 29625 y_position: -63232 font: Amiri -glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 30213 y_position: -63232 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 30333 y_position: -63232 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 30672 y_position: -63232 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 31108 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 31498 y_position: -63232 font: Amiri -glyph [4822] x_offset: 0 y_offset: 0 x_advance: 354 x_position: 32098 y_position: -63232 font: Amiri -glyph [427] x_offset: -336 y_offset: 0 x_advance: 0 x_position: 32116 y_position: -63232 font: Amiri -glyph [4808] x_offset: 0 y_offset: 0 x_advance: 76 x_position: 32452 y_position: -63232 font: Amiri -glyph [427] x_offset: 169 y_offset: 0 x_advance: 0 x_position: 32697 y_position: -63232 font: Amiri -glyph [4776] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 32528 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 33728 y_position: -63232 font: Amiri -glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 x_position: 34444 y_position: -63362 font: Amiri -glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 34328 y_position: -63232 font: Amiri -glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 x_position: 35182 y_position: -63232 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 35254 y_position: -63232 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 35856 y_position: -63232 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 35962 y_position: -63232 font: Amiri -glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 x_position: 36445 y_position: -63232 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 36737 y_position: -63232 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 37097 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 37543 y_position: -63232 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 38113 y_position: -63232 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 38143 y_position: -63232 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 38882 y_position: -63232 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 39255 y_position: -63232 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 39266 y_position: -63232 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 39702 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 40092 y_position: -63232 font: Amiri -glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 x_position: 41636 y_position: -63232 font: Amiri -glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 x_position: 40692 y_position: -63232 font: Amiri -glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 x_position: 42476 y_position: -63232 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 42902 y_position: -63232 font: Amiri -glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 x_position: 43121 y_position: -63232 font: Amiri -glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 x_position: 43307 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 44549 y_position: -63232 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 45179 y_position: -63232 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 45149 y_position: -63232 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 46385 y_position: -63232 font: Amiri -glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 46973 y_position: -63232 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 47093 y_position: -63232 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 47432 y_position: -63232 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 47868 y_position: -63232 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 0 y_position: -66816 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 570 y_position: -66816 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 600 y_position: -66816 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 1339 y_position: -66816 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 1712 y_position: -66816 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 1723 y_position: -66816 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 2159 y_position: -66816 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2549 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3489 y_position: -66816 font: Amiri -glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 x_position: 3819 y_position: -67756 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 4089 y_position: -66816 font: Amiri -glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 x_position: 4995 y_position: -66816 font: Amiri -glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 x_position: 4871 y_position: -66816 font: Amiri -glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 x_position: 6575 y_position: -66712 font: Amiri -glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 x_position: 6165 y_position: -66816 font: Amiri -glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 x_position: 6367 y_position: -66816 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 7147 y_position: -66816 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 7507 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7953 y_position: -66816 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 8553 y_position: -66816 font: Amiri -glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 x_position: 8918 y_position: -66816 font: Amiri -glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 8999 y_position: -66816 font: Amiri -glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 x_position: 9708 y_position: -66816 font: Amiri -glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 x_position: 9964 y_position: -66816 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 10764 y_position: -66816 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 10890 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 11711 y_position: -66816 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 12311 y_position: -66816 font: Amiri -glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 x_position: 13027 y_position: -66816 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 12961 y_position: -66816 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 14134 y_position: -66816 font: Amiri -glyph [1916] x_offset: 153 y_offset: 184 x_advance: 0 x_position: 14995 y_position: -66632 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 14585 y_position: -66816 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 14842 y_position: -66816 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 15342 y_position: -66816 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15702 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16148 y_position: -66816 font: Amiri -glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 x_position: 16914 y_position: -66196 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 16748 y_position: -66816 font: Amiri -glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 x_position: 17546 y_position: -66816 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 17758 y_position: -66816 font: Amiri -glyph [427] x_offset: -216 y_offset: 0 x_advance: 0 x_position: 18147 y_position: -66816 font: Amiri -glyph [2517] x_offset: 0 y_offset: 0 x_advance: 613 x_position: 18363 y_position: -66816 font: Amiri -glyph [429] x_offset: -340 y_offset: 0 x_advance: 0 x_position: 18636 y_position: -66816 font: Amiri -glyph [2483] x_offset: 0 y_offset: 0 x_advance: 362 x_position: 18976 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 19338 y_position: -66816 font: Amiri -glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 x_position: 19938 y_position: -66816 font: Amiri -glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 x_position: 20812 y_position: -66816 font: Amiri -glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 x_position: 20694 y_position: -66816 font: Amiri -glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 x_position: 21543 y_position: -66816 font: Amiri -glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 x_position: 21713 y_position: -66816 font: Amiri -glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 x_position: 22271 y_position: -66816 font: Amiri -glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 22671 y_position: -66816 font: Amiri -glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 x_position: 22994 y_position: -66816 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 23171 y_position: -66816 font: Amiri -glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 x_position: 23210 y_position: -66816 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 23671 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 24149 y_position: -66816 font: Amiri -glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 x_position: 24793 y_position: -66816 font: Amiri -glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 x_position: 24749 y_position: -66816 font: Amiri -glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 x_position: 26242 y_position: -66712 font: Amiri -glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 x_position: 25832 y_position: -66816 font: Amiri -glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 25759 y_position: -66816 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 26783 y_position: -66816 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 26889 y_position: -66816 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 27228 y_position: -66816 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 27664 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 28054 y_position: -66816 font: Amiri -glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 x_position: 28757 y_position: -66816 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 28654 y_position: -66816 font: Amiri -glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 x_position: 29513 y_position: -66816 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 29619 y_position: -66816 font: Amiri -glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 x_position: 29918 y_position: -66816 font: Amiri -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 30394 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 30754 y_position: -66816 font: Amiri -glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 x_position: 31354 y_position: -66816 font: Amiri -glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 x_position: 31836 y_position: -66816 font: Amiri -glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 x_position: 31806 y_position: -66816 font: Amiri -glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 x_position: 33042 y_position: -66816 font: Amiri -glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 x_position: 33630 y_position: -66816 font: Amiri -glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 x_position: 33750 y_position: -66816 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 34089 y_position: -66816 font: Amiri -glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 34525 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 34915 y_position: -66816 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 35235 y_position: -66816 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 35515 y_position: -66816 font: Amiri -glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 x_position: 35986 y_position: -66816 font: Amiri -glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 x_position: 36292 y_position: -66816 font: Amiri -glyph [431] x_offset: -122 y_offset: 0 x_advance: 0 x_position: 36515 y_position: -66816 font: Amiri -glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 x_position: 36637 y_position: -66816 font: Amiri -glyph [427] x_offset: 144 y_offset: -950 x_advance: 0 x_position: 37288 y_position: -67766 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 37324 y_position: -66816 font: Amiri -glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 x_position: 38322 y_position: -66816 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 38294 y_position: -66816 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 39503 y_position: -66851 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 39272 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 39752 y_position: -66816 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 40352 y_position: -66816 font: Amiri -glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 x_position: 40493 y_position: -66816 font: Amiri -glyph [5010] x_offset: 0 y_offset: 0 x_advance: 356 x_position: 40822 y_position: -66816 font: Amiri -glyph [431] x_offset: 137 y_offset: 0 x_advance: 0 x_position: 41315 y_position: -66816 font: Amiri -glyph [4995] x_offset: 0 y_offset: 0 x_advance: 1077 x_position: 41178 y_position: -66816 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 42255 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 42701 y_position: -66816 font: Amiri -glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 x_position: 43021 y_position: -66816 font: Amiri -glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 x_position: 43301 y_position: -66816 font: Amiri -glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 x_position: 43692 y_position: -66816 font: Amiri -glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 44078 y_position: -66816 font: Amiri -glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 x_position: 44336 y_position: -66816 font: Amiri -glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 x_position: 44578 y_position: -66816 font: Amiri -glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 x_position: 44777 y_position: -66816 font: Amiri -glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 x_position: 44983 y_position: -66816 font: Amiri -glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 x_position: 45787 y_position: -66816 font: Amiri -glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 x_position: 45733 y_position: -66816 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 47076 y_position: -66816 font: Amiri -glyph [431] x_offset: 178 y_offset: 0 x_advance: 0 x_position: 47854 y_position: -66816 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 47676 y_position: -66816 font: Amiri -glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 x_position: 49099 y_position: -66991 font: Amiri -glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 48849 y_position: -66816 font: Amiri -glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 x_position: 48923 y_position: -66816 font: Amiri -glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 x_position: 49319 y_position: -66816 font: Amiri -glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 x_position: 0 y_position: -70400 font: Amiri -glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 x_position: 546 y_position: -69670 font: Amiri -glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 x_position: 650 y_position: -70400 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 1432 y_position: -70400 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 2964 y_position: -70400 font: Amiri -glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 x_position: 2998 y_position: -70400 font: Amiri -glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 x_position: 4055 y_position: -70296 font: Amiri -glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 x_position: 3645 y_position: -70400 font: Amiri -glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3921 y_position: -70400 font: Amiri -glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 4521 y_position: -70400 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 4965 y_position: -70400 font: Amiri -glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 x_position: 5285 y_position: -70400 font: Amiri -glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 x_position: 5411 y_position: -70400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6232 y_position: -70400 font: Amiri -glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 x_position: 6798 y_position: -70400 font: Amiri -glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 x_position: 6832 y_position: -70400 font: Amiri -glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 x_position: 7503 y_position: -70400 font: Amiri -glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 x_position: 7540 y_position: -70400 font: Amiri -glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 7797 y_position: -70400 font: Amiri -glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 x_position: 7741 y_position: -70400 font: Amiri -glyph [3125] x_offset: 0 y_offset: 0 x_advance: 149 x_position: 8297 y_position: -70400 font: Amiri -glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 x_position: 8584 y_position: -70400 font: Amiri -glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 x_position: 8446 y_position: -70400 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 9592 y_position: -70400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10038 y_position: -70400 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 10608 y_position: -70400 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 10638 y_position: -70400 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 11377 y_position: -70400 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 11750 y_position: -70400 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 11761 y_position: -70400 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 12197 y_position: -70400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12587 y_position: -70400 font: Amiri -glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 x_position: 13615 y_position: -70400 font: Amiri -glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 x_position: 13187 y_position: -70400 font: Amiri -glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 x_position: 14984 y_position: -70435 font: Amiri -glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 x_position: 14753 y_position: -70400 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 15233 y_position: -70400 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 15833 y_position: -70400 font: Amiri -glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 x_position: 16743 y_position: -70400 font: Amiri -glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 x_position: 16773 y_position: -70400 font: Amiri -glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 x_position: 17512 y_position: -70400 font: Amiri -glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 x_position: 17885 y_position: -70400 font: Amiri -glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 x_position: 17896 y_position: -70400 font: Amiri -glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 x_position: 18332 y_position: -70400 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 00 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 00 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 line: 00 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 00 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 00 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 00 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 00 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 00 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 00 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 00 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 00 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 00 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [424] x_offset: -239 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 00 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 00 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 00 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 00 font: Amiri +glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 00 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [428] x_offset: 330 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 00 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 00 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 00 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 00 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 line: 01 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 01 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 01 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 01 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 01 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 01 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 01 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 01 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 01 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 01 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [429] x_offset: 506 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 line: 01 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 01 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 01 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 01 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 01 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 line: 01 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 01 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 01 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 01 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 line: 01 font: Amiri +glyph [62] x_offset: 0 y_offset: 0 x_advance: 740 line: 01 font: Amiri +glyph [28] x_offset: 0 y_offset: 0 x_advance: 1090 line: 01 font: Amiri +glyph [23] x_offset: 0 y_offset: 0 x_advance: 1090 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 01 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 01 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 01 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 01 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 01 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 01 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 01 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 01 font: Amiri +glyph [64] x_offset: 0 y_offset: 0 x_advance: 740 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [94] x_offset: 0 y_offset: 0 x_advance: 814 line: 01 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 01 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 01 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 01 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 01 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 01 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 line: 01 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 01 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 01 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 01 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 01 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 01 font: Amiri +glyph [96] x_offset: 0 y_offset: 0 x_advance: 814 line: 01 font: Amiri +glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 01 font: Amiri +glyph [427] x_offset: -221 y_offset: -292 x_advance: 0 line: 01 font: Amiri +glyph [387] x_offset: 0 y_offset: 0 x_advance: 1566 line: 01 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 01 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 01 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 01 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 01 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 02 font: Amiri +glyph [431] x_offset: 328 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 02 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 02 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 02 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 02 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 02 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 02 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 02 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 02 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 02 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [428] x_offset: -138 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2747] x_offset: 0 y_offset: 0 x_advance: 986 line: 02 font: Amiri +glyph [2713] x_offset: 0 y_offset: 0 x_advance: 349 line: 02 font: Amiri +glyph [429] x_offset: 36 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2517] x_offset: 170 y_offset: 0 x_advance: 783 line: 02 font: Amiri +glyph [428] x_offset: -326 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2476] x_offset: 0 y_offset: 0 x_advance: 362 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 line: 02 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 line: 02 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 line: 02 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 02 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 02 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2065] x_offset: 0 y_offset: 0 x_advance: 1810 line: 02 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 02 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 02 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 02 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 02 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 02 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 02 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 02 font: Amiri +glyph [428] x_offset: -60 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 line: 02 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 02 font: Amiri +glyph [431] x_offset: 258 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2377] x_offset: 0 y_offset: 0 x_advance: 1430 line: 02 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 02 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 line: 02 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 02 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 02 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 02 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 02 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 02 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 02 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 02 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 03 font: Amiri +glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 03 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 03 font: Amiri +glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 03 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [425] x_offset: -35 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 03 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 03 font: Amiri +glyph [429] x_offset: -234 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 03 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 03 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 line: 03 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 line: 03 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 line: 03 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 03 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 03 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 03 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [406] x_offset: 0 y_offset: 0 x_advance: 1107 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 03 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 170 y_offset: 0 x_advance: 991 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 03 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 03 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 03 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 03 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 03 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 03 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 03 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 03 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 line: 03 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 03 font: Amiri +glyph [429] x_offset: 216 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2363] x_offset: 250 y_offset: 0 x_advance: 953 line: 03 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 03 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 03 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 03 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 03 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 03 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 04 font: Amiri +glyph [428] x_offset: -216 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 line: 04 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 line: 04 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 line: 04 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [424] x_offset: -359 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 04 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2337] x_offset: 0 y_offset: 0 x_advance: 950 line: 04 font: Amiri +glyph [428] x_offset: -358 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 line: 04 font: Amiri +glyph [427] x_offset: -166 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [5318] x_offset: 0 y_offset: 0 x_advance: 638 line: 04 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 line: 04 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 04 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 04 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 04 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 04 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 04 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 04 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 04 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 line: 04 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 line: 04 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 04 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 04 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 04 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 line: 04 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 04 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 line: 04 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 line: 04 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 04 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 04 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 04 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 04 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 04 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 04 font: Amiri +glyph [428] x_offset: -140 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 04 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 04 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 04 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 04 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 04 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 05 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 05 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 05 font: Amiri +glyph [427] x_offset: -557 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 05 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 05 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 05 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 05 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [425] x_offset: 40 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 05 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 05 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 line: 05 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 05 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [108] x_offset: 0 y_offset: 0 x_advance: 850 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 05 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2233] x_offset: 0 y_offset: 0 x_advance: 1250 line: 05 font: Amiri +glyph [429] x_offset: 86 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 line: 05 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 05 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 05 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 05 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 05 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 05 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 line: 05 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 05 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 05 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [124] x_offset: 0 y_offset: 0 x_advance: 850 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 05 font: Amiri +glyph [429] x_offset: 416 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3779] x_offset: 0 y_offset: 0 x_advance: 1583 line: 05 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 line: 05 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 05 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 line: 05 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 05 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 line: 05 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 line: 05 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 05 font: Amiri +glyph [428] x_offset: 110 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 05 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 line: 05 font: Amiri +glyph [1914] x_offset: 133 y_offset: 104 x_advance: 0 line: 05 font: Amiri +glyph [430] x_offset: -277 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [5354] x_offset: 0 y_offset: 0 x_advance: 454 line: 05 font: Amiri +glyph [5348] x_offset: 0 y_offset: 0 x_advance: 325 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 05 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 05 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [4375] x_offset: 0 y_offset: 0 x_advance: 1242 line: 05 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 05 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 05 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 05 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 05 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 05 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 05 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [427] x_offset: 124 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 06 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 06 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 06 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 06 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 06 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 06 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 06 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [429] x_offset: -144 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 06 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 06 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 06 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 06 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4453] x_offset: 0 y_offset: 0 x_advance: 645 line: 06 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 06 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 06 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 06 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 06 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 06 font: Amiri +glyph [424] x_offset: -129 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 06 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4752] x_offset: 0 y_offset: 0 x_advance: 443 line: 06 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: -243 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [4345] x_offset: 0 y_offset: 0 x_advance: 213 line: 06 font: Amiri +glyph [427] x_offset: 372 y_offset: -4 x_advance: 0 line: 06 font: Amiri +glyph [2649] x_offset: 0 y_offset: -4 x_advance: 1739 line: 06 font: Amiri +glyph [431] x_offset: 58 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 06 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 06 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 06 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 06 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 06 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 06 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 06 font: Amiri +glyph [426] x_offset: 101 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 06 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 06 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 line: 06 font: Amiri +glyph [428] x_offset: -410 y_offset: 0 x_advance: 0 line: 06 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 06 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 07 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 07 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [427] x_offset: -185 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4877] x_offset: 0 y_offset: 0 x_advance: 827 line: 07 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4835] x_offset: 0 y_offset: 0 x_advance: 1382 line: 07 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 07 font: Amiri +glyph [429] x_offset: -495 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 07 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 07 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 07 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 07 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 07 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [424] x_offset: -229 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3053] x_offset: 0 y_offset: 0 x_advance: 345 line: 07 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 07 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 line: 07 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 07 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 07 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 07 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 07 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 07 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 07 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 07 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 07 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 07 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3351] x_offset: 0 y_offset: 0 x_advance: 598 line: 07 font: Amiri +glyph [431] x_offset: -142 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3310] x_offset: 0 y_offset: 0 x_advance: 530 line: 07 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4368] x_offset: 0 y_offset: 0 x_advance: 800 line: 07 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 07 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 line: 07 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 07 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 line: 07 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 07 font: Amiri +glyph [1914] x_offset: 333 y_offset: 104 x_advance: 0 line: 07 font: Amiri +glyph [430] x_offset: -77 y_offset: 0 x_advance: 0 line: 07 font: Amiri +glyph [4909] x_offset: 0 y_offset: 0 x_advance: 1000 line: 07 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 07 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 07 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 08 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 08 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 08 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 08 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 08 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 08 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 08 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 08 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 08 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 08 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 08 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 08 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 08 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 line: 08 font: Amiri +glyph [427] x_offset: 316 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4043] x_offset: 0 y_offset: 0 x_advance: 1656 line: 08 font: Amiri +glyph [431] x_offset: -42 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: -100 y_offset: 0 x_advance: 721 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 08 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 08 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 08 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 08 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 08 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 08 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 08 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 08 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 08 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 08 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 08 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 08 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 08 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 08 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 08 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 08 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 08 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 08 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 08 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 08 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 line: 09 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 line: 09 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [422] x_offset: 0 y_offset: 0 x_advance: 1566 line: 09 font: Amiri +glyph [1914] x_offset: 458 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: 48 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 09 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3753] x_offset: 0 y_offset: 0 x_advance: 562 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 09 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 09 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 09 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 09 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 09 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4466] x_offset: 0 y_offset: 0 x_advance: 511 line: 09 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 09 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 09 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 09 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 09 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 09 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 09 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 09 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 09 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 09 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 09 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 line: 09 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 09 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 09 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 line: 09 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 line: 09 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 09 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4557] x_offset: 0 y_offset: 0 x_advance: 585 line: 09 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 09 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 09 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 09 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4504] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [427] x_offset: -361 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [4507] x_offset: 0 y_offset: 0 x_advance: 500 line: 09 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 09 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 09 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 09 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 09 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 10 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 10 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 10 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 10 font: Amiri +glyph [429] x_offset: 66 y_offset: -100 x_advance: 0 line: 10 font: Amiri +glyph [2314] x_offset: 0 y_offset: 0 x_advance: 1320 line: 10 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 10 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 10 font: Amiri +glyph [429] x_offset: -284 y_offset: -140 x_advance: 0 line: 10 font: Amiri +glyph [5094] x_offset: 0 y_offset: 0 x_advance: 487 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 10 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 line: 10 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 10 font: Amiri +glyph [428] x_offset: 60 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2375] x_offset: 0 y_offset: 0 x_advance: 1430 line: 10 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 10 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 10 font: Amiri +glyph [424] x_offset: 171 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 10 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 10 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 10 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [394] x_offset: 0 y_offset: 0 x_advance: 1355 line: 10 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 10 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2380] x_offset: 0 y_offset: 0 x_advance: 1480 line: 10 font: Amiri +glyph [2080] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [1918] x_offset: 723 y_offset: -345 x_advance: 0 line: 10 font: Amiri +glyph [3006] x_offset: 170 y_offset: 0 x_advance: 868 line: 10 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [428] x_offset: -44 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 10 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 10 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 10 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 10 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 10 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2363] x_offset: 0 y_offset: 0 x_advance: 703 line: 10 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 10 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2096] x_offset: 0 y_offset: 0 x_advance: 390 line: 10 font: Amiri +glyph [3573] x_offset: 0 y_offset: 0 x_advance: 915 line: 10 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [3568] x_offset: 0 y_offset: 0 x_advance: 502 line: 10 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 10 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 10 font: Amiri +glyph [2137] x_offset: 0 y_offset: 0 x_advance: 500 line: 10 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 10 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 10 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 11 font: Amiri +glyph [1914] x_offset: 195 y_offset: 104 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -215 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3437] x_offset: 0 y_offset: 0 x_advance: 543 line: 11 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 11 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 11 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 11 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 11 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 11 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [1914] x_offset: 533 y_offset: 104 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: 123 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 11 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 11 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 11 font: Amiri +glyph [429] x_offset: -294 y_offset: -60 x_advance: 0 line: 11 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [5976] x_offset: -197 y_offset: 304 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -7 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [397] x_offset: 0 y_offset: 0 x_advance: 923 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2399] x_offset: 0 y_offset: 0 x_advance: 1164 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 11 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 11 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [425] x_offset: -110 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 11 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 11 font: Amiri +glyph [431] x_offset: 368 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 11 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 11 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 11 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 11 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 11 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 11 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 11 font: Amiri +glyph [1914] x_offset: -18 y_offset: 104 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: -428 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3971] x_offset: 0 y_offset: 0 x_advance: 447 line: 11 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 11 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 11 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 11 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 11 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 11 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 11 font: Amiri +glyph [429] x_offset: -92 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4908] x_offset: 0 y_offset: 0 x_advance: 1000 line: 11 font: Amiri +glyph [429] x_offset: -434 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 11 font: Amiri +glyph [428] x_offset: 130 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 11 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 11 font: Amiri +glyph [1916] x_offset: 723 y_offset: 184 x_advance: 0 line: 11 font: Amiri +glyph [430] x_offset: 313 y_offset: 0 x_advance: 0 line: 11 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 11 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 11 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 11 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [3007] x_offset: 0 y_offset: 0 x_advance: 698 line: 12 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 12 font: Amiri +glyph [1918] x_offset: 330 y_offset: -145 x_advance: 0 line: 12 font: Amiri +glyph [386] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -64 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4185] x_offset: 0 y_offset: 0 x_advance: 1134 line: 12 font: Amiri +glyph [431] x_offset: -147 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4421] x_offset: 0 y_offset: 0 x_advance: 780 line: 12 font: Amiri +glyph [427] x_offset: 3 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2298] x_offset: 0 y_offset: 0 x_advance: 1206 line: 12 font: Amiri +glyph [431] x_offset: 88 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [5986] x_offset: 0 y_offset: 0 x_advance: 380 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 12 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [431] x_offset: -92 y_offset: -620 x_advance: 0 line: 12 font: Amiri +glyph [2452] x_offset: 0 y_offset: 0 x_advance: 1200 line: 12 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 line: 12 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [5985] x_offset: 0 y_offset: 0 x_advance: 990 line: 12 font: Amiri +glyph [427] x_offset: -356 y_offset: 70 x_advance: 0 line: 12 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 12 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: 544 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 line: 12 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 line: 12 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [431] x_offset: -372 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2439] x_offset: -300 y_offset: 0 x_advance: 408 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [3385] x_offset: 0 y_offset: 0 x_advance: 565 line: 12 font: Amiri +glyph [431] x_offset: -82 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [3358] x_offset: 0 y_offset: 0 x_advance: 792 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 12 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 line: 12 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [431] x_offset: -297 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2154] x_offset: -400 y_offset: 0 x_advance: 565 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [4763] x_offset: 0 y_offset: 0 x_advance: 385 line: 12 font: Amiri +glyph [427] x_offset: -149 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4676] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 line: 12 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 12 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: 266 y_offset: 620 x_advance: 0 line: 12 font: Amiri +glyph [2199] x_offset: 0 y_offset: 0 x_advance: 1310 line: 12 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 12 font: Amiri +glyph [429] x_offset: -364 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [429] x_offset: 46 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 12 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 12 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 12 font: Amiri +glyph [431] x_offset: 78 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 12 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 12 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 12 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 12 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 12 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 12 font: Amiri +glyph [427] x_offset: -327 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 12 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 12 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 12 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 line: 12 font: Amiri +glyph [429] x_offset: -194 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4051] x_offset: 0 y_offset: 0 x_advance: 113 line: 12 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 line: 12 font: Amiri +glyph [4271] x_offset: 0 y_offset: 0 x_advance: 1204 line: 12 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 13 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [425] x_offset: 16 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 13 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 13 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 13 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 13 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 13 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4898] x_offset: 0 y_offset: 0 x_advance: 828 line: 13 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 line: 13 font: Amiri +glyph [427] x_offset: 184 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 13 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 13 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 13 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [429] x_offset: -124 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [420] x_offset: 0 y_offset: 0 x_advance: 756 line: 13 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 13 font: Amiri +glyph [427] x_offset: -56 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2407] x_offset: 0 y_offset: 0 x_advance: 1165 line: 13 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [431] x_offset: 308 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2339] x_offset: 0 y_offset: 0 x_advance: 1260 line: 13 font: Amiri +glyph [429] x_offset: -134 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 13 font: Amiri +glyph [427] x_offset: 94 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 13 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 13 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 13 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [427] x_offset: -6 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 13 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 13 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 13 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 line: 13 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 line: 13 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 13 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 13 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 13 font: Amiri +glyph [427] x_offset: -20 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4185] x_offset: 170 y_offset: 0 x_advance: 1304 line: 13 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4432] x_offset: 0 y_offset: 0 x_advance: 1092 line: 13 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 13 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 13 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 13 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 13 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 13 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 13 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 13 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 13 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 13 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [428] x_offset: -20 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 13 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 13 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [4501] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 13 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 13 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 13 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 13 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 13 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [425] x_offset: -310 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 line: 14 font: Amiri +glyph [427] x_offset: -563 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4894] x_offset: 0 y_offset: 0 x_advance: 384 line: 14 font: Amiri +glyph [429] x_offset: -113 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4373] x_offset: 0 y_offset: 0 x_advance: 800 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 14 font: Amiri +glyph [429] x_offset: 109 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5116] x_offset: 0 y_offset: 0 x_advance: 1132 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 line: 14 font: Amiri +glyph [429] x_offset: -384 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3742] x_offset: 0 y_offset: 0 x_advance: 620 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 14 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [425] x_offset: -220 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 14 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 14 font: Amiri +glyph [429] x_offset: -344 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 14 font: Amiri +glyph [431] x_offset: 128 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 14 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [428] x_offset: -167 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4014] x_offset: 0 y_offset: 0 x_advance: 613 line: 14 font: Amiri +glyph [427] x_offset: -87 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3989] x_offset: 0 y_offset: 0 x_advance: 1187 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -344 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5336] x_offset: 0 y_offset: 0 x_advance: 302 line: 14 font: Amiri +glyph [427] x_offset: -13 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [5280] x_offset: 0 y_offset: 0 x_advance: 787 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 14 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 14 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 14 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [427] x_offset: 104 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3217] x_offset: 0 y_offset: 0 x_advance: 1152 line: 14 font: Amiri +glyph [427] x_offset: -555 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3189] x_offset: 0 y_offset: 0 x_advance: 299 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3060] x_offset: 0 y_offset: 0 x_advance: 345 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3758] x_offset: 0 y_offset: 0 x_advance: 654 line: 14 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 14 font: Amiri +glyph [427] x_offset: -156 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 14 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 14 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2253] x_offset: 0 y_offset: 0 x_advance: 777 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3063] x_offset: 0 y_offset: 0 x_advance: 345 line: 14 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [3745] x_offset: 0 y_offset: 0 x_advance: 606 line: 14 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 14 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 14 font: Amiri +glyph [428] x_offset: -320 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [4609] x_offset: 0 y_offset: 0 x_advance: 580 line: 14 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 14 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 14 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 14 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 14 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 14 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [429] x_offset: -26 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [398] x_offset: 0 y_offset: 0 x_advance: 819 line: 15 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 15 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 15 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 15 font: Amiri +glyph [429] x_offset: -534 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2999] x_offset: 0 y_offset: 0 x_advance: 303 line: 15 font: Amiri +glyph [431] x_offset: -202 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2995] x_offset: 0 y_offset: 0 x_advance: 428 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 15 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 15 font: Amiri +glyph [431] x_offset: 140 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4974] x_offset: 0 y_offset: 0 x_advance: 1054 line: 15 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 15 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 15 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 15 font: Amiri +glyph [429] x_offset: 566 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [392] x_offset: 0 y_offset: 0 x_advance: 1897 line: 15 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2042] x_offset: 0 y_offset: 0 x_advance: 750 line: 15 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [428] x_offset: -450 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 15 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 15 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 15 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 15 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2175] x_offset: 0 y_offset: 0 x_advance: 605 line: 15 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 15 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 15 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 15 font: Amiri +glyph [431] x_offset: -252 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 15 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 15 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 15 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 15 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 15 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 15 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2128] x_offset: 0 y_offset: 0 x_advance: 500 line: 15 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [428] x_offset: 375 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [389] x_offset: 0 y_offset: 0 x_advance: 1897 line: 15 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 15 font: Amiri +glyph [427] x_offset: -36 y_offset: -950 x_advance: 0 line: 15 font: Amiri +glyph [3104] x_offset: 0 y_offset: 0 x_advance: 970 line: 15 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2035] x_offset: 0 y_offset: 0 x_advance: 978 line: 15 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 15 font: Amiri +glyph [426] x_offset: -99 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4902] x_offset: 0 y_offset: 0 x_advance: 828 line: 15 font: Amiri +glyph [427] x_offset: -631 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4888] x_offset: 0 y_offset: 0 x_advance: 289 line: 15 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 15 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 15 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 15 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 15 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 line: 15 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 line: 15 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 15 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 15 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 line: 15 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 line: 15 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 line: 16 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 16 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [4112] x_offset: 0 y_offset: 0 x_advance: 864 line: 16 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4086] x_offset: 0 y_offset: 0 x_advance: 630 line: 16 font: Amiri +glyph [431] x_offset: -22 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 16 font: Amiri +glyph [427] x_offset: -406 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3455] x_offset: 0 y_offset: 0 x_advance: 356 line: 16 font: Amiri +glyph [429] x_offset: -242 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3434] x_offset: 0 y_offset: 0 x_advance: 543 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 16 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 16 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 16 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 16 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 16 font: Amiri +glyph [429] x_offset: 166 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [415] x_offset: 0 y_offset: 0 x_advance: 1407 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [427] x_offset: -356 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 16 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 16 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 16 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -370 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2646] x_offset: 0 y_offset: 0 x_advance: 457 line: 16 font: Amiri +glyph [429] x_offset: -84 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2631] x_offset: 0 y_offset: 0 x_advance: 692 line: 16 font: Amiri +glyph [431] x_offset: -192 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4047] x_offset: 0 y_offset: 0 x_advance: 113 line: 16 font: Amiri +glyph [427] x_offset: 154 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4258] x_offset: 0 y_offset: 0 x_advance: 1204 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 16 font: Amiri +glyph [1914] x_offset: 103 y_offset: 104 x_advance: 0 line: 16 font: Amiri +glyph [430] x_offset: -307 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2090] x_offset: 0 y_offset: 0 x_advance: 390 line: 16 font: Amiri +glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 line: 16 font: Amiri +glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -390 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 16 font: Amiri +glyph [429] x_offset: 69 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [5184] x_offset: 0 y_offset: 0 x_advance: 801 line: 16 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3121] x_offset: 0 y_offset: 0 x_advance: 149 line: 16 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 16 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2256] x_offset: 0 y_offset: 0 x_advance: 800 line: 16 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [428] x_offset: -150 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 16 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 16 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 16 font: Amiri +glyph [5975] x_offset: 215 y_offset: -56 x_advance: 0 line: 16 font: Amiri +glyph [3010] x_offset: 0 y_offset: 0 x_advance: 698 line: 16 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3002] x_offset: 0 y_offset: 0 x_advance: 619 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 16 font: Amiri +glyph [1914] x_offset: 383 y_offset: 104 x_advance: 0 line: 16 font: Amiri +glyph [430] x_offset: -27 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 16 font: Amiri +glyph [5975] x_offset: 301 y_offset: -35 x_advance: 0 line: 16 font: Amiri +glyph [6298] x_offset: 0 y_offset: 0 x_advance: 893 line: 16 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 16 font: Amiri +glyph [429] x_offset: -44 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 16 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 16 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 16 font: Amiri +glyph [431] x_offset: -2 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 line: 16 font: Amiri +glyph [429] x_offset: -164 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 16 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 16 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 16 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 16 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 16 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [425] x_offset: 790 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [414] x_offset: 0 y_offset: 0 x_advance: 2015 line: 17 font: Amiri +glyph [431] x_offset: -172 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2365] x_offset: 0 y_offset: 0 x_advance: 703 line: 17 font: Amiri +glyph [427] x_offset: 144 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2419] x_offset: 0 y_offset: 0 x_advance: 1163 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [428] x_offset: -270 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 17 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 17 font: Amiri +glyph [429] x_offset: 466 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2165] x_offset: 0 y_offset: 0 x_advance: 2060 line: 17 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 17 font: Amiri +glyph [429] x_offset: -204 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2189] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2232] x_offset: 0 y_offset: 0 x_advance: 1250 line: 17 font: Amiri +glyph [1914] x_offset: 153 y_offset: 104 x_advance: 0 line: 17 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 17 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 17 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 17 font: Amiri +glyph [429] x_offset: -229 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4554] x_offset: 0 y_offset: 0 x_advance: 585 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 line: 17 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 17 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 17 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: 444 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2417] x_offset: 0 y_offset: 0 x_advance: 1540 line: 17 font: Amiri +glyph [431] x_offset: 278 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 17 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 line: 17 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 17 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [4822] x_offset: 0 y_offset: 0 x_advance: 354 line: 17 font: Amiri +glyph [427] x_offset: -336 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4808] x_offset: 0 y_offset: 0 x_advance: 76 line: 17 font: Amiri +glyph [427] x_offset: 169 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4776] x_offset: 0 y_offset: 0 x_advance: 1200 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [429] x_offset: 116 y_offset: -130 x_advance: 0 line: 17 font: Amiri +glyph [418] x_offset: 0 y_offset: 0 x_advance: 926 line: 17 font: Amiri +glyph [431] x_offset: -72 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [431] x_offset: -292 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 17 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 17 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 17 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [427] x_offset: 944 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2385] x_offset: 0 y_offset: 0 x_advance: 2210 line: 17 font: Amiri +glyph [427] x_offset: -426 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 17 font: Amiri +glyph [427] x_offset: -186 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [4379] x_offset: 0 y_offset: 0 x_advance: 1242 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 17 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 17 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 17 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 17 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 17 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 17 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 18 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 18 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 18 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [428] x_offset: -270 y_offset: -940 x_advance: 0 line: 18 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 18 font: Amiri +glyph [431] x_offset: 124 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4202] x_offset: 0 y_offset: 0 x_advance: 1496 line: 18 font: Amiri +glyph [1914] x_offset: 208 y_offset: 104 x_advance: 0 line: 18 font: Amiri +glyph [430] x_offset: -202 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4424] x_offset: 0 y_offset: 0 x_advance: 780 line: 18 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [427] x_offset: -81 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2154] x_offset: 0 y_offset: 0 x_advance: 965 line: 18 font: Amiri +glyph [427] x_offset: -256 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2254] x_offset: 0 y_offset: 0 x_advance: 926 line: 18 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 18 font: Amiri +glyph [429] x_offset: 66 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 18 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 18 font: Amiri +glyph [1916] x_offset: 153 y_offset: 184 x_advance: 0 line: 18 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [429] x_offset: 166 y_offset: 620 x_advance: 0 line: 18 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 18 font: Amiri +glyph [431] x_offset: -212 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 18 font: Amiri +glyph [427] x_offset: -216 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2517] x_offset: 0 y_offset: 0 x_advance: 613 line: 18 font: Amiri +glyph [429] x_offset: -340 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2483] x_offset: 0 y_offset: 0 x_advance: 362 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [363] x_offset: 0 y_offset: 0 x_advance: 756 line: 18 font: Amiri +glyph [431] x_offset: 118 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [5983] x_offset: 0 y_offset: 0 x_advance: 1019 line: 18 font: Amiri +glyph [428] x_offset: -170 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3230] x_offset: 0 y_offset: 0 x_advance: 958 line: 18 font: Amiri +glyph [428] x_offset: -400 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2131] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [431] x_offset: -177 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [427] x_offset: -461 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [427] x_offset: 44 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2033] x_offset: 0 y_offset: 0 x_advance: 1010 line: 18 font: Amiri +glyph [1914] x_offset: 483 y_offset: 104 x_advance: 0 line: 18 font: Amiri +glyph [430] x_offset: 73 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2423] x_offset: 0 y_offset: 0 x_advance: 1130 line: 18 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 18 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [431] x_offset: 103 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 18 font: Amiri +glyph [427] x_offset: -106 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 18 font: Amiri +glyph [427] x_offset: -476 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [29] x_offset: 0 y_offset: 0 x_advance: 452 line: 18 font: Amiri +glyph [428] x_offset: 30 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [417] x_offset: 0 y_offset: 0 x_advance: 1236 line: 18 font: Amiri +glyph [2439] x_offset: 0 y_offset: 0 x_advance: 708 line: 18 font: Amiri +glyph [428] x_offset: -120 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2188] x_offset: 0 y_offset: 0 x_advance: 775 line: 18 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2093] x_offset: 0 y_offset: 0 x_advance: 390 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 18 font: Amiri +glyph [427] x_offset: -306 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3066] x_offset: 0 y_offset: 0 x_advance: 345 line: 18 font: Amiri +glyph [431] x_offset: -122 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [3752] x_offset: 0 y_offset: 0 x_advance: 507 line: 18 font: Amiri +glyph [427] x_offset: 144 y_offset: -950 x_advance: 0 line: 18 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 18 font: Amiri +glyph [431] x_offset: 28 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 18 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 18 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 18 font: Amiri +glyph [424] x_offset: -329 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [5010] x_offset: 0 y_offset: 0 x_advance: 356 line: 18 font: Amiri +glyph [431] x_offset: 137 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [4995] x_offset: 0 y_offset: 0 x_advance: 1077 line: 18 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [428] x_offset: -280 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2249] x_offset: 0 y_offset: 0 x_advance: 777 line: 18 font: Amiri +glyph [427] x_offset: -386 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2134] x_offset: 0 y_offset: 0 x_advance: 500 line: 18 font: Amiri +glyph [431] x_offset: -242 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2326] x_offset: 0 y_offset: 0 x_advance: 405 line: 18 font: Amiri +glyph [427] x_offset: -206 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2047] x_offset: 0 y_offset: 0 x_advance: 750 line: 18 font: Amiri +glyph [427] x_offset: 54 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2220] x_offset: 0 y_offset: 0 x_advance: 1343 line: 18 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 18 font: Amiri +glyph [431] x_offset: 178 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 18 font: Amiri +glyph [1918] x_offset: 250 y_offset: -175 x_advance: 0 line: 18 font: Amiri +glyph [2017] x_offset: 0 y_offset: 0 x_advance: 470 line: 18 font: Amiri +glyph [427] x_offset: -396 y_offset: 0 x_advance: 0 line: 18 font: Amiri +glyph [2176] x_offset: 0 y_offset: 0 x_advance: 605 line: 18 font: Amiri +glyph [1912] x_offset: 0 y_offset: 0 x_advance: 650 line: 19 font: Amiri +glyph [429] x_offset: -104 y_offset: 730 x_advance: 0 line: 19 font: Amiri +glyph [382] x_offset: 0 y_offset: 0 x_advance: 782 line: 19 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 19 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [396] x_offset: 0 y_offset: 0 x_advance: 923 line: 19 font: Amiri +glyph [1914] x_offset: 134 y_offset: 104 x_advance: 0 line: 19 font: Amiri +glyph [430] x_offset: -276 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [4038] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [4021] x_offset: 0 y_offset: 0 x_advance: 444 line: 19 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 19 font: Amiri +glyph [427] x_offset: -126 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [421] x_offset: 0 y_offset: 0 x_advance: 821 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [429] x_offset: -34 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2155] x_offset: 0 y_offset: 0 x_advance: 965 line: 19 font: Amiri +glyph [429] x_offset: -294 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [430] x_offset: -257 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2121] x_offset: 0 y_offset: 0 x_advance: 500 line: 19 font: Amiri +glyph [427] x_offset: -556 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3125] x_offset: 0 y_offset: 0 x_advance: 149 line: 19 font: Amiri +glyph [431] x_offset: 138 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2543] x_offset: 0 y_offset: 0 x_advance: 1146 line: 19 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 19 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 19 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [431] x_offset: 428 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [423] x_offset: 0 y_offset: 0 x_advance: 1566 line: 19 font: Amiri +glyph [5975] x_offset: 231 y_offset: -35 x_advance: 0 line: 19 font: Amiri +glyph [384] x_offset: 0 y_offset: 0 x_advance: 480 line: 19 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 19 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 19 font: Amiri +glyph [427] x_offset: -30 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3975] x_offset: 0 y_offset: 0 x_advance: 1112 line: 19 font: Amiri +glyph [431] x_offset: -373 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [3947] x_offset: 0 y_offset: 0 x_advance: 447 line: 19 font: Amiri +glyph [427] x_offset: -436 y_offset: 0 x_advance: 0 line: 19 font: Amiri +glyph [2087] x_offset: 0 y_offset: 0 x_advance: 390 line: 19 font: Amiri UTF-32 clusters: 112 111 109 109 108 106 106 104 104 102 102 100 100 99 98 96 96 94 94 93 91 91 89 89 87 87 86 84 84 82 82 80 80 78 78 77 76 74 74 72 72 70 70 68 68 67 65 65 64 63 62 60 60 58 58 56 56 55 54 52 52 50 50 49 47 47 45 45 43 43 42 41 39 39 38 36 36 35 33 33 32 30 30 28 28 27 25 25 23 23 22 20 20 19 17 17 15 15 13 13 12 11 10 08 08 06 06 04 04 02 02 01 00 219 217 217 215 215 213 213 211 211 210 209 208 206 206 204 204 203 201 201 199 199 196 196 196 195 194 192 192 191 189 189 187 187 184 184 184 183 182 180 180 179 177 177 175 175 172 172 172 171 170 168 168 167 166 165 163 164 162 161 160 159 158 157 156 155 154 153 152 151 149 149 147 147 145 145 143 143 141 141 140 138 138 135 135 135 133 133 131 131 130 128 128 126 126 124 124 123 122 121 119 119 117 117 115 115 113 113 322 320 320 318 318 316 316 314 314 313 312 311 309 309 307 307 305 305 303 303 302 301 300 298 298 297 296 294 294 292 292 290 290 288 288 286 286 285 284 282 282 281 279 279 278 276 276 274 274 273 271 271 269 269 267 267 265 265 264 263 262 260 260 258 258 257 255 255 253 253 250 250 250 249 248 246 246 245 243 243 241 241 239 239 239 237 237 235 235 234 232 232 229 229 229 227 227 225 225 224 222 222 220 220 432 431 429 429 428 426 426 424 424 423 422 420 420 418 418 416 416 415 414 412 412 411 409 409 408 406 406 404 404 403 402 400 400 398 398 396 396 395 394 393 391 391 389 389 387 387 385 385 383 383 381 381 380 379 377 377 376 374 374 372 372 371 369 369 368 366 366 365 363 363 362 360 360 359 357 357 355 355 354 353 351 351 349 349 348 346 346 345 344 342 342 340 340 338 338 337 335 335 332 332 332 330 330 328 328 326 326 325 323 323 549 548 546 546 545 543 543 541 541 539 539 538 537 536 534 534 533 532 530 530 528 528 526 526 525 524 522 522 521 520 519 517 517 515 515 513 513 512 511 510 508 508 506 506 504 504 502 502 500 500 499 496 496 496 494 494 493 492 490 490 489 487 487 485 485 483 483 482 480 480 478 478 476 476 474 474 473 472 471 469 469 467 467 465 465 463 463 462 461 458 458 458 456 456 454 454 453 452 450 450 448 448 446 446 444 444 443 441 441 440 438 438 436 436 435 433 433 653 651 651 649 649 648 647 645 645 643 643 641 641 639 639 638 637 635 635 634 632 632 630 630 628 628 627 626 625 623 623 621 621 619 619 617 617 616 614 614 613 611 611 609 609 607 607 606 605 603 603 601 601 600 597 597 597 595 595 594 593 592 590 590 589 587 587 585 585 583 583 582 581 580 578 578 576 576 575 574 572 572 570 570 567 567 567 566 565 563 563 562 560 560 558 558 557 555 555 553 553 551 551 550 765 763 763 761 761 760 758 758 756 756 753 753 753 752 751 750 748 748 746 746 745 744 742 742 739 739 739 737 737 735 735 733 733 732 731 730 728 728 727 726 724 724 722 722 720 720 719 718 716 716 715 713 713 711 711 709 709 708 707 706 704 704 703 702 701 699 699 698 696 696 694 694 693 691 691 689 689 687 687 685 685 683 683 682 680 680 678 678 676 676 675 673 673 671 671 669 669 667 667 666 664 664 662 662 661 659 659 658 656 656 654 654 875 874 872 872 871 869 869 867 867 866 865 864 862 862 860 860 858 858 857 856 854 854 851 851 851 849 849 848 847 845 845 843 843 841 841 840 838 838 836 836 833 833 833 832 831 830 829 827 827 826 824 824 822 822 821 820 818 818 817 815 815 813 813 812 810 810 808 808 805 805 805 804 803 802 801 799 799 798 796 796 795 794 792 792 791 790 789 787 787 785 785 783 783 781 781 779 779 778 776 776 774 774 773 771 771 768 768 768 767 766 978 976 976 975 973 973 971 971 969 969 968 966 966 964 964 961 961 961 960 959 958 957 955 955 954 952 952 950 950 948 948 947 946 945 943 943 942 940 940 938 938 936 936 934 934 932 932 930 930 929 927 927 925 925 924 923 921 921 919 919 918 917 915 915 913 913 911 911 909 909 907 907 906 905 903 903 902 901 899 899 898 896 896 894 894 893 892 890 890 888 888 886 886 885 883 883 881 881 878 878 878 877 876 1085 1083 1083 1081 1081 1079 1079 1078 1077 1074 1074 1074 1072 1072 1070 1070 1068 1068 1067 1066 1065 1063 1063 1061 1061 1060 1059 1057 1057 1055 1055 1052 1052 1052 1050 1050 1048 1048 1047 1046 1044 1044 1043 1041 1041 1039 1039 1037 1037 1036 1034 1034 1032 1032 1029 1029 1029 1028 1027 1026 1025 1023 1023 1020 1020 1020 1018 1018 1016 1016 1015 1014 1012 1012 1011 1009 1009 1007 1007 1005 1005 1003 1003 1001 1001 1000 999 997 997 995 995 994 993 991 991 989 989 987 987 985 985 983 983 981 981 980 979 1199 1198 1196 1196 1193 1193 1193 1191 1191 1190 1189 1187 1187 1185 1185 1184 1183 1181 1181 1179 1179 1177 1177 1175 1175 1174 1173 1172 1170 1170 1168 1168 1167 1166 1164 1164 1163 1161 1161 1159 1159 1157 1157 1156 1155 1154 1152 1152 1150 1150 1148 1148 1147 1145 1145 1143 1143 1141 1141 1140 1138 1138 1137 1135 1135 1134 1132 1132 1130 1130 1129 1128 1127 1125 1125 1124 1122 1122 1120 1120 1117 1117 1117 1116 1115 1114 1113 1111 1111 1110 1109 1107 1107 1105 1105 1103 1103 1101 1101 1099 1099 1098 1096 1096 1094 1094 1093 1091 1091 1088 1088 1088 1087 1086 1313 1312 1310 1310 1307 1307 1307 1305 1305 1304 1302 1302 1300 1300 1299 1297 1297 1295 1295 1293 1293 1292 1291 1288 1288 1288 1286 1286 1284 1284 1283 1280 1280 1280 1279 1277 1277 1276 1274 1274 1272 1272 1270 1270 1269 1267 1267 1265 1265 1263 1263 1261 1261 1260 1259 1257 1257 1256 1254 1254 1252 1252 1249 1249 1249 1248 1247 1246 1245 1243 1243 1242 1241 1239 1239 1236 1236 1236 1234 1234 1232 1232 1231 1229 1229 1227 1227 1226 1224 1224 1222 1222 1220 1220 1218 1218 1216 1216 1215 1214 1212 1212 1210 1210 1209 1207 1207 1205 1205 1202 1202 1202 1201 1200 1436 1435 1432 1432 1432 1430 1430 1429 1427 1427 1425 1425 1423 1423 1421 1421 1421 1420 1418 1418 1417 1415 1415 1413 1413 1411 1411 1410 1408 1408 1406 1406 1404 1404 1403 1401 1401 1400 1398 1398 1396 1396 1393 1393 1393 1392 1391 1389 1389 1388 1386 1386 1385 1383 1383 1381 1381 1378 1378 1378 1377 1376 1374 1374 1373 1371 1371 1370 1368 1368 1366 1366 1363 1363 1363 1362 1361 1359 1359 1358 1356 1356 1355 1352 1352 1352 1351 1350 1349 1347 1347 1345 1345 1343 1343 1341 1341 1340 1338 1338 1337 1335 1335 1333 1333 1330 1330 1330 1329 1328 1327 1326 1324 1324 1322 1322 1321 1319 1319 1318 1316 1316 1314 1314 1545 1544 1543 1541 1541 1540 1538 1538 1536 1536 1535 1534 1532 1532 1530 1530 1528 1528 1527 1525 1525 1523 1523 1521 1521 1519 1519 1518 1516 1516 1514 1514 1513 1511 1511 1509 1509 1507 1507 1505 1505 1504 1502 1502 1500 1500 1499 1497 1497 1495 1495 1493 1493 1491 1491 1490 1489 1487 1487 1486 1484 1484 1482 1482 1480 1480 1479 1478 1476 1476 1474 1474 1472 1472 1470 1470 1468 1468 1467 1466 1464 1464 1463 1461 1461 1459 1459 1456 1456 1456 1455 1454 1452 1452 1451 1450 1448 1448 1447 1445 1445 1443 1443 1440 1440 1440 1439 1438 1437 1661 1659 1659 1657 1657 1655 1655 1654 1652 1652 1651 1649 1649 1647 1647 1645 1645 1644 1643 1641 1641 1639 1639 1637 1637 1636 1634 1634 1633 1632 1630 1630 1628 1628 1627 1625 1625 1623 1623 1621 1621 1619 1619 1618 1617 1616 1615 1613 1613 1611 1611 1610 1608 1608 1606 1606 1605 1603 1603 1601 1601 1599 1599 1597 1597 1596 1595 1594 1592 1592 1590 1590 1589 1587 1587 1585 1585 1584 1583 1581 1581 1580 1578 1578 1576 1576 1574 1574 1573 1571 1571 1569 1569 1567 1567 1566 1565 1564 1562 1562 1560 1560 1558 1558 1557 1555 1555 1553 1553 1551 1551 1550 1549 1548 1546 1546 1780 1778 1778 1777 1775 1775 1773 1773 1771 1771 1769 1769 1768 1767 1765 1765 1763 1763 1761 1761 1759 1759 1757 1757 1756 1755 1753 1753 1751 1751 1750 1749 1747 1747 1745 1745 1743 1743 1741 1741 1740 1739 1738 1736 1736 1734 1734 1733 1731 1731 1730 1728 1728 1726 1726 1725 1724 1722 1722 1720 1720 1718 1718 1716 1716 1714 1714 1713 1712 1710 1710 1708 1708 1707 1706 1704 1704 1702 1702 1700 1700 1698 1698 1697 1696 1695 1693 1693 1692 1690 1690 1688 1688 1686 1686 1685 1684 1682 1682 1680 1680 1678 1678 1676 1676 1674 1674 1672 1672 1671 1670 1668 1668 1666 1666 1664 1664 1662 1662 1898 1896 1896 1894 1894 1892 1892 1891 1890 1888 1888 1886 1886 1884 1884 1882 1882 1881 1880 1878 1878 1876 1876 1874 1874 1873 1872 1870 1870 1869 1868 1866 1866 1865 1863 1863 1861 1861 1859 1859 1858 1856 1856 1855 1853 1853 1851 1851 1849 1849 1847 1847 1846 1844 1844 1841 1841 1841 1839 1839 1837 1837 1836 1834 1834 1832 1832 1831 1829 1829 1827 1827 1826 1825 1823 1823 1821 1821 1819 1819 1818 1816 1816 1814 1814 1812 1812 1810 1810 1808 1808 1807 1806 1805 1802 1802 1802 1800 1800 1798 1798 1797 1796 1794 1794 1792 1792 1790 1790 1788 1788 1785 1785 1785 1784 1783 1781 1781 1998 1996 1996 1994 1994 1992 1992 1991 1989 1989 1987 1987 1985 1985 1984 1983 1981 1981 1980 1978 1978 1976 1976 1973 1973 1973 1972 1971 1969 1969 1968 1966 1966 1964 1964 1962 1962 1960 1960 1959 1958 1956 1956 1954 1954 1952 1952 1951 1949 1949 1947 1947 1945 1945 1944 1942 1942 1941 1939 1939 1937 1937 1936 1935 1933 1933 1931 1931 1930 1928 1928 1926 1926 1924 1924 1922 1922 1921 1920 1918 1918 1916 1916 1914 1914 1913 1911 1911 1909 1909 1907 1907 1906 1904 1904 1903 1901 1901 1899 1899 2119 2117 2117 2115 2115 2113 2113 2112 2111 2109 2109 2107 2107 2104 2104 2104 2103 2102 2101 2100 2098 2098 2096 2096 2094 2094 2093 2092 2090 2090 2089 2086 2086 2086 2085 2084 2083 2081 2081 2079 2079 2077 2077 2075 2075 2074 2073 2071 2071 2069 2069 2067 2067 2065 2065 2063 2063 2062 2060 2060 2057 2057 2057 2055 2055 2053 2053 2052 2050 2050 2048 2048 2046 2046 2045 2044 2042 2042 2041 2039 2039 2037 2037 2036 2034 2034 2032 2032 2030 2030 2028 2028 2026 2026 2024 2024 2023 2022 2020 2020 2018 2018 2017 2016 2014 2014 2012 2012 2010 2010 2008 2008 2006 2006 2005 2003 2003 2001 2001 1999 1999 2163 2161 2161 2160 2158 2158 2155 2155 2155 2154 2153 2151 2151 2150 2148 2148 2145 2145 2145 2143 2143 2141 2141 2140 2139 2137 2137 2135 2135 2133 2133 2132 2130 2130 2128 2128 2127 2126 2124 2124 2122 2122 2120 2120 UTF-8 clusters: 207 206 202 202 200 196 196 192 192 188 188 184 184 182 181 177 177 173 173 172 168 168 164 164 160 160 159 155 155 151 151 147 147 143 143 141 140 136 136 132 132 128 128 124 124 122 118 118 117 116 114 110 110 106 106 102 102 101 100 96 96 92 92 90 86 86 82 82 78 78 77 76 72 72 71 67 67 65 61 61 60 56 56 52 52 50 46 46 42 42 41 37 37 35 31 31 27 27 23 23 21 20 19 15 15 11 11 07 07 03 03 01 00 403 399 399 395 395 391 391 387 387 385 384 382 378 378 374 374 373 369 369 365 365 359 359 359 357 355 351 351 350 346 346 342 342 336 336 336 334 332 328 328 327 323 323 319 319 313 313 313 311 309 305 305 304 302 301 299 300 298 297 295 293 291 289 287 285 283 282 281 280 276 276 272 272 268 268 264 264 260 260 259 255 255 249 249 249 245 245 241 241 240 236 236 232 232 228 228 227 225 224 220 220 216 216 212 212 208 208 594 590 590 586 586 582 582 578 578 576 575 574 570 570 566 566 562 562 558 558 556 555 554 550 550 549 548 544 544 540 540 536 536 532 532 528 528 527 525 521 521 520 516 516 514 510 510 506 506 505 501 501 497 497 493 493 489 489 487 486 484 480 480 476 476 475 471 471 467 467 461 461 461 459 457 453 453 452 448 448 444 444 440 440 440 436 436 432 432 431 427 427 421 421 421 417 417 413 413 412 408 408 404 404 795 793 789 789 787 783 783 779 779 778 777 773 773 769 769 765 765 764 763 759 759 758 754 754 752 748 748 744 744 743 742 738 738 734 734 730 730 729 728 726 722 722 718 718 714 714 710 710 706 706 702 702 701 699 695 695 693 689 689 685 685 684 680 680 678 674 674 673 669 669 667 663 663 662 658 658 654 654 653 652 648 648 644 644 642 638 638 637 636 632 632 628 628 624 624 623 619 619 613 613 613 609 609 605 605 601 601 599 595 595 1010 1009 1005 1005 1003 999 999 995 995 991 991 989 988 987 983 983 982 981 977 977 973 973 969 969 968 966 962 962 961 960 958 954 954 950 950 946 946 945 944 942 938 938 934 934 930 930 926 926 922 922 921 915 915 915 911 911 910 909 905 905 903 899 899 895 895 891 891 890 886 886 882 882 878 878 874 874 872 871 869 865 865 861 861 857 857 853 853 852 850 844 844 844 840 840 836 836 835 833 829 829 825 825 821 821 817 817 816 812 812 810 806 806 802 802 800 796 796 1203 1199 1199 1195 1195 1194 1193 1189 1189 1185 1185 1181 1181 1177 1177 1176 1175 1171 1171 1169 1165 1165 1161 1161 1157 1157 1156 1154 1152 1148 1148 1144 1144 1140 1140 1136 1136 1135 1131 1131 1129 1125 1125 1121 1121 1117 1117 1115 1114 1110 1110 1106 1106 1105 1099 1099 1099 1095 1095 1093 1092 1091 1087 1087 1085 1081 1081 1077 1077 1073 1073 1071 1070 1068 1064 1064 1060 1060 1059 1058 1054 1054 1050 1050 1044 1044 1044 1042 1040 1036 1036 1035 1031 1031 1027 1027 1025 1021 1021 1017 1017 1013 1013 1011 1408 1404 1404 1400 1400 1399 1395 1395 1391 1391 1385 1385 1385 1383 1381 1380 1376 1376 1372 1372 1371 1370 1366 1366 1360 1360 1360 1356 1356 1352 1352 1348 1348 1347 1346 1344 1340 1340 1339 1337 1333 1333 1329 1329 1325 1325 1324 1323 1319 1319 1317 1313 1313 1309 1309 1305 1305 1303 1302 1301 1297 1297 1296 1295 1293 1289 1289 1287 1283 1283 1279 1279 1278 1274 1274 1270 1270 1266 1266 1262 1262 1258 1258 1257 1253 1253 1249 1249 1245 1245 1244 1240 1240 1236 1236 1232 1232 1228 1228 1227 1223 1223 1219 1219 1218 1214 1214 1212 1208 1208 1204 1204 1607 1606 1602 1602 1600 1596 1596 1592 1592 1591 1590 1588 1584 1584 1580 1580 1576 1576 1575 1574 1570 1570 1564 1564 1564 1560 1560 1559 1558 1554 1554 1550 1550 1546 1546 1545 1541 1541 1537 1537 1531 1531 1531 1529 1528 1527 1525 1521 1521 1519 1515 1515 1511 1511 1510 1509 1505 1505 1503 1499 1499 1495 1495 1494 1490 1490 1486 1486 1480 1480 1480 1478 1476 1475 1474 1470 1470 1468 1464 1464 1463 1462 1458 1458 1457 1456 1454 1450 1450 1446 1446 1442 1442 1438 1438 1434 1434 1433 1429 1429 1425 1425 1423 1419 1419 1413 1413 1413 1411 1409 1794 1790 1790 1789 1785 1785 1781 1781 1777 1777 1776 1772 1772 1768 1768 1762 1762 1762 1760 1758 1757 1756 1752 1752 1750 1746 1746 1742 1742 1738 1738 1736 1735 1734 1730 1730 1729 1725 1725 1721 1721 1717 1717 1713 1713 1709 1709 1705 1705 1704 1700 1700 1696 1696 1695 1693 1689 1689 1685 1685 1684 1683 1679 1679 1675 1675 1671 1671 1667 1667 1663 1663 1662 1661 1657 1657 1656 1655 1651 1651 1649 1645 1645 1641 1641 1640 1639 1635 1635 1631 1631 1627 1627 1626 1622 1622 1618 1618 1612 1612 1612 1610 1608 1990 1986 1986 1982 1982 1978 1978 1977 1975 1969 1969 1969 1965 1965 1961 1961 1957 1957 1956 1954 1952 1948 1948 1944 1944 1943 1942 1938 1938 1934 1934 1928 1928 1928 1924 1924 1920 1920 1919 1918 1914 1914 1913 1909 1909 1905 1905 1901 1901 1900 1896 1896 1892 1892 1886 1886 1886 1884 1882 1881 1880 1876 1876 1870 1870 1870 1866 1866 1862 1862 1861 1860 1856 1856 1855 1851 1851 1847 1847 1843 1843 1839 1839 1835 1835 1834 1832 1828 1828 1824 1824 1823 1822 1818 1818 1814 1814 1810 1810 1806 1806 1802 1802 1798 1798 1796 1795 2200 2199 2195 2195 2189 2189 2189 2185 2185 2184 2183 2179 2179 2175 2175 2174 2173 2169 2169 2165 2165 2161 2161 2157 2157 2155 2154 2152 2148 2148 2144 2144 2143 2141 2137 2137 2135 2131 2131 2127 2127 2123 2123 2121 2120 2118 2114 2114 2110 2110 2106 2106 2105 2101 2101 2097 2097 2093 2093 2092 2088 2088 2086 2082 2082 2080 2076 2076 2072 2072 2070 2069 2068 2064 2064 2062 2058 2058 2054 2054 2048 2048 2048 2046 2044 2043 2042 2038 2038 2037 2036 2032 2032 2028 2028 2024 2024 2020 2020 2016 2016 2015 2011 2011 2007 2007 2005 2001 2001 1995 1995 1995 1993 1991 2412 2410 2406 2406 2400 2400 2400 2396 2396 2395 2391 2391 2387 2387 2385 2381 2381 2377 2377 2373 2373 2371 2370 2364 2364 2364 2360 2360 2356 2356 2355 2349 2349 2349 2347 2343 2343 2342 2338 2338 2334 2334 2330 2330 2329 2325 2325 2321 2321 2317 2317 2313 2313 2312 2311 2307 2307 2305 2301 2301 2297 2297 2291 2291 2291 2289 2287 2286 2285 2281 2281 2280 2279 2275 2275 2269 2269 2269 2265 2265 2261 2261 2260 2256 2256 2252 2252 2251 2247 2247 2243 2243 2239 2239 2235 2235 2231 2231 2230 2228 2224 2224 2220 2220 2219 2215 2215 2211 2211 2205 2205 2205 2203 2201 2646 2644 2638 2638 2638 2634 2634 2633 2629 2629 2625 2625 2621 2621 2617 2617 2617 2615 2611 2611 2610 2606 2606 2602 2602 2598 2598 2597 2593 2593 2589 2589 2585 2585 2584 2580 2580 2578 2574 2574 2570 2570 2564 2564 2564 2562 2560 2556 2556 2555 2551 2551 2549 2545 2545 2541 2541 2535 2535 2535 2533 2531 2527 2527 2526 2522 2522 2520 2516 2516 2512 2512 2506 2506 2506 2504 2502 2498 2498 2497 2493 2493 2491 2485 2485 2485 2483 2481 2480 2476 2476 2472 2472 2468 2468 2464 2464 2463 2459 2459 2457 2453 2453 2449 2449 2443 2443 2443 2441 2439 2438 2436 2432 2432 2428 2428 2427 2423 2423 2421 2417 2417 2413 2413 2845 2844 2843 2839 2839 2837 2833 2833 2829 2829 2828 2827 2823 2823 2819 2819 2815 2815 2814 2810 2810 2806 2806 2802 2802 2798 2798 2797 2793 2793 2789 2789 2788 2784 2784 2780 2780 2776 2776 2772 2772 2771 2767 2767 2763 2763 2762 2758 2758 2754 2754 2750 2750 2746 2746 2745 2744 2740 2740 2738 2734 2734 2730 2730 2726 2726 2725 2724 2720 2720 2716 2716 2712 2712 2708 2708 2704 2704 2703 2702 2698 2698 2696 2692 2692 2688 2688 2682 2682 2682 2680 2678 2674 2674 2673 2672 2668 2668 2666 2662 2662 2658 2658 2652 2652 2652 2650 2648 2647 3059 3055 3055 3051 3051 3047 3047 3045 3041 3041 3040 3036 3036 3032 3032 3028 3028 3027 3026 3022 3022 3018 3018 3014 3014 3012 3008 3008 3007 3006 3002 3002 2998 2998 2996 2992 2992 2988 2988 2984 2984 2980 2980 2979 2978 2976 2974 2970 2970 2966 2966 2964 2960 2960 2956 2956 2955 2951 2951 2947 2947 2943 2943 2939 2939 2937 2936 2935 2931 2931 2927 2927 2925 2921 2921 2917 2917 2916 2915 2911 2911 2910 2906 2906 2902 2902 2898 2898 2896 2892 2892 2888 2888 2884 2884 2882 2881 2880 2876 2876 2872 2872 2868 2868 2866 2862 2862 2858 2858 2854 2854 2852 2851 2850 2846 2846 3281 3277 3277 3275 3271 3271 3267 3267 3263 3263 3259 3259 3257 3256 3252 3252 3248 3248 3244 3244 3240 3240 3236 3236 3234 3233 3229 3229 3225 3225 3224 3223 3219 3219 3215 3215 3211 3211 3207 3207 3205 3204 3202 3198 3198 3194 3194 3193 3189 3189 3187 3183 3183 3179 3179 3178 3176 3172 3172 3168 3168 3164 3164 3160 3160 3156 3156 3154 3153 3149 3149 3145 3145 3144 3143 3139 3139 3135 3135 3131 3131 3127 3127 3125 3124 3123 3119 3119 3117 3113 3113 3109 3109 3105 3105 3104 3103 3099 3099 3095 3095 3091 3091 3087 3087 3083 3083 3079 3079 3078 3076 3072 3072 3068 3068 3064 3064 3060 3060 3502 3498 3498 3494 3494 3490 3490 3489 3487 3483 3483 3479 3479 3475 3475 3471 3471 3470 3469 3465 3465 3461 3461 3457 3457 3456 3455 3451 3451 3450 3449 3445 3445 3443 3439 3439 3435 3435 3431 3431 3429 3425 3425 3424 3420 3420 3416 3416 3412 3412 3408 3408 3407 3403 3403 3397 3397 3397 3393 3393 3389 3389 3388 3384 3384 3380 3380 3378 3374 3374 3370 3370 3368 3367 3363 3363 3359 3359 3355 3355 3354 3350 3350 3346 3346 3342 3342 3338 3338 3334 3334 3332 3331 3329 3323 3323 3323 3319 3319 3315 3315 3314 3312 3308 3308 3304 3304 3300 3300 3296 3296 3290 3290 3290 3288 3286 3282 3282 3690 3686 3686 3682 3682 3678 3678 3677 3673 3673 3669 3669 3665 3665 3664 3662 3658 3658 3656 3652 3652 3648 3648 3642 3642 3642 3640 3638 3634 3634 3633 3629 3629 3625 3625 3621 3621 3617 3617 3615 3614 3610 3610 3606 3606 3602 3602 3601 3597 3597 3593 3593 3589 3589 3588 3584 3584 3582 3578 3578 3574 3574 3573 3571 3567 3567 3563 3563 3562 3558 3558 3554 3554 3550 3550 3546 3546 3544 3543 3539 3539 3535 3535 3531 3531 3530 3526 3526 3522 3522 3518 3518 3517 3513 3513 3511 3507 3507 3503 3503 3916 3912 3912 3908 3908 3904 3904 3903 3902 3898 3898 3894 3894 3888 3888 3888 3886 3884 3883 3881 3877 3877 3873 3873 3869 3869 3868 3867 3863 3863 3861 3855 3855 3855 3853 3851 3850 3846 3846 3842 3842 3838 3838 3834 3834 3833 3831 3827 3827 3823 3823 3819 3819 3815 3815 3811 3811 3810 3806 3806 3800 3800 3800 3796 3796 3792 3792 3791 3787 3787 3783 3783 3779 3779 3778 3777 3773 3773 3771 3767 3767 3763 3763 3762 3758 3758 3754 3754 3750 3750 3746 3746 3742 3742 3738 3738 3737 3735 3731 3731 3727 3727 3725 3724 3720 3720 3716 3716 3712 3712 3708 3708 3704 3704 3703 3699 3699 3695 3695 3691 3691 3998 3994 3994 3992 3988 3988 3982 3982 3982 3980 3978 3974 3974 3973 3969 3969 3963 3963 3963 3959 3959 3955 3955 3953 3952 3948 3948 3944 3944 3940 3940 3939 3935 3935 3931 3931 3930 3929 3925 3925 3921 3921 3917 3917 diff --git a/tests/multi-fonts.test b/tests/multi-fonts.test index 3eca4cfd..87c34e7e 100644 --- a/tests/multi-fonts.test +++ b/tests/multi-fonts.test @@ -64,27 +64,27 @@ run[1]: start: 10 length: 11 direction: rtl script: Arab font: Aref Ruqaa run[2]: start: 8 length: 2 direction: rtl script: Arab font: Amiri Glyph information: -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 0 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 1174 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 2238 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 3170 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3680 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 4220 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 4958 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5990 y_position: 0 font: Amiri -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 6590 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 7338 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 8086 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 8834 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 9582 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 10330 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 11078 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 11826 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 12574 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 13322 y_position: 0 font: Aref Ruqaa -glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 x_position: 14070 y_position: 0 font: Aref Ruqaa -glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 x_position: 14818 y_position: 0 font: Amiri -glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 x_position: 15178 y_position: 0 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [0] x_offset: 0 y_offset: 0 x_advance: 748 line: 00 font: Aref Ruqaa +glyph [2320] x_offset: 0 y_offset: 0 x_advance: 360 line: 00 font: Amiri +glyph [388] x_offset: 0 y_offset: 0 x_advance: 446 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 20 19 18 17 16 15 14 13 12 11 10 09 08 UTF-8 clusters: 00 01 02 03 04 05 06 07 31 29 27 25 23 21 19 18 16 14 12 10 08 diff --git a/tests/multi-fonts2.test b/tests/multi-fonts2.test index 7f18ecd4..43c75e0f 100644 --- a/tests/multi-fonts2.test +++ b/tests/multi-fonts2.test @@ -29,10 +29,10 @@ run[1]: start: 1 length: 2 direction: rtl script: Arab font: DejaVu Sans run[2]: start: 0 length: 1 direction: rtl script: Arab font: Amiri Glyph information: -glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 x_position: 0 y_position: 0 font: Amiri -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 1200 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 1770 y_position: 0 font: DejaVu Sans -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2900 y_position: 0 font: Amiri +glyph [2454] x_offset: 0 y_offset: 0 x_advance: 1200 line: 00 font: Amiri +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 03 02 01 00 UTF-8 clusters: 06 04 02 00 diff --git a/tests/scripts-backward-ltr.test b/tests/scripts-backward-ltr.test index 20e4ea02..229a3ac4 100644 --- a/tests/scripts-backward-ltr.test +++ b/tests/scripts-backward-ltr.test @@ -99,41 +99,41 @@ run[7]: start: 28 length: 2 direction: ltr script: Arab font: DejaVu Sans run[8]: start: 30 length: 5 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 x_position: 0 y_position: 0 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 1363 y_position: 0 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 2460 y_position: 0 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 3806 y_position: 0 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 4264 y_position: 0 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 5420 y_position: 0 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 x_position: 6604 y_position: 0 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 x_position: 8155 y_position: 0 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 9235 y_position: 0 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 9804 y_position: 0 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 11150 y_position: 0 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 11608 y_position: 0 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 12764 y_position: 0 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 x_position: 13948 y_position: 0 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 x_position: 15230 y_position: 0 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 16937 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 17507 y_position: 0 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 x_position: 18637 y_position: 0 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 x_position: 19859 y_position: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 19859 y_position: 0 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 20658 y_position: 0 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 21918 y_position: 0 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 x_position: 23216 y_position: 0 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 24516 y_position: 0 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 25085 y_position: 0 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 x_position: 25654 y_position: 0 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 26721 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 28019 y_position: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 28670 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 29469 y_position: 0 font: DejaVu Sans -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 x_position: 30120 y_position: 0 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 x_position: 30744 y_position: 0 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 x_position: 31362 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 32628 y_position: 0 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 33758 y_position: 0 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 line: 00 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 line: 00 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 line: 00 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 line: 00 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 line: 00 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 line: 00 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 line: 00 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 line: 00 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 line: 00 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 18 18 20 21 22 23 24 25 26 27 28 29 34 33 32 31 30 UTF-8 clusters: 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 36 36 39 40 41 42 43 44 45 46 47 48 57 55 53 51 49 diff --git a/tests/scripts-backward-rtl.test b/tests/scripts-backward-rtl.test index ae3e8bae..a2b03e43 100644 --- a/tests/scripts-backward-rtl.test +++ b/tests/scripts-backward-rtl.test @@ -98,41 +98,41 @@ run[6]: start: 4 length: 5 direction: rtl script: Hebr font: DejaVu Sans run[7]: start: 0 length: 4 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 x_position: 0 y_position: 0 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 x_position: 624 y_position: 0 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 x_position: 1242 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 2508 y_position: 0 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 3638 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4735 y_position: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5386 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 6185 y_position: 0 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 6836 y_position: 0 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 8096 y_position: 0 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 x_position: 9394 y_position: 0 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 10694 y_position: 0 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 11263 y_position: 0 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 x_position: 11832 y_position: 0 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 12899 y_position: 0 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 x_position: 14197 y_position: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 14197 y_position: 0 font: DejaVu Sans -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 x_position: 14996 y_position: 0 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 16359 y_position: 0 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 17456 y_position: 0 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 18802 y_position: 0 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 19260 y_position: 0 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 20416 y_position: 0 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 x_position: 21600 y_position: 0 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 x_position: 23151 y_position: 0 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 24231 y_position: 0 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 24800 y_position: 0 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 26146 y_position: 0 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 26604 y_position: 0 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 27760 y_position: 0 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 x_position: 28944 y_position: 0 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 x_position: 30226 y_position: 0 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 31933 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 32503 y_position: 0 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 x_position: 33633 y_position: 0 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 line: 00 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 line: 00 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 line: 00 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 line: 00 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 line: 00 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 line: 00 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 line: 00 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 line: 00 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 line: 00 font: DejaVu Sans UTF-32 clusters: 34 33 32 31 30 29 28 27 20 21 22 23 24 25 26 18 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 57 55 53 51 49 48 47 46 39 40 41 42 43 44 45 36 36 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 diff --git a/tests/scripts-backward.test b/tests/scripts-backward.test index f9278665..4f3dcf22 100644 --- a/tests/scripts-backward.test +++ b/tests/scripts-backward.test @@ -98,41 +98,41 @@ run[6]: start: 4 length: 5 direction: rtl script: Hebr font: DejaVu Sans run[7]: start: 0 length: 4 direction: rtl script: Arab font: DejaVu Sans Glyph information: -glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 x_position: 0 y_position: 0 font: DejaVu Sans -glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 x_position: 624 y_position: 0 font: DejaVu Sans -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 x_position: 1242 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 2508 y_position: 0 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 3638 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4735 y_position: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5386 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 6185 y_position: 0 font: DejaVu Sans -glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 x_position: 6836 y_position: 0 font: DejaVu Sans -glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 8096 y_position: 0 font: DejaVu Sans -glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 x_position: 9394 y_position: 0 font: DejaVu Sans -glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 10694 y_position: 0 font: DejaVu Sans -glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 11263 y_position: 0 font: DejaVu Sans -glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 x_position: 11832 y_position: 0 font: DejaVu Sans -glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 x_position: 12899 y_position: 0 font: DejaVu Sans -glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 x_position: 14197 y_position: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 14197 y_position: 0 font: DejaVu Sans -glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 x_position: 14996 y_position: 0 font: DejaVu Sans -glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 x_position: 16359 y_position: 0 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 17456 y_position: 0 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 18802 y_position: 0 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 19260 y_position: 0 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 20416 y_position: 0 font: DejaVu Sans -glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 x_position: 21600 y_position: 0 font: DejaVu Sans -glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 x_position: 23151 y_position: 0 font: DejaVu Sans -glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 x_position: 24231 y_position: 0 font: DejaVu Sans -glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 x_position: 24800 y_position: 0 font: DejaVu Sans -glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 x_position: 26146 y_position: 0 font: DejaVu Sans -glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 x_position: 26604 y_position: 0 font: DejaVu Sans -glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 x_position: 27760 y_position: 0 font: DejaVu Sans -glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 x_position: 28944 y_position: 0 font: DejaVu Sans -glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 x_position: 30226 y_position: 0 font: DejaVu Sans -glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 x_position: 31933 y_position: 0 font: DejaVu Sans -glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 x_position: 32503 y_position: 0 font: DejaVu Sans -glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 x_position: 33633 y_position: 0 font: DejaVu Sans +glyph [35] x_offset: 0 y_offset: 0 x_advance: 624 line: 00 font: DejaVu Sans +glyph [38] x_offset: 0 y_offset: 0 x_advance: 618 line: 00 font: DejaVu Sans +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1266 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [4] x_offset: 0 y_offset: 0 x_advance: 1260 line: 00 font: DejaVu Sans +glyph [9] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [5] x_offset: 0 y_offset: 0 x_advance: 1300 line: 00 font: DejaVu Sans +glyph [8] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [7] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [10] x_offset: 0 y_offset: 0 x_advance: 1067 line: 00 font: DejaVu Sans +glyph [6] x_offset: 0 y_offset: 0 x_advance: 1298 line: 00 font: DejaVu Sans +glyph [27] x_offset: 0 y_offset: 0 x_advance: 0 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [49] x_offset: 0 y_offset: 0 x_advance: 1363 line: 00 font: DejaVu Sans +glyph [50] x_offset: 0 y_offset: 0 x_advance: 1097 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [46] x_offset: 0 y_offset: 0 x_advance: 1551 line: 00 font: DejaVu Sans +glyph [53] x_offset: 0 y_offset: 0 x_advance: 1080 line: 00 font: DejaVu Sans +glyph [16] x_offset: 0 y_offset: 0 x_advance: 569 line: 00 font: DejaVu Sans +glyph [15] x_offset: 0 y_offset: 0 x_advance: 1346 line: 00 font: DejaVu Sans +glyph [12] x_offset: 0 y_offset: 0 x_advance: 458 line: 00 font: DejaVu Sans +glyph [14] x_offset: 0 y_offset: 0 x_advance: 1156 line: 00 font: DejaVu Sans +glyph [11] x_offset: 0 y_offset: 0 x_advance: 1184 line: 00 font: DejaVu Sans +glyph [13] x_offset: 0 y_offset: 0 x_advance: 1282 line: 00 font: DejaVu Sans +glyph [56] x_offset: 0 y_offset: 0 x_advance: 1707 line: 00 font: DejaVu Sans +glyph [37] x_offset: 0 y_offset: 0 x_advance: 570 line: 00 font: DejaVu Sans +glyph [42] x_offset: 0 y_offset: 0 x_advance: 1130 line: 00 font: DejaVu Sans +glyph [44] x_offset: 0 y_offset: 0 x_advance: 1222 line: 00 font: DejaVu Sans UTF-32 clusters: 34 33 32 31 30 29 28 27 20 21 22 23 24 25 26 18 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 57 55 53 51 49 48 47 46 39 40 41 42 43 44 45 36 36 34 32 30 28 26 24 22 20 18 16 14 12 10 08 06 04 02 00 diff --git a/tests/scripts-forward-ltr.test b/tests/scripts-forward-ltr.test index b098f4bd..75608b5f 100644 --- a/tests/scripts-forward-ltr.test +++ b/tests/scripts-forward-ltr.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 0 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 1229 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 2458 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 3687 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4916 y_position: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5567 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 6366 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 7595 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 8824 y_position: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 10053 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 10852 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 11503 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 12732 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 13961 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 15190 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 16419 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/scripts-forward-rtl.test b/tests/scripts-forward-rtl.test index 99848421..75cd986a 100644 --- a/tests/scripts-forward-rtl.test +++ b/tests/scripts-forward-rtl.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 0 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 1229 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 2458 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 3687 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4916 y_position: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5567 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 6366 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 7595 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 8824 y_position: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 10053 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 10852 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 11503 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 12732 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 13961 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 15190 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 16419 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/scripts-forward.test b/tests/scripts-forward.test index 1e0f6f38..0b646085 100644 --- a/tests/scripts-forward.test +++ b/tests/scripts-forward.test @@ -55,22 +55,22 @@ run[3]: start: 11 length: 1 direction: ltr script: Grek font: DejaVu Sans run[4]: start: 12 length: 4 direction: ltr script: Cyrl font: DejaVu Sans Glyph information: -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 0 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 1229 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 2458 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 3687 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 4916 y_position: 0 font: DejaVu Sans -glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 5567 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 6366 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 7595 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 8824 y_position: 0 font: DejaVu Sans -glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 x_position: 10053 y_position: 0 font: DejaVu Sans -glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 x_position: 10852 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 11503 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 12732 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 13961 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 15190 y_position: 0 font: DejaVu Sans -glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 x_position: 16419 y_position: 0 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [2] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [3] x_offset: 0 y_offset: 0 x_advance: 799 line: 00 font: DejaVu Sans +glyph [1] x_offset: 0 y_offset: 0 x_advance: 651 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans +glyph [0] x_offset: 0 y_offset: 0 x_advance: 1229 line: 00 font: DejaVu Sans UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 UTF-8 clusters: 00 01 02 03 04 05 06 08 10 12 13 14 16 18 20 22 diff --git a/tests/test1.test b/tests/test1.test index d3e6eadc..b41dc59b 100644 --- a/tests/test1.test +++ b/tests/test1.test @@ -62,25 +62,25 @@ run[2]: start: 5 length: 7 direction: ltr script: Latn font: Amiri run[3]: start: 0 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 0 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 975 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 1684 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2654 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3632 y_position: 0 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4232 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5172 y_position: 0 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 5772 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6946 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 8010 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 8942 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 9452 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 9992 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 10730 y_position: 0 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11762 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 12702 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 13677 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14386 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15356 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 18 17 16 15 14 13 12 05 06 07 08 09 10 11 04 03 02 01 00 UTF-8 clusters: 25 23 21 19 18 17 16 09 10 11 12 13 14 15 08 06 04 02 00 diff --git a/tests/test1_LTR.test b/tests/test1_LTR.test index 424e2f1a..8cd2a290 100644 --- a/tests/test1_LTR.test +++ b/tests/test1_LTR.test @@ -63,25 +63,25 @@ run[3]: start: 13 length: 2 direction: ltr script: Arab font: Amiri run[4]: start: 15 length: 4 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 0 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 975 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 1684 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2654 y_position: 0 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 3632 y_position: 0 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 4572 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 5746 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 6810 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 7742 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 8252 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 8792 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 9530 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10562 y_position: 0 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11162 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12102 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 12702 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 13677 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14386 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15356 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 03 02 01 00 04 05 06 07 08 09 10 11 12 13 14 18 17 16 15 UTF-8 clusters: 06 04 02 00 08 09 10 11 12 13 14 15 16 17 18 25 23 21 19 diff --git a/tests/test1_RTL.test b/tests/test1_RTL.test index af2e624e..fbebc0a2 100644 --- a/tests/test1_RTL.test +++ b/tests/test1_RTL.test @@ -62,25 +62,25 @@ run[2]: start: 5 length: 7 direction: ltr script: Latn font: Amiri run[3]: start: 0 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 0 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 975 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 1684 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 2654 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3632 y_position: 0 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 4232 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5172 y_position: 0 font: Amiri -glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 x_position: 5772 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 6946 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 8010 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 8942 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 9452 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 9992 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 10730 y_position: 0 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 11762 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 12702 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 13677 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14386 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15356 y_position: 0 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [40] x_offset: 0 y_offset: 0 x_advance: 1174 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 18 17 16 15 14 13 12 05 06 07 08 09 10 11 04 03 02 01 00 UTF-8 clusters: 25 23 21 19 18 17 16 09 10 11 12 13 14 15 08 06 04 02 00 diff --git a/tests/test2.test b/tests/test2.test index c0e98a8a..08251726 100644 --- a/tests/test2.test +++ b/tests/test2.test @@ -53,21 +53,21 @@ run[1]: start: 12 length: 3 direction: ltr script: Arab font: Amiri run[2]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 5472 y_position: 0 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 6562 y_position: 0 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 7652 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8742 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 9342 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 10317 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 11026 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 11996 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 12 13 14 11 10 09 08 07 UTF-8 clusters: 00 01 02 03 04 05 06 16 17 18 15 13 11 09 07 diff --git a/tests/test2_LTR.test b/tests/test2_LTR.test index baf0d590..0cfd1efe 100644 --- a/tests/test2_LTR.test +++ b/tests/test2_LTR.test @@ -53,21 +53,21 @@ run[1]: start: 12 length: 3 direction: ltr script: Arab font: Amiri run[2]: start: 7 length: 5 direction: rtl script: Arab font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 5472 y_position: 0 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 6562 y_position: 0 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 7652 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8742 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 9342 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 10317 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 11026 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 11996 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 12 13 14 11 10 09 08 07 UTF-8 clusters: 00 01 02 03 04 05 06 16 17 18 15 13 11 09 07 diff --git a/tests/test2_RTL.test b/tests/test2_RTL.test index fef71936..61a23dd0 100644 --- a/tests/test2_RTL.test +++ b/tests/test2_RTL.test @@ -54,21 +54,21 @@ run[2]: start: 6 length: 1 direction: rtl script: Latn font: Amiri run[3]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 0 y_position: 0 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 1090 y_position: 0 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 2180 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3270 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 3870 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 4845 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 5554 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 6524 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7502 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 8102 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 8964 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 9730 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 10592 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 11588 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 12128 y_position: 0 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri UTF-32 clusters: 12 13 14 11 10 09 08 07 06 00 01 02 03 04 05 UTF-8 clusters: 16 17 18 15 13 11 09 07 06 00 01 02 03 04 05 diff --git a/tests/test3.test b/tests/test3.test index 27d612ba..d4fc0a70 100644 --- a/tests/test3.test +++ b/tests/test3.test @@ -84,34 +84,34 @@ run[4]: start: 20 length: 1 direction: ltr script: Arab font: Amiri run[5]: start: 21 length: 7 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5472 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6645 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 7115 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7559 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8564 y_position: 0 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 9164 y_position: 0 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 10254 y_position: 0 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 11344 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12434 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 13034 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 14009 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14718 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15688 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16666 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 17266 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18126 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 19190 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20122 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20632 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 21172 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 21910 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 19 18 17 16 15 12 13 14 11 10 09 08 07 20 21 22 23 24 25 26 27 UTF-8 clusters: 00 01 02 03 04 05 06 26 24 22 20 19 16 17 18 15 13 11 09 07 28 29 30 31 32 33 34 35 diff --git a/tests/test3_LTR.test b/tests/test3_LTR.test index 0b115bdc..00549323 100644 --- a/tests/test3_LTR.test +++ b/tests/test3_LTR.test @@ -84,34 +84,34 @@ run[4]: start: 20 length: 1 direction: ltr script: Arab font: Amiri run[5]: start: 21 length: 7 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 862 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 1628 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 2490 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3486 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 4026 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 4872 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 5472 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 6645 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 7115 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 7559 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 8564 y_position: 0 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 9164 y_position: 0 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 10254 y_position: 0 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 11344 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 12434 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 13034 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 14009 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 14718 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 15688 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 16666 y_position: 0 font: Amiri -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 17266 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 18126 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 19190 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 20122 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 20632 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 21172 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 21910 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 19 18 17 16 15 12 13 14 11 10 09 08 07 20 21 22 23 24 25 26 27 UTF-8 clusters: 00 01 02 03 04 05 06 26 24 22 20 19 16 17 18 15 13 11 09 07 28 29 30 31 32 33 34 35 diff --git a/tests/test3_RTL.test b/tests/test3_RTL.test index 515faf58..0a6dea63 100644 --- a/tests/test3_RTL.test +++ b/tests/test3_RTL.test @@ -84,34 +84,34 @@ run[4]: start: 6 length: 1 direction: rtl script: Latn font: Amiri run[5]: start: 0 length: 6 direction: ltr script: Latn font: Amiri Glyph information: -glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 x_position: 0 y_position: 0 font: Amiri -glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 x_position: 860 y_position: 0 font: Amiri -glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 x_position: 1924 y_position: 0 font: Amiri -glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 x_position: 2856 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 3366 y_position: 0 font: Amiri -glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 x_position: 3906 y_position: 0 font: Amiri -glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 x_position: 4644 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 5676 y_position: 0 font: Amiri -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 6276 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 7449 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 7919 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 8363 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 9368 y_position: 0 font: Amiri -glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 9968 y_position: 0 font: Amiri -glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 11058 y_position: 0 font: Amiri -glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 x_position: 12148 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 13238 y_position: 0 font: Amiri -glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 x_position: 13838 y_position: 0 font: Amiri -glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 x_position: 14813 y_position: 0 font: Amiri -glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 x_position: 15522 y_position: 0 font: Amiri -glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 x_position: 16492 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 17470 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 18070 y_position: 0 font: Amiri -glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 x_position: 18932 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 19698 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 20560 y_position: 0 font: Amiri -glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 x_position: 21556 y_position: 0 font: Amiri -glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 x_position: 22096 y_position: 0 font: Amiri +glyph [72] x_offset: 0 y_offset: 0 x_advance: 860 line: 00 font: Amiri +glyph [81] x_offset: 0 y_offset: 0 x_advance: 1064 line: 00 font: Amiri +glyph [74] x_offset: 0 y_offset: 0 x_advance: 932 line: 00 font: Amiri +glyph [79] x_offset: 0 y_offset: 0 x_advance: 510 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [86] x_offset: 0 y_offset: 0 x_advance: 738 line: 00 font: Amiri +glyph [75] x_offset: 0 y_offset: 0 x_advance: 1032 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [20] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [21] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [22] x_offset: 0 y_offset: 0 x_advance: 1090 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5132] x_offset: 0 y_offset: 0 x_advance: 975 line: 00 font: Amiri +glyph [5049] x_offset: 0 y_offset: 0 x_advance: 529 line: 00 font: Amiri +glyph [3104] x_offset: 180 y_offset: 0 x_advance: 1150 line: 00 font: Amiri +glyph [2040] x_offset: 0 y_offset: 0 x_advance: 978 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [85] x_offset: 0 y_offset: 0 x_advance: 766 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [76] x_offset: 0 y_offset: 0 x_advance: 540 line: 00 font: Amiri +glyph [70] x_offset: 0 y_offset: 0 x_advance: 846 line: 00 font: Amiri UTF-32 clusters: 21 22 23 24 25 26 27 20 19 18 17 16 15 12 13 14 11 10 09 08 07 06 00 01 02 03 04 05 UTF-8 clusters: 29 30 31 32 33 34 35 28 26 24 22 20 19 16 17 18 15 13 11 09 07 06 00 01 02 03 04 05 diff --git a/tests/test4.test b/tests/test4.test index 80b850d4..02a2a7e8 100644 --- a/tests/test4.test +++ b/tests/test4.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 0 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1173 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 1643 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 2087 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3092 y_position: 0 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 3692 y_position: 0 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 4653 y_position: 0 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5054 y_position: 0 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 6534 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7331 y_position: 0 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 7931 y_position: 0 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 8347 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8835 y_position: 0 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 9305 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10469 y_position: 0 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11069 y_position: 0 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12879 y_position: 0 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 13379 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 00 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 00 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 00 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test4_LTR.test b/tests/test4_LTR.test index 8b14caa1..084f32df 100644 --- a/tests/test4_LTR.test +++ b/tests/test4_LTR.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 0 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1173 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 1643 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 2087 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3092 y_position: 0 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 3692 y_position: 0 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 4653 y_position: 0 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5054 y_position: 0 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 6534 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7331 y_position: 0 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 7931 y_position: 0 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 8347 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8835 y_position: 0 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 9305 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10469 y_position: 0 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11069 y_position: 0 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12879 y_position: 0 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 13379 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 00 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 00 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 00 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test4_RTL.test b/tests/test4_RTL.test index 7e472050..73280bba 100644 --- a/tests/test4_RTL.test +++ b/tests/test4_RTL.test @@ -55,24 +55,24 @@ Final Runs: run[0]: start: 0 length: 18 direction: rtl script: Arab font: Amiri Glyph information: -glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 x_position: 0 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 1173 y_position: 0 font: Amiri -glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 x_position: 1643 y_position: 0 font: Amiri -glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 x_position: 2087 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 3092 y_position: 0 font: Amiri -glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 x_position: 3692 y_position: 0 font: Amiri -glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 x_position: 4653 y_position: 0 font: Amiri -glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 x_position: 5054 y_position: 0 font: Amiri -glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 x_position: 6534 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 7331 y_position: 0 font: Amiri -glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 x_position: 7931 y_position: 0 font: Amiri -glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 x_position: 8347 y_position: 0 font: Amiri -glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 x_position: 8835 y_position: 0 font: Amiri -glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 x_position: 9305 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 10469 y_position: 0 font: Amiri -glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 x_position: 11069 y_position: 0 font: Amiri -glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 x_position: 12879 y_position: 0 font: Amiri -glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 x_position: 13379 y_position: 0 font: Amiri +glyph [419] x_offset: 0 y_offset: 0 x_advance: 1173 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [4992] x_offset: 0 y_offset: 0 x_advance: 444 line: 00 font: Amiri +glyph [4959] x_offset: 0 y_offset: 0 x_advance: 1005 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2926] x_offset: 0 y_offset: 0 x_advance: 961 line: 00 font: Amiri +glyph [2914] x_offset: 0 y_offset: 0 x_advance: 401 line: 00 font: Amiri +glyph [2382] x_offset: 0 y_offset: 0 x_advance: 1480 line: 00 font: Amiri +glyph [2334] x_offset: 0 y_offset: 0 x_advance: 797 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [5199] x_offset: 0 y_offset: 0 x_advance: 416 line: 00 font: Amiri +glyph [5154] x_offset: 0 y_offset: 0 x_advance: 488 line: 00 font: Amiri +glyph [2018] x_offset: 0 y_offset: 0 x_advance: 470 line: 00 font: Amiri +glyph [2396] x_offset: 0 y_offset: 0 x_advance: 1164 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [2052] x_offset: 0 y_offset: 0 x_advance: 1810 line: 00 font: Amiri +glyph [4494] x_offset: 0 y_offset: 0 x_advance: 500 line: 00 font: Amiri +glyph [4460] x_offset: 0 y_offset: 0 x_advance: 478 line: 00 font: Amiri UTF-32 clusters: 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 UTF-8 clusters: 31 29 27 25 24 22 20 18 16 15 13 11 09 07 06 04 02 00 diff --git a/tests/test5.test b/tests/test5.test index 44afe17d..a7d18193 100644 --- a/tests/test5.test +++ b/tests/test5.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 862 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1724 y_position: 0 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2324 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 3264 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 x_position: 4260 y_position: 0 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5196 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6136 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6736 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7598 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/test5_LTR.test b/tests/test5_LTR.test index fb77f805..6bfdf139 100644 --- a/tests/test5_LTR.test +++ b/tests/test5_LTR.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 862 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1724 y_position: 0 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2324 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 3264 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 x_position: 4260 y_position: 0 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5196 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6136 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6736 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7598 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/test5_RTL.test b/tests/test5_RTL.test index a3214c40..a3240fa8 100644 --- a/tests/test5_RTL.test +++ b/tests/test5_RTL.test @@ -39,16 +39,16 @@ Final Runs: run[0]: start: 0 length: 10 direction: ltr script: Latn font: Amiri Glyph information: -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 0 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 862 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 1724 y_position: 0 font: Amiri -glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 2324 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 x_position: 3264 y_position: 0 font: Amiri -glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 x_position: 4260 y_position: 0 font: Amiri -glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 x_position: 5196 y_position: 0 font: Amiri -glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 x_position: 6136 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 6736 y_position: 0 font: Amiri -glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 x_position: 7598 y_position: 0 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [11] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 996 line: 00 font: Amiri +glyph [69] x_offset: 0 y_offset: 0 x_advance: 936 line: 00 font: Amiri +glyph [12] x_offset: 0 y_offset: 0 x_advance: 940 line: 00 font: Amiri +glyph [3] x_offset: 0 y_offset: 0 x_advance: 600 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri +glyph [68] x_offset: 0 y_offset: 0 x_advance: 862 line: 00 font: Amiri UTF-32 clusters: 00 01 02 03 04 05 06 07 08 09 UTF-8 clusters: 00 01 02 03 04 05 06 07 08 09 diff --git a/tests/xyoffset.test b/tests/xyoffset.test index 0935b62c..b4e6bcaf 100644 --- a/tests/xyoffset.test +++ b/tests/xyoffset.test @@ -25,11 +25,11 @@ Final Runs: run[0]: start: 0 length: 3 direction: rtl script: Arab font: Aref Ruqaa Glyph information: -glyph [4] x_offset: 783 y_offset: 50 x_advance: 0 x_position: 783 y_position: 50 font: Aref Ruqaa -glyph [6] x_offset: 0 y_offset: 0 x_advance: 302 x_position: 0 y_position: 0 font: Aref Ruqaa -glyph [4] x_offset: 909 y_offset: 1075 x_advance: 0 x_position: 1211 y_position: 1075 font: Aref Ruqaa -glyph [10] x_offset: 0 y_offset: 868 x_advance: 432 x_position: 302 y_position: 868 font: Aref Ruqaa -glyph [9] x_offset: 0 y_offset: 1664 x_advance: 1054 x_position: 734 y_position: 1664 font: Aref Ruqaa +glyph [4] x_offset: 783 y_offset: 50 x_advance: 0 line: 00 font: Aref Ruqaa +glyph [6] x_offset: 0 y_offset: 0 x_advance: 302 line: 00 font: Aref Ruqaa +glyph [4] x_offset: 909 y_offset: 1075 x_advance: 0 line: 00 font: Aref Ruqaa +glyph [10] x_offset: 0 y_offset: 868 x_advance: 432 line: 00 font: Aref Ruqaa +glyph [9] x_offset: 0 y_offset: 1664 x_advance: 1054 line: 00 font: Aref Ruqaa UTF-32 clusters: 02 02 01 01 00 UTF-8 clusters: 04 04 02 02 00 From 3b00a7474e577d58f3a6a68644ca1302a613e048 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sun, 16 Apr 2017 05:51:09 +0200 Subject: [PATCH 43/43] Build libunibreak --- .appveyor.yml | 4 ++++ .travis.yml | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 67fb291f..17e281ec 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,6 +4,7 @@ os: install: - set PATH=C:\msys64\usr\bin;C:\msys64\mingw64\bin;%PATH% - appveyor DownloadFile "https://raw.githubusercontent.com/swig/cccl/master/cccl" + - appveyor DownloadFile "https://github.com/adah1972/libunibreak/releases/download/libunibreak_4_0/libunibreak-4.0.tar.gz" - call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% - appveyor-retry C:\msys64\usr\bin\pacman -Syuu --needed --noconfirm --noprogressbar --ask=127 - appveyor-retry C:\msys64\usr\bin\pacman -S --noconfirm autoconf automake libtool gtk-doc mingw-w64-x86_64-pkg-config mingw-w64-x86_64-harfbuzz mingw-w64-x86_64-fribidi mingw-w64-x86_64-freetype @@ -14,6 +15,9 @@ build_script: - set LD=cccl - set PKG_CONFIG_PATH=%PKG_CONFIG_PATH%:/mingw64/lib/pkgconfig - bash -c "mv cccl /usr/bin" + - bash -c "tar xf libunibreak-4.0.tar.gz && cd libunibreak-4.0 && ./configure --prefix=/usr/local && make && make install" + - set UNIBREAK_CFLAGS=-I/usr/local/include + - set UNIBREAK_LIBS="-L/usr/local/lib/ -lunibreak" - bash -c "exec 0