[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/ -> formatting.php (source)

   1  <?php
   2  /**
   3   * Main WordPress Formatting API.
   4   *
   5   * Handles many functions for formatting output.
   6   *
   7   * @package WordPress
   8   */
   9  
  10  /**
  11   * Replaces common plain text characters with formatted entities.
  12   *
  13   * Returns given text with transformations of quotes into smart quotes, apostrophes,
  14   * dashes, ellipses, the trademark symbol, and the multiplication symbol.
  15   *
  16   * As an example,
  17   *
  18   *     'cause today's effort makes it worth tomorrow's "holiday" ...
  19   *
  20   * Becomes:
  21   *
  22   *     &#8217;cause today&#8217;s effort makes it worth tomorrow&#8217;s &#8220;holiday&#8221; &#8230;
  23   *
  24   * Code within certain HTML blocks are skipped.
  25   *
  26   * Do not use this function before the {@see 'init'} action hook; everything will break.
  27   *
  28   * @since 0.71
  29   *
  30   * @global array $wp_cockneyreplace Array of formatted entities for certain common phrases.
  31   * @global array $shortcode_tags
  32   *
  33   * @param string $text  The text to be formatted.
  34   * @param bool   $reset Set to true for unit testing. Translated patterns will reset.
  35   * @return string The string replaced with HTML entities.
  36   */
  37  function wptexturize( $text, $reset = false ) {
  38      global $wp_cockneyreplace, $shortcode_tags;
  39      static $static_characters            = null,
  40          $static_replacements             = null,
  41          $dynamic_characters              = null,
  42          $dynamic_replacements            = null,
  43          $default_no_texturize_tags       = null,
  44          $default_no_texturize_shortcodes = null,
  45          $run_texturize                   = true,
  46          $apos                            = null,
  47          $prime                           = null,
  48          $double_prime                    = null,
  49          $opening_quote                   = null,
  50          $closing_quote                   = null,
  51          $opening_single_quote            = null,
  52          $closing_single_quote            = null,
  53          $open_q_flag                     = '<!--oq-->',
  54          $open_sq_flag                    = '<!--osq-->',
  55          $apos_flag                       = '<!--apos-->';
  56  
  57      // If there's nothing to do, just stop.
  58      if ( empty( $text ) || false === $run_texturize ) {
  59          return $text;
  60      }
  61  
  62      // Set up static variables. Run once only.
  63      if ( $reset || ! isset( $static_characters ) ) {
  64          /**
  65           * Filters whether to skip running wptexturize().
  66           *
  67           * Returning false from the filter will effectively short-circuit wptexturize()
  68           * and return the original text passed to the function instead.
  69           *
  70           * The filter runs only once, the first time wptexturize() is called.
  71           *
  72           * @since 4.0.0
  73           *
  74           * @see wptexturize()
  75           *
  76           * @param bool $run_texturize Whether to short-circuit wptexturize().
  77           */
  78          $run_texturize = apply_filters( 'run_wptexturize', $run_texturize );
  79          if ( false === $run_texturize ) {
  80              return $text;
  81          }
  82  
  83          /* translators: Opening curly double quote. */
  84          $opening_quote = _x( '&#8220;', 'opening curly double quote' );
  85          /* translators: Closing curly double quote. */
  86          $closing_quote = _x( '&#8221;', 'closing curly double quote' );
  87  
  88          /* translators: Apostrophe, for example in 'cause or can't. */
  89          $apos = _x( '&#8217;', 'apostrophe' );
  90  
  91          /* translators: Prime, for example in 9' (nine feet). */
  92          $prime = _x( '&#8242;', 'prime' );
  93          /* translators: Double prime, for example in 9" (nine inches). */
  94          $double_prime = _x( '&#8243;', 'double prime' );
  95  
  96          /* translators: Opening curly single quote. */
  97          $opening_single_quote = _x( '&#8216;', 'opening curly single quote' );
  98          /* translators: Closing curly single quote. */
  99          $closing_single_quote = _x( '&#8217;', 'closing curly single quote' );
 100  
 101          /* translators: En dash. */
 102          $en_dash = _x( '&#8211;', 'en dash' );
 103          /* translators: Em dash. */
 104          $em_dash = _x( '&#8212;', 'em dash' );
 105  
 106          $default_no_texturize_tags       = array( 'pre', 'code', 'kbd', 'style', 'script', 'tt' );
 107          $default_no_texturize_shortcodes = array( 'code' );
 108  
 109          // If a plugin has provided an autocorrect array, use it.
 110          if ( isset( $wp_cockneyreplace ) ) {
 111              $cockney        = array_keys( $wp_cockneyreplace );
 112              $cockneyreplace = array_values( $wp_cockneyreplace );
 113          } else {
 114              /*
 115               * translators: This is a comma-separated list of words that defy the syntax of quotations in normal use,
 116               * for example... 'We do not have enough words yet'... is a typical quoted phrase. But when we write
 117               * lines of code 'til we have enough of 'em, then we need to insert apostrophes instead of quotes.
 118               */
 119              $cockney = explode(
 120                  ',',
 121                  _x(
 122                      "'tain't,'twere,'twas,'tis,'twill,'til,'bout,'nuff,'round,'cause,'em",
 123                      'Comma-separated list of words to texturize in your language'
 124                  )
 125              );
 126  
 127              $cockneyreplace = explode(
 128                  ',',
 129                  _x(
 130                      '&#8217;tain&#8217;t,&#8217;twere,&#8217;twas,&#8217;tis,&#8217;twill,&#8217;til,&#8217;bout,&#8217;nuff,&#8217;round,&#8217;cause,&#8217;em',
 131                      'Comma-separated list of replacement words in your language'
 132                  )
 133              );
 134          }
 135  
 136          $static_characters   = array_merge( array( '...', '``', '\'\'', ' (tm)' ), $cockney );
 137          $static_replacements = array_merge( array( '&#8230;', $opening_quote, $closing_quote, ' &#8482;' ), $cockneyreplace );
 138  
 139          /*
 140           * Pattern-based replacements of characters.
 141           * Sort the remaining patterns into several arrays for performance tuning.
 142           */
 143          $dynamic_characters   = array(
 144              'apos'  => array(),
 145              'quote' => array(),
 146              'dash'  => array(),
 147          );
 148          $dynamic_replacements = array(
 149              'apos'  => array(),
 150              'quote' => array(),
 151              'dash'  => array(),
 152          );
 153          $dynamic              = array();
 154          $spaces               = wp_spaces_regexp();
 155  
 156          // '99' and '99" are ambiguous among other patterns; assume it's an abbreviated year at the end of a quotation.
 157          if ( "'" !== $apos || "'" !== $closing_single_quote ) {
 158              $dynamic[ '/\'(\d\d)\'(?=\Z|[.,:;!?)}\-\]]|&gt;|' . $spaces . ')/' ] = $apos_flag . '$1' . $closing_single_quote;
 159          }
 160          if ( "'" !== $apos || '"' !== $closing_quote ) {
 161              $dynamic[ '/\'(\d\d)"(?=\Z|[.,:;!?)}\-\]]|&gt;|' . $spaces . ')/' ] = $apos_flag . '$1' . $closing_quote;
 162          }
 163  
 164          // '99 '99s '99's (apostrophe)  But never '9 or '99% or '999 or '99.0.
 165          if ( "'" !== $apos ) {
 166              $dynamic['/\'(?=\d\d(?:\Z|(?![%\d]|[.,]\d)))/'] = $apos_flag;
 167          }
 168  
 169          // Quoted numbers like '0.42'.
 170          if ( "'" !== $opening_single_quote && "'" !== $closing_single_quote ) {
 171              $dynamic[ '/(?<=\A|' . $spaces . ')\'(\d[.,\d]*)\'/' ] = $open_sq_flag . '$1' . $closing_single_quote;
 172          }
 173  
 174          // Single quote at start, or preceded by (, {, <, [, ", -, or spaces.
 175          if ( "'" !== $opening_single_quote ) {
 176              $dynamic[ '/(?<=\A|[([{"\-]|&lt;|' . $spaces . ')\'/' ] = $open_sq_flag;
 177          }
 178  
 179          // Apostrophe in a word. No spaces, double apostrophes, or other punctuation.
 180          if ( "'" !== $apos ) {
 181              $dynamic[ '/(?<!' . $spaces . ')\'(?!\Z|[.,:;!?"\'(){}[\]\-]|&[lg]t;|' . $spaces . ')/' ] = $apos_flag;
 182          }
 183  
 184          $dynamic_characters['apos']   = array_keys( $dynamic );
 185          $dynamic_replacements['apos'] = array_values( $dynamic );
 186          $dynamic                      = array();
 187  
 188          // Quoted numbers like "42".
 189          if ( '"' !== $opening_quote && '"' !== $closing_quote ) {
 190              $dynamic[ '/(?<=\A|' . $spaces . ')"(\d[.,\d]*)"/' ] = $open_q_flag . '$1' . $closing_quote;
 191          }
 192  
 193          // Double quote at start, or preceded by (, {, <, [, -, or spaces, and not followed by spaces.
 194          if ( '"' !== $opening_quote ) {
 195              $dynamic[ '/(?<=\A|[([{\-]|&lt;|' . $spaces . ')"(?!' . $spaces . ')/' ] = $open_q_flag;
 196          }
 197  
 198          $dynamic_characters['quote']   = array_keys( $dynamic );
 199          $dynamic_replacements['quote'] = array_values( $dynamic );
 200          $dynamic                       = array();
 201  
 202          // Dashes and spaces.
 203          $dynamic['/---/'] = $em_dash;
 204          $dynamic[ '/(?<=^|' . $spaces . ')--(?=$|' . $spaces . ')/' ] = $em_dash;
 205          $dynamic['/(?<!xn)--/']                                       = $en_dash;
 206          $dynamic[ '/(?<=^|' . $spaces . ')-(?=$|' . $spaces . ')/' ]  = $en_dash;
 207  
 208          $dynamic_characters['dash']   = array_keys( $dynamic );
 209          $dynamic_replacements['dash'] = array_values( $dynamic );
 210      }
 211  
 212      // Must do this every time in case plugins use these filters in a context sensitive manner.
 213      /**
 214       * Filters the list of HTML elements not to texturize.
 215       *
 216       * @since 2.8.0
 217       *
 218       * @param string[] $default_no_texturize_tags An array of HTML element names.
 219       */
 220      $no_texturize_tags = apply_filters( 'no_texturize_tags', $default_no_texturize_tags );
 221      /**
 222       * Filters the list of shortcodes not to texturize.
 223       *
 224       * @since 2.8.0
 225       *
 226       * @param string[] $default_no_texturize_shortcodes An array of shortcode names.
 227       */
 228      $no_texturize_shortcodes = apply_filters( 'no_texturize_shortcodes', $default_no_texturize_shortcodes );
 229  
 230      $no_texturize_tags_stack       = array();
 231      $no_texturize_shortcodes_stack = array();
 232  
 233      // Look for shortcodes and HTML elements.
 234  
 235      preg_match_all( '@\[/?([^<>&/\[\]\x00-\x20=]++)@', $text, $matches );
 236      $tagnames         = array_intersect( array_keys( $shortcode_tags ), $matches[1] );
 237      $found_shortcodes = ! empty( $tagnames );
 238      $shortcode_regex  = $found_shortcodes ? _get_wptexturize_shortcode_regex( $tagnames ) : '';
 239      $regex            = _get_wptexturize_split_regex( $shortcode_regex );
 240  
 241      $textarr = preg_split( $regex, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY );
 242  
 243      foreach ( $textarr as &$curl ) {
 244          // Only call _wptexturize_pushpop_element if $curl is a delimiter.
 245          $first = $curl[0];
 246          if ( '<' === $first ) {
 247              if ( str_starts_with( $curl, '<!--' ) ) {
 248                  // This is an HTML comment delimiter.
 249                  continue;
 250              } else {
 251                  // This is an HTML element delimiter.
 252  
 253                  // Replace each & with &#038; unless it already looks like an entity.
 254                  $curl = preg_replace( '/&(?!#(?:\d+|x[a-f0-9]+);|[a-z1-4]{1,8};)/i', '&#038;', $curl );
 255  
 256                  _wptexturize_pushpop_element( $curl, $no_texturize_tags_stack, $no_texturize_tags );
 257              }
 258          } elseif ( '' === trim( $curl ) ) {
 259              // This is a newline between delimiters. Performance improves when we check this.
 260              continue;
 261  
 262          } elseif ( '[' === $first && $found_shortcodes && 1 === preg_match( '/^' . $shortcode_regex . '$/', $curl ) ) {
 263              // This is a shortcode delimiter.
 264  
 265              if ( ! str_starts_with( $curl, '[[' ) && ! str_ends_with( $curl, ']]' ) ) {
 266                  // Looks like a normal shortcode.
 267                  _wptexturize_pushpop_element( $curl, $no_texturize_shortcodes_stack, $no_texturize_shortcodes );
 268              } else {
 269                  // Looks like an escaped shortcode.
 270                  continue;
 271              }
 272          } elseif ( empty( $no_texturize_shortcodes_stack ) && empty( $no_texturize_tags_stack ) ) {
 273              // This is neither a delimiter, nor is this content inside of no_texturize pairs. Do texturize.
 274  
 275              $curl = str_replace( $static_characters, $static_replacements, $curl );
 276  
 277              if ( str_contains( $curl, "'" ) ) {
 278                  $curl = preg_replace( $dynamic_characters['apos'], $dynamic_replacements['apos'], $curl );
 279                  $curl = wptexturize_primes( $curl, "'", $prime, $open_sq_flag, $closing_single_quote );
 280                  $curl = str_replace( $apos_flag, $apos, $curl );
 281                  $curl = str_replace( $open_sq_flag, $opening_single_quote, $curl );
 282              }
 283              if ( str_contains( $curl, '"' ) ) {
 284                  $curl = preg_replace( $dynamic_characters['quote'], $dynamic_replacements['quote'], $curl );
 285                  $curl = wptexturize_primes( $curl, '"', $double_prime, $open_q_flag, $closing_quote );
 286                  $curl = str_replace( $open_q_flag, $opening_quote, $curl );
 287              }
 288              if ( str_contains( $curl, '-' ) ) {
 289                  $curl = preg_replace( $dynamic_characters['dash'], $dynamic_replacements['dash'], $curl );
 290              }
 291  
 292              // 9x9 (times), but never 0x9999.
 293              if ( 1 === preg_match( '/(?<=\d)x\d/', $curl ) ) {
 294                  // Searching for a digit is 10 times more expensive than for the x, so we avoid doing this one!
 295                  $curl = preg_replace( '/\b(\d(?(?<=0)[\d\.,]+|[\d\.,]*))x(\d[\d\.,]*)\b/', '$1&#215;$2', $curl );
 296              }
 297  
 298              // Replace each & with &#038; unless it already looks like an entity.
 299              $curl = preg_replace( '/&(?!#(?:\d+|x[a-f0-9]+);|[a-z1-4]{1,8};)/i', '&#038;', $curl );
 300          }
 301      }
 302  
 303      return implode( '', $textarr );
 304  }
 305  
 306  /**
 307   * Implements a logic tree to determine whether or not "7'." represents seven feet,
 308   * then converts the special char into either a prime char or a closing quote char.
 309   *
 310   * @since 4.3.0
 311   *
 312   * @param string $haystack    The plain text to be searched.
 313   * @param string $needle      The character to search for such as ' or ".
 314   * @param string $prime       The prime char to use for replacement.
 315   * @param string $open_quote  The opening quote char. Opening quote replacement must be
 316   *                            accomplished already.
 317   * @param string $close_quote The closing quote char to use for replacement.
 318   * @return string The $haystack value after primes and quotes replacements.
 319   */
 320  function wptexturize_primes( $haystack, $needle, $prime, $open_quote, $close_quote ) {
 321      $spaces           = wp_spaces_regexp();
 322      $flag             = '<!--wp-prime-or-quote-->';
 323      $quote_pattern    = "/$needle(?=\\Z|[.,:;!?)}\\-\\]]|&gt;|" . $spaces . ')/';
 324      $prime_pattern    = "/(?<=\\d)$needle/";
 325      $flag_after_digit = "/(?<=\\d)$flag/";
 326      $flag_no_digit    = "/(?<!\\d)$flag/";
 327  
 328      $sentences = explode( $open_quote, $haystack );
 329  
 330      foreach ( $sentences as $key => &$sentence ) {
 331          if ( ! str_contains( $sentence, $needle ) ) {
 332              continue;
 333          } elseif ( 0 !== $key && 0 === substr_count( $sentence, $close_quote ) ) {
 334              $sentence = preg_replace( $quote_pattern, $flag, $sentence, -1, $count );
 335              if ( $count > 1 ) {
 336                  // This sentence appears to have multiple closing quotes. Attempt Vulcan logic.
 337                  $sentence = preg_replace( $flag_no_digit, $close_quote, $sentence, -1, $count2 );
 338                  if ( 0 === $count2 ) {
 339                      // Try looking for a quote followed by a period.
 340                      $count2 = substr_count( $sentence, "$flag." );
 341                      if ( $count2 > 0 ) {
 342                          // Assume the rightmost quote-period match is the end of quotation.
 343                          $pos = strrpos( $sentence, "$flag." );
 344                      } else {
 345                          /*
 346                           * When all else fails, make the rightmost candidate a closing quote.
 347                           * This is most likely to be problematic in the context of bug #18549.
 348                           */
 349                          $pos = strrpos( $sentence, $flag );
 350                      }
 351                      $sentence = substr_replace( $sentence, $close_quote, $pos, strlen( $flag ) );
 352                  }
 353                  // Use conventional replacement on any remaining primes and quotes.
 354                  $sentence = preg_replace( $prime_pattern, $prime, $sentence );
 355                  $sentence = preg_replace( $flag_after_digit, $prime, $sentence );
 356                  $sentence = str_replace( $flag, $close_quote, $sentence );
 357              } elseif ( 1 === $count ) {
 358                  // Found only one closing quote candidate, so give it priority over primes.
 359                  $sentence = str_replace( $flag, $close_quote, $sentence );
 360                  $sentence = preg_replace( $prime_pattern, $prime, $sentence );
 361              } else {
 362                  // No closing quotes found. Just run primes pattern.
 363                  $sentence = preg_replace( $prime_pattern, $prime, $sentence );
 364              }
 365          } else {
 366              $sentence = preg_replace( $prime_pattern, $prime, $sentence );
 367              $sentence = preg_replace( $quote_pattern, $close_quote, $sentence );
 368          }
 369          if ( '"' === $needle && str_contains( $sentence, '"' ) ) {
 370              $sentence = str_replace( '"', $close_quote, $sentence );
 371          }
 372      }
 373  
 374      return implode( $open_quote, $sentences );
 375  }
 376  
 377  /**
 378   * Searches for disabled element tags. Pushes element to stack on tag open
 379   * and pops on tag close.
 380   *
 381   * Assumes first char of `$text` is tag opening and last char is tag closing.
 382   * Assumes second char of `$text` is optionally `/` to indicate closing as in `</html>`.
 383   *
 384   * @since 2.9.0
 385   * @access private
 386   *
 387   * @param string   $text              Text to check. Must be a tag like `<html>` or `[shortcode]`.
 388   * @param string[] $stack             Array of open tag elements.
 389   * @param string[] $disabled_elements Array of tag names to match against. Spaces are not allowed in tag names.
 390   */
 391  function _wptexturize_pushpop_element( $text, &$stack, $disabled_elements ) {
 392      // Is it an opening tag or closing tag?
 393      if ( isset( $text[1] ) && '/' !== $text[1] ) {
 394          $opening_tag = true;
 395          $name_offset = 1;
 396      } elseif ( 0 === count( $stack ) ) {
 397          // Stack is empty. Just stop.
 398          return;
 399      } else {
 400          $opening_tag = false;
 401          $name_offset = 2;
 402      }
 403  
 404      // Parse out the tag name.
 405      $space = strpos( $text, ' ' );
 406      if ( false === $space ) {
 407          $space = -1;
 408      } else {
 409          $space -= $name_offset;
 410      }
 411      $tag = substr( $text, $name_offset, $space );
 412  
 413      // Handle disabled tags.
 414      if ( in_array( $tag, $disabled_elements, true ) ) {
 415          if ( $opening_tag ) {
 416              /*
 417               * This disables texturize until we find a closing tag of our type
 418               * (e.g. <pre>) even if there was invalid nesting before that.
 419               *
 420               * Example: in the case <pre>sadsadasd</code>"baba"</pre>
 421               *          "baba" won't be texturized.
 422               */
 423  
 424              array_push( $stack, $tag );
 425          } elseif ( end( $stack ) === $tag ) {
 426              array_pop( $stack );
 427          }
 428      }
 429  }
 430  
 431  /**
 432   * Replaces double line breaks with paragraph elements.
 433   *
 434   * A group of regex replaces used to identify text formatted with newlines and
 435   * replace double line breaks with HTML paragraph tags. The remaining line breaks
 436   * after conversion become `<br />` tags, unless `$br` is set to '0' or 'false'.
 437   *
 438   * @since 0.71
 439   *
 440   * @param string $text The text which has to be formatted.
 441   * @param bool   $br   Optional. If set, this will convert all remaining line breaks
 442   *                     after paragraphing. Line breaks within `<script>`, `<style>`,
 443   *                     and `<svg>` tags are not affected. Default true.
 444   * @return string Text which has been converted into correct paragraph tags.
 445   */
 446  function wpautop( $text, $br = true ) {
 447      $pre_tags = array();
 448  
 449      if ( '' === trim( $text ) ) {
 450          return '';
 451      }
 452  
 453      // Just to make things a little easier, pad the end.
 454      $text = $text . "\n";
 455  
 456      /*
 457       * Pre tags shouldn't be touched by autop.
 458       * Replace pre tags with placeholders and bring them back after autop.
 459       */
 460      if ( str_contains( $text, '<pre' ) ) {
 461          $text_parts = explode( '</pre>', $text );
 462          $last_part  = array_pop( $text_parts );
 463          $text       = '';
 464          $i          = 0;
 465  
 466          foreach ( $text_parts as $text_part ) {
 467              $start = strpos( $text_part, '<pre' );
 468  
 469              // Malformed HTML?
 470              if ( false === $start ) {
 471                  $text .= $text_part;
 472                  continue;
 473              }
 474  
 475              $name              = "<pre wp-pre-tag-$i></pre>";
 476              $pre_tags[ $name ] = substr( $text_part, $start ) . '</pre>';
 477  
 478              $text .= substr( $text_part, 0, $start ) . $name;
 479              ++$i;
 480          }
 481  
 482          $text .= $last_part;
 483      }
 484      // Change multiple <br>'s into two line breaks, which will turn into paragraphs.
 485      $text = preg_replace( '|<br\s*/?>\s*<br\s*/?>|', "\n\n", $text );
 486  
 487      $allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)';
 488  
 489      // Add a double line break above block-level opening tags.
 490      $text = preg_replace( '!(<' . $allblocks . '[\s/>])!', "\n\n$1", $text );
 491  
 492      // Add a double line break below block-level closing tags.
 493      $text = preg_replace( '!(</' . $allblocks . '>)!', "$1\n\n", $text );
 494  
 495      // Add a double line break after hr tags, which are self closing.
 496      $text = preg_replace( '!(<hr\s*?/?>)!', "$1\n\n", $text );
 497  
 498      // Standardize newline characters to "\n".
 499      $text = str_replace( array( "\r\n", "\r" ), "\n", $text );
 500  
 501      // Find newlines in all elements and add placeholders.
 502      $text = wp_replace_in_html_tags( $text, array( "\n" => ' <!-- wpnl --> ' ) );
 503  
 504      // Collapse line breaks before and after <option> elements so they don't get autop'd.
 505      if ( str_contains( $text, '<option' ) ) {
 506          $text = preg_replace( '|\s*<option|', '<option', $text );
 507          $text = preg_replace( '|</option>\s*|', '</option>', $text );
 508      }
 509  
 510      /*
 511       * Collapse line breaks inside <object> elements, before <param> and <embed> elements
 512       * so they don't get autop'd.
 513       */
 514      if ( str_contains( $text, '</object>' ) ) {
 515          $text = preg_replace( '|(<object[^>]*>)\s*|', '$1', $text );
 516          $text = preg_replace( '|\s*</object>|', '</object>', $text );
 517          $text = preg_replace( '%\s*(</?(?:param|embed)[^>]*>)\s*%', '$1', $text );
 518      }
 519  
 520      /*
 521       * Collapse line breaks inside <audio> and <video> elements,
 522       * before and after <source> and <track> elements.
 523       */
 524      if ( str_contains( $text, '<source' ) || str_contains( $text, '<track' ) ) {
 525          $text = preg_replace( '%([<\[](?:audio|video)[^>\]]*[>\]])\s*%', '$1', $text );
 526          $text = preg_replace( '%\s*([<\[]/(?:audio|video)[>\]])%', '$1', $text );
 527          $text = preg_replace( '%\s*(<(?:source|track)[^>]*>)\s*%', '$1', $text );
 528      }
 529  
 530      // Collapse line breaks before and after <figcaption> elements.
 531      if ( str_contains( $text, '<figcaption' ) ) {
 532          $text = preg_replace( '|\s*(<figcaption[^>]*>)|', '$1', $text );
 533          $text = preg_replace( '|</figcaption>\s*|', '</figcaption>', $text );
 534      }
 535  
 536      // Remove more than two contiguous line breaks.
 537      $text = preg_replace( "/\n\n+/", "\n\n", $text );
 538  
 539      // Split up the contents into an array of strings, separated by double line breaks.
 540      $paragraphs = preg_split( '/\n\s*\n/', $text, -1, PREG_SPLIT_NO_EMPTY );
 541  
 542      // Reset $text prior to rebuilding.
 543      $text = '';
 544  
 545      // Rebuild the content as a string, wrapping every bit with a <p>.
 546      foreach ( $paragraphs as $paragraph ) {
 547          $text .= '<p>' . trim( $paragraph, "\n" ) . "</p>\n";
 548      }
 549  
 550      // Under certain strange conditions it could create a P of entirely whitespace.
 551      $text = preg_replace( '|<p>\s*</p>|', '', $text );
 552  
 553      // Add a closing <p> inside <div>, <address>, or <form> tag if missing.
 554      $text = preg_replace( '!<p>([^<]+)</(div|address|form)>!', '<p>$1</p></$2>', $text );
 555  
 556      // If an opening or closing block element tag is wrapped in a <p>, unwrap it.
 557      $text = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', '$1', $text );
 558  
 559      // In some cases <li> may get wrapped in <p>, fix them.
 560      $text = preg_replace( '|<p>(<li.+?)</p>|', '$1', $text );
 561  
 562      // If a <blockquote> is wrapped with a <p>, move it inside the <blockquote>.
 563      $text = preg_replace( '|<p><blockquote([^>]*)>|i', '<blockquote$1><p>', $text );
 564      $text = str_replace( '</blockquote></p>', '</p></blockquote>', $text );
 565  
 566      // If an opening or closing block element tag is preceded by an opening <p> tag, remove it.
 567      $text = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)!', '$1', $text );
 568  
 569      // If an opening or closing block element tag is followed by a closing <p> tag, remove it.
 570      $text = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*</p>!', '$1', $text );
 571  
 572      // Optionally insert line breaks.
 573      if ( $br ) {
 574          // Replace newlines that shouldn't be touched with a placeholder.
 575          $text = preg_replace_callback( '/<(script|style|svg|math).*?<\/\\1>/s', '_autop_newline_preservation_helper', $text );
 576  
 577          // Normalize <br>.
 578          $text = str_replace( array( '<br>', '<br/>' ), '<br />', $text );
 579  
 580          // Replace any new line characters that aren't preceded by a <br /> with a <br />.
 581          $text = preg_replace( '|(?<!<br />)\s*\n|', "<br />\n", $text );
 582  
 583          // Replace newline placeholders with newlines.
 584          $text = str_replace( '<WPPreserveNewline />', "\n", $text );
 585      }
 586  
 587      // If a <br /> tag is after an opening or closing block tag, remove it.
 588      $text = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*<br />!', '$1', $text );
 589  
 590      // If a <br /> tag is before a subset of opening or closing block tags, remove it.
 591      $text = preg_replace( '!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $text );
 592      $text = preg_replace( "|\n</p>$|", '</p>', $text );
 593  
 594      // Replace placeholder <pre> tags with their original content.
 595      if ( ! empty( $pre_tags ) ) {
 596          $text = str_replace( array_keys( $pre_tags ), array_values( $pre_tags ), $text );
 597      }
 598  
 599      // Restore newlines in all elements.
 600      if ( str_contains( $text, '<!-- wpnl -->' ) ) {
 601          $text = str_replace( array( ' <!-- wpnl --> ', '<!-- wpnl -->' ), "\n", $text );
 602      }
 603  
 604      return $text;
 605  }
 606  
 607  /**
 608   * Separates HTML elements and comments from the text.
 609   *
 610   * @since 4.2.4
 611   *
 612   * @param string $input The text which has to be formatted.
 613   * @return string[] Array of the formatted text.
 614   */
 615  function wp_html_split( $input ) {
 616      return preg_split( get_html_split_regex(), $input, -1, PREG_SPLIT_DELIM_CAPTURE );
 617  }
 618  
 619  /**
 620   * Retrieves the regular expression for an HTML element.
 621   *
 622   * @since 4.4.0
 623   *
 624   * @return string The regular expression.
 625   */
 626  function get_html_split_regex() {
 627      static $regex;
 628  
 629      if ( ! isset( $regex ) ) {
 630          // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
 631          $comments =
 632              '!'             // Start of comment, after the <.
 633              . '(?:'         // Unroll the loop: Consume everything until --> is found.
 634              .     '-(?!->)' // Dash not followed by end of comment.
 635              .     '[^\-]*+' // Consume non-dashes.
 636              . ')*+'         // Loop possessively.
 637              . '(?:-->)?';   // End of comment. If not found, match all input.
 638  
 639          $cdata =
 640              '!\[CDATA\['    // Start of comment, after the <.
 641              . '[^\]]*+'     // Consume non-].
 642              . '(?:'         // Unroll the loop: Consume everything until ]]> is found.
 643              .     '](?!]>)' // One ] not followed by end of comment.
 644              .     '[^\]]*+' // Consume non-].
 645              . ')*+'         // Loop possessively.
 646              . '(?:]]>)?';   // End of comment. If not found, match all input.
 647  
 648          $escaped =
 649              '(?='             // Is the element escaped?
 650              .    '!--'
 651              . '|'
 652              .    '!\[CDATA\['
 653              . ')'
 654              . '(?(?=!-)'      // If yes, which type?
 655              .     $comments
 656              . '|'
 657              .     $cdata
 658              . ')';
 659  
 660          $regex =
 661              '/('                // Capture the entire match.
 662              .     '<'           // Find start of element.
 663              .     '(?'          // Conditional expression follows.
 664              .         $escaped  // Find end of escaped element.
 665              .     '|'           // ...else...
 666              .         '[^>]*>?' // Find end of normal element.
 667              .     ')'
 668              . ')/';
 669          // phpcs:enable
 670      }
 671  
 672      return $regex;
 673  }
 674  
 675  /**
 676   * Retrieves the combined regular expression for HTML and shortcodes.
 677   *
 678   * @access private
 679   * @ignore
 680   * @internal This function will be removed in 4.5.0 per Shortcode API Roadmap.
 681   * @since 4.4.0
 682   *
 683   * @param string $shortcode_regex Optional. The result from _get_wptexturize_shortcode_regex().
 684   * @return string The regular expression.
 685   */
 686  function _get_wptexturize_split_regex( $shortcode_regex = '' ) {
 687      static $html_regex;
 688  
 689      if ( ! isset( $html_regex ) ) {
 690          // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
 691          $comment_regex =
 692              '!'             // Start of comment, after the <.
 693              . '(?:'         // Unroll the loop: Consume everything until --> is found.
 694              .     '-(?!->)' // Dash not followed by end of comment.
 695              .     '[^\-]*+' // Consume non-dashes.
 696              . ')*+'         // Loop possessively.
 697              . '(?:-->)?';   // End of comment. If not found, match all input.
 698  
 699          $html_regex = // Needs replaced with wp_html_split() per Shortcode API Roadmap.
 700              '<'                  // Find start of element.
 701              . '(?(?=!--)'        // Is this a comment?
 702              .     $comment_regex // Find end of comment.
 703              . '|'
 704              .     '[^>]*>?'      // Find end of element. If not found, match all input.
 705              . ')';
 706          // phpcs:enable
 707      }
 708  
 709      if ( empty( $shortcode_regex ) ) {
 710          $regex = '/(' . $html_regex . ')/';
 711      } else {
 712          $regex = '/(' . $html_regex . '|' . $shortcode_regex . ')/';
 713      }
 714  
 715      return $regex;
 716  }
 717  
 718  /**
 719   * Retrieves the regular expression for shortcodes.
 720   *
 721   * @access private
 722   * @ignore
 723   * @since 4.4.0
 724   *
 725   * @param string[] $tagnames Array of shortcodes to find.
 726   * @return string The regular expression.
 727   */
 728  function _get_wptexturize_shortcode_regex( $tagnames ) {
 729      $tagregexp = implode( '|', array_map( 'preg_quote', $tagnames ) );
 730      $tagregexp = "(?:$tagregexp)(?=[\\s\\]\\/])"; // Excerpt of get_shortcode_regex().
 731      // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
 732      $regex =
 733          '\['                // Find start of shortcode.
 734          . '[\/\[]?'         // Shortcodes may begin with [/ or [[.
 735          . $tagregexp        // Only match registered shortcodes, because performance.
 736          . '(?:'
 737          .     '[^\[\]<>]+'  // Shortcodes do not contain other shortcodes. Quantifier critical.
 738          . '|'
 739          .     '<[^\[\]>]*>' // HTML elements permitted. Prevents matching ] before >.
 740          . ')*+'             // Possessive critical.
 741          . '\]'              // Find end of shortcode.
 742          . '\]?';            // Shortcodes may end with ]].
 743      // phpcs:enable
 744  
 745      return $regex;
 746  }
 747  
 748  /**
 749   * Replaces characters or phrases within HTML elements only.
 750   *
 751   * @since 4.2.3
 752   *
 753   * @param string $haystack      The text which has to be formatted.
 754   * @param array  $replace_pairs In the form array('from' => 'to', ...).
 755   * @return string The formatted text.
 756   */
 757  function wp_replace_in_html_tags( $haystack, $replace_pairs ) {
 758      // Find all elements.
 759      $textarr = wp_html_split( $haystack );
 760      $changed = false;
 761  
 762      // Optimize when searching for one item.
 763      if ( 1 === count( $replace_pairs ) ) {
 764          // Extract $needle and $replace.
 765          $needle  = array_key_first( $replace_pairs );
 766          $replace = $replace_pairs[ $needle ];
 767  
 768          // Loop through delimiters (elements) only.
 769          for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) {
 770              if ( str_contains( $textarr[ $i ], $needle ) ) {
 771                  $textarr[ $i ] = str_replace( $needle, $replace, $textarr[ $i ] );
 772                  $changed       = true;
 773              }
 774          }
 775      } else {
 776          // Extract all $needles.
 777          $needles = array_keys( $replace_pairs );
 778  
 779          // Loop through delimiters (elements) only.
 780          for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) {
 781              foreach ( $needles as $needle ) {
 782                  if ( str_contains( $textarr[ $i ], $needle ) ) {
 783                      $textarr[ $i ] = strtr( $textarr[ $i ], $replace_pairs );
 784                      $changed       = true;
 785                      // After one strtr() break out of the foreach loop and look at next element.
 786                      break;
 787                  }
 788              }
 789          }
 790      }
 791  
 792      if ( $changed ) {
 793          $haystack = implode( $textarr );
 794      }
 795  
 796      return $haystack;
 797  }
 798  
 799  /**
 800   * Newline preservation help function for wpautop().
 801   *
 802   * @since 3.1.0
 803   * @access private
 804   *
 805   * @param array $matches preg_replace_callback matches array
 806   * @return string Text with newlines replaced with placeholders.
 807   */
 808  function _autop_newline_preservation_helper( $matches ) {
 809      return str_replace( "\n", '<WPPreserveNewline />', $matches[0] );
 810  }
 811  
 812  /**
 813   * Don't auto-p wrap shortcodes that stand alone.
 814   *
 815   * Ensures that shortcodes are not wrapped in `<p>...</p>`.
 816   *
 817   * @since 2.9.0
 818   *
 819   * @global array $shortcode_tags
 820   *
 821   * @param string $text The content.
 822   * @return string The filtered content.
 823   */
 824  function shortcode_unautop( $text ) {
 825      global $shortcode_tags;
 826  
 827      if ( empty( $shortcode_tags ) || ! is_array( $shortcode_tags ) ) {
 828          return $text;
 829      }
 830  
 831      $tagregexp = implode( '|', array_map( 'preg_quote', array_keys( $shortcode_tags ) ) );
 832      $spaces    = wp_spaces_regexp();
 833  
 834      // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound,Universal.WhiteSpace.PrecisionAlignment.Found -- don't remove regex indentation
 835      $pattern =
 836          '/'
 837          . '<p>'                              // Opening paragraph.
 838          . '(?:' . $spaces . ')*+'            // Optional leading whitespace.
 839          . '('                                // 1: The shortcode.
 840          .     '\\['                          // Opening bracket.
 841          .     "($tagregexp)"                 // 2: Shortcode name.
 842          .     '(?![\\w-])'                   // Not followed by word character or hyphen.
 843                                               // Unroll the loop: Inside the opening shortcode tag.
 844          .     '[^\\]\\/]*'                   // Not a closing bracket or forward slash.
 845          .     '(?:'
 846          .         '\\/(?!\\])'               // A forward slash not followed by a closing bracket.
 847          .         '[^\\]\\/]*'               // Not a closing bracket or forward slash.
 848          .     ')*?'
 849          .     '(?:'
 850          .         '\\/\\]'                   // Self closing tag and closing bracket.
 851          .     '|'
 852          .         '\\]'                      // Closing bracket.
 853          .         '(?:'                      // Unroll the loop: Optionally, anything between the opening and closing shortcode tags.
 854          .             '[^\\[]*+'             // Not an opening bracket.
 855          .             '(?:'
 856          .                 '\\[(?!\\/\\2\\])' // An opening bracket not followed by the closing shortcode tag.
 857          .                 '[^\\[]*+'         // Not an opening bracket.
 858          .             ')*+'
 859          .             '\\[\\/\\2\\]'         // Closing shortcode tag.
 860          .         ')?'
 861          .     ')'
 862          . ')'
 863          . '(?:' . $spaces . ')*+'            // Optional trailing whitespace.
 864          . '<\\/p>'                           // Closing paragraph.
 865          . '/';
 866      // phpcs:enable
 867  
 868      return preg_replace( $pattern, '$1', $text );
 869  }
 870  
 871  /**
 872   * Checks to see if a string is utf8 encoded.
 873   *
 874   * NOTE: This function checks for 5-Byte sequences, UTF8
 875   *       has Bytes Sequences with a maximum length of 4.
 876   *
 877   * @author bmorel at ssi dot fr (modified)
 878   * @since 1.2.1
 879   * @deprecated 6.9.0 Use {@see wp_is_valid_utf8()} instead.
 880   *
 881   * @param string $str The string to be checked.
 882   * @return bool True if $str fits a UTF-8 model, false otherwise.
 883   */
 884  function seems_utf8( $str ) {
 885      _deprecated_function( __FUNCTION__, '6.9.0', 'wp_is_valid_utf8()' );
 886  
 887      mbstring_binary_safe_encoding();
 888      $length = strlen( $str );
 889      reset_mbstring_encoding();
 890  
 891      for ( $i = 0; $i < $length; $i++ ) {
 892          $c = ord( $str[ $i ] );
 893  
 894          if ( $c < 0x80 ) {
 895              $n = 0; // 0bbbbbbb
 896          } elseif ( ( $c & 0xE0 ) === 0xC0 ) {
 897              $n = 1; // 110bbbbb
 898          } elseif ( ( $c & 0xF0 ) === 0xE0 ) {
 899              $n = 2; // 1110bbbb
 900          } elseif ( ( $c & 0xF8 ) === 0xF0 ) {
 901              $n = 3; // 11110bbb
 902          } elseif ( ( $c & 0xFC ) === 0xF8 ) {
 903              $n = 4; // 111110bb
 904          } elseif ( ( $c & 0xFE ) === 0xFC ) {
 905              $n = 5; // 1111110b
 906          } else {
 907              return false; // Does not match any model.
 908          }
 909  
 910          for ( $j = 0; $j < $n; $j++ ) { // n bytes matching 10bbbbbb follow?
 911              if ( ( ++$i === $length ) || ( ( ord( $str[ $i ] ) & 0xC0 ) !== 0x80 ) ) {
 912                  return false;
 913              }
 914          }
 915      }
 916  
 917      return true;
 918  }
 919  
 920  /**
 921   * Converts a number of special characters into their HTML entities.
 922   *
 923   * Specifically deals with: `&`, `<`, `>`, `"`, and `'`.
 924   *
 925   * `$quote_style` can be set to ENT_COMPAT to encode `"` to
 926   * `&quot;`, or ENT_QUOTES to do both. Default is ENT_NOQUOTES where no quotes are encoded.
 927   *
 928   * @since 1.2.2
 929   * @since 5.5.0 `$quote_style` also accepts `ENT_XML1`.
 930   * @access private
 931   *
 932   * @param string       $text          The text which is to be encoded.
 933   * @param int|string   $quote_style   Optional. Converts double quotes if set to ENT_COMPAT,
 934   *                                    both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES.
 935   *                                    Converts single and double quotes, as well as converting HTML
 936   *                                    named entities (that are not also XML named entities) to their
 937   *                                    code points if set to ENT_XML1. Also compatible with old values;
 938   *                                    converting single quotes if set to 'single',
 939   *                                    double if set to 'double' or both if otherwise set.
 940   *                                    Default is ENT_NOQUOTES.
 941   * @param false|string $charset       Optional. The character encoding of the string. Default false.
 942   * @param bool         $double_encode Optional. Whether to encode existing HTML entities. Default false.
 943   * @return string The encoded text with HTML entities.
 944   */
 945  function _wp_specialchars( $text, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
 946      $text = (string) $text;
 947  
 948      if ( 0 === strlen( $text ) ) {
 949          return '';
 950      }
 951  
 952      // Don't bother if there are no specialchars - saves some processing.
 953      if ( ! preg_match( '/[&<>"\']/', $text ) ) {
 954          return $text;
 955      }
 956  
 957      // Account for the previous behavior of the function when the $quote_style is not an accepted value.
 958      if ( empty( $quote_style ) ) {
 959          $quote_style = ENT_NOQUOTES;
 960      } elseif ( ENT_XML1 === $quote_style ) {
 961          $quote_style = ENT_QUOTES | ENT_XML1;
 962      } elseif ( ! in_array( $quote_style, array( ENT_NOQUOTES, ENT_COMPAT, ENT_QUOTES, 'single', 'double' ), true ) ) {
 963          $quote_style = ENT_QUOTES;
 964      }
 965  
 966      $charset = _canonical_charset( $charset ? $charset : get_option( 'blog_charset' ) );
 967  
 968      $_quote_style = $quote_style;
 969  
 970      if ( 'double' === $quote_style ) {
 971          $quote_style  = ENT_COMPAT;
 972          $_quote_style = ENT_COMPAT;
 973      } elseif ( 'single' === $quote_style ) {
 974          $quote_style = ENT_NOQUOTES;
 975      }
 976  
 977      if ( ! $double_encode ) {
 978          /*
 979           * Guarantee every &entity; is valid, convert &garbage; into &amp;garbage;
 980           * This is required for PHP < 5.4.0 because ENT_HTML401 flag is unavailable.
 981           */
 982          $text = wp_kses_normalize_entities( $text, ( $quote_style & ENT_XML1 ) ? 'xml' : 'html' );
 983      }
 984  
 985      $text = htmlspecialchars( $text, $quote_style, $charset, $double_encode );
 986  
 987      // Back-compat.
 988      if ( 'single' === $_quote_style ) {
 989          $text = str_replace( "'", '&#039;', $text );
 990      }
 991  
 992      return $text;
 993  }
 994  
 995  /**
 996   * Converts a number of HTML entities into their special characters.
 997   *
 998   * Specifically deals with: `&`, `<`, `>`, `"`, and `'`.
 999   *
1000   * `$quote_style` can be set to ENT_COMPAT to decode `"` entities,
1001   * or ENT_QUOTES to do both `"` and `'`. Default is ENT_NOQUOTES where no quotes are decoded.
1002   *
1003   * @since 2.8.0
1004   *
1005   * @param string     $text        The text which is to be decoded.
1006   * @param string|int $quote_style Optional. Converts double quotes if set to ENT_COMPAT,
1007   *                                both single and double if set to ENT_QUOTES or
1008   *                                none if set to ENT_NOQUOTES.
1009   *                                Also compatible with old _wp_specialchars() values;
1010   *                                converting single quotes if set to 'single',
1011   *                                double if set to 'double' or both if otherwise set.
1012   *                                Default is ENT_NOQUOTES.
1013   * @return string The decoded text without HTML entities.
1014   */
1015  function wp_specialchars_decode( $text, $quote_style = ENT_NOQUOTES ) {
1016      $text = (string) $text;
1017  
1018      if ( 0 === strlen( $text ) ) {
1019          return '';
1020      }
1021  
1022      // Don't bother if there are no entities - saves a lot of processing.
1023      if ( ! str_contains( $text, '&' ) ) {
1024          return $text;
1025      }
1026  
1027      // Match the previous behavior of _wp_specialchars() when the $quote_style is not an accepted value.
1028      if ( empty( $quote_style ) ) {
1029          $quote_style = ENT_NOQUOTES;
1030      } elseif ( ! in_array( $quote_style, array( 0, 2, 3, 'single', 'double' ), true ) ) {
1031          $quote_style = ENT_QUOTES;
1032      }
1033  
1034      // More complete than get_html_translation_table( HTML_SPECIALCHARS ).
1035      $single      = array(
1036          '&#039;' => '\'',
1037          '&#x27;' => '\'',
1038      );
1039      $single_preg = array(
1040          '/&#0*39;/'   => '&#039;',
1041          '/&#x0*27;/i' => '&#x27;',
1042      );
1043      $double      = array(
1044          '&quot;' => '"',
1045          '&#034;' => '"',
1046          '&#x22;' => '"',
1047      );
1048      $double_preg = array(
1049          '/&#0*34;/'   => '&#034;',
1050          '/&#x0*22;/i' => '&#x22;',
1051      );
1052      $others      = array(
1053          '&lt;'   => '<',
1054          '&#060;' => '<',
1055          '&gt;'   => '>',
1056          '&#062;' => '>',
1057          '&amp;'  => '&',
1058          '&#038;' => '&',
1059          '&#x26;' => '&',
1060      );
1061      $others_preg = array(
1062          '/&#0*60;/'   => '&#060;',
1063          '/&#0*62;/'   => '&#062;',
1064          '/&#0*38;/'   => '&#038;',
1065          '/&#x0*26;/i' => '&#x26;',
1066      );
1067  
1068      if ( ENT_QUOTES === $quote_style ) {
1069          $translation      = array_merge( $single, $double, $others );
1070          $translation_preg = array_merge( $single_preg, $double_preg, $others_preg );
1071      } elseif ( ENT_COMPAT === $quote_style || 'double' === $quote_style ) {
1072          $translation      = array_merge( $double, $others );
1073          $translation_preg = array_merge( $double_preg, $others_preg );
1074      } elseif ( 'single' === $quote_style ) {
1075          $translation      = array_merge( $single, $others );
1076          $translation_preg = array_merge( $single_preg, $others_preg );
1077      } elseif ( ENT_NOQUOTES === $quote_style ) {
1078          $translation      = $others;
1079          $translation_preg = $others_preg;
1080      }
1081  
1082      // Remove zero padding on numeric entities.
1083      $text = preg_replace( array_keys( $translation_preg ), array_values( $translation_preg ), $text );
1084  
1085      // Replace characters according to translation table.
1086      return strtr( $text, $translation );
1087  }
1088  
1089  /**
1090   * Checks for invalid UTF8 in a string.
1091   *
1092   * Note! This function only performs its work if the `blog_charset` is set
1093   * to UTF-8. For all other values it returns the input text unchanged.
1094   *
1095   * Note! Unless requested, this returns an empty string if the input contains
1096   * any sequences of invalid UTF-8. To replace invalid byte sequences, pass
1097   * `true` as the optional `$strip` parameter.
1098   *
1099   * Consider using {@see wp_scrub_utf8()} instead which does not depend on
1100   * the value of `blog_charset`.
1101   *
1102   * Example:
1103   *
1104   *     // The `blog_charset` is `latin1`, so this returns the input unchanged.
1105   *     $every_possible_input === wp_check_invalid_utf8( $every_possible_input );
1106   *
1107   *     // Valid strings come through unchanged.
1108   *     'test' === wp_check_invalid_utf8( 'test' );
1109   *
1110   *     $invalid = "the byte \xC0 is never allowed in a UTF-8 string.";
1111   *
1112   *     // Invalid strings are rejected outright.
1113   *     '' === wp_check_invalid_utf8( $invalid );
1114   *
1115   *     // “Stripping” invalid sequences produces the replacement character instead.
1116   *     "the byte \u{FFFD} is never allowed in a UTF-8 string." === wp_check_invalid_utf8( $invalid, true );
1117   *     'the byte � is never allowed in a UTF-8 string.' === wp_check_invalid_utf8( $invalid, true );
1118   *
1119   * @since 2.8.0
1120   * @since 6.9.0 Stripping replaces invalid byte sequences with the Unicode replacement character U+FFFD (�).
1121   *
1122   * @param string $text   String which is expected to be encoded as UTF-8 unless `blog_charset` is another encoding.
1123   * @param bool   $strip  Optional. Whether to replace invalid sequences of bytes with the Unicode replacement
1124   *                       character (U+FFFD `�`). Default `false` returns an empty string for invalid UTF-8 inputs.
1125   * @return string The checked text.
1126   */
1127  function wp_check_invalid_utf8( $text, $strip = false ) {
1128      $text = (string) $text;
1129  
1130      if ( 0 === strlen( $text ) ) {
1131          return '';
1132      }
1133  
1134      // Store the site charset as a static to avoid multiple calls to get_option().
1135      static $is_utf8 = null;
1136      if ( ! isset( $is_utf8 ) ) {
1137          $is_utf8 = is_utf8_charset();
1138      }
1139  
1140      if ( ! $is_utf8 || wp_is_valid_utf8( $text ) ) {
1141          return $text;
1142      }
1143  
1144      return $strip
1145          ? wp_scrub_utf8( $text )
1146          : '';
1147  }
1148  
1149  /**
1150   * Encodes the Unicode values to be used in the URI.
1151   *
1152   * @since 1.5.0
1153   * @since 5.8.3 Added the `encode_ascii_characters` parameter.
1154   *
1155   * @param string $utf8_string             String to encode.
1156   * @param int    $length                  Max length of the string.
1157   * @param bool   $encode_ascii_characters Whether to encode ascii characters such as < " '
1158   * @return string String with Unicode encoded for URI.
1159   */
1160  function utf8_uri_encode( $utf8_string, $length = 0, $encode_ascii_characters = false ) {
1161      $unicode        = '';
1162      $values         = array();
1163      $num_octets     = 1;
1164      $unicode_length = 0;
1165  
1166      mbstring_binary_safe_encoding();
1167      $string_length = strlen( $utf8_string );
1168      reset_mbstring_encoding();
1169  
1170      for ( $i = 0; $i < $string_length; $i++ ) {
1171  
1172          $value = ord( $utf8_string[ $i ] );
1173  
1174          if ( $value < 128 ) {
1175              $char                = chr( $value );
1176              $encoded_char        = $encode_ascii_characters ? rawurlencode( $char ) : $char;
1177              $encoded_char_length = strlen( $encoded_char );
1178              if ( $length && ( $unicode_length + $encoded_char_length ) > $length ) {
1179                  break;
1180              }
1181              $unicode        .= $encoded_char;
1182              $unicode_length += $encoded_char_length;
1183          } else {
1184              if ( 0 === count( $values ) ) {
1185                  if ( $value < 224 ) {
1186                      $num_octets = 2;
1187                  } elseif ( $value < 240 ) {
1188                      $num_octets = 3;
1189                  } else {
1190                      $num_octets = 4;
1191                  }
1192              }
1193  
1194              $values[] = $value;
1195  
1196              if ( $length && ( $unicode_length + ( $num_octets * 3 ) ) > $length ) {
1197                  break;
1198              }
1199              if ( count( $values ) === $num_octets ) {
1200                  for ( $j = 0; $j < $num_octets; $j++ ) {
1201                      $unicode .= '%' . dechex( $values[ $j ] );
1202                  }
1203  
1204                  $unicode_length += $num_octets * 3;
1205  
1206                  $values     = array();
1207                  $num_octets = 1;
1208              }
1209          }
1210      }
1211  
1212      return $unicode;
1213  }
1214  
1215  /**
1216   * Converts all accent characters to ASCII characters.
1217   *
1218   * If there are no accent characters, then the string given is just returned.
1219   *
1220   * **Accent characters converted:**
1221   *
1222   * Currency signs:
1223   *
1224   * |   Code   | Glyph | Replacement |     Description     |
1225   * | -------- | ----- | ----------- | ------------------- |
1226   * | U+00A3   | £     | (empty)     | British Pound sign  |
1227   * | U+20AC   | €     | E           | Euro sign           |
1228   *
1229   * Decompositions for Latin-1 Supplement:
1230   *
1231   * |  Code   | Glyph | Replacement |               Description              |
1232   * | ------- | ----- | ----------- | -------------------------------------- |
1233   * | U+00AA  | ª     | a           | Feminine ordinal indicator             |
1234   * | U+00BA  | º     | o           | Masculine ordinal indicator            |
1235   * | U+00C0  | À     | A           | Latin capital letter A with grave      |
1236   * | U+00C1  | Á     | A           | Latin capital letter A with acute      |
1237   * | U+00C2  | Â     | A           | Latin capital letter A with circumflex |
1238   * | U+00C3  | Ã     | A           | Latin capital letter A with tilde      |
1239   * | U+00C4  | Ä     | A           | Latin capital letter A with diaeresis  |
1240   * | U+00C5  | Å     | A           | Latin capital letter A with ring above |
1241   * | U+00C6  | Æ     | AE          | Latin capital letter AE                |
1242   * | U+00C7  | Ç     | C           | Latin capital letter C with cedilla    |
1243   * | U+00C8  | È     | E           | Latin capital letter E with grave      |
1244   * | U+00C9  | É     | E           | Latin capital letter E with acute      |
1245   * | U+00CA  | Ê     | E           | Latin capital letter E with circumflex |
1246   * | U+00CB  | Ë     | E           | Latin capital letter E with diaeresis  |
1247   * | U+00CC  | Ì     | I           | Latin capital letter I with grave      |
1248   * | U+00CD  | Í     | I           | Latin capital letter I with acute      |
1249   * | U+00CE  | Î     | I           | Latin capital letter I with circumflex |
1250   * | U+00CF  | Ï     | I           | Latin capital letter I with diaeresis  |
1251   * | U+00D0  | Ð     | D           | Latin capital letter Eth               |
1252   * | U+00D1  | Ñ     | N           | Latin capital letter N with tilde      |
1253   * | U+00D2  | Ò     | O           | Latin capital letter O with grave      |
1254   * | U+00D3  | Ó     | O           | Latin capital letter O with acute      |
1255   * | U+00D4  | Ô     | O           | Latin capital letter O with circumflex |
1256   * | U+00D5  | Õ     | O           | Latin capital letter O with tilde      |
1257   * | U+00D6  | Ö     | O           | Latin capital letter O with diaeresis  |
1258   * | U+00D8  | Ø     | O           | Latin capital letter O with stroke     |
1259   * | U+00D9  | Ù     | U           | Latin capital letter U with grave      |
1260   * | U+00DA  | Ú     | U           | Latin capital letter U with acute      |
1261   * | U+00DB  | Û     | U           | Latin capital letter U with circumflex |
1262   * | U+00DC  | Ü     | U           | Latin capital letter U with diaeresis  |
1263   * | U+00DD  | Ý     | Y           | Latin capital letter Y with acute      |
1264   * | U+00DE  | Þ     | TH          | Latin capital letter Thorn             |
1265   * | U+00DF  | ß     | s           | Latin small letter sharp s             |
1266   * | U+00E0  | à     | a           | Latin small letter a with grave        |
1267   * | U+00E1  | á     | a           | Latin small letter a with acute        |
1268   * | U+00E2  | â     | a           | Latin small letter a with circumflex   |
1269   * | U+00E3  | ã     | a           | Latin small letter a with tilde        |
1270   * | U+00E4  | ä     | a           | Latin small letter a with diaeresis    |
1271   * | U+00E5  | å     | a           | Latin small letter a with ring above   |
1272   * | U+00E6  | æ     | ae          | Latin small letter ae                  |
1273   * | U+00E7  | ç     | c           | Latin small letter c with cedilla      |
1274   * | U+00E8  | è     | e           | Latin small letter e with grave        |
1275   * | U+00E9  | é     | e           | Latin small letter e with acute        |
1276   * | U+00EA  | ê     | e           | Latin small letter e with circumflex   |
1277   * | U+00EB  | ë     | e           | Latin small letter e with diaeresis    |
1278   * | U+00EC  | ì     | i           | Latin small letter i with grave        |
1279   * | U+00ED  | í     | i           | Latin small letter i with acute        |
1280   * | U+00EE  | î     | i           | Latin small letter i with circumflex   |
1281   * | U+00EF  | ï     | i           | Latin small letter i with diaeresis    |
1282   * | U+00F0  | ð     | d           | Latin small letter Eth                 |
1283   * | U+00F1  | ñ     | n           | Latin small letter n with tilde        |
1284   * | U+00F2  | ò     | o           | Latin small letter o with grave        |
1285   * | U+00F3  | ó     | o           | Latin small letter o with acute        |
1286   * | U+00F4  | ô     | o           | Latin small letter o with circumflex   |
1287   * | U+00F5  | õ     | o           | Latin small letter o with tilde        |
1288   * | U+00F6  | ö     | o           | Latin small letter o with diaeresis    |
1289   * | U+00F8  | ø     | o           | Latin small letter o with stroke       |
1290   * | U+00F9  | ù     | u           | Latin small letter u with grave        |
1291   * | U+00FA  | ú     | u           | Latin small letter u with acute        |
1292   * | U+00FB  | û     | u           | Latin small letter u with circumflex   |
1293   * | U+00FC  | ü     | u           | Latin small letter u with diaeresis    |
1294   * | U+00FD  | ý     | y           | Latin small letter y with acute        |
1295   * | U+00FE  | þ     | th          | Latin small letter Thorn               |
1296   * | U+00FF  | ÿ     | y           | Latin small letter y with diaeresis    |
1297   *
1298   * Decompositions for Latin Extended-A:
1299   *
1300   * |  Code   | Glyph | Replacement |                    Description                    |
1301   * | ------- | ----- | ----------- | ------------------------------------------------- |
1302   * | U+0100  | Ā     | A           | Latin capital letter A with macron                |
1303   * | U+0101  | ā     | a           | Latin small letter a with macron                  |
1304   * | U+0102  | Ă     | A           | Latin capital letter A with breve                 |
1305   * | U+0103  | ă     | a           | Latin small letter a with breve                   |
1306   * | U+0104  | Ą     | A           | Latin capital letter A with ogonek                |
1307   * | U+0105  | ą     | a           | Latin small letter a with ogonek                  |
1308   * | U+01006 | Ć     | C           | Latin capital letter C with acute                 |
1309   * | U+0107  | ć     | c           | Latin small letter c with acute                   |
1310   * | U+0108  | Ĉ     | C           | Latin capital letter C with circumflex            |
1311   * | U+0109  | ĉ     | c           | Latin small letter c with circumflex              |
1312   * | U+010A  | Ċ     | C           | Latin capital letter C with dot above             |
1313   * | U+010B  | ċ     | c           | Latin small letter c with dot above               |
1314   * | U+010C  | Č     | C           | Latin capital letter C with caron                 |
1315   * | U+010D  | č     | c           | Latin small letter c with caron                   |
1316   * | U+010E  | Ď     | D           | Latin capital letter D with caron                 |
1317   * | U+010F  | ď     | d           | Latin small letter d with caron                   |
1318   * | U+0110  | Đ     | D           | Latin capital letter D with stroke                |
1319   * | U+0111  | đ     | d           | Latin small letter d with stroke                  |
1320   * | U+0112  | Ē     | E           | Latin capital letter E with macron                |
1321   * | U+0113  | ē     | e           | Latin small letter e with macron                  |
1322   * | U+0114  | Ĕ     | E           | Latin capital letter E with breve                 |
1323   * | U+0115  | ĕ     | e           | Latin small letter e with breve                   |
1324   * | U+0116  | Ė     | E           | Latin capital letter E with dot above             |
1325   * | U+0117  | ė     | e           | Latin small letter e with dot above               |
1326   * | U+0118  | Ę     | E           | Latin capital letter E with ogonek                |
1327   * | U+0119  | ę     | e           | Latin small letter e with ogonek                  |
1328   * | U+011A  | Ě     | E           | Latin capital letter E with caron                 |
1329   * | U+011B  | ě     | e           | Latin small letter e with caron                   |
1330   * | U+011C  | Ĝ     | G           | Latin capital letter G with circumflex            |
1331   * | U+011D  | ĝ     | g           | Latin small letter g with circumflex              |
1332   * | U+011E  | Ğ     | G           | Latin capital letter G with breve                 |
1333   * | U+011F  | ğ     | g           | Latin small letter g with breve                   |
1334   * | U+0120  | Ġ     | G           | Latin capital letter G with dot above             |
1335   * | U+0121  | ġ     | g           | Latin small letter g with dot above               |
1336   * | U+0122  | Ģ     | G           | Latin capital letter G with cedilla               |
1337   * | U+0123  | ģ     | g           | Latin small letter g with cedilla                 |
1338   * | U+0124  | Ĥ     | H           | Latin capital letter H with circumflex            |
1339   * | U+0125  | ĥ     | h           | Latin small letter h with circumflex              |
1340   * | U+0126  | Ħ     | H           | Latin capital letter H with stroke                |
1341   * | U+0127  | ħ     | h           | Latin small letter h with stroke                  |
1342   * | U+0128  | Ĩ     | I           | Latin capital letter I with tilde                 |
1343   * | U+0129  | ĩ     | i           | Latin small letter i with tilde                   |
1344   * | U+012A  | Ī     | I           | Latin capital letter I with macron                |
1345   * | U+012B  | ī     | i           | Latin small letter i with macron                  |
1346   * | U+012C  | Ĭ     | I           | Latin capital letter I with breve                 |
1347   * | U+012D  | ĭ     | i           | Latin small letter i with breve                   |
1348   * | U+012E  | Į     | I           | Latin capital letter I with ogonek                |
1349   * | U+012F  | į     | i           | Latin small letter i with ogonek                  |
1350   * | U+0130  | İ     | I           | Latin capital letter I with dot above             |
1351   * | U+0131  | ı     | i           | Latin small letter dotless i                      |
1352   * | U+0132  | IJ     | IJ          | Latin capital ligature IJ                         |
1353   * | U+0133  | ij     | ij          | Latin small ligature ij                           |
1354   * | U+0134  | Ĵ     | J           | Latin capital letter J with circumflex            |
1355   * | U+0135  | ĵ     | j           | Latin small letter j with circumflex              |
1356   * | U+0136  | Ķ     | K           | Latin capital letter K with cedilla               |
1357   * | U+0137  | ķ     | k           | Latin small letter k with cedilla                 |
1358   * | U+0138  | ĸ     | k           | Latin small letter Kra                            |
1359   * | U+0139  | Ĺ     | L           | Latin capital letter L with acute                 |
1360   * | U+013A  | ĺ     | l           | Latin small letter l with acute                   |
1361   * | U+013B  | Ļ     | L           | Latin capital letter L with cedilla               |
1362   * | U+013C  | ļ     | l           | Latin small letter l with cedilla                 |
1363   * | U+013D  | Ľ     | L           | Latin capital letter L with caron                 |
1364   * | U+013E  | ľ     | l           | Latin small letter l with caron                   |
1365   * | U+013F  | Ŀ     | L           | Latin capital letter L with middle dot            |
1366   * | U+0140  | ŀ     | l           | Latin small letter l with middle dot              |
1367   * | U+0141  | Ł     | L           | Latin capital letter L with stroke                |
1368   * | U+0142  | ł     | l           | Latin small letter l with stroke                  |
1369   * | U+0143  | Ń     | N           | Latin capital letter N with acute                 |
1370   * | U+0144  | ń     | n           | Latin small letter N with acute                   |
1371   * | U+0145  | Ņ     | N           | Latin capital letter N with cedilla               |
1372   * | U+0146  | ņ     | n           | Latin small letter n with cedilla                 |
1373   * | U+0147  | Ň     | N           | Latin capital letter N with caron                 |
1374   * | U+0148  | ň     | n           | Latin small letter n with caron                   |
1375   * | U+0149  | ʼn     | n           | Latin small letter n preceded by apostrophe       |
1376   * | U+014A  | Ŋ     | N           | Latin capital letter Eng                          |
1377   * | U+014B  | ŋ     | n           | Latin small letter Eng                            |
1378   * | U+014C  | Ō     | O           | Latin capital letter O with macron                |
1379   * | U+014D  | ō     | o           | Latin small letter o with macron                  |
1380   * | U+014E  | Ŏ     | O           | Latin capital letter O with breve                 |
1381   * | U+014F  | ŏ     | o           | Latin small letter o with breve                   |
1382   * | U+0150  | Ő     | O           | Latin capital letter O with double acute          |
1383   * | U+0151  | ő     | o           | Latin small letter o with double acute            |
1384   * | U+0152  | Œ     | OE          | Latin capital ligature OE                         |
1385   * | U+0153  | œ     | oe          | Latin small ligature oe                           |
1386   * | U+0154  | Ŕ     | R           | Latin capital letter R with acute                 |
1387   * | U+0155  | ŕ     | r           | Latin small letter r with acute                   |
1388   * | U+0156  | Ŗ     | R           | Latin capital letter R with cedilla               |
1389   * | U+0157  | ŗ     | r           | Latin small letter r with cedilla                 |
1390   * | U+0158  | Ř     | R           | Latin capital letter R with caron                 |
1391   * | U+0159  | ř     | r           | Latin small letter r with caron                   |
1392   * | U+015A  | Ś     | S           | Latin capital letter S with acute                 |
1393   * | U+015B  | ś     | s           | Latin small letter s with acute                   |
1394   * | U+015C  | Ŝ     | S           | Latin capital letter S with circumflex            |
1395   * | U+015D  | ŝ     | s           | Latin small letter s with circumflex              |
1396   * | U+015E  | Ş     | S           | Latin capital letter S with cedilla               |
1397   * | U+015F  | ş     | s           | Latin small letter s with cedilla                 |
1398   * | U+0160  | Š     | S           | Latin capital letter S with caron                 |
1399   * | U+0161  | š     | s           | Latin small letter s with caron                   |
1400   * | U+0162  | Ţ     | T           | Latin capital letter T with cedilla               |
1401   * | U+0163  | ţ     | t           | Latin small letter t with cedilla                 |
1402   * | U+0164  | Ť     | T           | Latin capital letter T with caron                 |
1403   * | U+0165  | ť     | t           | Latin small letter t with caron                   |
1404   * | U+0166  | Ŧ     | T           | Latin capital letter T with stroke                |
1405   * | U+0167  | ŧ     | t           | Latin small letter t with stroke                  |
1406   * | U+0168  | Ũ     | U           | Latin capital letter U with tilde                 |
1407   * | U+0169  | ũ     | u           | Latin small letter u with tilde                   |
1408   * | U+016A  | Ū     | U           | Latin capital letter U with macron                |
1409   * | U+016B  | ū     | u           | Latin small letter u with macron                  |
1410   * | U+016C  | Ŭ     | U           | Latin capital letter U with breve                 |
1411   * | U+016D  | ŭ     | u           | Latin small letter u with breve                   |
1412   * | U+016E  | Ů     | U           | Latin capital letter U with ring above            |
1413   * | U+016F  | ů     | u           | Latin small letter u with ring above              |
1414   * | U+0170  | Ű     | U           | Latin capital letter U with double acute          |
1415   * | U+0171  | ű     | u           | Latin small letter u with double acute            |
1416   * | U+0172  | Ų     | U           | Latin capital letter U with ogonek                |
1417   * | U+0173  | ų     | u           | Latin small letter u with ogonek                  |
1418   * | U+0174  | Ŵ     | W           | Latin capital letter W with circumflex            |
1419   * | U+0175  | ŵ     | w           | Latin small letter w with circumflex              |
1420   * | U+0176  | Ŷ     | Y           | Latin capital letter Y with circumflex            |
1421   * | U+0177  | ŷ     | y           | Latin small letter y with circumflex              |
1422   * | U+0178  | Ÿ     | Y           | Latin capital letter Y with diaeresis             |
1423   * | U+0179  | Ź     | Z           | Latin capital letter Z with acute                 |
1424   * | U+017A  | ź     | z           | Latin small letter z with acute                   |
1425   * | U+017B  | Ż     | Z           | Latin capital letter Z with dot above             |
1426   * | U+017C  | ż     | z           | Latin small letter z with dot above               |
1427   * | U+017D  | Ž     | Z           | Latin capital letter Z with caron                 |
1428   * | U+017E  | ž     | z           | Latin small letter z with caron                   |
1429   * | U+017F  | ſ     | s           | Latin small letter long s                         |
1430   * | U+01A0  | Ơ     | O           | Latin capital letter O with horn                  |
1431   * | U+01A1  | ơ     | o           | Latin small letter o with horn                    |
1432   * | U+01AF  | Ư     | U           | Latin capital letter U with horn                  |
1433   * | U+01B0  | ư     | u           | Latin small letter u with horn                    |
1434   * | U+01CD  | Ǎ     | A           | Latin capital letter A with caron                 |
1435   * | U+01CE  | ǎ     | a           | Latin small letter a with caron                   |
1436   * | U+01CF  | Ǐ     | I           | Latin capital letter I with caron                 |
1437   * | U+01D0  | ǐ     | i           | Latin small letter i with caron                   |
1438   * | U+01D1  | Ǒ     | O           | Latin capital letter O with caron                 |
1439   * | U+01D2  | ǒ     | o           | Latin small letter o with caron                   |
1440   * | U+01D3  | Ǔ     | U           | Latin capital letter U with caron                 |
1441   * | U+01D4  | ǔ     | u           | Latin small letter u with caron                   |
1442   * | U+01D5  | Ǖ     | U           | Latin capital letter U with diaeresis and macron  |
1443   * | U+01D6  | ǖ     | u           | Latin small letter u with diaeresis and macron    |
1444   * | U+01D7  | Ǘ     | U           | Latin capital letter U with diaeresis and acute   |
1445   * | U+01D8  | ǘ     | u           | Latin small letter u with diaeresis and acute     |
1446   * | U+01D9  | Ǚ     | U           | Latin capital letter U with diaeresis and caron   |
1447   * | U+01DA  | ǚ     | u           | Latin small letter u with diaeresis and caron     |
1448   * | U+01DB  | Ǜ     | U           | Latin capital letter U with diaeresis and grave   |
1449   * | U+01DC  | ǜ     | u           | Latin small letter u with diaeresis and grave     |
1450   *
1451   * Decompositions for Latin Extended-B:
1452   *
1453   * |   Code   | Glyph | Replacement |                Description                |
1454   * | -------- | ----- | ----------- | ----------------------------------------- |
1455   * | U+018F   | Ə     | E           | Latin capital letter Ə                    |
1456   * | U+0259   | ǝ     | e           | Latin small letter ǝ                      |
1457   * | U+0218   | Ș     | S           | Latin capital letter S with comma below   |
1458   * | U+0219   | ș     | s           | Latin small letter s with comma below     |
1459   * | U+021A   | Ț     | T           | Latin capital letter T with comma below   |
1460   * | U+021B   | ț     | t           | Latin small letter t with comma below     |
1461   *
1462   * Vowels with diacritic (Chinese, Hanyu Pinyin):
1463   *
1464   * |   Code   | Glyph | Replacement |                      Description                      |
1465   * | -------- | ----- | ----------- | ----------------------------------------------------- |
1466   * | U+0251   | ɑ     | a           | Latin small letter alpha                              |
1467   * | U+1EA0   | Ạ     | A           | Latin capital letter A with dot below                 |
1468   * | U+1EA1   | ạ     | a           | Latin small letter a with dot below                   |
1469   * | U+1EA2   | Ả     | A           | Latin capital letter A with hook above                |
1470   * | U+1EA3   | ả     | a           | Latin small letter a with hook above                  |
1471   * | U+1EA4   | Ấ     | A           | Latin capital letter A with circumflex and acute      |
1472   * | U+1EA5   | ấ     | a           | Latin small letter a with circumflex and acute        |
1473   * | U+1EA6   | Ầ     | A           | Latin capital letter A with circumflex and grave      |
1474   * | U+1EA7   | ầ     | a           | Latin small letter a with circumflex and grave        |
1475   * | U+1EA8   | Ẩ     | A           | Latin capital letter A with circumflex and hook above |
1476   * | U+1EA9   | ẩ     | a           | Latin small letter a with circumflex and hook above   |
1477   * | U+1EAA   | Ẫ     | A           | Latin capital letter A with circumflex and tilde      |
1478   * | U+1EAB   | ẫ     | a           | Latin small letter a with circumflex and tilde        |
1479   * | U+1EA6   | Ậ     | A           | Latin capital letter A with circumflex and dot below  |
1480   * | U+1EAD   | ậ     | a           | Latin small letter a with circumflex and dot below    |
1481   * | U+1EAE   | Ắ     | A           | Latin capital letter A with breve and acute           |
1482   * | U+1EAF   | ắ     | a           | Latin small letter a with breve and acute             |
1483   * | U+1EB0   | Ằ     | A           | Latin capital letter A with breve and grave           |
1484   * | U+1EB1   | ằ     | a           | Latin small letter a with breve and grave             |
1485   * | U+1EB2   | Ẳ     | A           | Latin capital letter A with breve and hook above      |
1486   * | U+1EB3   | ẳ     | a           | Latin small letter a with breve and hook above        |
1487   * | U+1EB4   | Ẵ     | A           | Latin capital letter A with breve and tilde           |
1488   * | U+1EB5   | ẵ     | a           | Latin small letter a with breve and tilde             |
1489   * | U+1EB6   | Ặ     | A           | Latin capital letter A with breve and dot below       |
1490   * | U+1EB7   | ặ     | a           | Latin small letter a with breve and dot below         |
1491   * | U+1EB8   | Ẹ     | E           | Latin capital letter E with dot below                 |
1492   * | U+1EB9   | ẹ     | e           | Latin small letter e with dot below                   |
1493   * | U+1EBA   | Ẻ     | E           | Latin capital letter E with hook above                |
1494   * | U+1EBB   | ẻ     | e           | Latin small letter e with hook above                  |
1495   * | U+1EBC   | Ẽ     | E           | Latin capital letter E with tilde                     |
1496   * | U+1EBD   | ẽ     | e           | Latin small letter e with tilde                       |
1497   * | U+1EBE   | Ế     | E           | Latin capital letter E with circumflex and acute      |
1498   * | U+1EBF   | ế     | e           | Latin small letter e with circumflex and acute        |
1499   * | U+1EC0   | Ề     | E           | Latin capital letter E with circumflex and grave      |
1500   * | U+1EC1   | ề     | e           | Latin small letter e with circumflex and grave        |
1501   * | U+1EC2   | Ể     | E           | Latin capital letter E with circumflex and hook above |
1502   * | U+1EC3   | ể     | e           | Latin small letter e with circumflex and hook above   |
1503   * | U+1EC4   | Ễ     | E           | Latin capital letter E with circumflex and tilde      |
1504   * | U+1EC5   | ễ     | e           | Latin small letter e with circumflex and tilde        |
1505   * | U+1EC6   | Ệ     | E           | Latin capital letter E with circumflex and dot below  |
1506   * | U+1EC7   | ệ     | e           | Latin small letter e with circumflex and dot below    |
1507   * | U+1EC8   | Ỉ     | I           | Latin capital letter I with hook above                |
1508   * | U+1EC9   | ỉ     | i           | Latin small letter i with hook above                  |
1509   * | U+1ECA   | Ị     | I           | Latin capital letter I with dot below                 |
1510   * | U+1ECB   | ị     | i           | Latin small letter i with dot below                   |
1511   * | U+1ECC   | Ọ     | O           | Latin capital letter O with dot below                 |
1512   * | U+1ECD   | ọ     | o           | Latin small letter o with dot below                   |
1513   * | U+1ECE   | Ỏ     | O           | Latin capital letter O with hook above                |
1514   * | U+1ECF   | ỏ     | o           | Latin small letter o with hook above                  |
1515   * | U+1ED0   | Ố     | O           | Latin capital letter O with circumflex and acute      |
1516   * | U+1ED1   | ố     | o           | Latin small letter o with circumflex and acute        |
1517   * | U+1ED2   | Ồ     | O           | Latin capital letter O with circumflex and grave      |
1518   * | U+1ED3   | ồ     | o           | Latin small letter o with circumflex and grave        |
1519   * | U+1ED4   | Ổ     | O           | Latin capital letter O with circumflex and hook above |
1520   * | U+1ED5   | ổ     | o           | Latin small letter o with circumflex and hook above   |
1521   * | U+1ED6   | Ỗ     | O           | Latin capital letter O with circumflex and tilde      |
1522   * | U+1ED7   | ỗ     | o           | Latin small letter o with circumflex and tilde        |
1523   * | U+1ED8   | Ộ     | O           | Latin capital letter O with circumflex and dot below  |
1524   * | U+1ED9   | ộ     | o           | Latin small letter o with circumflex and dot below    |
1525   * | U+1EDA   | Ớ     | O           | Latin capital letter O with horn and acute            |
1526   * | U+1EDB   | ớ     | o           | Latin small letter o with horn and acute              |
1527   * | U+1EDC   | Ờ     | O           | Latin capital letter O with horn and grave            |
1528   * | U+1EDD   | ờ     | o           | Latin small letter o with horn and grave              |
1529   * | U+1EDE   | Ở     | O           | Latin capital letter O with horn and hook above       |
1530   * | U+1EDF   | ở     | o           | Latin small letter o with horn and hook above         |
1531   * | U+1EE0   | Ỡ     | O           | Latin capital letter O with horn and tilde            |
1532   * | U+1EE1   | ỡ     | o           | Latin small letter o with horn and tilde              |
1533   * | U+1EE2   | Ợ     | O           | Latin capital letter O with horn and dot below        |
1534   * | U+1EE3   | ợ     | o           | Latin small letter o with horn and dot below          |
1535   * | U+1EE4   | Ụ     | U           | Latin capital letter U with dot below                 |
1536   * | U+1EE5   | ụ     | u           | Latin small letter u with dot below                   |
1537   * | U+1EE6   | Ủ     | U           | Latin capital letter U with hook above                |
1538   * | U+1EE7   | ủ     | u           | Latin small letter u with hook above                  |
1539   * | U+1EE8   | Ứ     | U           | Latin capital letter U with horn and acute            |
1540   * | U+1EE9   | ứ     | u           | Latin small letter u with horn and acute              |
1541   * | U+1EEA   | Ừ     | U           | Latin capital letter U with horn and grave            |
1542   * | U+1EEB   | ừ     | u           | Latin small letter u with horn and grave              |
1543   * | U+1EEC   | Ử     | U           | Latin capital letter U with horn and hook above       |
1544   * | U+1EED   | ử     | u           | Latin small letter u with horn and hook above         |
1545   * | U+1EEE   | Ữ     | U           | Latin capital letter U with horn and tilde            |
1546   * | U+1EEF   | ữ     | u           | Latin small letter u with horn and tilde              |
1547   * | U+1EF0   | Ự     | U           | Latin capital letter U with horn and dot below        |
1548   * | U+1EF1   | ự     | u           | Latin small letter u with horn and dot below          |
1549   * | U+1EF2   | Ỳ     | Y           | Latin capital letter Y with grave                     |
1550   * | U+1EF3   | ỳ     | y           | Latin small letter y with grave                       |
1551   * | U+1EF4   | Ỵ     | Y           | Latin capital letter Y with dot below                 |
1552   * | U+1EF5   | ỵ     | y           | Latin small letter y with dot below                   |
1553   * | U+1EF6   | Ỷ     | Y           | Latin capital letter Y with hook above                |
1554   * | U+1EF7   | ỷ     | y           | Latin small letter y with hook above                  |
1555   * | U+1EF8   | Ỹ     | Y           | Latin capital letter Y with tilde                     |
1556   * | U+1EF9   | ỹ     | y           | Latin small letter y with tilde                       |
1557   *
1558   * German (`de_DE`), German formal (`de_DE_formal`), German (Switzerland) formal (`de_CH`),
1559   * German (Switzerland) informal (`de_CH_informal`), and German (Austria) (`de_AT`) locales:
1560   *
1561   * |   Code   | Glyph | Replacement |               Description               |
1562   * | -------- | ----- | ----------- | --------------------------------------- |
1563   * | U+00C4   | Ä     | Ae          | Latin capital letter A with diaeresis   |
1564   * | U+00E4   | ä     | ae          | Latin small letter a with diaeresis     |
1565   * | U+00D6   | Ö     | Oe          | Latin capital letter O with diaeresis   |
1566   * | U+00F6   | ö     | oe          | Latin small letter o with diaeresis     |
1567   * | U+00DC   | Ü     | Ue          | Latin capital letter U with diaeresis   |
1568   * | U+00FC   | ü     | ue          | Latin small letter u with diaeresis     |
1569   * | U+1E9E   | ẞ     | SS          | Latin capital letter sharp s            |
1570   * | U+00DF   | ß     | ss          | Latin small letter sharp s              |
1571   *
1572   * Danish (`da_DK`) locale:
1573   *
1574   * |   Code   | Glyph | Replacement |               Description               |
1575   * | -------- | ----- | ----------- | --------------------------------------- |
1576   * | U+00C6   | Æ     | Ae          | Latin capital letter AE                 |
1577   * | U+00E6   | æ     | ae          | Latin small letter ae                   |
1578   * | U+00D8   | Ø     | Oe          | Latin capital letter O with stroke      |
1579   * | U+00F8   | ø     | oe          | Latin small letter o with stroke        |
1580   * | U+00C5   | Å     | Aa          | Latin capital letter A with ring above  |
1581   * | U+00E5   | å     | aa          | Latin small letter a with ring above    |
1582   *
1583   * Catalan (`ca`) locale:
1584   *
1585   * |   Code   | Glyph | Replacement |               Description               |
1586   * | -------- | ----- | ----------- | --------------------------------------- |
1587   * | U+00B7   | l·l   | ll          | Flown dot (between two Ls)              |
1588   *
1589   * Serbian (`sr_RS`) and Bosnian (`bs_BA`) locales:
1590   *
1591   * |   Code   | Glyph | Replacement |               Description               |
1592   * | -------- | ----- | ----------- | --------------------------------------- |
1593   * | U+0110   | Đ     | DJ          | Latin capital letter D with stroke      |
1594   * | U+0111   | đ     | dj          | Latin small letter d with stroke        |
1595   *
1596   * @since 1.2.1
1597   * @since 4.6.0 Added locale support for `de_CH`, `de_CH_informal`, and `ca`.
1598   * @since 4.7.0 Added locale support for `sr_RS`.
1599   * @since 4.8.0 Added locale support for `bs_BA`.
1600   * @since 5.7.0 Added locale support for `de_AT`.
1601   * @since 6.0.0 Added the `$locale` parameter.
1602   * @since 6.1.0 Added Unicode NFC encoding normalization support.
1603   * @since 7.0.0 Added capital Eszett (U+1E9E) support for German locales.
1604   *
1605   * @param string $text   Text that might have accent characters.
1606   * @param string $locale Optional. The locale to use for accent removal. Some character
1607   *                       replacements depend on the locale being used (e.g. 'de_DE').
1608   *                       Defaults to the current locale.
1609   * @return string Filtered string with replaced "nice" characters.
1610   */
1611  function remove_accents( $text, $locale = '' ) {
1612      if ( ! preg_match( '/[\x80-\xff]/', $text ) ) {
1613          return $text;
1614      }
1615  
1616      if ( wp_is_valid_utf8( $text ) ) {
1617  
1618          /*
1619           * Unicode sequence normalization from NFD (Normalization Form Decomposed)
1620           * to NFC (Normalization Form [Pre]Composed), the encoding used in this function.
1621           */
1622          if ( function_exists( 'normalizer_is_normalized' )
1623              && function_exists( 'normalizer_normalize' )
1624          ) {
1625              if ( ! normalizer_is_normalized( $text ) ) {
1626                  $text = normalizer_normalize( $text );
1627              }
1628          }
1629  
1630          $chars = array(
1631              // Decompositions for Latin-1 Supplement.
1632              'ª' => 'a',
1633              'º' => 'o',
1634              'À' => 'A',
1635              'Á' => 'A',
1636              'Â' => 'A',
1637              'Ã' => 'A',
1638              'Ä' => 'A',
1639              'Å' => 'A',
1640              'Æ' => 'AE',
1641              'Ç' => 'C',
1642              'È' => 'E',
1643              'É' => 'E',
1644              'Ê' => 'E',
1645              'Ë' => 'E',
1646              'Ì' => 'I',
1647              'Í' => 'I',
1648              'Î' => 'I',
1649              'Ï' => 'I',
1650              'Ð' => 'D',
1651              'Ñ' => 'N',
1652              'Ò' => 'O',
1653              'Ó' => 'O',
1654              'Ô' => 'O',
1655              'Õ' => 'O',
1656              'Ö' => 'O',
1657              'Ù' => 'U',
1658              'Ú' => 'U',
1659              'Û' => 'U',
1660              'Ü' => 'U',
1661              'Ý' => 'Y',
1662              'Þ' => 'TH',
1663              'ß' => 's',
1664              'à' => 'a',
1665              'á' => 'a',
1666              'â' => 'a',
1667              'ã' => 'a',
1668              'ä' => 'a',
1669              'å' => 'a',
1670              'æ' => 'ae',
1671              'ç' => 'c',
1672              'è' => 'e',
1673              'é' => 'e',
1674              'ê' => 'e',
1675              'ë' => 'e',
1676              'ì' => 'i',
1677              'í' => 'i',
1678              'î' => 'i',
1679              'ï' => 'i',
1680              'ð' => 'd',
1681              'ñ' => 'n',
1682              'ò' => 'o',
1683              'ó' => 'o',
1684              'ô' => 'o',
1685              'õ' => 'o',
1686              'ö' => 'o',
1687              'ø' => 'o',
1688              'ù' => 'u',
1689              'ú' => 'u',
1690              'û' => 'u',
1691              'ü' => 'u',
1692              'ý' => 'y',
1693              'þ' => 'th',
1694              'ÿ' => 'y',
1695              'Ø' => 'O',
1696              // Decompositions for Latin Extended-A.
1697              'Ā' => 'A',
1698              'ā' => 'a',
1699              'Ă' => 'A',
1700              'ă' => 'a',
1701              'Ą' => 'A',
1702              'ą' => 'a',
1703              'Ć' => 'C',
1704              'ć' => 'c',
1705              'Ĉ' => 'C',
1706              'ĉ' => 'c',
1707              'Ċ' => 'C',
1708              'ċ' => 'c',
1709              'Č' => 'C',
1710              'č' => 'c',
1711              'Ď' => 'D',
1712              'ď' => 'd',
1713              'Đ' => 'D',
1714              'đ' => 'd',
1715              'Ē' => 'E',
1716              'ē' => 'e',
1717              'Ĕ' => 'E',
1718              'ĕ' => 'e',
1719              'Ė' => 'E',
1720              'ė' => 'e',
1721              'Ę' => 'E',
1722              'ę' => 'e',
1723              'Ě' => 'E',
1724              'ě' => 'e',
1725              'Ĝ' => 'G',
1726              'ĝ' => 'g',
1727              'Ğ' => 'G',
1728              'ğ' => 'g',
1729              'Ġ' => 'G',
1730              'ġ' => 'g',
1731              'Ģ' => 'G',
1732              'ģ' => 'g',
1733              'Ĥ' => 'H',
1734              'ĥ' => 'h',
1735              'Ħ' => 'H',
1736              'ħ' => 'h',
1737              'Ĩ' => 'I',
1738              'ĩ' => 'i',
1739              'Ī' => 'I',
1740              'ī' => 'i',
1741              'Ĭ' => 'I',
1742              'ĭ' => 'i',
1743              'Į' => 'I',
1744              'į' => 'i',
1745              'İ' => 'I',
1746              'ı' => 'i',
1747              'IJ' => 'IJ',
1748              'ij' => 'ij',
1749              'Ĵ' => 'J',
1750              'ĵ' => 'j',
1751              'Ķ' => 'K',
1752              'ķ' => 'k',
1753              'ĸ' => 'k',
1754              'Ĺ' => 'L',
1755              'ĺ' => 'l',
1756              'Ļ' => 'L',
1757              'ļ' => 'l',
1758              'Ľ' => 'L',
1759              'ľ' => 'l',
1760              'Ŀ' => 'L',
1761              'ŀ' => 'l',
1762              'Ł' => 'L',
1763              'ł' => 'l',
1764              'Ń' => 'N',
1765              'ń' => 'n',
1766              'Ņ' => 'N',
1767              'ņ' => 'n',
1768              'Ň' => 'N',
1769              'ň' => 'n',
1770              'ʼn' => 'n',
1771              'Ŋ' => 'N',
1772              'ŋ' => 'n',
1773              'Ō' => 'O',
1774              'ō' => 'o',
1775              'Ŏ' => 'O',
1776              'ŏ' => 'o',
1777              'Ő' => 'O',
1778              'ő' => 'o',
1779              'Œ' => 'OE',
1780              'œ' => 'oe',
1781              'Ŕ' => 'R',
1782              'ŕ' => 'r',
1783              'Ŗ' => 'R',
1784              'ŗ' => 'r',
1785              'Ř' => 'R',
1786              'ř' => 'r',
1787              'Ś' => 'S',
1788              'ś' => 's',
1789              'Ŝ' => 'S',
1790              'ŝ' => 's',
1791              'Ş' => 'S',
1792              'ş' => 's',
1793              'Š' => 'S',
1794              'š' => 's',
1795              'Ţ' => 'T',
1796              'ţ' => 't',
1797              'Ť' => 'T',
1798              'ť' => 't',
1799              'Ŧ' => 'T',
1800              'ŧ' => 't',
1801              'Ũ' => 'U',
1802              'ũ' => 'u',
1803              'Ū' => 'U',
1804              'ū' => 'u',
1805              'Ŭ' => 'U',
1806              'ŭ' => 'u',
1807              'Ů' => 'U',
1808              'ů' => 'u',
1809              'Ű' => 'U',
1810              'ű' => 'u',
1811              'Ų' => 'U',
1812              'ų' => 'u',
1813              'Ŵ' => 'W',
1814              'ŵ' => 'w',
1815              'Ŷ' => 'Y',
1816              'ŷ' => 'y',
1817              'Ÿ' => 'Y',
1818              'Ź' => 'Z',
1819              'ź' => 'z',
1820              'Ż' => 'Z',
1821              'ż' => 'z',
1822              'Ž' => 'Z',
1823              'ž' => 'z',
1824              'ſ' => 's',
1825              // Decompositions for Latin Extended-B.
1826              'Ə' => 'E',
1827              'ǝ' => 'e',
1828              'Ș' => 'S',
1829              'ș' => 's',
1830              'Ț' => 'T',
1831              'ț' => 't',
1832              // Euro sign.
1833              '€' => 'E',
1834              // GBP (Pound) sign.
1835              '£' => '',
1836              // Vowels with diacritic (Vietnamese). Unmarked.
1837              'Ơ' => 'O',
1838              'ơ' => 'o',
1839              'Ư' => 'U',
1840              'ư' => 'u',
1841              // Grave accent.
1842              'Ầ' => 'A',
1843              'ầ' => 'a',
1844              'Ằ' => 'A',
1845              'ằ' => 'a',
1846              'Ề' => 'E',
1847              'ề' => 'e',
1848              'Ồ' => 'O',
1849              'ồ' => 'o',
1850              'Ờ' => 'O',
1851              'ờ' => 'o',
1852              'Ừ' => 'U',
1853              'ừ' => 'u',
1854              'Ỳ' => 'Y',
1855              'ỳ' => 'y',
1856              // Hook.
1857              'Ả' => 'A',
1858              'ả' => 'a',
1859              'Ẩ' => 'A',
1860              'ẩ' => 'a',
1861              'Ẳ' => 'A',
1862              'ẳ' => 'a',
1863              'Ẻ' => 'E',
1864              'ẻ' => 'e',
1865              'Ể' => 'E',
1866              'ể' => 'e',
1867              'Ỉ' => 'I',
1868              'ỉ' => 'i',
1869              'Ỏ' => 'O',
1870              'ỏ' => 'o',
1871              'Ổ' => 'O',
1872              'ổ' => 'o',
1873              'Ở' => 'O',
1874              'ở' => 'o',
1875              'Ủ' => 'U',
1876              'ủ' => 'u',
1877              'Ử' => 'U',
1878              'ử' => 'u',
1879              'Ỷ' => 'Y',
1880              'ỷ' => 'y',
1881              // Tilde.
1882              'Ẫ' => 'A',
1883              'ẫ' => 'a',
1884              'Ẵ' => 'A',
1885              'ẵ' => 'a',
1886              'Ẽ' => 'E',
1887              'ẽ' => 'e',
1888              'Ễ' => 'E',
1889              'ễ' => 'e',
1890              'Ỗ' => 'O',
1891              'ỗ' => 'o',
1892              'Ỡ' => 'O',
1893              'ỡ' => 'o',
1894              'Ữ' => 'U',
1895              'ữ' => 'u',
1896              'Ỹ' => 'Y',
1897              'ỹ' => 'y',
1898              // Acute accent.
1899              'Ấ' => 'A',
1900              'ấ' => 'a',
1901              'Ắ' => 'A',
1902              'ắ' => 'a',
1903              'Ế' => 'E',
1904              'ế' => 'e',
1905              'Ố' => 'O',
1906              'ố' => 'o',
1907              'Ớ' => 'O',
1908              'ớ' => 'o',
1909              'Ứ' => 'U',
1910              'ứ' => 'u',
1911              // Dot below.
1912              'Ạ' => 'A',
1913              'ạ' => 'a',
1914              'Ậ' => 'A',
1915              'ậ' => 'a',
1916              'Ặ' => 'A',
1917              'ặ' => 'a',
1918              'Ẹ' => 'E',
1919              'ẹ' => 'e',
1920              'Ệ' => 'E',
1921              'ệ' => 'e',
1922              'Ị' => 'I',
1923              'ị' => 'i',
1924              'Ọ' => 'O',
1925              'ọ' => 'o',
1926              'Ộ' => 'O',
1927              'ộ' => 'o',
1928              'Ợ' => 'O',
1929              'ợ' => 'o',
1930              'Ụ' => 'U',
1931              'ụ' => 'u',
1932              'Ự' => 'U',
1933              'ự' => 'u',
1934              'Ỵ' => 'Y',
1935              'ỵ' => 'y',
1936              // Vowels with diacritic (Chinese, Hanyu Pinyin).
1937              'ɑ' => 'a',
1938              // Macron.
1939              'Ǖ' => 'U',
1940              'ǖ' => 'u',
1941              // Acute accent.
1942              'Ǘ' => 'U',
1943              'ǘ' => 'u',
1944              // Caron.
1945              'Ǎ' => 'A',
1946              'ǎ' => 'a',
1947              'Ǐ' => 'I',
1948              'ǐ' => 'i',
1949              'Ǒ' => 'O',
1950              'ǒ' => 'o',
1951              'Ǔ' => 'U',
1952              'ǔ' => 'u',
1953              'Ǚ' => 'U',
1954              'ǚ' => 'u',
1955              // Grave accent.
1956              'Ǜ' => 'U',
1957              'ǜ' => 'u',
1958          );
1959  
1960          // Used for locale-specific rules.
1961          if ( empty( $locale ) ) {
1962              $locale = get_locale();
1963          }
1964  
1965          /*
1966           * German has various locales (de_DE, de_CH, de_AT, ...) with formal and informal variants.
1967           * There is no 3-letter locale like 'def', so checking for 'de' instead of 'de_' is safe,
1968           * since 'de' itself would be a valid locale too.
1969           */
1970          if ( str_starts_with( $locale, 'de' ) ) {
1971              $chars['Ä'] = 'Ae';
1972              $chars['ä'] = 'ae';
1973              $chars['Ö'] = 'Oe';
1974              $chars['ö'] = 'oe';
1975              $chars['Ü'] = 'Ue';
1976              $chars['ü'] = 'ue';
1977              $chars['ẞ'] = 'SS';
1978              $chars['ß'] = 'ss';
1979          } elseif ( 'da_DK' === $locale ) {
1980              $chars['Æ'] = 'Ae';
1981              $chars['æ'] = 'ae';
1982              $chars['Ø'] = 'Oe';
1983              $chars['ø'] = 'oe';
1984              $chars['Å'] = 'Aa';
1985              $chars['å'] = 'aa';
1986          } elseif ( 'ca' === $locale ) {
1987              $chars['l·l'] = 'll';
1988          } elseif ( 'sr_RS' === $locale || 'bs_BA' === $locale ) {
1989              $chars['Đ'] = 'DJ';
1990              $chars['đ'] = 'dj';
1991          }
1992  
1993          $text = strtr( $text, $chars );
1994      } else {
1995          $chars = array();
1996          // Assume ISO-8859-1 if not UTF-8.
1997          $chars['in'] = "\x80\x83\x8a\x8e\x9a\x9e"
1998              . "\x9f\xa2\xa5\xb5\xc0\xc1\xc2"
1999              . "\xc3\xc4\xc5\xc7\xc8\xc9\xca"
2000              . "\xcb\xcc\xcd\xce\xcf\xd1\xd2"
2001              . "\xd3\xd4\xd5\xd6\xd8\xd9\xda"
2002              . "\xdb\xdc\xdd\xe0\xe1\xe2\xe3"
2003              . "\xe4\xe5\xe7\xe8\xe9\xea\xeb"
2004              . "\xec\xed\xee\xef\xf1\xf2\xf3"
2005              . "\xf4\xf5\xf6\xf8\xf9\xfa\xfb"
2006              . "\xfc\xfd\xff";
2007  
2008          $chars['out'] = 'EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy';
2009  
2010          $text                = strtr( $text, $chars['in'], $chars['out'] );
2011          $double_chars        = array();
2012          $double_chars['in']  = array( "\x8c", "\x9c", "\xc6", "\xd0", "\xde", "\xdf", "\xe6", "\xf0", "\xfe" );
2013          $double_chars['out'] = array( 'OE', 'oe', 'AE', 'DH', 'TH', 'ss', 'ae', 'dh', 'th' );
2014          $text                = str_replace( $double_chars['in'], $double_chars['out'], $text );
2015      }
2016  
2017      return $text;
2018  }
2019  
2020  /**
2021   * Sanitizes a filename, replacing whitespace with dashes.
2022   *
2023   * Removes special characters that are illegal in filenames on certain
2024   * operating systems and special characters requiring special escaping
2025   * to manipulate at the command line. Replaces spaces and consecutive
2026   * dashes with a single dash. Trims period, dash and underscore from beginning
2027   * and end of filename. It is not guaranteed that this function will return a
2028   * filename that is allowed to be uploaded.
2029   *
2030   * @since 2.1.0
2031   *
2032   * @param string $filename The filename to be sanitized.
2033   * @return string The sanitized filename.
2034   */
2035  function sanitize_file_name( $filename ) {
2036      $filename_raw = $filename;
2037      $filename     = remove_accents( $filename );
2038  
2039      $special_chars = array( '?', '[', ']', '/', '\\', '=', '<', '>', ':', ';', ',', "'", '"', '&', '$', '#', '*', '(', ')', '|', '~', '`', '!', '{', '}', '%', '+', '’', '«', '»', '”', '“', chr( 0 ) );
2040  
2041      if ( ! wp_is_valid_utf8( $filename ) ) {
2042          $_ext     = pathinfo( $filename, PATHINFO_EXTENSION );
2043          $_name    = pathinfo( $filename, PATHINFO_FILENAME );
2044          $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext;
2045      }
2046  
2047      if ( _wp_can_use_pcre_u() ) {
2048          /**
2049           * Replace all whitespace characters with a basic space (U+0020).
2050           *
2051           * The “Zs” in the pattern selects characters in the `Space_Separator`
2052           * category, which is what Unicode considers space characters.
2053           *
2054           * @see https://www.unicode.org/reports/tr44/#General_Category_Values
2055           * @see https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-6/#G17548
2056           * @see https://www.php.net/manual/en/regexp.reference.unicode.php
2057           */
2058          $filename = preg_replace( '#\p{Zs}#siu', ' ', $filename );
2059      }
2060  
2061      /**
2062       * Filters the list of characters to remove from a filename.
2063       *
2064       * @since 2.8.0
2065       *
2066       * @param string[] $special_chars Array of characters to remove.
2067       * @param string   $filename_raw  The original filename to be sanitized.
2068       */
2069      $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
2070  
2071      $filename = str_replace( $special_chars, '', $filename );
2072      $filename = str_replace( array( '%20', '+' ), '-', $filename );
2073      $filename = preg_replace( '/\.{2,}/', '.', $filename );
2074      $filename = preg_replace( '/[\r\n\t -]+/', '-', $filename );
2075      $filename = trim( $filename, '.-_' );
2076  
2077      if ( ! str_contains( $filename, '.' ) ) {
2078          $mime_types = wp_get_mime_types();
2079          $filetype   = wp_check_filetype( 'test.' . $filename, $mime_types );
2080          if ( $filetype['ext'] === $filename ) {
2081              $filename = 'unnamed-file.' . $filetype['ext'];
2082          }
2083      }
2084  
2085      // Split the filename into a base and extension[s].
2086      $parts = explode( '.', $filename );
2087  
2088      // Return if only one extension.
2089      if ( count( $parts ) <= 2 ) {
2090          /** This filter is documented in wp-includes/formatting.php */
2091          return apply_filters( 'sanitize_file_name', $filename, $filename_raw );
2092      }
2093  
2094      // Process multiple extensions.
2095      $filename  = array_shift( $parts );
2096      $extension = array_pop( $parts );
2097      $mimes     = get_allowed_mime_types();
2098  
2099      /*
2100       * Loop over any intermediate extensions. Postfix them with a trailing underscore
2101       * if they are a 2 - 5 character long alpha string not in the allowed extension list.
2102       */
2103      foreach ( (array) $parts as $part ) {
2104          $filename .= '.' . $part;
2105  
2106          if ( preg_match( '/^[a-zA-Z]{2,5}\d?$/', $part ) ) {
2107              $allowed = false;
2108              foreach ( $mimes as $ext_preg => $mime_match ) {
2109                  $ext_preg = '!^(' . $ext_preg . ')$!i';
2110                  if ( preg_match( $ext_preg, $part ) ) {
2111                      $allowed = true;
2112                      break;
2113                  }
2114              }
2115              if ( ! $allowed ) {
2116                  $filename .= '_';
2117              }
2118          }
2119      }
2120  
2121      $filename .= '.' . $extension;
2122  
2123      /**
2124       * Filters a sanitized filename string.
2125       *
2126       * @since 2.8.0
2127       *
2128       * @param string $filename     Sanitized filename.
2129       * @param string $filename_raw The filename prior to sanitization.
2130       */
2131      return apply_filters( 'sanitize_file_name', $filename, $filename_raw );
2132  }
2133  
2134  /**
2135   * Sanitizes a username, stripping out unsafe characters.
2136   *
2137   * Removes tags, percent-encoded characters, HTML entities, and if strict is enabled,
2138   * will only keep alphanumeric, _, space, ., -, @. After sanitizing, it passes the username,
2139   * raw username (the username in the parameter), and the value of $strict as parameters
2140   * for the {@see 'sanitize_user'} filter.
2141   *
2142   * @since 2.0.0
2143   *
2144   * @param string $username The username to be sanitized.
2145   * @param bool   $strict   Optional. If set to true, limits $username to specific characters.
2146   *                         Default false.
2147   * @return string The sanitized username, after passing through filters.
2148   */
2149  function sanitize_user( $username, $strict = false ) {
2150      $raw_username = $username;
2151      $username     = wp_strip_all_tags( $username );
2152      $username     = remove_accents( $username );
2153      // Remove percent-encoded characters.
2154      $username = preg_replace( '|%([a-fA-F0-9][a-fA-F0-9])|', '', $username );
2155      // Remove HTML entities.
2156      $username = preg_replace( '/&.+?;/', '', $username );
2157  
2158      // If strict, reduce to ASCII for max portability.
2159      if ( $strict ) {
2160          $username = preg_replace( '|[^a-z0-9 _.\-@]|i', '', $username );
2161      }
2162  
2163      $username = trim( $username );
2164      // Consolidate contiguous whitespace.
2165      $username = preg_replace( '|\s+|', ' ', $username );
2166  
2167      /**
2168       * Filters a sanitized username string.
2169       *
2170       * @since 2.0.1
2171       *
2172       * @param string $username     Sanitized username.
2173       * @param string $raw_username The username prior to sanitization.
2174       * @param bool   $strict       Whether to limit the sanitization to specific characters.
2175       */
2176      return apply_filters( 'sanitize_user', $username, $raw_username, $strict );
2177  }
2178  
2179  /**
2180   * Sanitizes a string key.
2181   *
2182   * Keys are used as internal identifiers. Lowercase alphanumeric characters,
2183   * dashes, and underscores are allowed.
2184   *
2185   * @since 3.0.0
2186   *
2187   * @param string $key String key.
2188   * @return string Sanitized key.
2189   * @phpstan-return lowercase-string
2190   */
2191  function sanitize_key( $key ) {
2192      $sanitized_key = '';
2193  
2194      if ( is_scalar( $key ) ) {
2195          $sanitized_key = strtolower( $key );
2196          $sanitized_key = preg_replace( '/[^a-z0-9_\-]/', '', $sanitized_key );
2197      }
2198  
2199      /**
2200       * Filters a sanitized key string.
2201       *
2202       * @since 3.0.0
2203       *
2204       * @param string $sanitized_key Sanitized key.
2205       * @param string $key           The key prior to sanitization.
2206       */
2207      return apply_filters( 'sanitize_key', $sanitized_key, $key );
2208  }
2209  
2210  /**
2211   * Sanitizes a string into a slug, which can be used in URLs or HTML attributes.
2212   *
2213   * By default, converts accent characters to ASCII characters and further
2214   * limits the output to alphanumeric characters, underscore (_) and dash (-)
2215   * through the {@see 'sanitize_title'} filter.
2216   *
2217   * If `$title` is empty and `$fallback_title` is set, the latter will be used.
2218   *
2219   * @since 1.0.0
2220   *
2221   * @param string $title          The string to be sanitized.
2222   * @param string $fallback_title Optional. A title to use if $title is empty. Default empty.
2223   * @param string $context        Optional. The operation for which the string is sanitized.
2224   *                               When set to 'save', the string runs through remove_accents().
2225   *                               Default 'save'.
2226   * @return string The sanitized string.
2227   */
2228  function sanitize_title( $title, $fallback_title = '', $context = 'save' ) {
2229      $raw_title = $title;
2230  
2231      if ( 'save' === $context ) {
2232          $title = remove_accents( $title );
2233      }
2234  
2235      /**
2236       * Filters a sanitized title string.
2237       *
2238       * @since 1.2.0
2239       *
2240       * @param string $title     Sanitized title.
2241       * @param string $raw_title The title prior to sanitization.
2242       * @param string $context   The context for which the title is being sanitized.
2243       */
2244      $title = apply_filters( 'sanitize_title', $title, $raw_title, $context );
2245  
2246      if ( '' === $title || false === $title ) {
2247          $title = $fallback_title;
2248      }
2249  
2250      return $title;
2251  }
2252  
2253  /**
2254   * Sanitizes a title with the 'query' context.
2255   *
2256   * Used for querying the database for a value from URL.
2257   *
2258   * @since 3.1.0
2259   *
2260   * @param string $title The string to be sanitized.
2261   * @return string The sanitized string.
2262   */
2263  function sanitize_title_for_query( $title ) {
2264      return sanitize_title( $title, '', 'query' );
2265  }
2266  
2267  /**
2268   * Sanitizes a title, replacing whitespace and a few other characters with dashes.
2269   *
2270   * Limits the output to alphanumeric characters, underscore (_) and dash (-).
2271   * Whitespace becomes a dash.
2272   *
2273   * @since 1.2.0
2274   *
2275   * @param string $title     The title to be sanitized.
2276   * @param string $raw_title Optional. Not used. Default empty.
2277   * @param string $context   Optional. The operation for which the string is sanitized.
2278   *                          When set to 'save', additional entities are converted to hyphens
2279   *                          or stripped entirely. Default 'display'.
2280   * @return string The sanitized title.
2281   */
2282  function sanitize_title_with_dashes( $title, $raw_title = '', $context = 'display' ) {
2283      $title = strip_tags( $title );
2284      // Preserve escaped octets.
2285      $title = preg_replace( '|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title );
2286      // Remove percent signs that are not part of an octet.
2287      $title = str_replace( '%', '', $title );
2288      // Restore octets.
2289      $title = preg_replace( '|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title );
2290  
2291      if ( wp_is_valid_utf8( $title ) ) {
2292          if ( function_exists( 'mb_strtolower' ) ) {
2293              $title = mb_strtolower( $title, 'UTF-8' );
2294          }
2295          $title = utf8_uri_encode( $title, 200 );
2296      }
2297  
2298      $title = strtolower( $title );
2299  
2300      if ( 'save' === $context ) {
2301          // Convert &nbsp, non-breaking hyphen, &ndash, and &mdash to hyphens.
2302          $title = str_replace( array( '%c2%a0', '%e2%80%91', '%e2%80%93', '%e2%80%94' ), '-', $title );
2303          // Convert &nbsp, non-breaking hyphen, &ndash, and &mdash HTML entities to hyphens.
2304          $title = str_replace( array( '&nbsp;', '&#8209;', '&#160;', '&ndash;', '&#8211;', '&mdash;', '&#8212;' ), '-', $title );
2305          // Convert forward slash to hyphen.
2306          $title = str_replace( '/', '-', $title );
2307  
2308          // Strip these characters entirely.
2309          $title = str_replace(
2310              array(
2311                  // Soft hyphens.
2312                  '%c2%ad',
2313                  // &iexcl and &iquest.
2314                  '%c2%a1',
2315                  '%c2%bf',
2316                  // Angle quotes.
2317                  '%c2%ab',
2318                  '%c2%bb',
2319                  '%e2%80%b9',
2320                  '%e2%80%ba',
2321                  // Curly quotes.
2322                  '%e2%80%98',
2323                  '%e2%80%99',
2324                  '%e2%80%9c',
2325                  '%e2%80%9d',
2326                  '%e2%80%9a',
2327                  '%e2%80%9b',
2328                  '%e2%80%9e',
2329                  '%e2%80%9f',
2330                  // Bullet.
2331                  '%e2%80%a2',
2332                  // &copy, &reg, &deg, &hellip, and &trade.
2333                  '%c2%a9',
2334                  '%c2%ae',
2335                  '%c2%b0',
2336                  '%e2%80%a6',
2337                  '%e2%84%a2',
2338                  // Acute accents.
2339                  '%c2%b4',
2340                  '%cb%8a',
2341                  '%cc%81',
2342                  '%cd%81',
2343                  // Grave accent, macron, caron.
2344                  '%cc%80',
2345                  '%cc%84',
2346                  '%cc%8c',
2347                  // Non-visible characters that display without a width.
2348                  '%e2%80%8b', // Zero width space.
2349                  '%e2%80%8c', // Zero width non-joiner.
2350                  '%e2%80%8d', // Zero width joiner.
2351                  '%e2%80%8e', // Left-to-right mark.
2352                  '%e2%80%8f', // Right-to-left mark.
2353                  '%e2%80%aa', // Left-to-right embedding.
2354                  '%e2%80%ab', // Right-to-left embedding.
2355                  '%e2%80%ac', // Pop directional formatting.
2356                  '%e2%80%ad', // Left-to-right override.
2357                  '%e2%80%ae', // Right-to-left override.
2358                  '%ef%bb%bf', // Byte order mark.
2359                  '%ef%bf%bc', // Object replacement character.
2360              ),
2361              '',
2362              $title
2363          );
2364  
2365          // Convert non-visible characters that display with a width to hyphen.
2366          $title = str_replace(
2367              array(
2368                  '%e2%80%80', // En quad.
2369                  '%e2%80%81', // Em quad.
2370                  '%e2%80%82', // En space.
2371                  '%e2%80%83', // Em space.
2372                  '%e2%80%84', // Three-per-em space.
2373                  '%e2%80%85', // Four-per-em space.
2374                  '%e2%80%86', // Six-per-em space.
2375                  '%e2%80%87', // Figure space.
2376                  '%e2%80%88', // Punctuation space.
2377                  '%e2%80%89', // Thin space.
2378                  '%e2%80%8a', // Hair space.
2379                  '%e2%80%a8', // Line separator.
2380                  '%e2%80%a9', // Paragraph separator.
2381                  '%e2%80%af', // Narrow no-break space.
2382              ),
2383              '-',
2384              $title
2385          );
2386  
2387          // Convert &times to 'x'.
2388          $title = str_replace( '%c3%97', 'x', $title );
2389      }
2390  
2391      // Remove HTML entities.
2392      $title = preg_replace( '/&.+?;/', '', $title );
2393      $title = str_replace( '.', '-', $title );
2394  
2395      $title = preg_replace( '/[^%a-z0-9 _-]/', '', $title );
2396      $title = preg_replace( '/\s+/', '-', $title );
2397      $title = preg_replace( '|-+|', '-', $title );
2398      $title = trim( $title, '-' );
2399  
2400      return $title;
2401  }
2402  
2403  /**
2404   * Ensures a string is a valid SQL 'order by' clause.
2405   *
2406   * Accepts one or more columns, with or without a sort order (ASC / DESC).
2407   * e.g. 'column_1', 'column_1, column_2', 'column_1 ASC, column_2 DESC' etc.
2408   *
2409   * Also accepts 'RAND()'.
2410   *
2411   * @since 2.5.1
2412   *
2413   * @param string $orderby Order by clause to be validated.
2414   * @return string|false Returns $orderby if valid, false otherwise.
2415   */
2416  function sanitize_sql_orderby( $orderby ) {
2417      if ( preg_match( '/^\s*(([a-z0-9_]+|`[a-z0-9_]+`)(\s+(ASC|DESC))?\s*(,\s*(?=[a-z0-9_`])|$))+$/i', $orderby ) || preg_match( '/^\s*RAND\(\s*\)\s*$/i', $orderby ) ) {
2418          return $orderby;
2419      }
2420      return false;
2421  }
2422  
2423  /**
2424   * Sanitizes an HTML classname to ensure it only contains valid characters.
2425   *
2426   * Strips the string down to A-Z,a-z,0-9,_,-. If this results in an empty
2427   * string then it will return the alternative value supplied.
2428   *
2429   * @todo Expand to support the full range of CDATA that a class attribute can contain.
2430   *
2431   * @since 2.8.0
2432   *
2433   * @param string $classname The classname to be sanitized.
2434   * @param string $fallback  Optional. The value to return if the sanitization ends up as an empty string.
2435   *                          Default empty string.
2436   * @return string The sanitized value.
2437   */
2438  function sanitize_html_class( $classname, $fallback = '' ) {
2439      // Strip out any percent-encoded characters.
2440      $sanitized = preg_replace( '|%[a-fA-F0-9][a-fA-F0-9]|', '', $classname );
2441  
2442      // Limit to A-Z, a-z, 0-9, '_', '-'.
2443      $sanitized = preg_replace( '/[^A-Za-z0-9_-]/', '', $sanitized );
2444  
2445      if ( '' === $sanitized && $fallback ) {
2446          return sanitize_html_class( $fallback );
2447      }
2448      /**
2449       * Filters a sanitized HTML class string.
2450       *
2451       * @since 2.8.0
2452       *
2453       * @param string $sanitized The sanitized HTML class.
2454       * @param string $classname HTML class before sanitization.
2455       * @param string $fallback  The fallback string.
2456       */
2457      return apply_filters( 'sanitize_html_class', $sanitized, $classname, $fallback );
2458  }
2459  
2460  /**
2461   * Strips out all characters not allowed in a locale name.
2462   *
2463   * @since 6.2.1
2464   *
2465   * @param string $locale_name The locale name to be sanitized.
2466   * @return string The sanitized value.
2467   */
2468  function sanitize_locale_name( $locale_name ) {
2469      // Limit to A-Z, a-z, 0-9, '_', '-'.
2470      $sanitized = preg_replace( '/[^A-Za-z0-9_-]/', '', $locale_name );
2471  
2472      /**
2473       * Filters a sanitized locale name string.
2474       *
2475       * @since 6.2.1
2476       *
2477       * @param string $sanitized   The sanitized locale name.
2478       * @param string $locale_name The locale name before sanitization.
2479       */
2480      return apply_filters( 'sanitize_locale_name', $sanitized, $locale_name );
2481  }
2482  
2483  /**
2484   * Converts lone & characters into `&#038;` (a.k.a. `&amp;`)
2485   *
2486   * @since 0.71
2487   *
2488   * @param string $content    String of characters to be converted.
2489   * @param string $deprecated Not used.
2490   * @return string Converted string.
2491   */
2492  function convert_chars( $content, $deprecated = '' ) {
2493      if ( ! empty( $deprecated ) ) {
2494          _deprecated_argument( __FUNCTION__, '0.71' );
2495      }
2496  
2497      if ( str_contains( $content, '&' ) ) {
2498          $content = preg_replace( '/&([^#])(?![a-z1-4]{1,8};)/i', '&#038;$1', $content );
2499      }
2500  
2501      return $content;
2502  }
2503  
2504  /**
2505   * Converts invalid Unicode references range to valid range.
2506   *
2507   * @since 4.3.0
2508   *
2509   * @param string $content String with entities that need converting.
2510   * @return string Converted string.
2511   */
2512  function convert_invalid_entities( $content ) {
2513      $wp_htmltranswinuni = array(
2514          '&#128;' => '&#8364;', // The Euro sign.
2515          '&#129;' => '',
2516          '&#130;' => '&#8218;', // These are Windows CP1252 specific characters.
2517          '&#131;' => '&#402;',  // They would look weird on non-Windows browsers.
2518          '&#132;' => '&#8222;',
2519          '&#133;' => '&#8230;',
2520          '&#134;' => '&#8224;',
2521          '&#135;' => '&#8225;',
2522          '&#136;' => '&#710;',
2523          '&#137;' => '&#8240;',
2524          '&#138;' => '&#352;',
2525          '&#139;' => '&#8249;',
2526          '&#140;' => '&#338;',
2527          '&#141;' => '',
2528          '&#142;' => '&#381;',
2529          '&#143;' => '',
2530          '&#144;' => '',
2531          '&#145;' => '&#8216;',
2532          '&#146;' => '&#8217;',
2533          '&#147;' => '&#8220;',
2534          '&#148;' => '&#8221;',
2535          '&#149;' => '&#8226;',
2536          '&#150;' => '&#8211;',
2537          '&#151;' => '&#8212;',
2538          '&#152;' => '&#732;',
2539          '&#153;' => '&#8482;',
2540          '&#154;' => '&#353;',
2541          '&#155;' => '&#8250;',
2542          '&#156;' => '&#339;',
2543          '&#157;' => '',
2544          '&#158;' => '&#382;',
2545          '&#159;' => '&#376;',
2546      );
2547  
2548      if ( str_contains( $content, '&#1' ) ) {
2549          $content = strtr( $content, $wp_htmltranswinuni );
2550      }
2551  
2552      return $content;
2553  }
2554  
2555  /**
2556   * Balances tags if forced to, or if the 'use_balanceTags' option is set to true.
2557   *
2558   * @since 0.71
2559   *
2560   * @param string $text  Text to be balanced.
2561   * @param bool   $force If true, forces balancing, ignoring the value of the option. Default false.
2562   * @return string Balanced text.
2563   */
2564  function balanceTags( $text, $force = false ) {  // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
2565      if ( $force || 1 === (int) get_option( 'use_balanceTags' ) ) {
2566          return force_balance_tags( $text );
2567      } else {
2568          return $text;
2569      }
2570  }
2571  
2572  /**
2573   * Balances tags of string using a modified stack.
2574   *
2575   * {@internal Modified by Scott Reilly (coffee2code) 02 Aug 2004
2576   *      1.1  Fixed handling of append/stack pop order of end text
2577   *           Added Cleaning Hooks
2578   *      1.0  First Version}
2579   *
2580   * @since 2.0.4
2581   * @since 5.3.0 Improve accuracy and add support for custom element tags.
2582   *
2583   * @author Leonard Lin <leonard@acm.org>
2584   * @license GPL
2585   * @copyright November 4, 2001
2586   * @version 1.1
2587   * @todo Make better - change loop condition to $text in 1.2
2588   *
2589   * @param string $text Text to be balanced.
2590   * @return string Balanced text.
2591   */
2592  function force_balance_tags( $text ) {
2593      $tagstack  = array();
2594      $stacksize = 0;
2595      $tagqueue  = '';
2596      $newtext   = '';
2597      // Known single-entity/self-closing tags.
2598      $single_tags = array( 'area', 'base', 'basefont', 'br', 'col', 'command', 'embed', 'frame', 'hr', 'img', 'input', 'isindex', 'link', 'meta', 'param', 'source', 'track', 'wbr' );
2599      // Tags that can be immediately nested within themselves.
2600      $nestable_tags = array( 'article', 'aside', 'blockquote', 'details', 'div', 'figure', 'object', 'q', 'section', 'span' );
2601  
2602      // WP bug fix for comments - in case you REALLY meant to type '< !--'.
2603      $text = str_replace( '< !--', '<    !--', $text );
2604      // WP bug fix for LOVE <3 (and other situations with '<' before a number).
2605      $text = preg_replace( '#<([0-9]{1})#', '&lt;$1', $text );
2606  
2607      /**
2608       * Matches supported tags.
2609       *
2610       * To get the pattern as a string without the comments paste into a PHP
2611       * REPL like `php -a`.
2612       *
2613       * @see https://html.spec.whatwg.org/#elements-2
2614       * @see https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name
2615       *
2616       * @example
2617       * ~# php -a
2618       * php > $s = [paste copied contents of expression below including parentheses];
2619       * php > echo $s;
2620       */
2621      $tag_pattern = (
2622          '#<' . // Start with an opening bracket.
2623          '(/?)' . // Group 1 - If it's a closing tag it'll have a leading slash.
2624          '(' . // Group 2 - Tag name.
2625              // Custom element tags have more lenient rules than HTML tag names.
2626              '(?:[a-z](?:[a-z0-9._]*)-(?:[a-z0-9._-]+)+)' .
2627                  '|' .
2628              // Traditional tag rules approximate HTML tag names.
2629              '(?:[\w:]+)' .
2630          ')' .
2631          '(?:' .
2632              // We either immediately close the tag with its '>' and have nothing here.
2633              '\s*' .
2634              '(/?)' . // Group 3 - "attributes" for empty tag.
2635                  '|' .
2636              // Or we must start with space characters to separate the tag name from the attributes (or whitespace).
2637              '(\s+)' . // Group 4 - Pre-attribute whitespace.
2638              '([^>]*)' . // Group 5 - Attributes.
2639          ')' .
2640          '>#' // End with a closing bracket.
2641      );
2642  
2643      while ( preg_match( $tag_pattern, $text, $regex ) ) {
2644          $full_match        = $regex[0];
2645          $has_leading_slash = ! empty( $regex[1] );
2646          $tag_name          = $regex[2];
2647          $tag               = strtolower( $tag_name );
2648          $is_single_tag     = in_array( $tag, $single_tags, true );
2649          $pre_attribute_ws  = $regex[4] ?? '';
2650          $attributes        = trim( $regex[5] ?? $regex[3] );
2651          $has_self_closer   = str_ends_with( $attributes, '/' );
2652  
2653          $newtext .= $tagqueue;
2654  
2655          $i = strpos( $text, $full_match );
2656          $l = strlen( $full_match );
2657  
2658          // Clear the shifter.
2659          $tagqueue = '';
2660          if ( $has_leading_slash ) { // End tag.
2661              // If too many closing tags.
2662              if ( $stacksize <= 0 ) {
2663                  $tag = '';
2664                  // Or close to be safe $tag = '/' . $tag.
2665  
2666                  // If stacktop value = tag close value, then pop.
2667              } elseif ( $tagstack[ $stacksize - 1 ] === $tag ) { // Found closing tag.
2668                  $tag = '</' . $tag . '>'; // Close tag.
2669                  array_pop( $tagstack );
2670                  --$stacksize;
2671              } else { // Closing tag not at top, search for it.
2672                  for ( $j = $stacksize - 1; $j >= 0; $j-- ) {
2673                      if ( $tagstack[ $j ] === $tag ) {
2674                          // Add tag to tagqueue.
2675                          for ( $k = $stacksize - 1; $k >= $j; $k-- ) {
2676                              $tagqueue .= '</' . array_pop( $tagstack ) . '>';
2677                              --$stacksize;
2678                          }
2679                          break;
2680                      }
2681                  }
2682                  $tag = '';
2683              }
2684          } else { // Begin tag.
2685              if ( $has_self_closer ) {
2686                  /*
2687                   * If it presents itself as a self-closing tag, but it isn't a known single-entity self-closing tag,
2688                   * then don't let it be treated as such and immediately close it with a closing tag.
2689                   * The tag will encapsulate no text as a result.
2690                   */
2691                  if ( ! $is_single_tag ) {
2692                      $attributes = trim( substr( $attributes, 0, -1 ) ) . "></$tag";
2693                  }
2694              } elseif ( $is_single_tag ) {
2695                  // Else if it's a known single-entity tag but it doesn't close itself, do so.
2696                  $pre_attribute_ws = ' ';
2697                  $attributes      .= '/';
2698              } else {
2699                  /*
2700                   * It's not a single-entity tag.
2701                   * If the top of the stack is the same as the tag we want to push, close previous tag.
2702                   */
2703                  if ( $stacksize > 0 && ! in_array( $tag, $nestable_tags, true ) && $tagstack[ $stacksize - 1 ] === $tag ) {
2704                      $tagqueue = '</' . array_pop( $tagstack ) . '>';
2705                      --$stacksize;
2706                  }
2707                  $stacksize = array_push( $tagstack, $tag );
2708              }
2709  
2710              // Attributes.
2711              if ( $has_self_closer && $is_single_tag ) {
2712                  // We need some space - avoid <br/> and prefer <br />.
2713                  $pre_attribute_ws = ' ';
2714              }
2715  
2716              $tag = '<' . $tag . $pre_attribute_ws . $attributes . '>';
2717              // If already queuing a close tag, then put this tag on too.
2718              if ( ! empty( $tagqueue ) ) {
2719                  $tagqueue .= $tag;
2720                  $tag       = '';
2721              }
2722          }
2723          $newtext .= substr( $text, 0, $i ) . $tag;
2724          $text     = substr( $text, $i + $l );
2725      }
2726  
2727      // Clear tag queue.
2728      $newtext .= $tagqueue;
2729  
2730      // Add remaining text.
2731      $newtext .= $text;
2732  
2733      while ( $x = array_pop( $tagstack ) ) {
2734          $newtext .= '</' . $x . '>'; // Add remaining tags to close.
2735      }
2736  
2737      // WP fix for the bug with HTML comments.
2738      $newtext = str_replace( '< !--', '<!--', $newtext );
2739      $newtext = str_replace( '<    !--', '< !--', $newtext );
2740  
2741      return $newtext;
2742  }
2743  
2744  /**
2745   * Acts on text which is about to be edited.
2746   *
2747   * The $content is run through esc_textarea(), which uses htmlspecialchars()
2748   * to convert special characters to HTML entities. If `$richedit` is set to true,
2749   * it is simply a holder for the {@see 'format_to_edit'} filter.
2750   *
2751   * @since 0.71
2752   * @since 4.4.0 The `$richedit` parameter was renamed to `$rich_text` for clarity.
2753   *
2754   * @param string $content   The text about to be edited.
2755   * @param bool   $rich_text Optional. Whether `$content` should be considered rich text,
2756   *                          in which case it would not be passed through esc_textarea().
2757   *                          Default false.
2758   * @return string The text after the filter (and possibly htmlspecialchars()) has been run.
2759   */
2760  function format_to_edit( $content, $rich_text = false ) {
2761      /**
2762       * Filters the text to be formatted for editing.
2763       *
2764       * @since 1.2.0
2765       *
2766       * @param string $content The text, prior to formatting for editing.
2767       */
2768      $content = apply_filters( 'format_to_edit', $content );
2769      if ( ! $rich_text ) {
2770          $content = esc_textarea( $content );
2771      }
2772      return $content;
2773  }
2774  
2775  /**
2776   * Add leading zeros when necessary.
2777   *
2778   * If you set the threshold to '4' and the number is '10', then you will get
2779   * back '0010'. If you set the threshold to '4' and the number is '5000', then you
2780   * will get back '5000'.
2781   *
2782   * Uses sprintf to append the amount of zeros based on the $threshold parameter
2783   * and the size of the number. If the number is large enough, then no zeros will
2784   * be appended.
2785   *
2786   * @since 0.71
2787   *
2788   * @param int $number     Number to append zeros to if not greater than threshold.
2789   * @param int $threshold  Digit places number needs to be to not have zeros added.
2790   * @return string Adds leading zeros to number if needed.
2791   */
2792  function zeroise( $number, $threshold ) {
2793      return sprintf( '%0' . $threshold . 's', $number );
2794  }
2795  
2796  /**
2797   * Adds backslashes before letters and before a number at the start of a string.
2798   *
2799   * @since 0.71
2800   *
2801   * @param string $value Value to which backslashes will be added.
2802   * @return string String with backslashes inserted.
2803   */
2804  function backslashit( $value ) {
2805      if ( isset( $value[0] ) && $value[0] >= '0' && $value[0] <= '9' ) {
2806          $value = '\\\\' . $value;
2807      }
2808      return addcslashes( $value, 'A..Za..z' );
2809  }
2810  
2811  /**
2812   * Appends a trailing slash.
2813   *
2814   * Will remove trailing forward and backslashes if it exists already before adding
2815   * a trailing forward slash. This prevents double slashing a string or path.
2816   *
2817   * The primary use of this is for paths and thus should be used for paths. It is
2818   * not restricted to paths and offers no specific path support.
2819   *
2820   * @since 1.2.0
2821   *
2822   * @param string $value Value to which trailing slash will be added.
2823   * @return string String with trailing slash added.
2824   */
2825  function trailingslashit( $value ) {
2826      return untrailingslashit( $value ) . '/';
2827  }
2828  
2829  /**
2830   * Removes trailing forward slashes and backslashes if they exist.
2831   *
2832   * The primary use of this is for paths and thus should be used for paths. It is
2833   * not restricted to paths and offers no specific path support.
2834   *
2835   * @since 2.2.0
2836   *
2837   * @param string $value Value from which trailing slashes will be removed.
2838   * @return string String without the trailing slashes.
2839   */
2840  function untrailingslashit( $value ) {
2841      return rtrim( $value, '/\\' );
2842  }
2843  
2844  /**
2845   * Navigates through an array, object, or scalar, and removes slashes from the values.
2846   *
2847   * @since 2.0.0
2848   *
2849   * @param mixed $value The value to be stripped.
2850   * @return mixed Stripped value.
2851   *
2852   * @phpstan-template T
2853   * @phpstan-param T $value
2854   * @phpstan-return (
2855   *     T is string ? string : (
2856   *         T is array ? array<key-of<T>, ( value-of<T> is string ? string : value-of<T> )> : T
2857   *     )
2858   * )
2859   */
2860  function stripslashes_deep( $value ) {
2861      return map_deep( $value, 'stripslashes_from_strings_only' );
2862  }
2863  
2864  /**
2865   * Callback function for `stripslashes_deep()` which strips slashes from strings.
2866   *
2867   * @since 4.4.0
2868   *
2869   * @param mixed $value The array or string to be stripped.
2870   * @return mixed The stripped value.
2871   *
2872   * @phpstan-template T
2873   * @phpstan-param T $value
2874   * @phpstan-return (T is string ? string : T)
2875   */
2876  function stripslashes_from_strings_only( $value ) {
2877      return is_string( $value ) ? stripslashes( $value ) : $value;
2878  }
2879  
2880  /**
2881   * Navigates through an array, object, or scalar, and encodes the values to be used in a URL.
2882   *
2883   * @since 2.2.0
2884   *
2885   * @param mixed $value The array or string to be encoded.
2886   * @return mixed The encoded value.
2887   */
2888  function urlencode_deep( $value ) {
2889      return map_deep( $value, 'urlencode' );
2890  }
2891  
2892  /**
2893   * Navigates through an array, object, or scalar, and raw-encodes the values to be used in a URL.
2894   *
2895   * @since 3.4.0
2896   *
2897   * @param mixed $value The array or string to be encoded.
2898   * @return mixed The encoded value.
2899   */
2900  function rawurlencode_deep( $value ) {
2901      return map_deep( $value, 'rawurlencode' );
2902  }
2903  
2904  /**
2905   * Navigates through an array, object, or scalar, and decodes URL-encoded values
2906   *
2907   * @since 4.4.0
2908   *
2909   * @param mixed $value The array or string to be decoded.
2910   * @return mixed The decoded value.
2911   */
2912  function urldecode_deep( $value ) {
2913      return map_deep( $value, 'urldecode' );
2914  }
2915  
2916  /**
2917   * Obscures email addresses in HTML to prevent spam bots from harvesting them.
2918   *
2919   * Typically this will randomly replace characters from the email address with
2920   * HTML character references; however, when the hex encoding parameter is set,
2921   * some characters will also be represented in their percent-encoded form.
2922   *
2923   * Because this function is randomized, the outputs for any given input may
2924   * differ between calls. This helps diversify the ways the email addresses
2925   * are obscured.
2926   *
2927   * When non-UTF-8 inputs are provided, any spans of invalid UTF-8 bytes will
2928   * be passed through without any obfuscation.
2929   *
2930   * Example:
2931   *
2932   *     $email      = 'noreply@example.com';
2933   *     $obscured   = antispambot( $email );
2934   *     $obscured === 'nore&#112;&#108;y&#64;e&#120;ample.com';
2935   *
2936   *     // Hex-encoding also obscures characters with percent-encoding.
2937   *     $obscured   = antispambot( $email, 1 );
2938   *     $obscured === '%6e&#111;&#114;e%70l%79&#64;%65x%61mp&#108;&#101;%2e%63%6f&#109;';
2939   *
2940   *     // Non-UTF-8 characters are not obfuscated. "\xFC" is Latin1 "ü".
2941   *     $obscured   = antispambot( "b\xFCcher@library.de" );
2942   *     $obscured === 'b�cher&#64;li&#98;r&#97;r&#121;.&#100;&#101;';
2943   *     $obscured === "b\xFCcher&#64;li&#98;r&#97;r&#121;.&#100;&#101;"
2944   *
2945   * @since 0.71
2946   * @since 7.1.0 Masquerades multibyte characters.
2947   *
2948   * @param string $email_address Email address.
2949   * @param int    $hex_encoding  Optional. Set to 1 to enable hex encoding.
2950   * @return string Converted email address.
2951   */
2952  function antispambot( $email_address, $hex_encoding = 0 ) {
2953      $obfuscated     = '';
2954      $at             = 0;
2955      $end            = strlen( $email_address );
2956      $invalid_length = 0;
2957  
2958      while ( $at < $end ) {
2959          $was_at = $at;
2960          if (
2961              0 === _wp_scan_utf8( $email_address, $at, $invalid_length, null, 1 ) &&
2962              0 === $invalid_length
2963          ) {
2964              break;
2965          }
2966  
2967          $character_length = $at - $was_at;
2968  
2969          if ( $character_length > 0 ) {
2970              $character = substr( $email_address, $was_at, $character_length );
2971  
2972              switch ( rand( 0, 1 + $hex_encoding ) ) {
2973                  case 0:
2974                      $code_point  = mb_ord( $character );
2975                      $obfuscated .= "&#{$code_point};";
2976                      break;
2977  
2978                  case 1:
2979                      $obfuscated .= $character;
2980                      break;
2981  
2982                  case 2:
2983                      for ( $i = 0; $i < $character_length; $i++ ) {
2984                          $hex_value   = bin2hex( $character[ $i ] );
2985                          $obfuscated .= "%{$hex_value}";
2986                      }
2987                      break;
2988              }
2989          }
2990  
2991          if ( 0 !== $invalid_length ) {
2992              $obfuscated .= substr( $email_address, $at, $invalid_length );
2993          }
2994  
2995          $at += $invalid_length;
2996      }
2997  
2998      return str_replace( '@', '&#64;', $obfuscated );
2999  }
3000  
3001  /**
3002   * Callback to convert URI match to HTML A element.
3003   *
3004   * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
3005   *
3006   * @since 2.3.2
3007   * @access private
3008   *
3009   * @param array $matches Single Regex Match.
3010   * @return string HTML A element with URI address.
3011   */
3012  function _make_url_clickable_cb( $matches ) {
3013      $url = $matches[2];
3014  
3015      if ( ')' === $matches[3] && strpos( $url, '(' ) ) {
3016          /*
3017           * If the trailing character is a closing parenthesis, and the URL has an opening parenthesis in it,
3018           * add the closing parenthesis to the URL. Then we can let the parenthesis balancer do its thing below.
3019           */
3020          $url   .= $matches[3];
3021          $suffix = '';
3022      } else {
3023          $suffix = $matches[3];
3024      }
3025  
3026      if ( isset( $matches[4] ) && ! empty( $matches[4] ) ) {
3027          $url .= $matches[4];
3028      }
3029  
3030      // Include parentheses in the URL only if paired.
3031      while ( substr_count( $url, '(' ) < substr_count( $url, ')' ) ) {
3032          $suffix = strrchr( $url, ')' ) . $suffix;
3033          $url    = substr( $url, 0, strrpos( $url, ')' ) );
3034      }
3035  
3036      $url = esc_url( $url );
3037      if ( empty( $url ) ) {
3038          return $matches[0];
3039      }
3040  
3041      $rel_attr = _make_clickable_rel_attr( $url );
3042  
3043      return $matches[1] . "<a href=\"{$url}\"{$rel_attr}>{$url}</a>" . $suffix;
3044  }
3045  
3046  /**
3047   * Callback to convert URL match to HTML A element.
3048   *
3049   * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
3050   *
3051   * @since 2.3.2
3052   * @access private
3053   *
3054   * @param array $matches Single Regex Match.
3055   * @return string HTML A element with URL address.
3056   */
3057  function _make_web_ftp_clickable_cb( $matches ) {
3058      $ret  = '';
3059      $dest = $matches[2];
3060      $dest = 'http://' . $dest;
3061  
3062      // Removed trailing [.,;:)] from URL.
3063      $last_char = substr( $dest, -1 );
3064      if ( in_array( $last_char, array( '.', ',', ';', ':', ')' ), true ) ) {
3065          $ret  = $last_char;
3066          $dest = substr( $dest, 0, strlen( $dest ) - 1 );
3067      }
3068  
3069      $dest = esc_url( $dest );
3070      if ( empty( $dest ) ) {
3071          return $matches[0];
3072      }
3073  
3074      $rel_attr = _make_clickable_rel_attr( $dest );
3075  
3076      return $matches[1] . "<a href=\"{$dest}\"{$rel_attr}>{$dest}</a>{$ret}";
3077  }
3078  
3079  /**
3080   * Callback to convert email address match to HTML A element.
3081   *
3082   * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
3083   *
3084   * @since 2.3.2
3085   * @access private
3086   *
3087   * @param array $matches Single Regex Match.
3088   * @return string HTML A element with email address.
3089   */
3090  function _make_email_clickable_cb( $matches ) {
3091      $email = $matches[2] . '@' . $matches[3];
3092  
3093      return $matches[1] . "<a href=\"mailto:{$email}\">{$email}</a>";
3094  }
3095  
3096  /**
3097   * Helper function used to build the "rel" attribute for a URL when creating an anchor using make_clickable().
3098   *
3099   * @since 6.2.0
3100   *
3101   * @param string $url The URL.
3102   * @return string The rel attribute for the anchor or an empty string if no rel attribute should be added.
3103   */
3104  function _make_clickable_rel_attr( $url ) {
3105      $rel_parts        = array();
3106      $scheme           = strtolower( wp_parse_url( $url, PHP_URL_SCHEME ) );
3107      $nofollow_schemes = array_intersect( wp_allowed_protocols(), array( 'https', 'http' ) );
3108  
3109      // Apply "nofollow" to external links with qualifying URL schemes (mailto:, tel:, etc... shouldn't be followed).
3110      if ( ! wp_is_internal_link( $url ) && in_array( $scheme, $nofollow_schemes, true ) ) {
3111          $rel_parts[] = 'nofollow';
3112      }
3113  
3114      // Apply "ugc" when in comment context.
3115      if ( 'comment_text' === current_filter() ) {
3116          $rel_parts[] = 'ugc';
3117      }
3118  
3119      $rel = implode( ' ', $rel_parts );
3120  
3121      /**
3122       * Filters the rel value that is added to URL matches converted to links.
3123       *
3124       * @since 5.3.0
3125       *
3126       * @param string $rel The rel value.
3127       * @param string $url The matched URL being converted to a link tag.
3128       */
3129      $rel = apply_filters( 'make_clickable_rel', $rel, $url );
3130  
3131      $rel_attr = $rel ? ' rel="' . esc_attr( $rel ) . '"' : '';
3132  
3133      return $rel_attr;
3134  }
3135  
3136  /**
3137   * Converts plaintext URI to HTML links.
3138   *
3139   * Converts URI, www and ftp, and email addresses. Finishes by fixing links
3140   * within links.
3141   *
3142   * @since 0.71
3143   *
3144   * @param string $text Content to convert URIs.
3145   * @return string Content with converted URIs.
3146   */
3147  function make_clickable( $text ) {
3148      $r               = '';
3149      $textarr         = preg_split( '/(<[^<>]+>)/', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Split out HTML tags.
3150      $nested_code_pre = 0; // Keep track of how many levels link is nested inside <pre> or <code>.
3151      foreach ( $textarr as $piece ) {
3152  
3153          if ( preg_match( '|^<code[\s>]|i', $piece )
3154              || preg_match( '|^<pre[\s>]|i', $piece )
3155              || preg_match( '|^<script[\s>]|i', $piece )
3156              || preg_match( '|^<style[\s>]|i', $piece )
3157          ) {
3158              ++$nested_code_pre;
3159          } elseif ( $nested_code_pre
3160              && ( '</code>' === strtolower( $piece )
3161                  || '</pre>' === strtolower( $piece )
3162                  || '</script>' === strtolower( $piece )
3163                  || '</style>' === strtolower( $piece )
3164              )
3165          ) {
3166              --$nested_code_pre;
3167          }
3168  
3169          if ( $nested_code_pre
3170              || empty( $piece )
3171              || ( '<' === $piece[0] && ! preg_match( '|^<\s*[\w]{1,20}+://|', $piece ) )
3172          ) {
3173              $r .= $piece;
3174              continue;
3175          }
3176  
3177          // Long strings might contain expensive edge cases...
3178          if ( 10000 < strlen( $piece ) ) {
3179              // ...break it up.
3180              foreach ( _split_str_by_whitespace( $piece, 2100 ) as $chunk ) { // 2100: Extra room for scheme and leading and trailing parentheses.
3181                  if ( 2101 < strlen( $chunk ) ) {
3182                      $r .= $chunk; // Too big, no whitespace: bail.
3183                  } else {
3184                      $r .= make_clickable( $chunk );
3185                  }
3186              }
3187          } else {
3188              $ret = " $piece "; // Pad with whitespace to simplify the regexes.
3189  
3190              $url_clickable = '~
3191                  ([\\s(<.,;:!?])                                # 1: Leading whitespace, or punctuation.
3192                  (                                              # 2: URL.
3193                      [\\w]{1,20}+://                                # Scheme and hier-part prefix.
3194                      (?=\S{1,2000}\s)                               # Limit to URLs less than about 2000 characters long.
3195                      [\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]*+         # Non-punctuation URL character.
3196                      (?:                                            # Unroll the Loop: Only allow punctuation URL character if followed by a non-punctuation URL character.
3197                          [\'.,;:!?)]                                    # Punctuation URL character.
3198                          [\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]++         # Non-punctuation URL character.
3199                      )*
3200                  )
3201                  (\)?)                                          # 3: Trailing closing parenthesis (for parenthesis balancing post processing).
3202                  (\\.\\w{2,6})?                                 # 4: Allowing file extensions (e.g., .jpg, .png).
3203              ~xS';
3204              /*
3205               * The regex is a non-anchored pattern and does not have a single fixed starting character.
3206               * Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
3207               */
3208  
3209              $ret = preg_replace_callback( $url_clickable, '_make_url_clickable_cb', $ret );
3210  
3211              $ret = preg_replace_callback( '#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]+)#is', '_make_web_ftp_clickable_cb', $ret );
3212              $ret = preg_replace_callback( '#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret );
3213  
3214              $ret = substr( $ret, 1, -1 ); // Remove our whitespace padding.
3215              $r  .= $ret;
3216          }
3217      }
3218  
3219      // Cleanup of accidental links within links.
3220      return preg_replace( '#(<a([ \r\n\t]+[^>]+?>|>))<a [^>]+?>([^>]+?)</a></a>#i', '$1$3</a>', $r );
3221  }
3222  
3223  /**
3224   * Breaks a string into chunks by splitting at whitespace characters.
3225   *
3226   * The length of each returned chunk is as close to the specified length goal as possible,
3227   * with the caveat that each chunk includes its trailing delimiter.
3228   * Chunks longer than the goal are guaranteed to not have any inner whitespace.
3229   *
3230   * Joining the returned chunks with empty delimiters reconstructs the input string losslessly.
3231   *
3232   * Input string must have no null characters (or eventual transformations on output chunks must not care about null characters)
3233   *
3234   *     _split_str_by_whitespace( "1234 67890 1234 67890a cd 1234   890 123456789 1234567890a    45678   1 3 5 7 90 ", 10 ) ==
3235   *     array (
3236   *         0 => '1234 67890 ',  // 11 characters: Perfect split.
3237   *         1 => '1234 ',        //  5 characters: '1234 67890a' was too long.
3238   *         2 => '67890a cd ',   // 10 characters: '67890a cd 1234' was too long.
3239   *         3 => '1234   890 ',  // 11 characters: Perfect split.
3240   *         4 => '123456789 ',   // 10 characters: '123456789 1234567890a' was too long.
3241   *         5 => '1234567890a ', // 12 characters: Too long, but no inner whitespace on which to split.
3242   *         6 => '   45678   ',  // 11 characters: Perfect split.
3243   *         7 => '1 3 5 7 90 ',  // 11 characters: End of $text.
3244   *     );
3245   *
3246   * @since 3.4.0
3247   * @access private
3248   *
3249   * @param string $text   The string to split.
3250   * @param int    $goal   The desired chunk length.
3251   * @return array Numeric array of chunks.
3252   */
3253  function _split_str_by_whitespace( $text, $goal ) {
3254      $chunks = array();
3255  
3256      $string_nullspace = strtr( $text, "\r\n\t\v\f ", "\000\000\000\000\000\000" );
3257  
3258      while ( $goal < strlen( $string_nullspace ) ) {
3259          $pos = strrpos( substr( $string_nullspace, 0, $goal + 1 ), "\000" );
3260  
3261          if ( false === $pos ) {
3262              $pos = strpos( $string_nullspace, "\000", $goal + 1 );
3263              if ( false === $pos ) {
3264                  break;
3265              }
3266          }
3267  
3268          $chunks[]         = substr( $text, 0, $pos + 1 );
3269          $text             = substr( $text, $pos + 1 );
3270          $string_nullspace = substr( $string_nullspace, $pos + 1 );
3271      }
3272  
3273      if ( $text ) {
3274          $chunks[] = $text;
3275      }
3276  
3277      return $chunks;
3278  }
3279  
3280  /**
3281   * Callback to add a rel attribute to HTML A element.
3282   *
3283   * Will remove already existing string before adding to prevent invalidating (X)HTML.
3284   *
3285   * @since 5.3.0
3286   *
3287   * @param array  $matches Single match.
3288   * @param string $rel     The rel attribute to add.
3289   * @return string HTML A element with the added rel attribute.
3290   */
3291  function wp_rel_callback( $matches, $rel ) {
3292      $text = $matches[1];
3293      $atts = wp_kses_hair( $matches[1], wp_allowed_protocols() );
3294  
3295      if ( ! empty( $atts['href'] ) && wp_is_internal_link( $atts['href']['value'] ) ) {
3296          $rel = trim( str_replace( 'nofollow', '', $rel ) );
3297      }
3298  
3299      if ( ! empty( $atts['rel'] ) ) {
3300          $parts     = array_map( 'trim', explode( ' ', $atts['rel']['value'] ) );
3301          $rel_array = array_map( 'trim', explode( ' ', $rel ) );
3302          $parts     = array_unique( array_merge( $parts, $rel_array ) );
3303          $rel       = implode( ' ', $parts );
3304          unset( $atts['rel'] );
3305  
3306          $html = '';
3307          foreach ( $atts as $name => $value ) {
3308              if ( isset( $value['vless'] ) && 'y' === $value['vless'] ) {
3309                  $html .= $name . ' ';
3310              } else {
3311                  $html .= "{$name}=\"" . esc_attr( $value['value'] ) . '" ';
3312              }
3313          }
3314          $text = trim( $html );
3315      }
3316  
3317      $rel_attr = $rel ? ' rel="' . esc_attr( $rel ) . '"' : '';
3318  
3319      return "<a {$text}{$rel_attr}>";
3320  }
3321  
3322  /**
3323   * Adds `rel="nofollow"` string to all HTML A elements in content.
3324   *
3325   * @since 1.5.0
3326   *
3327   * @param string $text Content that may contain HTML A elements.
3328   * @return string Converted content.
3329   */
3330  function wp_rel_nofollow( $text ) {
3331      // This is a pre-save filter, so text is already escaped.
3332      $text = stripslashes( $text );
3333      $text = preg_replace_callback(
3334          '|<a (.+?)>|i',
3335          static function ( $matches ) {
3336              return wp_rel_callback( $matches, 'nofollow' );
3337          },
3338          $text
3339      );
3340      return wp_slash( $text );
3341  }
3342  
3343  /**
3344   * Callback to add `rel="nofollow"` string to HTML A element.
3345   *
3346   * @since 2.3.0
3347   * @deprecated 5.3.0 Use wp_rel_callback()
3348   *
3349   * @param array $matches Single match.
3350   * @return string HTML A Element with `rel="nofollow"`.
3351   */
3352  function wp_rel_nofollow_callback( $matches ) {
3353      return wp_rel_callback( $matches, 'nofollow' );
3354  }
3355  
3356  /**
3357   * Adds `rel="nofollow ugc"` string to all HTML A elements in content.
3358   *
3359   * @since 5.3.0
3360   *
3361   * @param string $text Content that may contain HTML A elements.
3362   * @return string Converted content.
3363   */
3364  function wp_rel_ugc( $text ) {
3365      // This is a pre-save filter, so text is already escaped.
3366      $text = stripslashes( $text );
3367      $text = preg_replace_callback(
3368          '|<a (.+?)>|i',
3369          static function ( $matches ) {
3370              return wp_rel_callback( $matches, 'nofollow ugc' );
3371          },
3372          $text
3373      );
3374      return wp_slash( $text );
3375  }
3376  
3377  /**
3378   * Adds `rel="noopener"` to all HTML A elements that have a target.
3379   *
3380   * @since 5.1.0
3381   * @since 5.6.0 Removed 'noreferrer' relationship.
3382   * @deprecated 6.7.0
3383   *
3384   * @param string $text Content that may contain HTML A elements.
3385   * @return string Converted content.
3386   */
3387  function wp_targeted_link_rel( $text ) {
3388      _deprecated_function( __FUNCTION__, '6.7.0' );
3389  
3390      // Don't run (more expensive) regex if no links with targets.
3391      if ( false === stripos( $text, 'target' ) || false === stripos( $text, '<a ' ) || is_serialized( $text ) ) {
3392          return $text;
3393      }
3394  
3395      $script_and_style_regex = '/<(script|style).*?<\/\\1>/si';
3396  
3397      preg_match_all( $script_and_style_regex, $text, $matches );
3398      $extra_parts = $matches[0];
3399      $html_parts  = preg_split( $script_and_style_regex, $text );
3400  
3401      foreach ( $html_parts as &$part ) {
3402          $part = preg_replace_callback( '|<a\s([^>]*target\s*=[^>]*)>|i', 'wp_targeted_link_rel_callback', $part );
3403      }
3404  
3405      $text = '';
3406      for ( $i = 0; $i < count( $html_parts ); $i++ ) {
3407          $text .= $html_parts[ $i ];
3408          if ( isset( $extra_parts[ $i ] ) ) {
3409              $text .= $extra_parts[ $i ];
3410          }
3411      }
3412  
3413      return $text;
3414  }
3415  
3416  /**
3417   * Callback to add `rel="noopener"` string to HTML A element.
3418   *
3419   * Will not duplicate an existing 'noopener' value to avoid invalidating the HTML.
3420   *
3421   * @since 5.1.0
3422   * @since 5.6.0 Removed 'noreferrer' relationship.
3423   * @deprecated 6.7.0
3424   *
3425   * @param array $matches Single match.
3426   * @return string HTML A Element with `rel="noopener"` in addition to any existing values.
3427   */
3428  function wp_targeted_link_rel_callback( $matches ) {
3429      _deprecated_function( __FUNCTION__, '6.7.0' );
3430  
3431      $link_html          = $matches[1];
3432      $original_link_html = $link_html;
3433  
3434      // Consider the HTML escaped if there are no unescaped quotes.
3435      $is_escaped = ! preg_match( '/(^|[^\\\\])[\'"]/', $link_html );
3436      if ( $is_escaped ) {
3437          // Replace only the quotes so that they are parsable by wp_kses_hair(), leave the rest as is.
3438          $link_html = preg_replace( '/\\\\([\'"])/', '$1', $link_html );
3439      }
3440  
3441      $atts = wp_kses_hair( $link_html, wp_allowed_protocols() );
3442  
3443      /**
3444       * Filters the rel values that are added to links with `target` attribute.
3445       *
3446       * @since 5.1.0
3447       *
3448       * @param string $rel       The rel values.
3449       * @param string $link_html The matched content of the link tag including all HTML attributes.
3450       */
3451      $rel = apply_filters( 'wp_targeted_link_rel', 'noopener', $link_html );
3452  
3453      // Return early if no rel values to be added or if no actual target attribute.
3454      if ( ! $rel || ! isset( $atts['target'] ) ) {
3455          return "<a $original_link_html>";
3456      }
3457  
3458      if ( isset( $atts['rel'] ) ) {
3459          $all_parts = preg_split( '/\s/', "{$atts['rel']['value']} $rel", -1, PREG_SPLIT_NO_EMPTY );
3460          $rel       = implode( ' ', array_unique( $all_parts ) );
3461      }
3462  
3463      $atts['rel']['whole'] = 'rel="' . esc_attr( $rel ) . '"';
3464      $link_html            = implode( ' ', array_column( $atts, 'whole' ) );
3465  
3466      if ( $is_escaped ) {
3467          $link_html = preg_replace( '/[\'"]/', '\\\\$0', $link_html );
3468      }
3469  
3470      return "<a $link_html>";
3471  }
3472  
3473  /**
3474   * Adds all filters modifying the rel attribute of targeted links.
3475   *
3476   * @since 5.1.0
3477   * @deprecated 6.7.0
3478   */
3479  function wp_init_targeted_link_rel_filters() {
3480      _deprecated_function( __FUNCTION__, '6.7.0' );
3481  }
3482  
3483  /**
3484   * Removes all filters modifying the rel attribute of targeted links.
3485   *
3486   * @since 5.1.0
3487   * @deprecated 6.7.0
3488   */
3489  function wp_remove_targeted_link_rel_filters() {
3490      _deprecated_function( __FUNCTION__, '6.7.0' );
3491  }
3492  
3493  /**
3494   * Converts one smiley code to the icon graphic file equivalent.
3495   *
3496   * Callback handler for convert_smilies().
3497   *
3498   * Looks up one smiley code in the $wpsmiliestrans global array and returns an
3499   * `<img>` string for that smiley.
3500   *
3501   * @since 2.8.0
3502   *
3503   * @global array $wpsmiliestrans
3504   *
3505   * @param array $matches Single match. Smiley code to convert to image.
3506   * @return string Image string for smiley.
3507   */
3508  function translate_smiley( $matches ) {
3509      global $wpsmiliestrans;
3510  
3511      if ( 0 === count( $matches ) ) {
3512          return '';
3513      }
3514  
3515      $smiley = trim( reset( $matches ) );
3516      $img    = $wpsmiliestrans[ $smiley ];
3517  
3518      $matches    = array();
3519      $ext        = preg_match( '/\.([^.]+)$/', $img, $matches ) ? strtolower( $matches[1] ) : false;
3520      $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'webp', 'avif' );
3521  
3522      // Don't convert smilies that aren't images - they're probably emoji.
3523      if ( ! in_array( $ext, $image_exts, true ) ) {
3524          return $img;
3525      }
3526  
3527      /**
3528       * Filters the Smiley image URL before it's used in the image element.
3529       *
3530       * @since 2.9.0
3531       *
3532       * @param string $smiley_url URL for the smiley image.
3533       * @param string $img        Filename for the smiley image.
3534       * @param string $site_url   Site URL, as returned by site_url().
3535       */
3536      $src_url = apply_filters( 'smilies_src', includes_url( "images/smilies/$img" ), $img, site_url() );
3537  
3538      return sprintf( '<img src="%s" alt="%s" class="wp-smiley" style="height: 1em; max-height: 1em;" />', esc_url( $src_url ), esc_attr( $smiley ) );
3539  }
3540  
3541  /**
3542   * Converts text equivalent of smilies to images.
3543   *
3544   * Will only convert smilies if the option 'use_smilies' is true and the global
3545   * used in the function isn't empty.
3546   *
3547   * @since 0.71
3548   *
3549   * @global string|array $wp_smiliessearch
3550   *
3551   * @param string $text Content to convert smilies from text.
3552   * @return string Converted content with text smilies replaced with images.
3553   */
3554  function convert_smilies( $text ) {
3555      global $wp_smiliessearch;
3556  
3557      if ( ! get_option( 'use_smilies' ) || empty( $wp_smiliessearch ) ) {
3558          // Return default text.
3559          return $text;
3560      }
3561  
3562      // HTML loop taken from texturize function, could possible be consolidated.
3563      $textarr = preg_split( '/(<[^>]*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Capture the tags as well as in between.
3564  
3565      if ( false === $textarr ) {
3566          // Return default text.
3567          return $text;
3568      }
3569  
3570      // Loop stuff.
3571      $stop   = count( $textarr );
3572      $output = '';
3573  
3574      // Ignore processing of specific tags.
3575      $tags_to_ignore       = 'code|pre|style|script|textarea';
3576      $ignore_block_element = '';
3577  
3578      for ( $i = 0; $i < $stop; $i++ ) {
3579          $content = $textarr[ $i ];
3580  
3581          // If we're in an ignore block, wait until we find its closing tag.
3582          if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')[^>]*>/', $content, $matches ) ) {
3583              $ignore_block_element = $matches[1];
3584          }
3585  
3586          // If it's not a tag and not in ignore block.
3587          if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' !== $content[0] ) {
3588              $content = preg_replace_callback( $wp_smiliessearch, 'translate_smiley', $content );
3589          }
3590  
3591          // Did we exit ignore block?
3592          if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' === $content ) {
3593              $ignore_block_element = '';
3594          }
3595  
3596          $output .= $content;
3597      }
3598  
3599      return $output;
3600  }
3601  
3602  /**
3603   * Verifies that an email is valid.
3604   *
3605   * Does not grok i18n domains. Not RFC compliant.
3606   *
3607   * @since 0.71
3608   *
3609   * @param string $email      Email address to verify.
3610   * @param bool   $deprecated Deprecated.
3611   * @return string|false Valid email address on success, false on failure.
3612   */
3613  function is_email( $email, $deprecated = false ) {
3614      if ( ! empty( $deprecated ) ) {
3615          _deprecated_argument( __FUNCTION__, '3.0.0' );
3616      }
3617  
3618      // Test for the minimum length the email can be.
3619      if ( strlen( $email ) < 6 ) {
3620          /**
3621           * Filters whether an email address is valid.
3622           *
3623           * This filter is evaluated under several different contexts, such as 'email_too_short',
3624           * 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits',
3625           * 'domain_no_periods', 'sub_hyphen_limits', 'sub_invalid_chars', or no specific context.
3626           *
3627           * @since 2.8.0
3628           *
3629           * @param string|false $is_email The email address if successfully passed the is_email() checks, false otherwise.
3630           * @param string       $email    The email address being checked.
3631           * @param string       $context  Context under which the email was tested.
3632           */
3633          return apply_filters( 'is_email', false, $email, 'email_too_short' );
3634      }
3635  
3636      // Test for an @ character after the first position.
3637      if ( false === strpos( $email, '@', 1 ) ) {
3638          /** This filter is documented in wp-includes/formatting.php */
3639          return apply_filters( 'is_email', false, $email, 'email_no_at' );
3640      }
3641  
3642      // Split out the local and domain parts.
3643      list( $local, $domain ) = explode( '@', $email, 2 );
3644  
3645      /*
3646       * LOCAL PART
3647       * Test for invalid characters.
3648       */
3649      if ( ! preg_match( '/^[a-zA-Z0-9!#$%&\'*+\/=?^_`{|}~\.-]+$/', $local ) ) {
3650          /** This filter is documented in wp-includes/formatting.php */
3651          return apply_filters( 'is_email', false, $email, 'local_invalid_chars' );
3652      }
3653  
3654      /*
3655       * DOMAIN PART
3656       * Test for sequences of periods.
3657       */
3658      if ( preg_match( '/\.{2,}/', $domain ) ) {
3659          /** This filter is documented in wp-includes/formatting.php */
3660          return apply_filters( 'is_email', false, $email, 'domain_period_sequence' );
3661      }
3662  
3663      // Test for leading and trailing periods and whitespace.
3664      if ( trim( $domain, " \t\n\r\0\x0B." ) !== $domain ) {
3665          /** This filter is documented in wp-includes/formatting.php */
3666          return apply_filters( 'is_email', false, $email, 'domain_period_limits' );
3667      }
3668  
3669      // Split the domain into subs.
3670      $subs = explode( '.', $domain );
3671  
3672      // Assume the domain will have at least two subs.
3673      if ( 2 > count( $subs ) ) {
3674          /** This filter is documented in wp-includes/formatting.php */
3675          return apply_filters( 'is_email', false, $email, 'domain_no_periods' );
3676      }
3677  
3678      // Loop through each sub.
3679      foreach ( $subs as $sub ) {
3680          // Test for leading and trailing hyphens and whitespace.
3681          if ( trim( $sub, " \t\n\r\0\x0B-" ) !== $sub ) {
3682              /** This filter is documented in wp-includes/formatting.php */
3683              return apply_filters( 'is_email', false, $email, 'sub_hyphen_limits' );
3684          }
3685  
3686          // Test for invalid characters.
3687          if ( ! preg_match( '/^[a-z0-9-]+$/i', $sub ) ) {
3688              /** This filter is documented in wp-includes/formatting.php */
3689              return apply_filters( 'is_email', false, $email, 'sub_invalid_chars' );
3690          }
3691      }
3692  
3693      // Congratulations, your email made it!
3694      /** This filter is documented in wp-includes/formatting.php */
3695      return apply_filters( 'is_email', $email, $email, null );
3696  }
3697  
3698  /**
3699   * Converts to ASCII from email subjects.
3700   *
3701   * @since 1.2.0
3702   *
3703   * @param string $subject Subject line.
3704   * @return string Converted string to ASCII.
3705   */
3706  function wp_iso_descrambler( $subject ) {
3707      /* this may only work with iso-8859-1, I'm afraid */
3708      if ( ! preg_match( '#\=\?(.+)\?Q\?(.+)\?\=#i', $subject, $matches ) ) {
3709          return $subject;
3710      }
3711  
3712      $subject = str_replace( '_', ' ', $matches[2] );
3713      return preg_replace_callback( '#\=([0-9a-f]{2})#i', '_wp_iso_convert', $subject );
3714  }
3715  
3716  /**
3717   * Helper function to convert hex encoded chars to ASCII.
3718   *
3719   * @since 3.1.0
3720   * @access private
3721   *
3722   * @param array $matches The preg_replace_callback matches array.
3723   * @return string Converted chars.
3724   */
3725  function _wp_iso_convert( $matches ) {
3726      return chr( hexdec( strtolower( $matches[1] ) ) );
3727  }
3728  
3729  /**
3730   * Given a date in the timezone of the site, returns that date in UTC.
3731   *
3732   * Requires and returns a date in the Y-m-d H:i:s format.
3733   * Return format can be overridden using the $format parameter.
3734   *
3735   * @since 1.2.0
3736   *
3737   * @param string $date_string The date to be converted, in the timezone of the site.
3738   * @param string $format      The format string for the returned date. Default 'Y-m-d H:i:s'.
3739   * @return string Formatted version of the date, in UTC.
3740   */
3741  function get_gmt_from_date( $date_string, $format = 'Y-m-d H:i:s' ) {
3742      $datetime = date_create( $date_string, wp_timezone() );
3743  
3744      if ( false === $datetime ) {
3745          return gmdate( $format, 0 );
3746      }
3747  
3748      return $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( $format );
3749  }
3750  
3751  /**
3752   * Given a date in UTC or GMT timezone, returns that date in the timezone of the site.
3753   *
3754   * Requires a date in the Y-m-d H:i:s format.
3755   * Default return format of 'Y-m-d H:i:s' can be overridden using the `$format` parameter.
3756   *
3757   * @since 1.2.0
3758   *
3759   * @param string $date_string The date to be converted, in UTC or GMT timezone.
3760   * @param string $format      The format string for the returned date. Default 'Y-m-d H:i:s'.
3761   * @return string Formatted version of the date, in the site's timezone.
3762   */
3763  function get_date_from_gmt( $date_string, $format = 'Y-m-d H:i:s' ) {
3764      $datetime = date_create( $date_string, new DateTimeZone( 'UTC' ) );
3765  
3766      if ( false === $datetime ) {
3767          return gmdate( $format, 0 );
3768      }
3769  
3770      return $datetime->setTimezone( wp_timezone() )->format( $format );
3771  }
3772  
3773  /**
3774   * Given an ISO 8601 timezone, returns its UTC offset in seconds.
3775   *
3776   * @since 1.5.0
3777   *
3778   * @param string $timezone Either 'Z' for 0 offset or '±hhmm'.
3779   * @return int|float The offset in seconds.
3780   */
3781  function iso8601_timezone_to_offset( $timezone ) {
3782      // $timezone is either 'Z' or '[+|-]hhmm'.
3783      if ( 'Z' === $timezone ) {
3784          $offset = 0;
3785      } else {
3786          $sign    = ( str_starts_with( $timezone, '+' ) ) ? 1 : -1;
3787          $hours   = (int) substr( $timezone, 1, 2 );
3788          $minutes = (int) substr( $timezone, 3, 4 ) / 60;
3789          $offset  = $sign * HOUR_IN_SECONDS * ( $hours + $minutes );
3790      }
3791      return $offset;
3792  }
3793  
3794  /**
3795   * Given an ISO 8601 (Ymd\TH:i:sO) date, returns a MySQL DateTime (Y-m-d H:i:s) format used by post_date[_gmt].
3796   *
3797   * @since 1.5.0
3798   *
3799   * @param string $date_string Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}.
3800   * @param string $timezone    Optional. If set to 'gmt' returns the result in UTC. Default 'user'.
3801   * @return string|false The date and time in MySQL DateTime format - Y-m-d H:i:s, or false on failure.
3802   */
3803  function iso8601_to_datetime( $date_string, $timezone = 'user' ) {
3804      $timezone    = strtolower( $timezone );
3805      $wp_timezone = wp_timezone();
3806      $datetime    = date_create( $date_string, $wp_timezone ); // Timezone is ignored if input has one.
3807  
3808      if ( false === $datetime ) {
3809          return false;
3810      }
3811  
3812      if ( 'gmt' === $timezone ) {
3813          return $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( 'Y-m-d H:i:s' );
3814      }
3815  
3816      if ( 'user' === $timezone ) {
3817          return $datetime->setTimezone( $wp_timezone )->format( 'Y-m-d H:i:s' );
3818      }
3819  
3820      return false;
3821  }
3822  
3823  /**
3824   * Strips out all characters that are not allowable in an email.
3825   *
3826   * @since 1.5.0
3827   *
3828   * @param string $email Email address to filter.
3829   * @return string Filtered email address.
3830   */
3831  function sanitize_email( $email ) {
3832      // Test for the minimum length the email can be.
3833      if ( strlen( $email ) < 6 ) {
3834          /**
3835           * Filters a sanitized email address.
3836           *
3837           * This filter is evaluated under several contexts, including 'email_too_short',
3838           * 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits',
3839           * 'domain_no_periods', 'domain_no_valid_subs', or no context.
3840           *
3841           * @since 2.8.0
3842           *
3843           * @param string $sanitized_email The sanitized email address.
3844           * @param string $email           The email address, as provided to sanitize_email().
3845           * @param string|null $message    A message to pass to the user. null if email is sanitized.
3846           */
3847          return apply_filters( 'sanitize_email', '', $email, 'email_too_short' );
3848      }
3849  
3850      // Test for an @ character after the first position.
3851      if ( false === strpos( $email, '@', 1 ) ) {
3852          /** This filter is documented in wp-includes/formatting.php */
3853          return apply_filters( 'sanitize_email', '', $email, 'email_no_at' );
3854      }
3855  
3856      // Split out the local and domain parts.
3857      list( $local, $domain ) = explode( '@', $email, 2 );
3858  
3859      /*
3860       * LOCAL PART
3861       * Test for invalid characters.
3862       */
3863      $local = preg_replace( '/[^a-zA-Z0-9!#$%&\'*+\/=?^_`{|}~\.-]/', '', $local );
3864      if ( '' === $local ) {
3865          /** This filter is documented in wp-includes/formatting.php */
3866          return apply_filters( 'sanitize_email', '', $email, 'local_invalid_chars' );
3867      }
3868  
3869      /*
3870       * DOMAIN PART
3871       * Test for sequences of periods.
3872       */
3873      $domain = preg_replace( '/\.{2,}/', '', $domain );
3874      if ( '' === $domain ) {
3875          /** This filter is documented in wp-includes/formatting.php */
3876          return apply_filters( 'sanitize_email', '', $email, 'domain_period_sequence' );
3877      }
3878  
3879      // Test for leading and trailing periods and whitespace.
3880      $domain = trim( $domain, " \t\n\r\0\x0B." );
3881      if ( '' === $domain ) {
3882          /** This filter is documented in wp-includes/formatting.php */
3883          return apply_filters( 'sanitize_email', '', $email, 'domain_period_limits' );
3884      }
3885  
3886      // Split the domain into subs.
3887      $subs = explode( '.', $domain );
3888  
3889      // Assume the domain will have at least two subs.
3890      if ( 2 > count( $subs ) ) {
3891          /** This filter is documented in wp-includes/formatting.php */
3892          return apply_filters( 'sanitize_email', '', $email, 'domain_no_periods' );
3893      }
3894  
3895      // Create an array that will contain valid subs.
3896      $new_subs = array();
3897  
3898      // Loop through each sub.
3899      foreach ( $subs as $sub ) {
3900          // Test for leading and trailing hyphens.
3901          $sub = trim( $sub, " \t\n\r\0\x0B-" );
3902  
3903          // Test for invalid characters.
3904          $sub = preg_replace( '/[^a-z0-9-]+/i', '', $sub );
3905  
3906          // If there's anything left, add it to the valid subs.
3907          if ( '' !== $sub ) {
3908              $new_subs[] = $sub;
3909          }
3910      }
3911  
3912      // If there aren't 2 or more valid subs.
3913      if ( 2 > count( $new_subs ) ) {
3914          /** This filter is documented in wp-includes/formatting.php */
3915          return apply_filters( 'sanitize_email', '', $email, 'domain_no_valid_subs' );
3916      }
3917  
3918      // Join valid subs into the new domain.
3919      $domain = implode( '.', $new_subs );
3920  
3921      // Put the email back together.
3922      $sanitized_email = $local . '@' . $domain;
3923  
3924      // Congratulations, your email made it!
3925      /** This filter is documented in wp-includes/formatting.php */
3926      return apply_filters( 'sanitize_email', $sanitized_email, $email, null );
3927  }
3928  
3929  /**
3930   * Determines the difference between two timestamps.
3931   *
3932   * The difference is returned in a human-readable format such as "1 hour",
3933   * "5 minutes", "2 days".
3934   *
3935   * @since 1.5.0
3936   * @since 5.3.0 Added support for showing a difference in seconds.
3937   *
3938   * @param int $from Unix timestamp from which the difference begins.
3939   * @param int $to   Optional. Unix timestamp to end the time difference. Default becomes time() if not set.
3940   * @return string Human-readable time difference.
3941   */
3942  function human_time_diff( $from, $to = 0 ) {
3943      if ( empty( $to ) ) {
3944          $to = time();
3945      }
3946  
3947      $diff = (int) abs( $to - $from );
3948  
3949      if ( $diff < MINUTE_IN_SECONDS ) {
3950          $secs = $diff;
3951          if ( $secs <= 1 ) {
3952              $secs = 1;
3953          }
3954          /* translators: Time difference between two dates, in seconds. %s: Number of seconds. */
3955          $since = sprintf( _n( '%s second', '%s seconds', $secs ), $secs );
3956      } elseif ( $diff < HOUR_IN_SECONDS && $diff >= MINUTE_IN_SECONDS ) {
3957          $mins = round( $diff / MINUTE_IN_SECONDS );
3958          if ( $mins <= 1 ) {
3959              $mins = 1;
3960          }
3961          /* translators: Time difference between two dates, in minutes. %s: Number of minutes. */
3962          $since = sprintf( _n( '%s minute', '%s minutes', $mins ), $mins );
3963      } elseif ( $diff < DAY_IN_SECONDS && $diff >= HOUR_IN_SECONDS ) {
3964          $hours = round( $diff / HOUR_IN_SECONDS );
3965          if ( $hours <= 1 ) {
3966              $hours = 1;
3967          }
3968          /* translators: Time difference between two dates, in hours. %s: Number of hours. */
3969          $since = sprintf( _n( '%s hour', '%s hours', $hours ), $hours );
3970      } elseif ( $diff < WEEK_IN_SECONDS && $diff >= DAY_IN_SECONDS ) {
3971          $days = round( $diff / DAY_IN_SECONDS );
3972          if ( $days <= 1 ) {
3973              $days = 1;
3974          }
3975          /* translators: Time difference between two dates, in days. %s: Number of days. */
3976          $since = sprintf( _n( '%s day', '%s days', $days ), $days );
3977      } elseif ( $diff < MONTH_IN_SECONDS && $diff >= WEEK_IN_SECONDS ) {
3978          $weeks = round( $diff / WEEK_IN_SECONDS );
3979          if ( $weeks <= 1 ) {
3980              $weeks = 1;
3981          }
3982          /* translators: Time difference between two dates, in weeks. %s: Number of weeks. */
3983          $since = sprintf( _n( '%s week', '%s weeks', $weeks ), $weeks );
3984      } elseif ( $diff < YEAR_IN_SECONDS && $diff >= MONTH_IN_SECONDS ) {
3985          $months = round( $diff / MONTH_IN_SECONDS );
3986          if ( $months <= 1 ) {
3987              $months = 1;
3988          }
3989          /* translators: Time difference between two dates, in months. %s: Number of months. */
3990          $since = sprintf( _n( '%s month', '%s months', $months ), $months );
3991      } elseif ( $diff >= YEAR_IN_SECONDS ) {
3992          $years = round( $diff / YEAR_IN_SECONDS );
3993          if ( $years <= 1 ) {
3994              $years = 1;
3995          }
3996          /* translators: Time difference between two dates, in years. %s: Number of years. */
3997          $since = sprintf( _n( '%s year', '%s years', $years ), $years );
3998      }
3999  
4000      /**
4001       * Filters the human-readable difference between two timestamps.
4002       *
4003       * @since 4.0.0
4004       *
4005       * @param string $since The difference in human-readable text.
4006       * @param int    $diff  The difference in seconds.
4007       * @param int    $from  Unix timestamp from which the difference begins.
4008       * @param int    $to    Unix timestamp to end the time difference.
4009       */
4010      return apply_filters( 'human_time_diff', $since, $diff, $from, $to );
4011  }
4012  
4013  /**
4014   * Generates an excerpt from the content, if needed.
4015   *
4016   * Returns a maximum of 55 words with an ellipsis appended if necessary.
4017   *
4018   * The 55-word limit can be modified by plugins/themes using the {@see 'excerpt_length'} filter
4019   * The ' [&hellip;]' string can be modified by plugins/themes using the {@see 'excerpt_more'} filter
4020   *
4021   * @since 1.5.0
4022   * @since 5.2.0 Added the `$post` parameter.
4023   * @since 6.3.0 Removes footnotes markup from the excerpt content.
4024   *
4025   * @param string             $text Optional. The excerpt. If set to empty, an excerpt is generated.
4026   * @param WP_Post|object|int $post Optional. WP_Post instance or Post ID/object. Default null.
4027   * @return string The excerpt.
4028   */
4029  function wp_trim_excerpt( $text = '', $post = null ) {
4030      $raw_excerpt = $text;
4031  
4032      if ( '' === trim( $text ) ) {
4033          $post = get_post( $post );
4034          $text = get_the_content( '', false, $post );
4035  
4036          $text = strip_shortcodes( $text );
4037          $text = excerpt_remove_blocks( $text );
4038          $text = excerpt_remove_footnotes( $text );
4039  
4040          /*
4041           * Temporarily unhook wp_filter_content_tags() since any tags
4042           * within the excerpt are stripped out. Modifying the tags here
4043           * is wasteful and can lead to bugs in the image counting logic.
4044           */
4045          $filter_image_removed = remove_filter( 'the_content', 'wp_filter_content_tags', 12 );
4046  
4047          /*
4048           * Temporarily unhook do_blocks() since excerpt_remove_blocks( $text )
4049           * handles block rendering needed for excerpt.
4050           */
4051          $filter_block_removed = remove_filter( 'the_content', 'do_blocks', 9 );
4052  
4053          /** This filter is documented in wp-includes/post-template.php */
4054          $text = apply_filters( 'the_content', $text );
4055          $text = str_replace( ']]>', ']]&gt;', $text );
4056  
4057          // Restore the original filter if removed.
4058          if ( $filter_block_removed ) {
4059              add_filter( 'the_content', 'do_blocks', 9 );
4060          }
4061  
4062          /*
4063           * Only restore the filter callback if it was removed above. The logic
4064           * to unhook and restore only applies on the default priority of 10,
4065           * which is generally used for the filter callback in WordPress core.
4066           */
4067          if ( $filter_image_removed ) {
4068              add_filter( 'the_content', 'wp_filter_content_tags', 12 );
4069          }
4070  
4071          /* translators: Maximum number of words used in a post excerpt. */
4072          $excerpt_length = (int) _x( '55', 'excerpt_length' );
4073  
4074          /**
4075           * Filters the maximum number of words in a post excerpt.
4076           *
4077           * @since 2.7.0
4078           *
4079           * @param int $number The maximum number of words. Default 55.
4080           */
4081          $excerpt_length = (int) apply_filters( 'excerpt_length', $excerpt_length );
4082  
4083          /**
4084           * Filters the string in the "more" link displayed after a trimmed excerpt.
4085           *
4086           * @since 2.9.0
4087           *
4088           * @param string $more_string The string shown within the more link.
4089           */
4090          $excerpt_more = apply_filters( 'excerpt_more', ' ' . '[&hellip;]' );
4091          $text         = wp_trim_words( $text, $excerpt_length, $excerpt_more );
4092  
4093      }
4094  
4095      /**
4096       * Filters the trimmed excerpt string.
4097       *
4098       * @since 2.8.0
4099       *
4100       * @param string $text        The trimmed text.
4101       * @param string $raw_excerpt The text prior to trimming.
4102       */
4103      return apply_filters( 'wp_trim_excerpt', $text, $raw_excerpt );
4104  }
4105  
4106  /**
4107   * Trims text to a certain number of words.
4108   *
4109   * This function is localized. For languages that count 'words' by the individual
4110   * character (such as East Asian languages), the $num_words argument will apply
4111   * to the number of individual characters.
4112   *
4113   * @since 3.3.0
4114   *
4115   * @param string $text      Text to trim.
4116   * @param int    $num_words Number of words. Default 55.
4117   * @param string $more      Optional. What to append if $text needs to be trimmed. Default '&hellip;'.
4118   * @return string Trimmed text.
4119   */
4120  function wp_trim_words( $text, $num_words = 55, $more = null ) {
4121      if ( null === $more ) {
4122          $more = __( '&hellip;' );
4123      }
4124  
4125      $original_text = $text;
4126      $text          = wp_strip_all_tags( $text );
4127      $num_words     = (int) $num_words;
4128  
4129      if ( str_starts_with( wp_get_word_count_type(), 'characters' ) && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) {
4130          $text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' );
4131          preg_match_all( '/./u', $text, $words_array );
4132          $words_array = array_slice( $words_array[0], 0, $num_words + 1 );
4133          $sep         = '';
4134      } else {
4135          $words_array = preg_split( "/[\n\r\t ]+/", $text, $num_words + 1, PREG_SPLIT_NO_EMPTY );
4136          $sep         = ' ';
4137      }
4138  
4139      if ( count( $words_array ) > $num_words ) {
4140          array_pop( $words_array );
4141          $text = implode( $sep, $words_array );
4142          $text = $text . $more;
4143      } else {
4144          $text = implode( $sep, $words_array );
4145      }
4146  
4147      /**
4148       * Filters the text content after words have been trimmed.
4149       *
4150       * @since 3.3.0
4151       *
4152       * @param string $text          The trimmed text.
4153       * @param int    $num_words     The number of words to trim the text to. Default 55.
4154       * @param string $more          An optional string to append to the end of the trimmed text, e.g. &hellip;.
4155       * @param string $original_text The text before it was trimmed.
4156       */
4157      return apply_filters( 'wp_trim_words', $text, $num_words, $more, $original_text );
4158  }
4159  
4160  /**
4161   * Converts named entities into numbered entities.
4162   *
4163   * @since 1.5.1
4164   *
4165   * @param string $text The text within which entities will be converted.
4166   * @return string Text with converted entities.
4167   */
4168  function ent2ncr( $text ) {
4169  
4170      /**
4171       * Filters text before named entities are converted into numbered entities.
4172       *
4173       * A non-null string must be returned for the filter to be evaluated.
4174       *
4175       * @since 3.3.0
4176       *
4177       * @param string|null $converted_text The text to be converted. Default null.
4178       * @param string      $text           The text prior to entity conversion.
4179       */
4180      $filtered = apply_filters( 'pre_ent2ncr', null, $text );
4181      if ( null !== $filtered ) {
4182          return $filtered;
4183      }
4184  
4185      $to_ncr = array(
4186          '&quot;'     => '&#34;',
4187          '&amp;'      => '&#38;',
4188          '&lt;'       => '&#60;',
4189          '&gt;'       => '&#62;',
4190          '|'          => '&#124;',
4191          '&nbsp;'     => '&#160;',
4192          '&iexcl;'    => '&#161;',
4193          '&cent;'     => '&#162;',
4194          '&pound;'    => '&#163;',
4195          '&curren;'   => '&#164;',
4196          '&yen;'      => '&#165;',
4197          '&brvbar;'   => '&#166;',
4198          '&brkbar;'   => '&#166;',
4199          '&sect;'     => '&#167;',
4200          '&uml;'      => '&#168;',
4201          '&die;'      => '&#168;',
4202          '&copy;'     => '&#169;',
4203          '&ordf;'     => '&#170;',
4204          '&laquo;'    => '&#171;',
4205          '&not;'      => '&#172;',
4206          '&shy;'      => '&#173;',
4207          '&reg;'      => '&#174;',
4208          '&macr;'     => '&#175;',
4209          '&hibar;'    => '&#175;',
4210          '&deg;'      => '&#176;',
4211          '&plusmn;'   => '&#177;',
4212          '&sup2;'     => '&#178;',
4213          '&sup3;'     => '&#179;',
4214          '&acute;'    => '&#180;',
4215          '&micro;'    => '&#181;',
4216          '&para;'     => '&#182;',
4217          '&middot;'   => '&#183;',
4218          '&cedil;'    => '&#184;',
4219          '&sup1;'     => '&#185;',
4220          '&ordm;'     => '&#186;',
4221          '&raquo;'    => '&#187;',
4222          '&frac14;'   => '&#188;',
4223          '&frac12;'   => '&#189;',
4224          '&frac34;'   => '&#190;',
4225          '&iquest;'   => '&#191;',
4226          '&Agrave;'   => '&#192;',
4227          '&Aacute;'   => '&#193;',
4228          '&Acirc;'    => '&#194;',
4229          '&Atilde;'   => '&#195;',
4230          '&Auml;'     => '&#196;',
4231          '&Aring;'    => '&#197;',
4232          '&AElig;'    => '&#198;',
4233          '&Ccedil;'   => '&#199;',
4234          '&Egrave;'   => '&#200;',
4235          '&Eacute;'   => '&#201;',
4236          '&Ecirc;'    => '&#202;',
4237          '&Euml;'     => '&#203;',
4238          '&Igrave;'   => '&#204;',
4239          '&Iacute;'   => '&#205;',
4240          '&Icirc;'    => '&#206;',
4241          '&Iuml;'     => '&#207;',
4242          '&ETH;'      => '&#208;',
4243          '&Ntilde;'   => '&#209;',
4244          '&Ograve;'   => '&#210;',
4245          '&Oacute;'   => '&#211;',
4246          '&Ocirc;'    => '&#212;',
4247          '&Otilde;'   => '&#213;',
4248          '&Ouml;'     => '&#214;',
4249          '&times;'    => '&#215;',
4250          '&Oslash;'   => '&#216;',
4251          '&Ugrave;'   => '&#217;',
4252          '&Uacute;'   => '&#218;',
4253          '&Ucirc;'    => '&#219;',
4254          '&Uuml;'     => '&#220;',
4255          '&Yacute;'   => '&#221;',
4256          '&THORN;'    => '&#222;',
4257          '&szlig;'    => '&#223;',
4258          '&agrave;'   => '&#224;',
4259          '&aacute;'   => '&#225;',
4260          '&acirc;'    => '&#226;',
4261          '&atilde;'   => '&#227;',
4262          '&auml;'     => '&#228;',
4263          '&aring;'    => '&#229;',
4264          '&aelig;'    => '&#230;',
4265          '&ccedil;'   => '&#231;',
4266          '&egrave;'   => '&#232;',
4267          '&eacute;'   => '&#233;',
4268          '&ecirc;'    => '&#234;',
4269          '&euml;'     => '&#235;',
4270          '&igrave;'   => '&#236;',
4271          '&iacute;'   => '&#237;',
4272          '&icirc;'    => '&#238;',
4273          '&iuml;'     => '&#239;',
4274          '&eth;'      => '&#240;',
4275          '&ntilde;'   => '&#241;',
4276          '&ograve;'   => '&#242;',
4277          '&oacute;'   => '&#243;',
4278          '&ocirc;'    => '&#244;',
4279          '&otilde;'   => '&#245;',
4280          '&ouml;'     => '&#246;',
4281          '&divide;'   => '&#247;',
4282          '&oslash;'   => '&#248;',
4283          '&ugrave;'   => '&#249;',
4284          '&uacute;'   => '&#250;',
4285          '&ucirc;'    => '&#251;',
4286          '&uuml;'     => '&#252;',
4287          '&yacute;'   => '&#253;',
4288          '&thorn;'    => '&#254;',
4289          '&yuml;'     => '&#255;',
4290          '&OElig;'    => '&#338;',
4291          '&oelig;'    => '&#339;',
4292          '&Scaron;'   => '&#352;',
4293          '&scaron;'   => '&#353;',
4294          '&Yuml;'     => '&#376;',
4295          '&fnof;'     => '&#402;',
4296          '&circ;'     => '&#710;',
4297          '&tilde;'    => '&#732;',
4298          '&Alpha;'    => '&#913;',
4299          '&Beta;'     => '&#914;',
4300          '&Gamma;'    => '&#915;',
4301          '&Delta;'    => '&#916;',
4302          '&Epsilon;'  => '&#917;',
4303          '&Zeta;'     => '&#918;',
4304          '&Eta;'      => '&#919;',
4305          '&Theta;'    => '&#920;',
4306          '&Iota;'     => '&#921;',
4307          '&Kappa;'    => '&#922;',
4308          '&Lambda;'   => '&#923;',
4309          '&Mu;'       => '&#924;',
4310          '&Nu;'       => '&#925;',
4311          '&Xi;'       => '&#926;',
4312          '&Omicron;'  => '&#927;',
4313          '&Pi;'       => '&#928;',
4314          '&Rho;'      => '&#929;',
4315          '&Sigma;'    => '&#931;',
4316          '&Tau;'      => '&#932;',
4317          '&Upsilon;'  => '&#933;',
4318          '&Phi;'      => '&#934;',
4319          '&Chi;'      => '&#935;',
4320          '&Psi;'      => '&#936;',
4321          '&Omega;'    => '&#937;',
4322          '&alpha;'    => '&#945;',
4323          '&beta;'     => '&#946;',
4324          '&gamma;'    => '&#947;',
4325          '&delta;'    => '&#948;',
4326          '&epsilon;'  => '&#949;',
4327          '&zeta;'     => '&#950;',
4328          '&eta;'      => '&#951;',
4329          '&theta;'    => '&#952;',
4330          '&iota;'     => '&#953;',
4331          '&kappa;'    => '&#954;',
4332          '&lambda;'   => '&#955;',
4333          '&mu;'       => '&#956;',
4334          '&nu;'       => '&#957;',
4335          '&xi;'       => '&#958;',
4336          '&omicron;'  => '&#959;',
4337          '&pi;'       => '&#960;',
4338          '&rho;'      => '&#961;',
4339          '&sigmaf;'   => '&#962;',
4340          '&sigma;'    => '&#963;',
4341          '&tau;'      => '&#964;',
4342          '&upsilon;'  => '&#965;',
4343          '&phi;'      => '&#966;',
4344          '&chi;'      => '&#967;',
4345          '&psi;'      => '&#968;',
4346          '&omega;'    => '&#969;',
4347          '&thetasym;' => '&#977;',
4348          '&upsih;'    => '&#978;',
4349          '&piv;'      => '&#982;',
4350          '&ensp;'     => '&#8194;',
4351          '&emsp;'     => '&#8195;',
4352          '&thinsp;'   => '&#8201;',
4353          '&zwnj;'     => '&#8204;',
4354          '&zwj;'      => '&#8205;',
4355          '&lrm;'      => '&#8206;',
4356          '&rlm;'      => '&#8207;',
4357          '&ndash;'    => '&#8211;',
4358          '&mdash;'    => '&#8212;',
4359          '&lsquo;'    => '&#8216;',
4360          '&rsquo;'    => '&#8217;',
4361          '&sbquo;'    => '&#8218;',
4362          '&ldquo;'    => '&#8220;',
4363          '&rdquo;'    => '&#8221;',
4364          '&bdquo;'    => '&#8222;',
4365          '&dagger;'   => '&#8224;',
4366          '&Dagger;'   => '&#8225;',
4367          '&bull;'     => '&#8226;',
4368          '&hellip;'   => '&#8230;',
4369          '&permil;'   => '&#8240;',
4370          '&prime;'    => '&#8242;',
4371          '&Prime;'    => '&#8243;',
4372          '&lsaquo;'   => '&#8249;',
4373          '&rsaquo;'   => '&#8250;',
4374          '&oline;'    => '&#8254;',
4375          '&frasl;'    => '&#8260;',
4376          '&euro;'     => '&#8364;',
4377          '&image;'    => '&#8465;',
4378          '&weierp;'   => '&#8472;',
4379          '&real;'     => '&#8476;',
4380          '&trade;'    => '&#8482;',
4381          '&alefsym;'  => '&#8501;',
4382          '&crarr;'    => '&#8629;',
4383          '&lArr;'     => '&#8656;',
4384          '&uArr;'     => '&#8657;',
4385          '&rArr;'     => '&#8658;',
4386          '&dArr;'     => '&#8659;',
4387          '&hArr;'     => '&#8660;',
4388          '&forall;'   => '&#8704;',
4389          '&part;'     => '&#8706;',
4390          '&exist;'    => '&#8707;',
4391          '&empty;'    => '&#8709;',
4392          '&nabla;'    => '&#8711;',
4393          '&isin;'     => '&#8712;',
4394          '&notin;'    => '&#8713;',
4395          '&ni;'       => '&#8715;',
4396          '&prod;'     => '&#8719;',
4397          '&sum;'      => '&#8721;',
4398          '&minus;'    => '&#8722;',
4399          '&lowast;'   => '&#8727;',
4400          '&radic;'    => '&#8730;',
4401          '&prop;'     => '&#8733;',
4402          '&infin;'    => '&#8734;',
4403          '&ang;'      => '&#8736;',
4404          '&and;'      => '&#8743;',
4405          '&or;'       => '&#8744;',
4406          '&cap;'      => '&#8745;',
4407          '&cup;'      => '&#8746;',
4408          '&int;'      => '&#8747;',
4409          '&there4;'   => '&#8756;',
4410          '&sim;'      => '&#8764;',
4411          '&cong;'     => '&#8773;',
4412          '&asymp;'    => '&#8776;',
4413          '&ne;'       => '&#8800;',
4414          '&equiv;'    => '&#8801;',
4415          '&le;'       => '&#8804;',
4416          '&ge;'       => '&#8805;',
4417          '&sub;'      => '&#8834;',
4418          '&sup;'      => '&#8835;',
4419          '&nsub;'     => '&#8836;',
4420          '&sube;'     => '&#8838;',
4421          '&supe;'     => '&#8839;',
4422          '&oplus;'    => '&#8853;',
4423          '&otimes;'   => '&#8855;',
4424          '&perp;'     => '&#8869;',
4425          '&sdot;'     => '&#8901;',
4426          '&lceil;'    => '&#8968;',
4427          '&rceil;'    => '&#8969;',
4428          '&lfloor;'   => '&#8970;',
4429          '&rfloor;'   => '&#8971;',
4430          '&lang;'     => '&#9001;',
4431          '&rang;'     => '&#9002;',
4432          '&larr;'     => '&#8592;',
4433          '&uarr;'     => '&#8593;',
4434          '&rarr;'     => '&#8594;',
4435          '&darr;'     => '&#8595;',
4436          '&harr;'     => '&#8596;',
4437          '&loz;'      => '&#9674;',
4438          '&spades;'   => '&#9824;',
4439          '&clubs;'    => '&#9827;',
4440          '&hearts;'   => '&#9829;',
4441          '&diams;'    => '&#9830;',
4442      );
4443  
4444      return str_replace( array_keys( $to_ncr ), array_values( $to_ncr ), $text );
4445  }
4446  
4447  /**
4448   * Formats text for the editor.
4449   *
4450   * Generally the browsers treat everything inside a textarea as text, but
4451   * it is still a good idea to HTML entity encode `<`, `>` and `&` in the content.
4452   *
4453   * The filter {@see 'format_for_editor'} is applied here. If `$text` is empty the
4454   * filter will be applied to an empty string.
4455   *
4456   * @since 4.3.0
4457   *
4458   * @see _WP_Editors::editor()
4459   *
4460   * @param string $text           The text to be formatted.
4461   * @param string $default_editor The default editor for the current user.
4462   *                               It is usually either 'html' or 'tinymce'.
4463   * @return string The formatted text after filter is applied.
4464   */
4465  function format_for_editor( $text, $default_editor = null ) {
4466      if ( $text ) {
4467          $text = htmlspecialchars( $text, ENT_NOQUOTES, get_option( 'blog_charset' ) );
4468      }
4469  
4470      /**
4471       * Filters the text after it is formatted for the editor.
4472       *
4473       * @since 4.3.0
4474       *
4475       * @param string $text           The formatted text.
4476       * @param string $default_editor The default editor for the current user.
4477       *                               It is usually either 'html' or 'tinymce'.
4478       */
4479      return apply_filters( 'format_for_editor', $text, $default_editor );
4480  }
4481  
4482  /**
4483   * Performs a deep string replace operation to ensure the values in $search are no longer present.
4484   *
4485   * Repeats the replacement operation until it no longer replaces anything to remove "nested" values
4486   * e.g. $subject = '%0%0%0DDD', $search ='%0D', $result ='' rather than the '%0%0DD' that
4487   * str_replace would return
4488   *
4489   * @since 2.8.1
4490   * @access private
4491   *
4492   * @param string|array $search  The value being searched for, otherwise known as the needle.
4493   *                              An array may be used to designate multiple needles.
4494   * @param string       $subject The string being searched and replaced on, otherwise known as the haystack.
4495   * @return string The string with the replaced values.
4496   */
4497  function _deep_replace( $search, $subject ) {
4498      $subject = (string) $subject;
4499  
4500      $count = 1;
4501      while ( $count ) {
4502          $subject = str_replace( $search, '', $subject, $count );
4503      }
4504  
4505      return $subject;
4506  }
4507  
4508  /**
4509   * Escapes data for use in a MySQL query.
4510   *
4511   * Usually you should prepare queries using wpdb::prepare().
4512   * Sometimes, spot-escaping is required or useful. One example
4513   * is preparing an array for use in an IN clause.
4514   *
4515   * NOTE: Since 4.8.3, '%' characters will be replaced with a placeholder string,
4516   * this prevents certain SQLi attacks from taking place. This change in behavior
4517   * may cause issues for code that expects the return value of esc_sql() to be usable
4518   * for other purposes.
4519   *
4520   * @since 2.8.0
4521   *
4522   * @global wpdb $wpdb WordPress database abstraction object.
4523   *
4524   * @param string|array $data Unescaped data.
4525   * @return string|array Escaped data, in the same type as supplied.
4526   */
4527  function esc_sql( $data ) {
4528      global $wpdb;
4529      return $wpdb->_escape( $data );
4530  }
4531  
4532  /**
4533   * Checks and cleans a URL.
4534   *
4535   * A number of characters are removed from the URL. If the URL is for displaying
4536   * (the default behavior) ampersands are also replaced. The {@see 'clean_url'} filter
4537   * is applied to the returned cleaned URL.
4538   *
4539   * @since 2.8.0
4540   * @since 6.9.0 Prepends `https://` to the URL if it does not already contain a scheme
4541   *              and the first item in `$protocols` is 'https'.
4542   *
4543   * @param string   $url       The URL to be cleaned.
4544   * @param string[] $protocols Optional. An array of acceptable protocols.
4545   *                            Defaults to return value of wp_allowed_protocols().
4546   * @param string   $_context  Private. Use sanitize_url() for database usage.
4547   * @return string The cleaned URL after the {@see 'clean_url'} filter is applied.
4548   *                An empty string is returned if `$url` specifies a protocol other than
4549   *                those in `$protocols`, or if `$url` contains an empty string.
4550   */
4551  function esc_url( $url, $protocols = null, $_context = 'display' ) {
4552      $original_url = $url;
4553  
4554      if ( '' === $url ) {
4555          return $url;
4556      }
4557  
4558      $url = str_replace( ' ', '%20', ltrim( $url ) );
4559      $url = preg_replace( '|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff]|i', '', $url );
4560  
4561      if ( '' === $url ) {
4562          return $url;
4563      }
4564  
4565      if ( 0 !== stripos( $url, 'mailto:' ) ) {
4566          $strip = array( '%0d', '%0a', '%0D', '%0A' );
4567          $url   = _deep_replace( $strip, $url );
4568      }
4569  
4570      $url = str_replace( ';//', '://', $url );
4571      /*
4572       * If the URL doesn't appear to contain a scheme, we presume
4573       * it needs http:// prepended (unless it's a relative link
4574       * starting with /, # or ?, or a PHP file). If the first item
4575       * in $protocols is 'https', then https:// is prepended.
4576       */
4577      if ( ! str_contains( $url, ':' ) && ! in_array( $url[0], array( '/', '#', '?' ), true ) &&
4578          ! preg_match( '/^[a-z0-9-]+?\.php/i', $url )
4579      ) {
4580          $scheme = ( is_array( $protocols ) && 'https' === array_first( $protocols ) ) ? 'https://' : 'http://';
4581          $url    = $scheme . $url;
4582      }
4583  
4584      // Replace ampersands and single quotes only when displaying.
4585      if ( 'display' === $_context ) {
4586          $url = wp_kses_normalize_entities( $url );
4587          $url = str_replace( '&amp;', '&#038;', $url );
4588          $url = str_replace( "'", '&#039;', $url );
4589      }
4590  
4591      if ( str_contains( $url, '[' ) || str_contains( $url, ']' ) ) {
4592  
4593          $parsed = wp_parse_url( $url );
4594          $front  = '';
4595  
4596          if ( isset( $parsed['scheme'] ) ) {
4597              $front .= $parsed['scheme'] . '://';
4598          } elseif ( '/' === $url[0] ) {
4599              $front .= '//';
4600          }
4601  
4602          if ( isset( $parsed['user'] ) ) {
4603              $front .= $parsed['user'];
4604          }
4605  
4606          if ( isset( $parsed['pass'] ) ) {
4607              $front .= ':' . $parsed['pass'];
4608          }
4609  
4610          if ( isset( $parsed['user'] ) || isset( $parsed['pass'] ) ) {
4611              $front .= '@';
4612          }
4613  
4614          if ( isset( $parsed['host'] ) ) {
4615              $front .= $parsed['host'];
4616          }
4617  
4618          if ( isset( $parsed['port'] ) ) {
4619              $front .= ':' . $parsed['port'];
4620          }
4621  
4622          $end_dirty = str_replace( $front, '', $url );
4623          $end_clean = str_replace( array( '[', ']' ), array( '%5B', '%5D' ), $end_dirty );
4624          $url       = str_replace( $end_dirty, $end_clean, $url );
4625  
4626      }
4627  
4628      if ( '/' === $url[0] ) {
4629          $good_protocol_url = $url;
4630      } else {
4631          if ( ! is_array( $protocols ) ) {
4632              $protocols = wp_allowed_protocols();
4633          }
4634          $good_protocol_url = wp_kses_bad_protocol( $url, $protocols );
4635          if ( strtolower( $good_protocol_url ) !== strtolower( $url ) ) {
4636              return '';
4637          }
4638      }
4639  
4640      /**
4641       * Filters a string cleaned and escaped for output as a URL.
4642       *
4643       * @since 2.3.0
4644       *
4645       * @param string $good_protocol_url The cleaned URL to be returned.
4646       * @param string $original_url      The URL prior to cleaning.
4647       * @param string $_context          If 'display', replace ampersands and single quotes only.
4648       */
4649      return apply_filters( 'clean_url', $good_protocol_url, $original_url, $_context );
4650  }
4651  
4652  /**
4653   * Sanitizes a URL for database or redirect usage.
4654   *
4655   * This function is an alias for sanitize_url().
4656   *
4657   * @since 2.8.0
4658   * @since 6.1.0 Turned into an alias for sanitize_url().
4659   * @since 6.9.0 Prepends `https://` to the URL if it does not already contain a scheme
4660   *              and the first item in `$protocols` is 'https'.
4661   *
4662   * @see sanitize_url()
4663   *
4664   * @param string   $url       The URL to be cleaned.
4665   * @param string[] $protocols Optional. An array of acceptable protocols.
4666   *                            Defaults to return value of wp_allowed_protocols().
4667   * @return string The cleaned URL after sanitize_url() is run.
4668   */
4669  function esc_url_raw( $url, $protocols = null ) {
4670      return sanitize_url( $url, $protocols );
4671  }
4672  
4673  /**
4674   * Sanitizes a URL for database or redirect usage.
4675   *
4676   * @since 2.3.1
4677   * @since 2.8.0 Deprecated in favor of esc_url_raw().
4678   * @since 5.9.0 Restored (un-deprecated).
4679   * @since 6.9.0 Prepends `https://` to the URL if it does not already contain a scheme
4680   *              and the first item in `$protocols` is 'https'.
4681   *
4682   * @see esc_url()
4683   *
4684   * @param string   $url       The URL to be cleaned.
4685   * @param string[] $protocols Optional. An array of acceptable protocols.
4686   *                            Defaults to return value of wp_allowed_protocols().
4687   * @return string The cleaned URL after esc_url() is run with the 'db' context.
4688   */
4689  function sanitize_url( $url, $protocols = null ) {
4690      return esc_url( $url, $protocols, 'db' );
4691  }
4692  
4693  /**
4694   * Converts entities, while preserving already-encoded entities.
4695   *
4696   * @link https://www.php.net/htmlentities Borrowed from the PHP Manual user notes.
4697   *
4698   * @since 1.2.2
4699   *
4700   * @param string $text The text to be converted.
4701   * @return string Converted text.
4702   */
4703  function htmlentities2( $text ) {
4704      $translation_table = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES );
4705  
4706      $translation_table[ chr( 38 ) ] = '&';
4707  
4708      return preg_replace( '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/', '&amp;', strtr( $text, $translation_table ) );
4709  }
4710  
4711  /**
4712   * Escapes single quotes, `"`, `<`, `>`, `&`, and fixes line endings.
4713   *
4714   * Escapes text strings for echoing in JS. It is intended to be used for inline JS
4715   * (in a tag attribute, for example `onclick="..."`). Note that the strings have to
4716   * be in single quotes. The {@see 'js_escape'} filter is also applied here.
4717   *
4718   * @since 2.8.0
4719   *
4720   * @param string $text The text to be escaped.
4721   * @return string Escaped text.
4722   */
4723  function esc_js( $text ) {
4724      $safe_text = wp_check_invalid_utf8( $text );
4725      $safe_text = _wp_specialchars( $safe_text, ENT_COMPAT );
4726      $safe_text = preg_replace( '/&#(x)?0*(?(1)27|39);?/i', "'", stripslashes( $safe_text ) );
4727      $safe_text = str_replace( "\r", '', $safe_text );
4728      $safe_text = str_replace( "\n", '\\n', addslashes( $safe_text ) );
4729      /**
4730       * Filters a string cleaned and escaped for output in JavaScript.
4731       *
4732       * Text passed to esc_js() is stripped of invalid or special characters,
4733       * and properly slashed for output.
4734       *
4735       * @since 2.0.6
4736       *
4737       * @param string $safe_text The text after it has been escaped.
4738       * @param string $text      The text prior to being escaped.
4739       */
4740      return apply_filters( 'js_escape', $safe_text, $text );
4741  }
4742  
4743  /**
4744   * Escaping for HTML blocks.
4745   *
4746   * @since 2.8.0
4747   *
4748   * @param string $text
4749   * @return string Escaped text.
4750   */
4751  function esc_html( $text ) {
4752      $safe_text = wp_check_invalid_utf8( $text );
4753      $safe_text = _wp_specialchars( $safe_text, ENT_QUOTES );
4754      /**
4755       * Filters a string cleaned and escaped for output in HTML.
4756       *
4757       * Text passed to esc_html() is stripped of invalid or special characters
4758       * before output.
4759       *
4760       * @since 2.8.0
4761       *
4762       * @param string $safe_text The text after it has been escaped.
4763       * @param string $text      The text prior to being escaped.
4764       */
4765      return apply_filters( 'esc_html', $safe_text, $text );
4766  }
4767  
4768  /**
4769   * Escaping for HTML attributes.
4770   *
4771   * @since 2.8.0
4772   *
4773   * @param string $text
4774   * @return string Escaped text.
4775   */
4776  function esc_attr( $text ) {
4777      $safe_text = wp_check_invalid_utf8( $text );
4778      $safe_text = _wp_specialchars( $safe_text, ENT_QUOTES );
4779      /**
4780       * Filters a string cleaned and escaped for output in an HTML attribute.
4781       *
4782       * Text passed to esc_attr() is stripped of invalid or special characters
4783       * before output.
4784       *
4785       * @since 2.0.6
4786       *
4787       * @param string $safe_text The text after it has been escaped.
4788       * @param string $text      The text prior to being escaped.
4789       */
4790      return apply_filters( 'attribute_escape', $safe_text, $text );
4791  }
4792  
4793  /**
4794   * Escaping for textarea values.
4795   *
4796   * @since 3.1.0
4797   *
4798   * @param string $text
4799   * @return string Escaped text.
4800   */
4801  function esc_textarea( $text ) {
4802      $safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) );
4803      /**
4804       * Filters a string cleaned and escaped for output in a textarea element.
4805       *
4806       * @since 3.1.0
4807       *
4808       * @param string $safe_text The text after it has been escaped.
4809       * @param string $text      The text prior to being escaped.
4810       */
4811      return apply_filters( 'esc_textarea', $safe_text, $text );
4812  }
4813  
4814  /**
4815   * Escaping for XML blocks.
4816   *
4817   * @since 5.5.0
4818   *
4819   * @param string $text Text to escape.
4820   * @return string Escaped text.
4821   */
4822  function esc_xml( $text ) {
4823      $safe_text = wp_check_invalid_utf8( $text );
4824  
4825      $cdata_regex = '\<\!\[CDATA\[.*?\]\]\>';
4826      $regex       = <<<EOF
4827  /
4828      (?=.*?{$cdata_regex})                 # lookahead that will match anything followed by a CDATA Section
4829      (?<non_cdata_followed_by_cdata>(.*?)) # the "anything" matched by the lookahead
4830      (?<cdata>({$cdata_regex}))            # the CDATA Section matched by the lookahead
4831  
4832  |                                          # alternative
4833  
4834      (?<non_cdata>(.*))                    # non-CDATA Section
4835  /sx
4836  EOF;
4837  
4838      $safe_text = (string) preg_replace_callback(
4839          $regex,
4840          static function ( $matches ) {
4841              if ( ! isset( $matches[0] ) ) {
4842                  return '';
4843              }
4844  
4845              if ( isset( $matches['non_cdata'] ) ) {
4846                  // escape HTML entities in the non-CDATA Section.
4847                  return _wp_specialchars( $matches['non_cdata'], ENT_XML1 );
4848              }
4849  
4850              // Return the CDATA Section unchanged, escape HTML entities in the rest.
4851              return _wp_specialchars( $matches['non_cdata_followed_by_cdata'], ENT_XML1 ) . $matches['cdata'];
4852          },
4853          $safe_text
4854      );
4855  
4856      /**
4857       * Filters a string cleaned and escaped for output in XML.
4858       *
4859       * Text passed to esc_xml() is stripped of invalid or special characters
4860       * before output. HTML named character references are converted to their
4861       * equivalent code points.
4862       *
4863       * @since 5.5.0
4864       *
4865       * @param string $safe_text The text after it has been escaped.
4866       * @param string $text      The text prior to being escaped.
4867       */
4868      return apply_filters( 'esc_xml', $safe_text, $text );
4869  }
4870  
4871  /**
4872   * Escapes an HTML tag name.
4873   *
4874   * @since 2.5.0
4875   * @since 6.5.5 Allow hyphens in tag names (i.e. custom elements).
4876   *
4877   * @param string $tag_name
4878   * @return string Sanitized tag name.
4879   */
4880  function tag_escape( $tag_name ) {
4881      $safe_tag = strtolower( preg_replace( '/[^a-zA-Z0-9-_:]/', '', $tag_name ) );
4882      /**
4883       * Filters a string cleaned and escaped for output as an HTML tag.
4884       *
4885       * @since 2.8.0
4886       *
4887       * @param string $safe_tag The tag name after it has been escaped.
4888       * @param string $tag_name The text before it was escaped.
4889       */
4890      return apply_filters( 'tag_escape', $safe_tag, $tag_name );
4891  }
4892  
4893  /**
4894   * Converts full URL paths to absolute paths.
4895   *
4896   * Removes the http or https protocols and the domain. Keeps the path '/' at the
4897   * beginning, so it isn't a true relative link, but from the web root base.
4898   *
4899   * @since 2.1.0
4900   * @since 4.1.0 Support was added for relative URLs.
4901   *
4902   * @param string $link Full URL path.
4903   * @return string Absolute path.
4904   */
4905  function wp_make_link_relative( $link ) {
4906      return preg_replace( '|^(https?:)?//[^/]+(/?.*)|i', '$2', $link );
4907  }
4908  
4909  /**
4910   * Sanitizes various option values based on the nature of the option.
4911   *
4912   * This is basically a switch statement which will pass $value through a number
4913   * of functions depending on the $option.
4914   *
4915   * @since 2.0.5
4916   *
4917   * @global wpdb $wpdb WordPress database abstraction object.
4918   *
4919   * @param string $option The name of the option.
4920   * @param mixed  $value  The unsanitized value.
4921   * @return mixed Sanitized value.
4922   */
4923  function sanitize_option( $option, $value ) {
4924      global $wpdb;
4925  
4926      $original_value = $value;
4927      $error          = null;
4928  
4929      switch ( $option ) {
4930          case 'admin_email':
4931          case 'new_admin_email':
4932              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
4933              if ( is_wp_error( $value ) ) {
4934                  $error = $value->get_error_message();
4935              } else {
4936                  $value = sanitize_email( $value );
4937                  if ( ! is_email( $value ) ) {
4938                      $error = __( 'The email address entered did not appear to be a valid email address. Please enter a valid email address.' );
4939                  }
4940              }
4941              break;
4942  
4943          case 'thumbnail_size_w':
4944          case 'thumbnail_size_h':
4945          case 'medium_size_w':
4946          case 'medium_size_h':
4947          case 'medium_large_size_w':
4948          case 'medium_large_size_h':
4949          case 'large_size_w':
4950          case 'large_size_h':
4951          case 'mailserver_port':
4952          case 'comment_max_links':
4953          case 'page_on_front':
4954          case 'page_for_posts':
4955          case 'rss_excerpt_length':
4956          case 'default_category':
4957          case 'default_email_category':
4958          case 'default_link_category':
4959          case 'close_comments_days_old':
4960          case 'comments_per_page':
4961          case 'thread_comments_depth':
4962          case 'users_can_register':
4963          case 'start_of_week':
4964          case 'site_icon':
4965          case 'fileupload_maxk':
4966              $value = absint( $value );
4967              break;
4968  
4969          case 'posts_per_page':
4970          case 'posts_per_rss':
4971              $value = (int) $value;
4972              if ( empty( $value ) ) {
4973                  $value = 1;
4974              }
4975              if ( $value < -1 ) {
4976                  $value = abs( $value );
4977              }
4978              break;
4979  
4980          case 'default_ping_status':
4981          case 'default_comment_status':
4982              // Options that if not there have 0 value but need to be something like "closed".
4983              if ( '0' === (string) $value || '' === $value ) {
4984                  $value = 'closed';
4985              }
4986              break;
4987  
4988          case 'blogdescription':
4989          case 'blogname':
4990              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
4991              if ( $value !== $original_value ) {
4992                  $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', wp_encode_emoji( $original_value ) );
4993              }
4994  
4995              if ( is_wp_error( $value ) ) {
4996                  $error = $value->get_error_message();
4997              } else {
4998                  $value = esc_html( $value );
4999              }
5000              break;
5001  
5002          case 'blog_charset':
5003              if ( is_string( $value ) ) {
5004                  $value = preg_replace( '/[^a-zA-Z0-9_-]/', '', $value ); // Strips slashes.
5005              } else {
5006                  $value = '';
5007              }
5008              break;
5009  
5010          case 'blog_public':
5011              // This is the value if the settings checkbox is not checked on POST. Don't rely on this.
5012              if ( null === $value ) {
5013                  $value = 1;
5014              } else {
5015                  $value = (int) $value;
5016              }
5017              break;
5018  
5019          case 'date_format':
5020          case 'time_format':
5021          case 'mailserver_url':
5022          case 'mailserver_login':
5023          case 'mailserver_pass':
5024          case 'upload_path':
5025              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5026              if ( is_wp_error( $value ) ) {
5027                  $error = $value->get_error_message();
5028              } else {
5029                  $value = strip_tags( $value );
5030                  $value = wp_kses_data( $value );
5031              }
5032              break;
5033  
5034          case 'ping_sites':
5035              $value = explode( "\n", $value );
5036              $value = array_filter( array_map( 'trim', $value ) );
5037              $value = array_filter( array_map( 'sanitize_url', $value ) );
5038              $value = implode( "\n", $value );
5039              break;
5040  
5041          case 'gmt_offset':
5042              if ( is_numeric( $value ) ) {
5043                  $value = preg_replace( '/[^0-9:.-]/', '', $value ); // Strips slashes.
5044              } else {
5045                  $value = '';
5046              }
5047              break;
5048  
5049          case 'siteurl':
5050              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5051              if ( is_wp_error( $value ) ) {
5052                  $error = $value->get_error_message();
5053              } else {
5054                  if ( preg_match( '#http(s?)://(.+)#i', $value ) ) {
5055                      $value = sanitize_url( $value );
5056                  } else {
5057                      $error = __( 'The WordPress address you entered did not appear to be a valid URL. Please enter a valid URL.' );
5058                  }
5059              }
5060              break;
5061  
5062          case 'home':
5063              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5064              if ( is_wp_error( $value ) ) {
5065                  $error = $value->get_error_message();
5066              } else {
5067                  if ( preg_match( '#http(s?)://(.+)#i', $value ) ) {
5068                      $value = sanitize_url( $value );
5069                  } else {
5070                      $error = __( 'The Site address you entered did not appear to be a valid URL. Please enter a valid URL.' );
5071                  }
5072              }
5073              break;
5074  
5075          case 'WPLANG':
5076              $allowed = get_available_languages();
5077              if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG ) {
5078                  $allowed[] = WPLANG;
5079              }
5080              if ( ! in_array( $value, $allowed, true ) && ! empty( $value ) ) {
5081                  $value = get_option( $option );
5082              }
5083              break;
5084  
5085          case 'illegal_names':
5086              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5087              if ( is_wp_error( $value ) ) {
5088                  $error = $value->get_error_message();
5089              } else {
5090                  if ( ! is_array( $value ) ) {
5091                      $value = explode( ' ', $value );
5092                  }
5093  
5094                  $value = array_values( array_filter( array_map( 'trim', $value ) ) );
5095  
5096                  if ( ! $value ) {
5097                      $value = '';
5098                  }
5099              }
5100              break;
5101  
5102          case 'limited_email_domains':
5103          case 'banned_email_domains':
5104              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5105              if ( is_wp_error( $value ) ) {
5106                  $error = $value->get_error_message();
5107              } else {
5108                  if ( ! is_array( $value ) ) {
5109                      $value = explode( "\n", $value );
5110                  }
5111  
5112                  $domains = array_values( array_filter( array_map( 'trim', $value ) ) );
5113                  $value   = array();
5114  
5115                  foreach ( $domains as $domain ) {
5116                      if ( ! preg_match( '/(--|\.\.)/', $domain ) && preg_match( '|^([a-zA-Z0-9-\.])+$|', $domain ) ) {
5117                          $value[] = $domain;
5118                      }
5119                  }
5120                  if ( ! $value ) {
5121                      $value = '';
5122                  }
5123              }
5124              break;
5125  
5126          case 'timezone_string':
5127              $allowed_zones = timezone_identifiers_list( DateTimeZone::ALL_WITH_BC );
5128              if ( ! in_array( $value, $allowed_zones, true ) && ! empty( $value ) ) {
5129                  $error = __( 'The timezone you have entered is not valid. Please select a valid timezone.' );
5130              }
5131              break;
5132  
5133          case 'permalink_structure':
5134          case 'category_base':
5135          case 'tag_base':
5136              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5137              if ( is_wp_error( $value ) ) {
5138                  $error = $value->get_error_message();
5139              } else {
5140                  $value = sanitize_url( $value );
5141                  $value = str_replace( 'http://', '', $value );
5142              }
5143  
5144              if ( 'permalink_structure' === $option && null === $error
5145                  && '' !== $value && ! preg_match( '/%[^\/%]+%/', $value )
5146              ) {
5147                  $error = sprintf(
5148                      /* translators: %s: Documentation URL. */
5149                      __( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ),
5150                      __( 'https://wordpress.org/documentation/article/customize-permalinks/#choosing-your-permalink-structure' )
5151                  );
5152              }
5153              break;
5154  
5155          case 'default_role':
5156              if ( ! get_role( $value ) && get_role( 'subscriber' ) ) {
5157                  $value = 'subscriber';
5158              }
5159              break;
5160  
5161          case 'moderation_keys':
5162          case 'disallowed_keys':
5163              $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value );
5164              if ( is_wp_error( $value ) ) {
5165                  $error = $value->get_error_message();
5166              } else {
5167                  $value = explode( "\n", $value );
5168                  $value = array_filter( array_map( 'trim', $value ) );
5169                  $value = array_unique( $value );
5170                  $value = implode( "\n", $value );
5171              }
5172              break;
5173      }
5174  
5175      if ( null !== $error ) {
5176          if ( '' === $error && is_wp_error( $value ) ) {
5177              /* translators: 1: Option name, 2: Error code. */
5178              $error = sprintf( __( 'Could not sanitize the %1$s option. Error code: %2$s' ), $option, $value->get_error_code() );
5179          }
5180  
5181          $value = get_option( $option );
5182          if ( function_exists( 'add_settings_error' ) ) {
5183              add_settings_error( $option, "invalid_{$option}", $error );
5184          }
5185      }
5186  
5187      /**
5188       * Filters an option value following sanitization.
5189       *
5190       * @since 2.3.0
5191       * @since 4.3.0 Added the `$original_value` parameter.
5192       *
5193       * @param mixed  $value          The sanitized option value.
5194       * @param string $option         The option name.
5195       * @param mixed  $original_value The original value passed to the function.
5196       */
5197      return apply_filters( "sanitize_option_{$option}", $value, $option, $original_value );
5198  }
5199  
5200  /**
5201   * Maps a function to all non-iterable elements of an array or an object.
5202   *
5203   * This is similar to `array_walk_recursive()` but acts upon objects too.
5204   *
5205   * @since 4.4.0
5206   *
5207   * @param mixed    $value    The array, object, or scalar.
5208   * @param callable $callback The function to map onto $value.
5209   * @return mixed The value with the callback applied to all non-arrays and non-objects inside it.
5210   *
5211   * @phpstan-template T
5212   * @phpstan-param T $value
5213   * @phpstan-return (T is array ? array<key-of<T>, mixed> : (T is object ? T : mixed))
5214   */
5215  function map_deep( $value, $callback ) {
5216      if ( is_array( $value ) ) {
5217          foreach ( $value as $index => $item ) {
5218              $value[ $index ] = map_deep( $item, $callback );
5219          }
5220      } elseif ( is_object( $value ) ) {
5221          $object_vars = get_object_vars( $value );
5222          foreach ( $object_vars as $property_name => $property_value ) {
5223              $value->$property_name = map_deep( $property_value, $callback );
5224          }
5225      } else {
5226          $value = call_user_func( $callback, $value );
5227      }
5228  
5229      return $value;
5230  }
5231  
5232  /**
5233   * Parses a string into variables to be stored in an array.
5234   *
5235   * @since 2.2.1
5236   *
5237   * @param string $input_string The string to be parsed.
5238   * @param array  $result       Variables will be stored in this array.
5239   */
5240  function wp_parse_str( $input_string, &$result ) {
5241      parse_str( (string) $input_string, $result );
5242  
5243      /**
5244       * Filters the array of variables derived from a parsed string.
5245       *
5246       * @since 2.2.1
5247       *
5248       * @param array $result The array populated with variables.
5249       */
5250      $result = apply_filters( 'wp_parse_str', $result );
5251  }
5252  
5253  /**
5254   * Converts lone less than signs.
5255   *
5256   * KSES already converts lone greater than signs.
5257   *
5258   * @since 2.3.0
5259   *
5260   * @param string $content Text to be converted.
5261   * @return string Converted text.
5262   */
5263  function wp_pre_kses_less_than( $content ) {
5264      return preg_replace_callback( '%<[^>]*?((?=<)|>|$)%', 'wp_pre_kses_less_than_callback', $content );
5265  }
5266  
5267  /**
5268   * Callback function used by preg_replace.
5269   *
5270   * @since 2.3.0
5271   *
5272   * @param string[] $matches Populated by matches to preg_replace.
5273   * @return string The text returned after esc_html if needed.
5274   */
5275  function wp_pre_kses_less_than_callback( $matches ) {
5276      if ( ! str_contains( $matches[0], '>' ) ) {
5277          return esc_html( $matches[0] );
5278      }
5279      return $matches[0];
5280  }
5281  
5282  /**
5283   * Removes non-allowable HTML from parsed block attribute values when filtering
5284   * in the post context.
5285   *
5286   * @since 5.3.1
5287   *
5288   * @param string         $content           Content to be run through KSES.
5289   * @param array[]|string $allowed_html      An array of allowed HTML elements
5290   *                                          and attributes, or a context name
5291   *                                          such as 'post'.
5292   * @param string[]       $allowed_protocols Array of allowed URL protocols.
5293   * @return string Filtered text to run through KSES.
5294   */
5295  function wp_pre_kses_block_attributes( $content, $allowed_html, $allowed_protocols ) {
5296      /*
5297       * `filter_block_content` is expected to call `wp_kses`. Temporarily remove
5298       * the filter to avoid recursion.
5299       */
5300      remove_filter( 'pre_kses', 'wp_pre_kses_block_attributes', 10 );
5301      $content = filter_block_content( $content, $allowed_html, $allowed_protocols );
5302      add_filter( 'pre_kses', 'wp_pre_kses_block_attributes', 10, 3 );
5303  
5304      return $content;
5305  }
5306  
5307  /**
5308   * WordPress' implementation of PHP sprintf() with filters.
5309   *
5310   * @since 2.5.0
5311   * @since 5.3.0 Formalized the existing and already documented `...$args` parameter
5312   *              by adding it to the function signature.
5313   *
5314   * @link https://www.php.net/sprintf
5315   *
5316   * @param string $pattern The string which formatted args are inserted.
5317   * @param mixed  ...$args Arguments to be formatted into the $pattern string.
5318   * @return string The formatted string.
5319   */
5320  function wp_sprintf( $pattern, ...$args ) {
5321      $len       = strlen( $pattern );
5322      $start     = 0;
5323      $result    = '';
5324      $arg_index = 0;
5325  
5326      while ( $len > $start ) {
5327          // Last character: append and break.
5328          if ( strlen( $pattern ) - 1 === $start ) {
5329              $result .= substr( $pattern, -1 );
5330              break;
5331          }
5332  
5333          // Literal %: append and continue.
5334          if ( '%%' === substr( $pattern, $start, 2 ) ) {
5335              $start  += 2;
5336              $result .= '%';
5337              continue;
5338          }
5339  
5340          // Get fragment before next %.
5341          $end = strpos( $pattern, '%', $start + 1 );
5342          if ( false === $end ) {
5343              $end = $len;
5344          }
5345          $fragment = substr( $pattern, $start, $end - $start );
5346  
5347          // Fragment has a specifier.
5348          if ( '%' === $pattern[ $start ] ) {
5349              // Find numbered arguments or take the next one in order.
5350              if ( preg_match( '/^%(\d+)\$/', $fragment, $matches ) ) {
5351                  $index    = $matches[1] - 1; // 0-based array vs 1-based sprintf() arguments.
5352                  $arg      = $args[ $index ] ?? '';
5353                  $fragment = str_replace( "%{$matches[1]}$", '%', $fragment );
5354              } else {
5355                  $arg = $args[ $arg_index ] ?? '';
5356                  ++$arg_index;
5357              }
5358  
5359              /**
5360               * Filters a fragment from the pattern passed to wp_sprintf().
5361               *
5362               * If the fragment is unchanged, then sprintf() will be run on the fragment.
5363               *
5364               * @since 2.5.0
5365               *
5366               * @param string $fragment A fragment from the pattern.
5367               * @param string $arg      The argument.
5368               */
5369              $_fragment = apply_filters( 'wp_sprintf', $fragment, $arg );
5370  
5371              if ( $_fragment !== $fragment ) {
5372                  $fragment = $_fragment;
5373              } else {
5374                  $fragment = sprintf( $fragment, (string) $arg );
5375              }
5376          }
5377  
5378          // Append to result and move to next fragment.
5379          $result .= $fragment;
5380          $start   = $end;
5381      }
5382  
5383      return $result;
5384  }
5385  
5386  /**
5387   * Localizes list items before the rest of the content.
5388   *
5389   * The '%l' must be at the first characters can then contain the rest of the
5390   * content. The list items will have ', ', ', and', and ' and ' added depending
5391   * on the amount of list items in the $args parameter.
5392   *
5393   * @since 2.5.0
5394   *
5395   * @param string $pattern Content containing '%l' at the beginning.
5396   * @param array  $args    List items to prepend to the content and replace '%l'.
5397   * @return string Localized list items and rest of the content.
5398   */
5399  function wp_sprintf_l( $pattern, $args ) {
5400      // Not a match.
5401      if ( ! str_starts_with( $pattern, '%l' ) ) {
5402          return $pattern;
5403      }
5404  
5405      // Nothing to work with.
5406      if ( empty( $args ) ) {
5407          return '';
5408      }
5409  
5410      /**
5411       * Filters the translated delimiters used by wp_sprintf_l().
5412       * Placeholders (%s) are included to assist translators and then
5413       * removed before the array of strings reaches the filter.
5414       *
5415       * Please note: Ampersands and entities should be avoided here.
5416       *
5417       * @since 2.5.0
5418       *
5419       * @param array $delimiters An array of translated delimiters.
5420       */
5421      $l = apply_filters(
5422          'wp_sprintf_l',
5423          array(
5424              /* translators: Used to join items in a list with more than 2 items. */
5425              'between'          => sprintf( __( '%1$s, %2$s' ), '', '' ),
5426              /* translators: Used to join last two items in a list with more than 2 times. */
5427              'between_last_two' => sprintf( __( '%1$s, and %2$s' ), '', '' ),
5428              /* translators: Used to join items in a list with only 2 items. */
5429              'between_only_two' => sprintf( __( '%1$s and %2$s' ), '', '' ),
5430          )
5431      );
5432  
5433      $args   = (array) $args;
5434      $result = array_shift( $args );
5435      if ( 1 === count( $args ) ) {
5436          $result .= $l['between_only_two'] . array_shift( $args );
5437      }
5438  
5439      // Loop when more than two args.
5440      $i = count( $args );
5441      while ( $i ) {
5442          $arg = array_shift( $args );
5443          --$i;
5444          if ( 0 === $i ) {
5445              $result .= $l['between_last_two'] . $arg;
5446          } else {
5447              $result .= $l['between'] . $arg;
5448          }
5449      }
5450  
5451      return $result . substr( $pattern, 2 );
5452  }
5453  
5454  /**
5455   * Safely extracts not more than the first $count characters from HTML string.
5456   *
5457   * UTF-8, tags and entities safe prefix extraction. Entities inside will *NOT*
5458   * be counted as one character. For example &amp; will be counted as 4, &lt; as
5459   * 3, etc.
5460   *
5461   * @since 2.5.0
5462   *
5463   * @param string $str   String to get the excerpt from.
5464   * @param int    $count Maximum number of characters to take.
5465   * @param string $more  Optional. What to append if $str needs to be trimmed. Defaults to empty string.
5466   * @return string The excerpt.
5467   */
5468  function wp_html_excerpt( $str, $count, $more = null ) {
5469      if ( null === $more ) {
5470          $more = '';
5471      }
5472  
5473      $str     = wp_strip_all_tags( $str, true );
5474      $excerpt = mb_substr( $str, 0, $count );
5475  
5476      // Remove part of an entity at the end.
5477      $excerpt = preg_replace( '/&[^;\s]{0,6}$/', '', $excerpt );
5478  
5479      if ( $str !== $excerpt ) {
5480          $excerpt = trim( $excerpt ) . $more;
5481      }
5482  
5483      return $excerpt;
5484  }
5485  
5486  /**
5487   * Adds a base URL to relative links in passed content.
5488   *
5489   * By default, this function supports the 'src' and 'href' attributes.
5490   * However, this can be modified via the `$attrs` parameter.
5491   *
5492   * @since 2.7.0
5493   *
5494   * @global string $_links_add_base
5495   *
5496   * @param string   $content String to search for links in.
5497   * @param string   $base    The base URL to prefix to links.
5498   * @param string[] $attrs   The attributes which should be processed.
5499   * @return string The processed content.
5500   */
5501  function links_add_base_url( $content, $base, $attrs = array( 'src', 'href' ) ) {
5502      global $_links_add_base;
5503      $_links_add_base = $base;
5504      $attrs           = implode( '|', (array) $attrs );
5505      return preg_replace_callback( "!($attrs)=(['\"])(.+?)\\2!i", '_links_add_base', $content );
5506  }
5507  
5508  /**
5509   * Callback to add a base URL to relative links in passed content.
5510   *
5511   * @since 2.7.0
5512   * @access private
5513   *
5514   * @global string $_links_add_base
5515   *
5516   * @param string $m The matched link.
5517   * @return string The processed link.
5518   */
5519  function _links_add_base( $m ) {
5520      global $_links_add_base;
5521      // 1 = attribute name  2 = quotation mark  3 = URL.
5522      return $m[1] . '=' . $m[2] .
5523          ( preg_match( '#^(\w{1,20}):#', $m[3], $protocol ) && in_array( $protocol[1], wp_allowed_protocols(), true ) ?
5524              $m[3] :
5525              WP_Http::make_absolute_url( $m[3], $_links_add_base )
5526          )
5527          . $m[2];
5528  }
5529  
5530  /**
5531   * Adds a target attribute to all links in passed content.
5532   *
5533   * By default, this function only applies to `<a>` tags.
5534   * However, this can be modified via the `$tags` parameter.
5535   *
5536   * *NOTE:* Any current target attribute will be stripped and replaced.
5537   *
5538   * @since 2.7.0
5539   *
5540   * @global string $_links_add_target
5541   *
5542   * @param string   $content String to search for links in.
5543   * @param string   $target  The target to add to the links.
5544   * @param string[] $tags    An array of tags to apply to.
5545   * @return string The processed content.
5546   */
5547  function links_add_target( $content, $target = '_blank', $tags = array( 'a' ) ) {
5548      global $_links_add_target;
5549      $_links_add_target = $target;
5550      $tags              = implode( '|', (array) $tags );
5551      return preg_replace_callback( "!<($tags)((\s[^>]*)?)>!i", '_links_add_target', $content );
5552  }
5553  
5554  /**
5555   * Callback to add a target attribute to all links in passed content.
5556   *
5557   * @since 2.7.0
5558   * @access private
5559   *
5560   * @global string $_links_add_target
5561   *
5562   * @param string $m The matched link.
5563   * @return string The processed link.
5564   */
5565  function _links_add_target( $m ) {
5566      global $_links_add_target;
5567      $tag  = $m[1];
5568      $link = preg_replace( '|( target=([\'"])(.*?)\2)|i', '', $m[2] );
5569      return '<' . $tag . $link . ' target="' . esc_attr( $_links_add_target ) . '">';
5570  }
5571  
5572  /**
5573   * Normalizes EOL characters and strips duplicate whitespace.
5574   *
5575   * @since 2.7.0
5576   *
5577   * @param string $str The string to normalize.
5578   * @return string The normalized string.
5579   */
5580  function normalize_whitespace( $str ) {
5581      $str = trim( $str );
5582      $str = str_replace( "\r", "\n", $str );
5583      $str = preg_replace( array( '/\n+/', '/[ \t]+/' ), array( "\n", ' ' ), $str );
5584      return $str;
5585  }
5586  
5587  /**
5588   * Properly strips all HTML tags including 'script' and 'style'.
5589   *
5590   * This differs from strip_tags() because it removes the contents of
5591   * the `<script>` and `<style>` tags. E.g. `strip_tags( '<script>something</script>' )`
5592   * will return 'something'. wp_strip_all_tags() will return an empty string.
5593   *
5594   * @since 2.9.0
5595   *
5596   * @param string $text          String containing HTML tags
5597   * @param bool   $remove_breaks Optional. Whether to remove left over line breaks and white space chars
5598   * @return string The processed string.
5599   */
5600  function wp_strip_all_tags( $text, $remove_breaks = false ) {
5601      if ( is_null( $text ) ) {
5602          return '';
5603      }
5604  
5605      if ( ! is_scalar( $text ) ) {
5606          /*
5607           * To maintain consistency with pre-PHP 8 error levels,
5608           * wp_trigger_error() is used to trigger an E_USER_WARNING,
5609           * rather than _doing_it_wrong(), which triggers an E_USER_NOTICE.
5610           */
5611          wp_trigger_error(
5612              '',
5613              sprintf(
5614                  /* translators: 1: The function name, 2: The argument number, 3: The argument name, 4: The expected type, 5: The provided type. */
5615                  __( 'Warning: %1$s expects parameter %2$s (%3$s) to be a %4$s, %5$s given.' ),
5616                  __FUNCTION__,
5617                  '#1',
5618                  '$text',
5619                  'string',
5620                  gettype( $text )
5621              ),
5622              E_USER_WARNING
5623          );
5624  
5625          return '';
5626      }
5627  
5628      $text = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $text );
5629      $text = strip_tags( $text );
5630  
5631      if ( $remove_breaks ) {
5632          $text = preg_replace( '/[\r\n\t ]+/', ' ', $text );
5633      }
5634  
5635      return trim( $text );
5636  }
5637  
5638  /**
5639   * Sanitizes a string from user input or from the database.
5640   *
5641   * - Checks for invalid UTF-8,
5642   * - Converts single `<` characters to entities
5643   * - Strips all tags
5644   * - Removes line breaks, tabs, and extra whitespace
5645   * - Strips percent-encoded characters
5646   *
5647   * @since 2.9.0
5648   *
5649   * @see sanitize_textarea_field()
5650   * @see wp_check_invalid_utf8()
5651   * @see wp_strip_all_tags()
5652   *
5653   * @param string $str String to sanitize.
5654   * @return string Sanitized string.
5655   */
5656  function sanitize_text_field( $str ) {
5657      $filtered = _sanitize_text_fields( $str, false );
5658  
5659      /**
5660       * Filters a sanitized text field string.
5661       *
5662       * @since 2.9.0
5663       *
5664       * @param string $filtered The sanitized string.
5665       * @param string $str      The string prior to being sanitized.
5666       */
5667      return apply_filters( 'sanitize_text_field', $filtered, $str );
5668  }
5669  
5670  /**
5671   * Sanitizes a multiline string from user input or from the database.
5672   *
5673   * The function is like sanitize_text_field(), but preserves
5674   * new lines (\n) and other whitespace, which are legitimate
5675   * input in textarea elements.
5676   *
5677   * @see sanitize_text_field()
5678   *
5679   * @since 4.7.0
5680   *
5681   * @param string $str String to sanitize.
5682   * @return string Sanitized string.
5683   */
5684  function sanitize_textarea_field( $str ) {
5685      $filtered = _sanitize_text_fields( $str, true );
5686  
5687      /**
5688       * Filters a sanitized textarea field string.
5689       *
5690       * @since 4.7.0
5691       *
5692       * @param string $filtered The sanitized string.
5693       * @param string $str      The string prior to being sanitized.
5694       */
5695      return apply_filters( 'sanitize_textarea_field', $filtered, $str );
5696  }
5697  
5698  /**
5699   * Internal helper function to sanitize a string from user input or from the database.
5700   *
5701   * @since 4.7.0
5702   * @access private
5703   *
5704   * @param string $str           String to sanitize.
5705   * @param bool   $keep_newlines Optional. Whether to keep newlines. Default: false.
5706   * @return string Sanitized string.
5707   */
5708  function _sanitize_text_fields( $str, $keep_newlines = false ) {
5709      if ( is_object( $str ) || is_array( $str ) ) {
5710          return '';
5711      }
5712  
5713      $str = (string) $str;
5714  
5715      $filtered = wp_check_invalid_utf8( $str );
5716  
5717      if ( str_contains( $filtered, '<' ) ) {
5718          $filtered = wp_pre_kses_less_than( $filtered );
5719          // This will strip extra whitespace for us.
5720          $filtered = wp_strip_all_tags( $filtered, false );
5721  
5722          /*
5723           * Use HTML entities in a special case to make sure that
5724           * later newline stripping stages cannot lead to a functional tag.
5725           */
5726          $filtered = str_replace( "<\n", "&lt;\n", $filtered );
5727      }
5728  
5729      if ( ! $keep_newlines ) {
5730          $filtered = preg_replace( '/[\r\n\t ]+/', ' ', $filtered );
5731      }
5732      $filtered = trim( $filtered );
5733  
5734      // Remove percent-encoded characters.
5735      $found = false;
5736      while ( preg_match( '/%[a-f0-9]{2}/i', $filtered, $match ) ) {
5737          $filtered = str_replace( $match[0], '', $filtered );
5738          $found    = true;
5739      }
5740  
5741      if ( $found ) {
5742          // Strip out the whitespace that may now exist after removing percent-encoded characters.
5743          $filtered = trim( preg_replace( '/ +/', ' ', $filtered ) );
5744      }
5745  
5746      return $filtered;
5747  }
5748  
5749  /**
5750   * i18n-friendly version of basename().
5751   *
5752   * @since 3.1.0
5753   *
5754   * @param string $path   A path.
5755   * @param string $suffix If the filename ends in suffix this will also be cut off.
5756   * @return string The base name of the given path.
5757   */
5758  function wp_basename( $path, $suffix = '' ) {
5759      return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) );
5760  }
5761  
5762  // phpcs:disable WordPress.WP.CapitalPDangit.MisspelledInComment,WordPress.WP.CapitalPDangit.MisspelledInText,WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid -- 8-)
5763  /**
5764   * Forever eliminate "Wordpress" from the planet (or at least the little bit we can influence).
5765   *
5766   * Violating our coding standards for a good function name.
5767   *
5768   * @since 3.0.0
5769   *
5770   * @param string $text The text to be modified.
5771   * @return string The modified text.
5772   */
5773  function capital_P_dangit( $text ) {
5774      // Simple replacement for titles.
5775      $current_filter = current_filter();
5776      if ( 'the_title' === $current_filter || 'wp_title' === $current_filter ) {
5777          return str_replace( 'Wordpress', 'WordPress', $text );
5778      }
5779      // Still here? Use the more judicious replacement.
5780      static $dblq = false;
5781      if ( false === $dblq ) {
5782          $dblq = _x( '&#8220;', 'opening curly double quote' );
5783      }
5784      return str_replace(
5785          array( ' Wordpress', '&#8216;Wordpress', $dblq . 'Wordpress', '>Wordpress', '(Wordpress' ),
5786          array( ' WordPress', '&#8216;WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ),
5787          $text
5788      );
5789  }
5790  // phpcs:enable
5791  
5792  /**
5793   * Sanitizes a mime type
5794   *
5795   * @since 3.1.3
5796   *
5797   * @param string $mime_type Mime type.
5798   * @return string Sanitized mime type.
5799   */
5800  function sanitize_mime_type( $mime_type ) {
5801      $sani_mime_type = preg_replace( '/[^-+*.a-zA-Z0-9\/]/', '', $mime_type );
5802      /**
5803       * Filters a mime type following sanitization.
5804       *
5805       * @since 3.1.3
5806       *
5807       * @param string $sani_mime_type The sanitized mime type.
5808       * @param string $mime_type      The mime type prior to sanitization.
5809       */
5810      return apply_filters( 'sanitize_mime_type', $sani_mime_type, $mime_type );
5811  }
5812  
5813  /**
5814   * Sanitizes space or carriage return separated URLs that are used to send trackbacks.
5815   *
5816   * @since 3.4.0
5817   *
5818   * @param string $to_ping Space or carriage return separated URLs
5819   * @return string URLs starting with the http or https protocol, separated by a carriage return.
5820   */
5821  function sanitize_trackback_urls( $to_ping ) {
5822      $urls_to_ping = preg_split( '/[\r\n\t ]/', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY );
5823      foreach ( $urls_to_ping as $k => $url ) {
5824          if ( ! preg_match( '#^https?://.#i', $url ) ) {
5825              unset( $urls_to_ping[ $k ] );
5826          }
5827      }
5828      $urls_to_ping = array_map( 'sanitize_url', $urls_to_ping );
5829      $urls_to_ping = implode( "\n", $urls_to_ping );
5830      /**
5831       * Filters a list of trackback URLs following sanitization.
5832       *
5833       * The string returned here consists of a space or carriage return-delimited list
5834       * of trackback URLs.
5835       *
5836       * @since 3.4.0
5837       *
5838       * @param string $urls_to_ping Sanitized space or carriage return separated URLs.
5839       * @param string $to_ping      Space or carriage return separated URLs before sanitization.
5840       */
5841      return apply_filters( 'sanitize_trackback_urls', $urls_to_ping, $to_ping );
5842  }
5843  
5844  /**
5845   * Adds slashes to a string or recursively adds slashes to strings within an array.
5846   *
5847   * This should be used when preparing data for core API that expects slashed data.
5848   * This should not be used to escape data going directly into an SQL query.
5849   *
5850   * @since 3.6.0
5851   * @since 5.5.0 Non-string values are left untouched.
5852   *
5853   * @param string|array $value String or array of data to slash.
5854   * @return string|array Slashed `$value`, in the same type as supplied.
5855   *
5856   * @phpstan-template T
5857   * @phpstan-param T $value
5858   * @phpstan-return (
5859   *     T is string ? string : (
5860   *         T is array ? array<key-of<T>, ( value-of<T> is string ? string : value-of<T> )> : T
5861   *     )
5862   * )
5863   */
5864  function wp_slash( $value ) {
5865      if ( is_array( $value ) ) {
5866          return array_map( 'wp_slash', $value );
5867      }
5868  
5869      if ( is_string( $value ) ) {
5870          return addslashes( $value );
5871      }
5872  
5873      return $value;
5874  }
5875  
5876  /**
5877   * Removes slashes from a string or recursively removes slashes from strings within an array.
5878   *
5879   * This should be used to remove slashes from data passed to core API that
5880   * expects data to be unslashed.
5881   *
5882   * @since 3.6.0
5883   *
5884   * @param string|array $value String or array of data to unslash.
5885   * @return string|array Unslashed `$value`, in the same type as supplied.
5886   *
5887   * @phpstan-template T
5888   * @phpstan-param T $value
5889   * @phpstan-return (
5890   *     T is string ? string : (
5891   *         T is array ? array<key-of<T>, ( value-of<T> is string ? string : value-of<T> )> : T
5892   *     )
5893   * )
5894   */
5895  function wp_unslash( $value ) {
5896      return stripslashes_deep( $value );
5897  }
5898  
5899  /**
5900   * Extracts and returns the first URL from passed content.
5901   *
5902   * @since 3.6.0
5903   *
5904   * @param string $content A string which might contain an `A` element with a non-empty `href` attribute.
5905   * @return string|false Database-escaped URL via {@see esc_url()} if found, otherwise `false`.
5906   */
5907  function get_url_in_content( $content ) {
5908      if ( empty( $content ) ) {
5909          return false;
5910      }
5911  
5912      $processor = new WP_HTML_Tag_Processor( $content );
5913      while ( $processor->next_tag( 'A' ) ) {
5914          $href = $processor->get_attribute( 'href' );
5915          if ( is_string( $href ) && '' !== $href ) {
5916              return sanitize_url( $href );
5917          }
5918      }
5919  
5920      return false;
5921  }
5922  
5923  /**
5924   * Returns the regexp for common whitespace characters.
5925   *
5926   * By default, spaces include new lines, tabs, nbsp entities, and the UTF-8 nbsp.
5927   * This is designed to replace the PCRE \s sequence. In ticket #22692, that
5928   * sequence was found to be unreliable due to random inclusion of the A0 byte.
5929   *
5930   * @since 4.0.0
5931   *
5932   * @return string The spaces regexp.
5933   */
5934  function wp_spaces_regexp() {
5935      static $spaces = '';
5936  
5937      if ( empty( $spaces ) ) {
5938          /**
5939           * Filters the regexp for common whitespace characters.
5940           *
5941           * This string is substituted for the \s sequence as needed in regular
5942           * expressions. For websites not written in English, different characters
5943           * may represent whitespace. For websites not encoded in UTF-8, the 0xC2 0xA0
5944           * sequence may not be in use.
5945           *
5946           * @since 4.0.0
5947           *
5948           * @param string $spaces Regexp pattern for matching common whitespace characters.
5949           */
5950          $spaces = apply_filters( 'wp_spaces_regexp', '[\r\n\t ]|\xC2\xA0|&nbsp;' );
5951      }
5952  
5953      return $spaces;
5954  }
5955  
5956  /**
5957   * Enqueues the important emoji-related styles.
5958   *
5959   * @since 6.4.0
5960   */
5961  function wp_enqueue_emoji_styles() {
5962      // Back-compat for plugins that disable functionality by unhooking this action.
5963      $action = is_admin() ? 'admin_print_styles' : 'wp_print_styles';
5964      if ( ! has_action( $action, 'print_emoji_styles' ) ) {
5965          return;
5966      }
5967      remove_action( $action, 'print_emoji_styles' );
5968  
5969      $emoji_styles = '
5970      img.wp-smiley, img.emoji {
5971          display: inline !important;
5972          border: none !important;
5973          box-shadow: none !important;
5974          height: 1em !important;
5975          width: 1em !important;
5976          margin: 0 0.07em !important;
5977          vertical-align: -0.1em !important;
5978          background: none !important;
5979          padding: 0 !important;
5980      }';
5981      $handle       = 'wp-emoji-styles';
5982      wp_register_style( $handle, false );
5983      wp_add_inline_style( $handle, $emoji_styles );
5984      wp_enqueue_style( $handle );
5985  }
5986  
5987  /**
5988   * Prints the inline Emoji detection script if it is not already printed.
5989   *
5990   * @since 4.2.0
5991   */
5992  function print_emoji_detection_script(): void {
5993      static $printed = false;
5994  
5995      if ( $printed ) {
5996          return;
5997      }
5998  
5999      $printed = true;
6000  
6001      if ( is_admin() ) {
6002          if ( did_action( 'admin_print_footer_scripts' ) ) {
6003              _print_emoji_detection_script();
6004          } else {
6005              add_action( 'admin_print_footer_scripts', '_print_emoji_detection_script' );
6006          }
6007      } else {
6008          if ( did_action( 'wp_print_footer_scripts' ) ) {
6009              _print_emoji_detection_script();
6010          } else {
6011              add_action( 'wp_print_footer_scripts', '_print_emoji_detection_script' );
6012          }
6013      }
6014  }
6015  
6016  /**
6017   * Prints inline Emoji detection script.
6018   *
6019   * @ignore
6020   * @since 4.6.0
6021   * @access private
6022   */
6023  function _print_emoji_detection_script() {
6024      $settings = array(
6025          /**
6026           * Filters the URL where emoji png images are hosted.
6027           *
6028           * @since 4.2.0
6029           *
6030           * @param string $url The emoji base URL for png images.
6031           */
6032          'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/17.0.2/72x72/' ),
6033  
6034          /**
6035           * Filters the extension of the emoji png files.
6036           *
6037           * @since 4.2.0
6038           *
6039           * @param string $extension The emoji extension for png files. Default .png.
6040           */
6041          'ext'     => apply_filters( 'emoji_ext', '.png' ),
6042  
6043          /**
6044           * Filters the URL where emoji SVG images are hosted.
6045           *
6046           * @since 4.6.0
6047           *
6048           * @param string $url The emoji base URL for svg images.
6049           */
6050          'svgUrl'  => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/17.0.2/svg/' ),
6051  
6052          /**
6053           * Filters the extension of the emoji SVG files.
6054           *
6055           * @since 4.6.0
6056           *
6057           * @param string $extension The emoji extension for svg files. Default .svg.
6058           */
6059          'svgExt'  => apply_filters( 'emoji_svg_ext', '.svg' ),
6060      );
6061  
6062      $version = 'ver=' . get_bloginfo( 'version' );
6063  
6064      if ( SCRIPT_DEBUG ) {
6065          $settings['source'] = array(
6066              /** This filter is documented in wp-includes/class-wp-scripts.php */
6067              'wpemoji' => apply_filters( 'script_loader_src', includes_url( "js/wp-emoji.js?$version" ), 'wpemoji' ),
6068              /** This filter is documented in wp-includes/class-wp-scripts.php */
6069              'twemoji' => apply_filters( 'script_loader_src', includes_url( "js/twemoji.js?$version" ), 'twemoji' ),
6070          );
6071      } else {
6072          $settings['source'] = array(
6073              /** This filter is documented in wp-includes/class-wp-scripts.php */
6074              'concatemoji' => apply_filters( 'script_loader_src', includes_url( "js/wp-emoji-release.min.js?$version" ), 'concatemoji' ),
6075          );
6076      }
6077  
6078      wp_print_inline_script_tag(
6079          wp_json_encode( $settings, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
6080          array(
6081              'id'   => 'wp-emoji-settings',
6082              'type' => 'application/json',
6083          )
6084      );
6085  
6086      $emoji_loader_script_path = '/js/wp-emoji-loader' . wp_scripts_get_suffix() . '.js';
6087      wp_print_inline_script_tag(
6088          rtrim( file_get_contents( ABSPATH . WPINC . $emoji_loader_script_path ) ) . "\n" .
6089          '//# sourceURL=' . esc_url_raw( includes_url( $emoji_loader_script_path ) ),
6090          array(
6091              'type' => 'module',
6092          )
6093      );
6094  }
6095  
6096  /**
6097   * Converts emoji characters to their equivalent HTML entity.
6098   *
6099   * This allows us to store emoji in a DB using the utf8 character set.
6100   *
6101   * @since 4.2.0
6102   *
6103   * @param string $content The content to encode.
6104   * @return string The encoded content.
6105   */
6106  function wp_encode_emoji( $content ) {
6107      $emoji = _wp_emoji_list( 'partials' );
6108  
6109      foreach ( $emoji as $emojum ) {
6110          $emoji_char = html_entity_decode( $emojum );
6111          if ( str_contains( $content, $emoji_char ) ) {
6112              $content = preg_replace( "/$emoji_char/", $emojum, $content );
6113          }
6114      }
6115  
6116      return $content;
6117  }
6118  
6119  /**
6120   * Converts emoji to a static img element.
6121   *
6122   * @since 4.2.0
6123   *
6124   * @param string $text The content to encode.
6125   * @return string The encoded content.
6126   */
6127  function wp_staticize_emoji( $text ) {
6128      if ( ! str_contains( $text, '&#x' ) ) {
6129          if ( ( function_exists( 'mb_check_encoding' ) && mb_check_encoding( $text, 'ASCII' ) ) || ! preg_match( '/[^\x00-\x7F]/', $text ) ) {
6130              // The text doesn't contain anything that might be emoji, so we can return early.
6131              return $text;
6132          } else {
6133              $encoded_text = wp_encode_emoji( $text );
6134              if ( $encoded_text === $text ) {
6135                  return $encoded_text;
6136              }
6137  
6138              $text = $encoded_text;
6139          }
6140      }
6141  
6142      $emoji = _wp_emoji_list( 'entities' );
6143  
6144      // Quickly narrow down the list of emoji that might be in the text and need replacing.
6145      $possible_emoji = array();
6146      foreach ( $emoji as $emojum ) {
6147          if ( str_contains( $text, $emojum ) ) {
6148              $possible_emoji[ $emojum ] = html_entity_decode( $emojum );
6149          }
6150      }
6151  
6152      if ( ! $possible_emoji ) {
6153          return $text;
6154      }
6155  
6156      /** This filter is documented in wp-includes/formatting.php */
6157      $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/17.0.2/72x72/' );
6158  
6159      /** This filter is documented in wp-includes/formatting.php */
6160      $ext = apply_filters( 'emoji_ext', '.png' );
6161  
6162      $output = '';
6163      /*
6164       * HTML loop taken from smiley function, which was taken from texturize function.
6165       * It'll never be consolidated.
6166       *
6167       * First, capture the tags as well as in between.
6168       */
6169      $textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE );
6170      $stop    = count( $textarr );
6171  
6172      // Ignore processing of specific tags.
6173      $tags_to_ignore       = 'code|pre|style|script|textarea';
6174      $ignore_block_element = '';
6175  
6176      for ( $i = 0; $i < $stop; $i++ ) {
6177          $content = $textarr[ $i ];
6178  
6179          // If we're in an ignore block, wait until we find its closing tag.
6180          if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
6181              $ignore_block_element = $matches[1];
6182          }
6183  
6184          // If it's not a tag and not in ignore block.
6185          if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' !== $content[0] && str_contains( $content, '&#x' ) ) {
6186              foreach ( $possible_emoji as $emojum => $emoji_char ) {
6187                  if ( ! str_contains( $content, $emojum ) ) {
6188                      continue;
6189                  }
6190  
6191                  $file = str_replace( ';&#x', '-', $emojum );
6192                  $file = str_replace( array( '&#x', ';' ), '', $file );
6193  
6194                  $entity = sprintf( '<img src="%s" alt="%s" class="wp-smiley" style="height: 1em; max-height: 1em;" />', $cdn_url . $file . $ext, $emoji_char );
6195  
6196                  $content = str_replace( $emojum, $entity, $content );
6197              }
6198          }
6199  
6200          // Did we exit ignore block?
6201          if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' === $content ) {
6202              $ignore_block_element = '';
6203          }
6204  
6205          $output .= $content;
6206      }
6207  
6208      // Finally, remove any stray U+FE0F characters.
6209      $output = str_replace( '&#xfe0f;', '', $output );
6210  
6211      return $output;
6212  }
6213  
6214  /**
6215   * Converts emoji in emails into static images.
6216   *
6217   * @since 4.2.0
6218   *
6219   * @param array $mail The email data array.
6220   * @return array The email data array, with emoji in the message staticized.
6221   */
6222  function wp_staticize_emoji_for_email( $mail ) {
6223      if ( ! isset( $mail['message'] ) ) {
6224          return $mail;
6225      }
6226  
6227      /*
6228       * We can only transform the emoji into images if it's a `text/html` email.
6229       * To do that, here's a cut down version of the same process that happens
6230       * in wp_mail() - get the `Content-Type` from the headers, if there is one,
6231       * then pass it through the {@see 'wp_mail_content_type'} filter, in case
6232       * a plugin is handling changing the `Content-Type`.
6233       */
6234      $headers = array();
6235      if ( isset( $mail['headers'] ) ) {
6236          if ( is_array( $mail['headers'] ) ) {
6237              $headers = $mail['headers'];
6238          } else {
6239              $headers = explode( "\n", str_replace( "\r\n", "\n", $mail['headers'] ) );
6240          }
6241      }
6242  
6243      foreach ( $headers as $header ) {
6244          if ( ! str_contains( $header, ':' ) ) {
6245              continue;
6246          }
6247  
6248          // Explode them out.
6249          list( $name, $content ) = explode( ':', trim( $header ), 2 );
6250  
6251          // Cleanup crew.
6252          $name    = trim( $name );
6253          $content = trim( $content );
6254  
6255          if ( 'content-type' === strtolower( $name ) ) {
6256              if ( str_contains( $content, ';' ) ) {
6257                  list( $type, $charset ) = explode( ';', $content );
6258                  $content_type           = trim( $type );
6259              } else {
6260                  $content_type = trim( $content );
6261              }
6262              break;
6263          }
6264      }
6265  
6266      // Set Content-Type if we don't have a content-type from the input headers.
6267      if ( ! isset( $content_type ) ) {
6268          $content_type = 'text/plain';
6269      }
6270  
6271      /** This filter is documented in wp-includes/pluggable.php */
6272      $content_type = apply_filters( 'wp_mail_content_type', $content_type );
6273  
6274      if ( 'text/html' === $content_type ) {
6275          $mail['message'] = wp_staticize_emoji( $mail['message'] );
6276      }
6277  
6278      return $mail;
6279  }
6280  
6281  /**
6282   * Returns arrays of emoji data.
6283   *
6284   * These arrays are automatically built from the regex in twemoji.js - if they need to be updated,
6285   * you should update the regex there, then run the `npm run grunt precommit:emoji` job.
6286   *
6287   * @since 4.9.0
6288   * @access private
6289   *
6290   * @param string $type Optional. Which array type to return. Accepts 'partials' or 'entities', default 'entities'.
6291   * @return array An array to match all emoji that WordPress recognises.
6292   */
6293  function _wp_emoji_list( $type = 'entities' ) {
6294      // Do not remove the START/END comments - they're used to find where to insert the arrays.
6295  
6296      // START: emoji arrays
6297      $entities = array( '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f468;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3f4;&#xe0067;&#xe0062;&#xe0065;&#xe006e;&#xe0067;&#xe007f;', '&#x1f3f4;&#xe0067;&#xe0062;&#xe0073;&#xe0063;&#xe0074;&#xe007f;', '&#x1f3f4;&#xe0067;&#xe0062;&#xe0077;&#xe006c;&#xe0073;&#xe007f;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3ff;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f468;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f469;&#x1f3fe;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f430;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;&#x1f3ff;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1faef;&#x200d;&#x1f9d1;&#x1f3fe;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f9d1;&#x200d;&#x1f9d1;&#x200d;&#x1f9d2;&#x200d;&#x1f9d2;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x200d;&#x2640;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x200d;&#x2642;&#xfe0f;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f468;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;', '&#x1f469;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;', '&#x1f9d1;&#x200d;&#x1f9af;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x200d;&#x1f9bc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9d1;&#x200d;&#x1f9bd;&#x200d;&#x27a1;&#xfe0f;', '&#x1faf1;&#x1f3fb;&#x200d;&#x1faf2;&#x1f3fc;', '&#x1faf1;&#x1f3fb;&#x200d;&#x1faf2;&#x1f3fd;', '&#x1faf1;&#x1f3fb;&#x200d;&#x1faf2;&#x1f3fe;', '&#x1faf1;&#x1f3fb;&#x200d;&#x1faf2;&#x1f3ff;', '&#x1faf1;&#x1f3fc;&#x200d;&#x1faf2;&#x1f3fb;', '&#x1faf1;&#x1f3fc;&#x200d;&#x1faf2;&#x1f3fd;', '&#x1faf1;&#x1f3fc;&#x200d;&#x1faf2;&#x1f3fe;', '&#x1faf1;&#x1f3fc;&#x200d;&#x1faf2;&#x1f3ff;', '&#x1faf1;&#x1f3fd;&#x200d;&#x1faf2;&#x1f3fb;', '&#x1faf1;&#x1f3fd;&#x200d;&#x1faf2;&#x1f3fc;', '&#x1faf1;&#x1f3fd;&#x200d;&#x1faf2;&#x1f3fe;', '&#x1faf1;&#x1f3fd;&#x200d;&#x1faf2;&#x1f3ff;', '&#x1faf1;&#x1f3fe;&#x200d;&#x1faf2;&#x1f3fb;', '&#x1faf1;&#x1f3fe;&#x200d;&#x1faf2;&#x1f3fc;', '&#x1faf1;&#x1f3fe;&#x200d;&#x1faf2;&#x1f3fd;', '&#x1faf1;&#x1f3fe;&#x200d;&#x1faf2;&#x1f3ff;', '&#x1faf1;&#x1f3ff;&#x200d;&#x1faf2;&#x1f3fb;', '&#x1faf1;&#x1f3ff;&#x200d;&#x1faf2;&#x1f3fc;', '&#x1faf1;&#x1f3ff;&#x200d;&#x1faf2;&#x1f3fd;', '&#x1faf1;&#x1f3ff;&#x200d;&#x1faf2;&#x1f3fe;', '&#x1f468;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;', '&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;', '&#x1f9d1;&#x200d;&#x1f91d;&#x200d;&#x1f9d1;', '&#x1f9d1;&#x200d;&#x1f9d1;&#x200d;&#x1f9d2;', '&#x1f9d1;&#x200d;&#x1f9d2;&#x200d;&#x1f9d2;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;', '&#x1f46e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f470;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f470;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f470;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f470;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f470;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f470;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f470;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f470;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f470;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f470;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x27a1;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x27a1;&#xfe0f;', '&#x1f926;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cd;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cd;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cd;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cd;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cd;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cd;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cd;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cd;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cd;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cd;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9ce;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x1f3fb;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9ce;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x1f3fc;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9ce;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x1f3fd;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9ce;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x1f3fe;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9ce;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9ce;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x1f3ff;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9cf;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cf;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cf;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cf;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cf;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cf;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cf;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cf;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cf;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cf;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x1f3f3;&#xfe0f;&#x200d;&#x26a7;&#xfe0f;', '&#x1f574;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f37c;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f384;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9af;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9bc;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9bd;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f37c;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f384;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9af;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9bc;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9bd;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f37c;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f384;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9af;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9bc;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9bd;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f37c;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f384;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9af;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9bc;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9bd;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f373;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f37c;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f384;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f393;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f527;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f680;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f692;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9af;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9bc;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9bd;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f37c;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f384;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9af;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9bc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9bd;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f37c;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f384;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9af;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9bc;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9bd;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f37c;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f384;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9af;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9bc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9bd;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f37c;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f384;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9af;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9bc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9bd;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f373;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f37c;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f384;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f393;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f527;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f680;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f692;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9af;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9bc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f33e;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f373;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f37c;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f384;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f393;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f3a4;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f3a8;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f3eb;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f3ed;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f4bb;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f4bc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f527;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f52c;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f680;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f692;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9af;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9b0;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9b1;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9b2;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9b3;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9bc;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x1f3fb;&#x200d;&#x1fa70;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f33e;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f373;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f37c;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f384;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f393;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f3a4;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f3a8;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f3eb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f3ed;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f4bb;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f4bc;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f527;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f52c;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f680;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f692;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9af;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9b0;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9b1;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9b2;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9b3;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9bc;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x1f3fc;&#x200d;&#x1fa70;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f33e;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f373;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f37c;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f384;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f393;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f3a4;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f3a8;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f3eb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f3ed;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f4bb;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f4bc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f527;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f52c;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f680;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f692;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9af;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9b0;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9b1;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9b2;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9b3;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9bc;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x1f3fd;&#x200d;&#x1fa70;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f33e;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f373;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f37c;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f384;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f393;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f3a4;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f3a8;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f3eb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f3ed;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f4bb;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f4bc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f527;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f52c;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f680;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f692;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9af;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9b0;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9b1;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9b2;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9b3;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9bc;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x1f3fe;&#x200d;&#x1fa70;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f33e;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f373;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f37c;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f384;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f393;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f3a4;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f3a8;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f3eb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f3ed;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f4bb;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f4bc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f527;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f52c;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f680;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f692;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9af;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9b0;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9b1;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9b2;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9b3;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9bc;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x1f3ff;&#x200d;&#x1fa70;', '&#x1f3f3;&#xfe0f;&#x200d;&#x1f308;', '&#x1f636;&#x200d;&#x1f32b;&#xfe0f;', '&#x1f3c3;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x200d;&#x27a1;&#xfe0f;', '&#x1f3c4;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x200d;&#x2642;&#xfe0f;', '&#x1f3f4;&#x200d;&#x2620;&#xfe0f;', '&#x1f43b;&#x200d;&#x2744;&#xfe0f;', '&#x1f468;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x200d;&#x2708;&#xfe0f;', '&#x1f469;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x200d;&#x2708;&#xfe0f;', '&#x1f46e;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x200d;&#x2642;&#xfe0f;', '&#x1f470;&#x200d;&#x2640;&#xfe0f;', '&#x1f470;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x200d;&#x2642;&#xfe0f;', '&#x1f642;&#x200d;&#x2194;&#xfe0f;', '&#x1f642;&#x200d;&#x2195;&#xfe0f;', '&#x1f645;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x200d;&#x27a1;&#xfe0f;', '&#x1f926;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x200d;&#x2642;&#xfe0f;', '&#x1f9cd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x200d;&#x2640;&#xfe0f;', '&#x1f9ce;&#x200d;&#x2642;&#xfe0f;', '&#x1f9ce;&#x200d;&#x27a1;&#xfe0f;', '&#x1f9cf;&#x200d;&#x2640;&#xfe0f;', '&#x1f9cf;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d1;&#x200d;&#x2695;&#xfe0f;', '&#x1f9d1;&#x200d;&#x2696;&#xfe0f;', '&#x1f9d1;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d4;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d4;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9de;&#x200d;&#x2640;&#xfe0f;', '&#x1f9de;&#x200d;&#x2642;&#xfe0f;', '&#x1f9df;&#x200d;&#x2640;&#xfe0f;', '&#x1f9df;&#x200d;&#x2642;&#xfe0f;', '&#x26d3;&#xfe0f;&#x200d;&#x1f4a5;', '&#x2764;&#xfe0f;&#x200d;&#x1f525;', '&#x2764;&#xfe0f;&#x200d;&#x1fa79;', '&#x1f344;&#x200d;&#x1f7eb;', '&#x1f34b;&#x200d;&#x1f7e9;', '&#x1f415;&#x200d;&#x1f9ba;', '&#x1f426;&#x200d;&#x1f525;', '&#x1f441;&#x200d;&#x1f5e8;', '&#x1f468;&#x200d;&#x1f33e;', '&#x1f468;&#x200d;&#x1f373;', '&#x1f468;&#x200d;&#x1f37c;', '&#x1f468;&#x200d;&#x1f384;', '&#x1f468;&#x200d;&#x1f393;', '&#x1f468;&#x200d;&#x1f3a4;', '&#x1f468;&#x200d;&#x1f3a8;', '&#x1f468;&#x200d;&#x1f3eb;', '&#x1f468;&#x200d;&#x1f3ed;', '&#x1f468;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f4bb;', '&#x1f468;&#x200d;&#x1f4bc;', '&#x1f468;&#x200d;&#x1f527;', '&#x1f468;&#x200d;&#x1f52c;', '&#x1f468;&#x200d;&#x1f680;', '&#x1f468;&#x200d;&#x1f692;', '&#x1f468;&#x200d;&#x1f9af;', '&#x1f468;&#x200d;&#x1f9b0;', '&#x1f468;&#x200d;&#x1f9b1;', '&#x1f468;&#x200d;&#x1f9b2;', '&#x1f468;&#x200d;&#x1f9b3;', '&#x1f468;&#x200d;&#x1f9bc;', '&#x1f468;&#x200d;&#x1f9bd;', '&#x1f469;&#x200d;&#x1f33e;', '&#x1f469;&#x200d;&#x1f373;', '&#x1f469;&#x200d;&#x1f37c;', '&#x1f469;&#x200d;&#x1f384;', '&#x1f469;&#x200d;&#x1f393;', '&#x1f469;&#x200d;&#x1f3a4;', '&#x1f469;&#x200d;&#x1f3a8;', '&#x1f469;&#x200d;&#x1f3eb;', '&#x1f469;&#x200d;&#x1f3ed;', '&#x1f469;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f467;', '&#x1f469;&#x200d;&#x1f4bb;', '&#x1f469;&#x200d;&#x1f4bc;', '&#x1f469;&#x200d;&#x1f527;', '&#x1f469;&#x200d;&#x1f52c;', '&#x1f469;&#x200d;&#x1f680;', '&#x1f469;&#x200d;&#x1f692;', '&#x1f469;&#x200d;&#x1f9af;', '&#x1f469;&#x200d;&#x1f9b0;', '&#x1f469;&#x200d;&#x1f9b1;', '&#x1f469;&#x200d;&#x1f9b2;', '&#x1f469;&#x200d;&#x1f9b3;', '&#x1f469;&#x200d;&#x1f9bc;', '&#x1f469;&#x200d;&#x1f9bd;', '&#x1f62e;&#x200d;&#x1f4a8;', '&#x1f635;&#x200d;&#x1f4ab;', '&#x1f9d1;&#x200d;&#x1f33e;', '&#x1f9d1;&#x200d;&#x1f373;', '&#x1f9d1;&#x200d;&#x1f37c;', '&#x1f9d1;&#x200d;&#x1f384;', '&#x1f9d1;&#x200d;&#x1f393;', '&#x1f9d1;&#x200d;&#x1f3a4;', '&#x1f9d1;&#x200d;&#x1f3a8;', '&#x1f9d1;&#x200d;&#x1f3eb;', '&#x1f9d1;&#x200d;&#x1f3ed;', '&#x1f9d1;&#x200d;&#x1f4bb;', '&#x1f9d1;&#x200d;&#x1f4bc;', '&#x1f9d1;&#x200d;&#x1f527;', '&#x1f9d1;&#x200d;&#x1f52c;', '&#x1f9d1;&#x200d;&#x1f680;', '&#x1f9d1;&#x200d;&#x1f692;', '&#x1f9d1;&#x200d;&#x1f9af;', '&#x1f9d1;&#x200d;&#x1f9b0;', '&#x1f9d1;&#x200d;&#x1f9b1;', '&#x1f9d1;&#x200d;&#x1f9b2;', '&#x1f9d1;&#x200d;&#x1f9b3;', '&#x1f9d1;&#x200d;&#x1f9bc;', '&#x1f9d1;&#x200d;&#x1f9bd;', '&#x1f9d1;&#x200d;&#x1f9d2;', '&#x1f9d1;&#x200d;&#x1fa70;', '&#x1f408;&#x200d;&#x2b1b;', '&#x1f426;&#x200d;&#x2b1b;', '&#x1f1e6;&#x1f1e8;', '&#x1f1e6;&#x1f1e9;', '&#x1f1e6;&#x1f1ea;', '&#x1f1e6;&#x1f1eb;', '&#x1f1e6;&#x1f1ec;', '&#x1f1e6;&#x1f1ee;', '&#x1f1e6;&#x1f1f1;', '&#x1f1e6;&#x1f1f2;', '&#x1f1e6;&#x1f1f4;', '&#x1f1e6;&#x1f1f6;', '&#x1f1e6;&#x1f1f7;', '&#x1f1e6;&#x1f1f8;', '&#x1f1e6;&#x1f1f9;', '&#x1f1e6;&#x1f1fa;', '&#x1f1e6;&#x1f1fc;', '&#x1f1e6;&#x1f1fd;', '&#x1f1e6;&#x1f1ff;', '&#x1f1e7;&#x1f1e6;', '&#x1f1e7;&#x1f1e7;', '&#x1f1e7;&#x1f1e9;', '&#x1f1e7;&#x1f1ea;', '&#x1f1e7;&#x1f1eb;', '&#x1f1e7;&#x1f1ec;', '&#x1f1e7;&#x1f1ed;', '&#x1f1e7;&#x1f1ee;', '&#x1f1e7;&#x1f1ef;', '&#x1f1e7;&#x1f1f1;', '&#x1f1e7;&#x1f1f2;', '&#x1f1e7;&#x1f1f3;', '&#x1f1e7;&#x1f1f4;', '&#x1f1e7;&#x1f1f6;', '&#x1f1e7;&#x1f1f7;', '&#x1f1e7;&#x1f1f8;', '&#x1f1e7;&#x1f1f9;', '&#x1f1e7;&#x1f1fb;', '&#x1f1e7;&#x1f1fc;', '&#x1f1e7;&#x1f1fe;', '&#x1f1e7;&#x1f1ff;', '&#x1f1e8;&#x1f1e6;', '&#x1f1e8;&#x1f1e8;', '&#x1f1e8;&#x1f1e9;', '&#x1f1e8;&#x1f1eb;', '&#x1f1e8;&#x1f1ec;', '&#x1f1e8;&#x1f1ed;', '&#x1f1e8;&#x1f1ee;', '&#x1f1e8;&#x1f1f0;', '&#x1f1e8;&#x1f1f1;', '&#x1f1e8;&#x1f1f2;', '&#x1f1e8;&#x1f1f3;', '&#x1f1e8;&#x1f1f4;', '&#x1f1e8;&#x1f1f5;', '&#x1f1e8;&#x1f1f6;', '&#x1f1e8;&#x1f1f7;', '&#x1f1e8;&#x1f1fa;', '&#x1f1e8;&#x1f1fb;', '&#x1f1e8;&#x1f1fc;', '&#x1f1e8;&#x1f1fd;', '&#x1f1e8;&#x1f1fe;', '&#x1f1e8;&#x1f1ff;', '&#x1f1e9;&#x1f1ea;', '&#x1f1e9;&#x1f1ec;', '&#x1f1e9;&#x1f1ef;', '&#x1f1e9;&#x1f1f0;', '&#x1f1e9;&#x1f1f2;', '&#x1f1e9;&#x1f1f4;', '&#x1f1e9;&#x1f1ff;', '&#x1f1ea;&#x1f1e6;', '&#x1f1ea;&#x1f1e8;', '&#x1f1ea;&#x1f1ea;', '&#x1f1ea;&#x1f1ec;', '&#x1f1ea;&#x1f1ed;', '&#x1f1ea;&#x1f1f7;', '&#x1f1ea;&#x1f1f8;', '&#x1f1ea;&#x1f1f9;', '&#x1f1ea;&#x1f1fa;', '&#x1f1eb;&#x1f1ee;', '&#x1f1eb;&#x1f1ef;', '&#x1f1eb;&#x1f1f0;', '&#x1f1eb;&#x1f1f2;', '&#x1f1eb;&#x1f1f4;', '&#x1f1eb;&#x1f1f7;', '&#x1f1ec;&#x1f1e6;', '&#x1f1ec;&#x1f1e7;', '&#x1f1ec;&#x1f1e9;', '&#x1f1ec;&#x1f1ea;', '&#x1f1ec;&#x1f1eb;', '&#x1f1ec;&#x1f1ec;', '&#x1f1ec;&#x1f1ed;', '&#x1f1ec;&#x1f1ee;', '&#x1f1ec;&#x1f1f1;', '&#x1f1ec;&#x1f1f2;', '&#x1f1ec;&#x1f1f3;', '&#x1f1ec;&#x1f1f5;', '&#x1f1ec;&#x1f1f6;', '&#x1f1ec;&#x1f1f7;', '&#x1f1ec;&#x1f1f8;', '&#x1f1ec;&#x1f1f9;', '&#x1f1ec;&#x1f1fa;', '&#x1f1ec;&#x1f1fc;', '&#x1f1ec;&#x1f1fe;', '&#x1f1ed;&#x1f1f0;', '&#x1f1ed;&#x1f1f2;', '&#x1f1ed;&#x1f1f3;', '&#x1f1ed;&#x1f1f7;', '&#x1f1ed;&#x1f1f9;', '&#x1f1ed;&#x1f1fa;', '&#x1f1ee;&#x1f1e8;', '&#x1f1ee;&#x1f1e9;', '&#x1f1ee;&#x1f1ea;', '&#x1f1ee;&#x1f1f1;', '&#x1f1ee;&#x1f1f2;', '&#x1f1ee;&#x1f1f3;', '&#x1f1ee;&#x1f1f4;', '&#x1f1ee;&#x1f1f6;', '&#x1f1ee;&#x1f1f7;', '&#x1f1ee;&#x1f1f8;', '&#x1f1ee;&#x1f1f9;', '&#x1f1ef;&#x1f1ea;', '&#x1f1ef;&#x1f1f2;', '&#x1f1ef;&#x1f1f4;', '&#x1f1ef;&#x1f1f5;', '&#x1f1f0;&#x1f1ea;', '&#x1f1f0;&#x1f1ec;', '&#x1f1f0;&#x1f1ed;', '&#x1f1f0;&#x1f1ee;', '&#x1f1f0;&#x1f1f2;', '&#x1f1f0;&#x1f1f3;', '&#x1f1f0;&#x1f1f5;', '&#x1f1f0;&#x1f1f7;', '&#x1f1f0;&#x1f1fc;', '&#x1f1f0;&#x1f1fe;', '&#x1f1f0;&#x1f1ff;', '&#x1f1f1;&#x1f1e6;', '&#x1f1f1;&#x1f1e7;', '&#x1f1f1;&#x1f1e8;', '&#x1f1f1;&#x1f1ee;', '&#x1f1f1;&#x1f1f0;', '&#x1f1f1;&#x1f1f7;', '&#x1f1f1;&#x1f1f8;', '&#x1f1f1;&#x1f1f9;', '&#x1f1f1;&#x1f1fa;', '&#x1f1f1;&#x1f1fb;', '&#x1f1f1;&#x1f1fe;', '&#x1f1f2;&#x1f1e6;', '&#x1f1f2;&#x1f1e8;', '&#x1f1f2;&#x1f1e9;', '&#x1f1f2;&#x1f1ea;', '&#x1f1f2;&#x1f1eb;', '&#x1f1f2;&#x1f1ec;', '&#x1f1f2;&#x1f1ed;', '&#x1f1f2;&#x1f1f0;', '&#x1f1f2;&#x1f1f1;', '&#x1f1f2;&#x1f1f2;', '&#x1f1f2;&#x1f1f3;', '&#x1f1f2;&#x1f1f4;', '&#x1f1f2;&#x1f1f5;', '&#x1f1f2;&#x1f1f6;', '&#x1f1f2;&#x1f1f7;', '&#x1f1f2;&#x1f1f8;', '&#x1f1f2;&#x1f1f9;', '&#x1f1f2;&#x1f1fa;', '&#x1f1f2;&#x1f1fb;', '&#x1f1f2;&#x1f1fc;', '&#x1f1f2;&#x1f1fd;', '&#x1f1f2;&#x1f1fe;', '&#x1f1f2;&#x1f1ff;', '&#x1f1f3;&#x1f1e6;', '&#x1f1f3;&#x1f1e8;', '&#x1f1f3;&#x1f1ea;', '&#x1f1f3;&#x1f1eb;', '&#x1f1f3;&#x1f1ec;', '&#x1f1f3;&#x1f1ee;', '&#x1f1f3;&#x1f1f1;', '&#x1f1f3;&#x1f1f4;', '&#x1f1f3;&#x1f1f5;', '&#x1f1f3;&#x1f1f7;', '&#x1f1f3;&#x1f1fa;', '&#x1f1f3;&#x1f1ff;', '&#x1f1f4;&#x1f1f2;', '&#x1f1f5;&#x1f1e6;', '&#x1f1f5;&#x1f1ea;', '&#x1f1f5;&#x1f1eb;', '&#x1f1f5;&#x1f1ec;', '&#x1f1f5;&#x1f1ed;', '&#x1f1f5;&#x1f1f0;', '&#x1f1f5;&#x1f1f1;', '&#x1f1f5;&#x1f1f2;', '&#x1f1f5;&#x1f1f3;', '&#x1f1f5;&#x1f1f7;', '&#x1f1f5;&#x1f1f8;', '&#x1f1f5;&#x1f1f9;', '&#x1f1f5;&#x1f1fc;', '&#x1f1f5;&#x1f1fe;', '&#x1f1f6;&#x1f1e6;', '&#x1f1f7;&#x1f1ea;', '&#x1f1f7;&#x1f1f4;', '&#x1f1f7;&#x1f1f8;', '&#x1f1f7;&#x1f1fa;', '&#x1f1f7;&#x1f1fc;', '&#x1f1f8;&#x1f1e6;', '&#x1f1f8;&#x1f1e7;', '&#x1f1f8;&#x1f1e8;', '&#x1f1f8;&#x1f1e9;', '&#x1f1f8;&#x1f1ea;', '&#x1f1f8;&#x1f1ec;', '&#x1f1f8;&#x1f1ed;', '&#x1f1f8;&#x1f1ee;', '&#x1f1f8;&#x1f1ef;', '&#x1f1f8;&#x1f1f0;', '&#x1f1f8;&#x1f1f1;', '&#x1f1f8;&#x1f1f2;', '&#x1f1f8;&#x1f1f3;', '&#x1f1f8;&#x1f1f4;', '&#x1f1f8;&#x1f1f7;', '&#x1f1f8;&#x1f1f8;', '&#x1f1f8;&#x1f1f9;', '&#x1f1f8;&#x1f1fb;', '&#x1f1f8;&#x1f1fd;', '&#x1f1f8;&#x1f1fe;', '&#x1f1f8;&#x1f1ff;', '&#x1f1f9;&#x1f1e6;', '&#x1f1f9;&#x1f1e8;', '&#x1f1f9;&#x1f1e9;', '&#x1f1f9;&#x1f1eb;', '&#x1f1f9;&#x1f1ec;', '&#x1f1f9;&#x1f1ed;', '&#x1f1f9;&#x1f1ef;', '&#x1f1f9;&#x1f1f0;', '&#x1f1f9;&#x1f1f1;', '&#x1f1f9;&#x1f1f2;', '&#x1f1f9;&#x1f1f3;', '&#x1f1f9;&#x1f1f4;', '&#x1f1f9;&#x1f1f7;', '&#x1f1f9;&#x1f1f9;', '&#x1f1f9;&#x1f1fb;', '&#x1f1f9;&#x1f1fc;', '&#x1f1f9;&#x1f1ff;', '&#x1f1fa;&#x1f1e6;', '&#x1f1fa;&#x1f1ec;', '&#x1f1fa;&#x1f1f2;', '&#x1f1fa;&#x1f1f3;', '&#x1f1fa;&#x1f1f8;', '&#x1f1fa;&#x1f1fe;', '&#x1f1fa;&#x1f1ff;', '&#x1f1fb;&#x1f1e6;', '&#x1f1fb;&#x1f1e8;', '&#x1f1fb;&#x1f1ea;', '&#x1f1fb;&#x1f1ec;', '&#x1f1fb;&#x1f1ee;', '&#x1f1fb;&#x1f1f3;', '&#x1f1fb;&#x1f1fa;', '&#x1f1fc;&#x1f1eb;', '&#x1f1fc;&#x1f1f8;', '&#x1f1fd;&#x1f1f0;', '&#x1f1fe;&#x1f1ea;', '&#x1f1fe;&#x1f1f9;', '&#x1f1ff;&#x1f1e6;', '&#x1f1ff;&#x1f1f2;', '&#x1f1ff;&#x1f1fc;', '&#x1f385;&#x1f3fb;', '&#x1f385;&#x1f3fc;', '&#x1f385;&#x1f3fd;', '&#x1f385;&#x1f3fe;', '&#x1f385;&#x1f3ff;', '&#x1f3c2;&#x1f3fb;', '&#x1f3c2;&#x1f3fc;', '&#x1f3c2;&#x1f3fd;', '&#x1f3c2;&#x1f3fe;', '&#x1f3c2;&#x1f3ff;', '&#x1f3c3;&#x1f3fb;', '&#x1f3c3;&#x1f3fc;', '&#x1f3c3;&#x1f3fd;', '&#x1f3c3;&#x1f3fe;', '&#x1f3c3;&#x1f3ff;', '&#x1f3c4;&#x1f3fb;', '&#x1f3c4;&#x1f3fc;', '&#x1f3c4;&#x1f3fd;', '&#x1f3c4;&#x1f3fe;', '&#x1f3c4;&#x1f3ff;', '&#x1f3c7;&#x1f3fb;', '&#x1f3c7;&#x1f3fc;', '&#x1f3c7;&#x1f3fd;', '&#x1f3c7;&#x1f3fe;', '&#x1f3c7;&#x1f3ff;', '&#x1f3ca;&#x1f3fb;', '&#x1f3ca;&#x1f3fc;', '&#x1f3ca;&#x1f3fd;', '&#x1f3ca;&#x1f3fe;', '&#x1f3ca;&#x1f3ff;', '&#x1f3cb;&#x1f3fb;', '&#x1f3cb;&#x1f3fc;', '&#x1f3cb;&#x1f3fd;', '&#x1f3cb;&#x1f3fe;', '&#x1f3cb;&#x1f3ff;', '&#x1f3cc;&#x1f3fb;', '&#x1f3cc;&#x1f3fc;', '&#x1f3cc;&#x1f3fd;', '&#x1f3cc;&#x1f3fe;', '&#x1f3cc;&#x1f3ff;', '&#x1f442;&#x1f3fb;', '&#x1f442;&#x1f3fc;', '&#x1f442;&#x1f3fd;', '&#x1f442;&#x1f3fe;', '&#x1f442;&#x1f3ff;', '&#x1f443;&#x1f3fb;', '&#x1f443;&#x1f3fc;', '&#x1f443;&#x1f3fd;', '&#x1f443;&#x1f3fe;', '&#x1f443;&#x1f3ff;', '&#x1f446;&#x1f3fb;', '&#x1f446;&#x1f3fc;', '&#x1f446;&#x1f3fd;', '&#x1f446;&#x1f3fe;', '&#x1f446;&#x1f3ff;', '&#x1f447;&#x1f3fb;', '&#x1f447;&#x1f3fc;', '&#x1f447;&#x1f3fd;', '&#x1f447;&#x1f3fe;', '&#x1f447;&#x1f3ff;', '&#x1f448;&#x1f3fb;', '&#x1f448;&#x1f3fc;', '&#x1f448;&#x1f3fd;', '&#x1f448;&#x1f3fe;', '&#x1f448;&#x1f3ff;', '&#x1f449;&#x1f3fb;', '&#x1f449;&#x1f3fc;', '&#x1f449;&#x1f3fd;', '&#x1f449;&#x1f3fe;', '&#x1f449;&#x1f3ff;', '&#x1f44a;&#x1f3fb;', '&#x1f44a;&#x1f3fc;', '&#x1f44a;&#x1f3fd;', '&#x1f44a;&#x1f3fe;', '&#x1f44a;&#x1f3ff;', '&#x1f44b;&#x1f3fb;', '&#x1f44b;&#x1f3fc;', '&#x1f44b;&#x1f3fd;', '&#x1f44b;&#x1f3fe;', '&#x1f44b;&#x1f3ff;', '&#x1f44c;&#x1f3fb;', '&#x1f44c;&#x1f3fc;', '&#x1f44c;&#x1f3fd;', '&#x1f44c;&#x1f3fe;', '&#x1f44c;&#x1f3ff;', '&#x1f44d;&#x1f3fb;', '&#x1f44d;&#x1f3fc;', '&#x1f44d;&#x1f3fd;', '&#x1f44d;&#x1f3fe;', '&#x1f44d;&#x1f3ff;', '&#x1f44e;&#x1f3fb;', '&#x1f44e;&#x1f3fc;', '&#x1f44e;&#x1f3fd;', '&#x1f44e;&#x1f3fe;', '&#x1f44e;&#x1f3ff;', '&#x1f44f;&#x1f3fb;', '&#x1f44f;&#x1f3fc;', '&#x1f44f;&#x1f3fd;', '&#x1f44f;&#x1f3fe;', '&#x1f44f;&#x1f3ff;', '&#x1f450;&#x1f3fb;', '&#x1f450;&#x1f3fc;', '&#x1f450;&#x1f3fd;', '&#x1f450;&#x1f3fe;', '&#x1f450;&#x1f3ff;', '&#x1f466;&#x1f3fb;', '&#x1f466;&#x1f3fc;', '&#x1f466;&#x1f3fd;', '&#x1f466;&#x1f3fe;', '&#x1f466;&#x1f3ff;', '&#x1f467;&#x1f3fb;', '&#x1f467;&#x1f3fc;', '&#x1f467;&#x1f3fd;', '&#x1f467;&#x1f3fe;', '&#x1f467;&#x1f3ff;', '&#x1f468;&#x1f3fb;', '&#x1f468;&#x1f3fc;', '&#x1f468;&#x1f3fd;', '&#x1f468;&#x1f3fe;', '&#x1f468;&#x1f3ff;', '&#x1f469;&#x1f3fb;', '&#x1f469;&#x1f3fc;', '&#x1f469;&#x1f3fd;', '&#x1f469;&#x1f3fe;', '&#x1f469;&#x1f3ff;', '&#x1f46b;&#x1f3fb;', '&#x1f46b;&#x1f3fc;', '&#x1f46b;&#x1f3fd;', '&#x1f46b;&#x1f3fe;', '&#x1f46b;&#x1f3ff;', '&#x1f46c;&#x1f3fb;', '&#x1f46c;&#x1f3fc;', '&#x1f46c;&#x1f3fd;', '&#x1f46c;&#x1f3fe;', '&#x1f46c;&#x1f3ff;', '&#x1f46d;&#x1f3fb;', '&#x1f46d;&#x1f3fc;', '&#x1f46d;&#x1f3fd;', '&#x1f46d;&#x1f3fe;', '&#x1f46d;&#x1f3ff;', '&#x1f46e;&#x1f3fb;', '&#x1f46e;&#x1f3fc;', '&#x1f46e;&#x1f3fd;', '&#x1f46e;&#x1f3fe;', '&#x1f46e;&#x1f3ff;', '&#x1f46f;&#x1f3fb;', '&#x1f46f;&#x1f3fc;', '&#x1f46f;&#x1f3fd;', '&#x1f46f;&#x1f3fe;', '&#x1f46f;&#x1f3ff;', '&#x1f470;&#x1f3fb;', '&#x1f470;&#x1f3fc;', '&#x1f470;&#x1f3fd;', '&#x1f470;&#x1f3fe;', '&#x1f470;&#x1f3ff;', '&#x1f471;&#x1f3fb;', '&#x1f471;&#x1f3fc;', '&#x1f471;&#x1f3fd;', '&#x1f471;&#x1f3fe;', '&#x1f471;&#x1f3ff;', '&#x1f472;&#x1f3fb;', '&#x1f472;&#x1f3fc;', '&#x1f472;&#x1f3fd;', '&#x1f472;&#x1f3fe;', '&#x1f472;&#x1f3ff;', '&#x1f473;&#x1f3fb;', '&#x1f473;&#x1f3fc;', '&#x1f473;&#x1f3fd;', '&#x1f473;&#x1f3fe;', '&#x1f473;&#x1f3ff;', '&#x1f474;&#x1f3fb;', '&#x1f474;&#x1f3fc;', '&#x1f474;&#x1f3fd;', '&#x1f474;&#x1f3fe;', '&#x1f474;&#x1f3ff;', '&#x1f475;&#x1f3fb;', '&#x1f475;&#x1f3fc;', '&#x1f475;&#x1f3fd;', '&#x1f475;&#x1f3fe;', '&#x1f475;&#x1f3ff;', '&#x1f476;&#x1f3fb;', '&#x1f476;&#x1f3fc;', '&#x1f476;&#x1f3fd;', '&#x1f476;&#x1f3fe;', '&#x1f476;&#x1f3ff;', '&#x1f477;&#x1f3fb;', '&#x1f477;&#x1f3fc;', '&#x1f477;&#x1f3fd;', '&#x1f477;&#x1f3fe;', '&#x1f477;&#x1f3ff;', '&#x1f478;&#x1f3fb;', '&#x1f478;&#x1f3fc;', '&#x1f478;&#x1f3fd;', '&#x1f478;&#x1f3fe;', '&#x1f478;&#x1f3ff;', '&#x1f47c;&#x1f3fb;', '&#x1f47c;&#x1f3fc;', '&#x1f47c;&#x1f3fd;', '&#x1f47c;&#x1f3fe;', '&#x1f47c;&#x1f3ff;', '&#x1f481;&#x1f3fb;', '&#x1f481;&#x1f3fc;', '&#x1f481;&#x1f3fd;', '&#x1f481;&#x1f3fe;', '&#x1f481;&#x1f3ff;', '&#x1f482;&#x1f3fb;', '&#x1f482;&#x1f3fc;', '&#x1f482;&#x1f3fd;', '&#x1f482;&#x1f3fe;', '&#x1f482;&#x1f3ff;', '&#x1f483;&#x1f3fb;', '&#x1f483;&#x1f3fc;', '&#x1f483;&#x1f3fd;', '&#x1f483;&#x1f3fe;', '&#x1f483;&#x1f3ff;', '&#x1f485;&#x1f3fb;', '&#x1f485;&#x1f3fc;', '&#x1f485;&#x1f3fd;', '&#x1f485;&#x1f3fe;', '&#x1f485;&#x1f3ff;', '&#x1f486;&#x1f3fb;', '&#x1f486;&#x1f3fc;', '&#x1f486;&#x1f3fd;', '&#x1f486;&#x1f3fe;', '&#x1f486;&#x1f3ff;', '&#x1f487;&#x1f3fb;', '&#x1f487;&#x1f3fc;', '&#x1f487;&#x1f3fd;', '&#x1f487;&#x1f3fe;', '&#x1f487;&#x1f3ff;', '&#x1f48f;&#x1f3fb;', '&#x1f48f;&#x1f3fc;', '&#x1f48f;&#x1f3fd;', '&#x1f48f;&#x1f3fe;', '&#x1f48f;&#x1f3ff;', '&#x1f491;&#x1f3fb;', '&#x1f491;&#x1f3fc;', '&#x1f491;&#x1f3fd;', '&#x1f491;&#x1f3fe;', '&#x1f491;&#x1f3ff;', '&#x1f4aa;&#x1f3fb;', '&#x1f4aa;&#x1f3fc;', '&#x1f4aa;&#x1f3fd;', '&#x1f4aa;&#x1f3fe;', '&#x1f4aa;&#x1f3ff;', '&#x1f574;&#x1f3fb;', '&#x1f574;&#x1f3fc;', '&#x1f574;&#x1f3fd;', '&#x1f574;&#x1f3fe;', '&#x1f574;&#x1f3ff;', '&#x1f575;&#x1f3fb;', '&#x1f575;&#x1f3fc;', '&#x1f575;&#x1f3fd;', '&#x1f575;&#x1f3fe;', '&#x1f575;&#x1f3ff;', '&#x1f57a;&#x1f3fb;', '&#x1f57a;&#x1f3fc;', '&#x1f57a;&#x1f3fd;', '&#x1f57a;&#x1f3fe;', '&#x1f57a;&#x1f3ff;', '&#x1f590;&#x1f3fb;', '&#x1f590;&#x1f3fc;', '&#x1f590;&#x1f3fd;', '&#x1f590;&#x1f3fe;', '&#x1f590;&#x1f3ff;', '&#x1f595;&#x1f3fb;', '&#x1f595;&#x1f3fc;', '&#x1f595;&#x1f3fd;', '&#x1f595;&#x1f3fe;', '&#x1f595;&#x1f3ff;', '&#x1f596;&#x1f3fb;', '&#x1f596;&#x1f3fc;', '&#x1f596;&#x1f3fd;', '&#x1f596;&#x1f3fe;', '&#x1f596;&#x1f3ff;', '&#x1f645;&#x1f3fb;', '&#x1f645;&#x1f3fc;', '&#x1f645;&#x1f3fd;', '&#x1f645;&#x1f3fe;', '&#x1f645;&#x1f3ff;', '&#x1f646;&#x1f3fb;', '&#x1f646;&#x1f3fc;', '&#x1f646;&#x1f3fd;', '&#x1f646;&#x1f3fe;', '&#x1f646;&#x1f3ff;', '&#x1f647;&#x1f3fb;', '&#x1f647;&#x1f3fc;', '&#x1f647;&#x1f3fd;', '&#x1f647;&#x1f3fe;', '&#x1f647;&#x1f3ff;', '&#x1f64b;&#x1f3fb;', '&#x1f64b;&#x1f3fc;', '&#x1f64b;&#x1f3fd;', '&#x1f64b;&#x1f3fe;', '&#x1f64b;&#x1f3ff;', '&#x1f64c;&#x1f3fb;', '&#x1f64c;&#x1f3fc;', '&#x1f64c;&#x1f3fd;', '&#x1f64c;&#x1f3fe;', '&#x1f64c;&#x1f3ff;', '&#x1f64d;&#x1f3fb;', '&#x1f64d;&#x1f3fc;', '&#x1f64d;&#x1f3fd;', '&#x1f64d;&#x1f3fe;', '&#x1f64d;&#x1f3ff;', '&#x1f64e;&#x1f3fb;', '&#x1f64e;&#x1f3fc;', '&#x1f64e;&#x1f3fd;', '&#x1f64e;&#x1f3fe;', '&#x1f64e;&#x1f3ff;', '&#x1f64f;&#x1f3fb;', '&#x1f64f;&#x1f3fc;', '&#x1f64f;&#x1f3fd;', '&#x1f64f;&#x1f3fe;', '&#x1f64f;&#x1f3ff;', '&#x1f6a3;&#x1f3fb;', '&#x1f6a3;&#x1f3fc;', '&#x1f6a3;&#x1f3fd;', '&#x1f6a3;&#x1f3fe;', '&#x1f6a3;&#x1f3ff;', '&#x1f6b4;&#x1f3fb;', '&#x1f6b4;&#x1f3fc;', '&#x1f6b4;&#x1f3fd;', '&#x1f6b4;&#x1f3fe;', '&#x1f6b4;&#x1f3ff;', '&#x1f6b5;&#x1f3fb;', '&#x1f6b5;&#x1f3fc;', '&#x1f6b5;&#x1f3fd;', '&#x1f6b5;&#x1f3fe;', '&#x1f6b5;&#x1f3ff;', '&#x1f6b6;&#x1f3fb;', '&#x1f6b6;&#x1f3fc;', '&#x1f6b6;&#x1f3fd;', '&#x1f6b6;&#x1f3fe;', '&#x1f6b6;&#x1f3ff;', '&#x1f6c0;&#x1f3fb;', '&#x1f6c0;&#x1f3fc;', '&#x1f6c0;&#x1f3fd;', '&#x1f6c0;&#x1f3fe;', '&#x1f6c0;&#x1f3ff;', '&#x1f6cc;&#x1f3fb;', '&#x1f6cc;&#x1f3fc;', '&#x1f6cc;&#x1f3fd;', '&#x1f6cc;&#x1f3fe;', '&#x1f6cc;&#x1f3ff;', '&#x1f90c;&#x1f3fb;', '&#x1f90c;&#x1f3fc;', '&#x1f90c;&#x1f3fd;', '&#x1f90c;&#x1f3fe;', '&#x1f90c;&#x1f3ff;', '&#x1f90f;&#x1f3fb;', '&#x1f90f;&#x1f3fc;', '&#x1f90f;&#x1f3fd;', '&#x1f90f;&#x1f3fe;', '&#x1f90f;&#x1f3ff;', '&#x1f918;&#x1f3fb;', '&#x1f918;&#x1f3fc;', '&#x1f918;&#x1f3fd;', '&#x1f918;&#x1f3fe;', '&#x1f918;&#x1f3ff;', '&#x1f919;&#x1f3fb;', '&#x1f919;&#x1f3fc;', '&#x1f919;&#x1f3fd;', '&#x1f919;&#x1f3fe;', '&#x1f919;&#x1f3ff;', '&#x1f91a;&#x1f3fb;', '&#x1f91a;&#x1f3fc;', '&#x1f91a;&#x1f3fd;', '&#x1f91a;&#x1f3fe;', '&#x1f91a;&#x1f3ff;', '&#x1f91b;&#x1f3fb;', '&#x1f91b;&#x1f3fc;', '&#x1f91b;&#x1f3fd;', '&#x1f91b;&#x1f3fe;', '&#x1f91b;&#x1f3ff;', '&#x1f91c;&#x1f3fb;', '&#x1f91c;&#x1f3fc;', '&#x1f91c;&#x1f3fd;', '&#x1f91c;&#x1f3fe;', '&#x1f91c;&#x1f3ff;', '&#x1f91d;&#x1f3fb;', '&#x1f91d;&#x1f3fc;', '&#x1f91d;&#x1f3fd;', '&#x1f91d;&#x1f3fe;', '&#x1f91d;&#x1f3ff;', '&#x1f91e;&#x1f3fb;', '&#x1f91e;&#x1f3fc;', '&#x1f91e;&#x1f3fd;', '&#x1f91e;&#x1f3fe;', '&#x1f91e;&#x1f3ff;', '&#x1f91f;&#x1f3fb;', '&#x1f91f;&#x1f3fc;', '&#x1f91f;&#x1f3fd;', '&#x1f91f;&#x1f3fe;', '&#x1f91f;&#x1f3ff;', '&#x1f926;&#x1f3fb;', '&#x1f926;&#x1f3fc;', '&#x1f926;&#x1f3fd;', '&#x1f926;&#x1f3fe;', '&#x1f926;&#x1f3ff;', '&#x1f930;&#x1f3fb;', '&#x1f930;&#x1f3fc;', '&#x1f930;&#x1f3fd;', '&#x1f930;&#x1f3fe;', '&#x1f930;&#x1f3ff;', '&#x1f931;&#x1f3fb;', '&#x1f931;&#x1f3fc;', '&#x1f931;&#x1f3fd;', '&#x1f931;&#x1f3fe;', '&#x1f931;&#x1f3ff;', '&#x1f932;&#x1f3fb;', '&#x1f932;&#x1f3fc;', '&#x1f932;&#x1f3fd;', '&#x1f932;&#x1f3fe;', '&#x1f932;&#x1f3ff;', '&#x1f933;&#x1f3fb;', '&#x1f933;&#x1f3fc;', '&#x1f933;&#x1f3fd;', '&#x1f933;&#x1f3fe;', '&#x1f933;&#x1f3ff;', '&#x1f934;&#x1f3fb;', '&#x1f934;&#x1f3fc;', '&#x1f934;&#x1f3fd;', '&#x1f934;&#x1f3fe;', '&#x1f934;&#x1f3ff;', '&#x1f935;&#x1f3fb;', '&#x1f935;&#x1f3fc;', '&#x1f935;&#x1f3fd;', '&#x1f935;&#x1f3fe;', '&#x1f935;&#x1f3ff;', '&#x1f936;&#x1f3fb;', '&#x1f936;&#x1f3fc;', '&#x1f936;&#x1f3fd;', '&#x1f936;&#x1f3fe;', '&#x1f936;&#x1f3ff;', '&#x1f937;&#x1f3fb;', '&#x1f937;&#x1f3fc;', '&#x1f937;&#x1f3fd;', '&#x1f937;&#x1f3fe;', '&#x1f937;&#x1f3ff;', '&#x1f938;&#x1f3fb;', '&#x1f938;&#x1f3fc;', '&#x1f938;&#x1f3fd;', '&#x1f938;&#x1f3fe;', '&#x1f938;&#x1f3ff;', '&#x1f939;&#x1f3fb;', '&#x1f939;&#x1f3fc;', '&#x1f939;&#x1f3fd;', '&#x1f939;&#x1f3fe;', '&#x1f939;&#x1f3ff;', '&#x1f93c;&#x1f3fb;', '&#x1f93c;&#x1f3fc;', '&#x1f93c;&#x1f3fd;', '&#x1f93c;&#x1f3fe;', '&#x1f93c;&#x1f3ff;', '&#x1f93d;&#x1f3fb;', '&#x1f93d;&#x1f3fc;', '&#x1f93d;&#x1f3fd;', '&#x1f93d;&#x1f3fe;', '&#x1f93d;&#x1f3ff;', '&#x1f93e;&#x1f3fb;', '&#x1f93e;&#x1f3fc;', '&#x1f93e;&#x1f3fd;', '&#x1f93e;&#x1f3fe;', '&#x1f93e;&#x1f3ff;', '&#x1f977;&#x1f3fb;', '&#x1f977;&#x1f3fc;', '&#x1f977;&#x1f3fd;', '&#x1f977;&#x1f3fe;', '&#x1f977;&#x1f3ff;', '&#x1f9b5;&#x1f3fb;', '&#x1f9b5;&#x1f3fc;', '&#x1f9b5;&#x1f3fd;', '&#x1f9b5;&#x1f3fe;', '&#x1f9b5;&#x1f3ff;', '&#x1f9b6;&#x1f3fb;', '&#x1f9b6;&#x1f3fc;', '&#x1f9b6;&#x1f3fd;', '&#x1f9b6;&#x1f3fe;', '&#x1f9b6;&#x1f3ff;', '&#x1f9b8;&#x1f3fb;', '&#x1f9b8;&#x1f3fc;', '&#x1f9b8;&#x1f3fd;', '&#x1f9b8;&#x1f3fe;', '&#x1f9b8;&#x1f3ff;', '&#x1f9b9;&#x1f3fb;', '&#x1f9b9;&#x1f3fc;', '&#x1f9b9;&#x1f3fd;', '&#x1f9b9;&#x1f3fe;', '&#x1f9b9;&#x1f3ff;', '&#x1f9bb;&#x1f3fb;', '&#x1f9bb;&#x1f3fc;', '&#x1f9bb;&#x1f3fd;', '&#x1f9bb;&#x1f3fe;', '&#x1f9bb;&#x1f3ff;', '&#x1f9cd;&#x1f3fb;', '&#x1f9cd;&#x1f3fc;', '&#x1f9cd;&#x1f3fd;', '&#x1f9cd;&#x1f3fe;', '&#x1f9cd;&#x1f3ff;', '&#x1f9ce;&#x1f3fb;', '&#x1f9ce;&#x1f3fc;', '&#x1f9ce;&#x1f3fd;', '&#x1f9ce;&#x1f3fe;', '&#x1f9ce;&#x1f3ff;', '&#x1f9cf;&#x1f3fb;', '&#x1f9cf;&#x1f3fc;', '&#x1f9cf;&#x1f3fd;', '&#x1f9cf;&#x1f3fe;', '&#x1f9cf;&#x1f3ff;', '&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3ff;', '&#x1f9d2;&#x1f3fb;', '&#x1f9d2;&#x1f3fc;', '&#x1f9d2;&#x1f3fd;', '&#x1f9d2;&#x1f3fe;', '&#x1f9d2;&#x1f3ff;', '&#x1f9d3;&#x1f3fb;', '&#x1f9d3;&#x1f3fc;', '&#x1f9d3;&#x1f3fd;', '&#x1f9d3;&#x1f3fe;', '&#x1f9d3;&#x1f3ff;', '&#x1f9d4;&#x1f3fb;', '&#x1f9d4;&#x1f3fc;', '&#x1f9d4;&#x1f3fd;', '&#x1f9d4;&#x1f3fe;', '&#x1f9d4;&#x1f3ff;', '&#x1f9d5;&#x1f3fb;', '&#x1f9d5;&#x1f3fc;', '&#x1f9d5;&#x1f3fd;', '&#x1f9d5;&#x1f3fe;', '&#x1f9d5;&#x1f3ff;', '&#x1f9d6;&#x1f3fb;', '&#x1f9d6;&#x1f3fc;', '&#x1f9d6;&#x1f3fd;', '&#x1f9d6;&#x1f3fe;', '&#x1f9d6;&#x1f3ff;', '&#x1f9d7;&#x1f3fb;', '&#x1f9d7;&#x1f3fc;', '&#x1f9d7;&#x1f3fd;', '&#x1f9d7;&#x1f3fe;', '&#x1f9d7;&#x1f3ff;', '&#x1f9d8;&#x1f3fb;', '&#x1f9d8;&#x1f3fc;', '&#x1f9d8;&#x1f3fd;', '&#x1f9d8;&#x1f3fe;', '&#x1f9d8;&#x1f3ff;', '&#x1f9d9;&#x1f3fb;', '&#x1f9d9;&#x1f3fc;', '&#x1f9d9;&#x1f3fd;', '&#x1f9d9;&#x1f3fe;', '&#x1f9d9;&#x1f3ff;', '&#x1f9da;&#x1f3fb;', '&#x1f9da;&#x1f3fc;', '&#x1f9da;&#x1f3fd;', '&#x1f9da;&#x1f3fe;', '&#x1f9da;&#x1f3ff;', '&#x1f9db;&#x1f3fb;', '&#x1f9db;&#x1f3fc;', '&#x1f9db;&#x1f3fd;', '&#x1f9db;&#x1f3fe;', '&#x1f9db;&#x1f3ff;', '&#x1f9dc;&#x1f3fb;', '&#x1f9dc;&#x1f3fc;', '&#x1f9dc;&#x1f3fd;', '&#x1f9dc;&#x1f3fe;', '&#x1f9dc;&#x1f3ff;', '&#x1f9dd;&#x1f3fb;', '&#x1f9dd;&#x1f3fc;', '&#x1f9dd;&#x1f3fd;', '&#x1f9dd;&#x1f3fe;', '&#x1f9dd;&#x1f3ff;', '&#x1fac3;&#x1f3fb;', '&#x1fac3;&#x1f3fc;', '&#x1fac3;&#x1f3fd;', '&#x1fac3;&#x1f3fe;', '&#x1fac3;&#x1f3ff;', '&#x1fac4;&#x1f3fb;', '&#x1fac4;&#x1f3fc;', '&#x1fac4;&#x1f3fd;', '&#x1fac4;&#x1f3fe;', '&#x1fac4;&#x1f3ff;', '&#x1fac5;&#x1f3fb;', '&#x1fac5;&#x1f3fc;', '&#x1fac5;&#x1f3fd;', '&#x1fac5;&#x1f3fe;', '&#x1fac5;&#x1f3ff;', '&#x1faf0;&#x1f3fb;', '&#x1faf0;&#x1f3fc;', '&#x1faf0;&#x1f3fd;', '&#x1faf0;&#x1f3fe;', '&#x1faf0;&#x1f3ff;', '&#x1faf1;&#x1f3fb;', '&#x1faf1;&#x1f3fc;', '&#x1faf1;&#x1f3fd;', '&#x1faf1;&#x1f3fe;', '&#x1faf1;&#x1f3ff;', '&#x1faf2;&#x1f3fb;', '&#x1faf2;&#x1f3fc;', '&#x1faf2;&#x1f3fd;', '&#x1faf2;&#x1f3fe;', '&#x1faf2;&#x1f3ff;', '&#x1faf3;&#x1f3fb;', '&#x1faf3;&#x1f3fc;', '&#x1faf3;&#x1f3fd;', '&#x1faf3;&#x1f3fe;', '&#x1faf3;&#x1f3ff;', '&#x1faf4;&#x1f3fb;', '&#x1faf4;&#x1f3fc;', '&#x1faf4;&#x1f3fd;', '&#x1faf4;&#x1f3fe;', '&#x1faf4;&#x1f3ff;', '&#x1faf5;&#x1f3fb;', '&#x1faf5;&#x1f3fc;', '&#x1faf5;&#x1f3fd;', '&#x1faf5;&#x1f3fe;', '&#x1faf5;&#x1f3ff;', '&#x1faf6;&#x1f3fb;', '&#x1faf6;&#x1f3fc;', '&#x1faf6;&#x1f3fd;', '&#x1faf6;&#x1f3fe;', '&#x1faf6;&#x1f3ff;', '&#x1faf7;&#x1f3fb;', '&#x1faf7;&#x1f3fc;', '&#x1faf7;&#x1f3fd;', '&#x1faf7;&#x1f3fe;', '&#x1faf7;&#x1f3ff;', '&#x1faf8;&#x1f3fb;', '&#x1faf8;&#x1f3fc;', '&#x1faf8;&#x1f3fd;', '&#x1faf8;&#x1f3fe;', '&#x1faf8;&#x1f3ff;', '&#x261d;&#x1f3fb;', '&#x261d;&#x1f3fc;', '&#x261d;&#x1f3fd;', '&#x261d;&#x1f3fe;', '&#x261d;&#x1f3ff;', '&#x26f7;&#x1f3fb;', '&#x26f7;&#x1f3fc;', '&#x26f7;&#x1f3fd;', '&#x26f7;&#x1f3fe;', '&#x26f7;&#x1f3ff;', '&#x26f9;&#x1f3fb;', '&#x26f9;&#x1f3fc;', '&#x26f9;&#x1f3fd;', '&#x26f9;&#x1f3fe;', '&#x26f9;&#x1f3ff;', '&#x270a;&#x1f3fb;', '&#x270a;&#x1f3fc;', '&#x270a;&#x1f3fd;', '&#x270a;&#x1f3fe;', '&#x270a;&#x1f3ff;', '&#x270b;&#x1f3fb;', '&#x270b;&#x1f3fc;', '&#x270b;&#x1f3fd;', '&#x270b;&#x1f3fe;', '&#x270b;&#x1f3ff;', '&#x270c;&#x1f3fb;', '&#x270c;&#x1f3fc;', '&#x270c;&#x1f3fd;', '&#x270c;&#x1f3fe;', '&#x270c;&#x1f3ff;', '&#x270d;&#x1f3fb;', '&#x270d;&#x1f3fc;', '&#x270d;&#x1f3fd;', '&#x270d;&#x1f3fe;', '&#x270d;&#x1f3ff;', '&#x23;&#x20e3;', '&#x2a;&#x20e3;', '&#x30;&#x20e3;', '&#x31;&#x20e3;', '&#x32;&#x20e3;', '&#x33;&#x20e3;', '&#x34;&#x20e3;', '&#x35;&#x20e3;', '&#x36;&#x20e3;', '&#x37;&#x20e3;', '&#x38;&#x20e3;', '&#x39;&#x20e3;', '&#x1f004;', '&#x1f0cf;', '&#x1f170;', '&#x1f171;', '&#x1f17e;', '&#x1f17f;', '&#x1f18e;', '&#x1f191;', '&#x1f192;', '&#x1f193;', '&#x1f194;', '&#x1f195;', '&#x1f196;', '&#x1f197;', '&#x1f198;', '&#x1f199;', '&#x1f19a;', '&#x1f1e6;', '&#x1f1e7;', '&#x1f1e8;', '&#x1f1e9;', '&#x1f1ea;', '&#x1f1eb;', '&#x1f1ec;', '&#x1f1ed;', '&#x1f1ee;', '&#x1f1ef;', '&#x1f1f0;', '&#x1f1f1;', '&#x1f1f2;', '&#x1f1f3;', '&#x1f1f4;', '&#x1f1f5;', '&#x1f1f6;', '&#x1f1f7;', '&#x1f1f8;', '&#x1f1f9;', '&#x1f1fa;', '&#x1f1fb;', '&#x1f1fc;', '&#x1f1fd;', '&#x1f1fe;', '&#x1f1ff;', '&#x1f201;', '&#x1f202;', '&#x1f21a;', '&#x1f22f;', '&#x1f232;', '&#x1f233;', '&#x1f234;', '&#x1f235;', '&#x1f236;', '&#x1f237;', '&#x1f238;', '&#x1f239;', '&#x1f23a;', '&#x1f250;', '&#x1f251;', '&#x1f300;', '&#x1f301;', '&#x1f302;', '&#x1f303;', '&#x1f304;', '&#x1f305;', '&#x1f306;', '&#x1f307;', '&#x1f308;', '&#x1f309;', '&#x1f30a;', '&#x1f30b;', '&#x1f30c;', '&#x1f30d;', '&#x1f30e;', '&#x1f30f;', '&#x1f310;', '&#x1f311;', '&#x1f312;', '&#x1f313;', '&#x1f314;', '&#x1f315;', '&#x1f316;', '&#x1f317;', '&#x1f318;', '&#x1f319;', '&#x1f31a;', '&#x1f31b;', '&#x1f31c;', '&#x1f31d;', '&#x1f31e;', '&#x1f31f;', '&#x1f320;', '&#x1f321;', '&#x1f324;', '&#x1f325;', '&#x1f326;', '&#x1f327;', '&#x1f328;', '&#x1f329;', '&#x1f32a;', '&#x1f32b;', '&#x1f32c;', '&#x1f32d;', '&#x1f32e;', '&#x1f32f;', '&#x1f330;', '&#x1f331;', '&#x1f332;', '&#x1f333;', '&#x1f334;', '&#x1f335;', '&#x1f336;', '&#x1f337;', '&#x1f338;', '&#x1f339;', '&#x1f33a;', '&#x1f33b;', '&#x1f33c;', '&#x1f33d;', '&#x1f33e;', '&#x1f33f;', '&#x1f340;', '&#x1f341;', '&#x1f342;', '&#x1f343;', '&#x1f344;', '&#x1f345;', '&#x1f346;', '&#x1f347;', '&#x1f348;', '&#x1f349;', '&#x1f34a;', '&#x1f34b;', '&#x1f34c;', '&#x1f34d;', '&#x1f34e;', '&#x1f34f;', '&#x1f350;', '&#x1f351;', '&#x1f352;', '&#x1f353;', '&#x1f354;', '&#x1f355;', '&#x1f356;', '&#x1f357;', '&#x1f358;', '&#x1f359;', '&#x1f35a;', '&#x1f35b;', '&#x1f35c;', '&#x1f35d;', '&#x1f35e;', '&#x1f35f;', '&#x1f360;', '&#x1f361;', '&#x1f362;', '&#x1f363;', '&#x1f364;', '&#x1f365;', '&#x1f366;', '&#x1f367;', '&#x1f368;', '&#x1f369;', '&#x1f36a;', '&#x1f36b;', '&#x1f36c;', '&#x1f36d;', '&#x1f36e;', '&#x1f36f;', '&#x1f370;', '&#x1f371;', '&#x1f372;', '&#x1f373;', '&#x1f374;', '&#x1f375;', '&#x1f376;', '&#x1f377;', '&#x1f378;', '&#x1f379;', '&#x1f37a;', '&#x1f37b;', '&#x1f37c;', '&#x1f37d;', '&#x1f37e;', '&#x1f37f;', '&#x1f380;', '&#x1f381;', '&#x1f382;', '&#x1f383;', '&#x1f384;', '&#x1f385;', '&#x1f386;', '&#x1f387;', '&#x1f388;', '&#x1f389;', '&#x1f38a;', '&#x1f38b;', '&#x1f38c;', '&#x1f38d;', '&#x1f38e;', '&#x1f38f;', '&#x1f390;', '&#x1f391;', '&#x1f392;', '&#x1f393;', '&#x1f396;', '&#x1f397;', '&#x1f399;', '&#x1f39a;', '&#x1f39b;', '&#x1f39e;', '&#x1f39f;', '&#x1f3a0;', '&#x1f3a1;', '&#x1f3a2;', '&#x1f3a3;', '&#x1f3a4;', '&#x1f3a5;', '&#x1f3a6;', '&#x1f3a7;', '&#x1f3a8;', '&#x1f3a9;', '&#x1f3aa;', '&#x1f3ab;', '&#x1f3ac;', '&#x1f3ad;', '&#x1f3ae;', '&#x1f3af;', '&#x1f3b0;', '&#x1f3b1;', '&#x1f3b2;', '&#x1f3b3;', '&#x1f3b4;', '&#x1f3b5;', '&#x1f3b6;', '&#x1f3b7;', '&#x1f3b8;', '&#x1f3b9;', '&#x1f3ba;', '&#x1f3bb;', '&#x1f3bc;', '&#x1f3bd;', '&#x1f3be;', '&#x1f3bf;', '&#x1f3c0;', '&#x1f3c1;', '&#x1f3c2;', '&#x1f3c3;', '&#x1f3c4;', '&#x1f3c5;', '&#x1f3c6;', '&#x1f3c7;', '&#x1f3c8;', '&#x1f3c9;', '&#x1f3ca;', '&#x1f3cb;', '&#x1f3cc;', '&#x1f3cd;', '&#x1f3ce;', '&#x1f3cf;', '&#x1f3d0;', '&#x1f3d1;', '&#x1f3d2;', '&#x1f3d3;', '&#x1f3d4;', '&#x1f3d5;', '&#x1f3d6;', '&#x1f3d7;', '&#x1f3d8;', '&#x1f3d9;', '&#x1f3da;', '&#x1f3db;', '&#x1f3dc;', '&#x1f3dd;', '&#x1f3de;', '&#x1f3df;', '&#x1f3e0;', '&#x1f3e1;', '&#x1f3e2;', '&#x1f3e3;', '&#x1f3e4;', '&#x1f3e5;', '&#x1f3e6;', '&#x1f3e7;', '&#x1f3e8;', '&#x1f3e9;', '&#x1f3ea;', '&#x1f3eb;', '&#x1f3ec;', '&#x1f3ed;', '&#x1f3ee;', '&#x1f3ef;', '&#x1f3f0;', '&#x1f3f3;', '&#x1f3f4;', '&#x1f3f5;', '&#x1f3f7;', '&#x1f3f8;', '&#x1f3f9;', '&#x1f3fa;', '&#x1f3fb;', '&#x1f3fc;', '&#x1f3fd;', '&#x1f3fe;', '&#x1f3ff;', '&#x1f400;', '&#x1f401;', '&#x1f402;', '&#x1f403;', '&#x1f404;', '&#x1f405;', '&#x1f406;', '&#x1f407;', '&#x1f408;', '&#x1f409;', '&#x1f40a;', '&#x1f40b;', '&#x1f40c;', '&#x1f40d;', '&#x1f40e;', '&#x1f40f;', '&#x1f410;', '&#x1f411;', '&#x1f412;', '&#x1f413;', '&#x1f414;', '&#x1f415;', '&#x1f416;', '&#x1f417;', '&#x1f418;', '&#x1f419;', '&#x1f41a;', '&#x1f41b;', '&#x1f41c;', '&#x1f41d;', '&#x1f41e;', '&#x1f41f;', '&#x1f420;', '&#x1f421;', '&#x1f422;', '&#x1f423;', '&#x1f424;', '&#x1f425;', '&#x1f426;', '&#x1f427;', '&#x1f428;', '&#x1f429;', '&#x1f42a;', '&#x1f42b;', '&#x1f42c;', '&#x1f42d;', '&#x1f42e;', '&#x1f42f;', '&#x1f430;', '&#x1f431;', '&#x1f432;', '&#x1f433;', '&#x1f434;', '&#x1f435;', '&#x1f436;', '&#x1f437;', '&#x1f438;', '&#x1f439;', '&#x1f43a;', '&#x1f43b;', '&#x1f43c;', '&#x1f43d;', '&#x1f43e;', '&#x1f43f;', '&#x1f440;', '&#x1f441;', '&#x1f442;', '&#x1f443;', '&#x1f444;', '&#x1f445;', '&#x1f446;', '&#x1f447;', '&#x1f448;', '&#x1f449;', '&#x1f44a;', '&#x1f44b;', '&#x1f44c;', '&#x1f44d;', '&#x1f44e;', '&#x1f44f;', '&#x1f450;', '&#x1f451;', '&#x1f452;', '&#x1f453;', '&#x1f454;', '&#x1f455;', '&#x1f456;', '&#x1f457;', '&#x1f458;', '&#x1f459;', '&#x1f45a;', '&#x1f45b;', '&#x1f45c;', '&#x1f45d;', '&#x1f45e;', '&#x1f45f;', '&#x1f460;', '&#x1f461;', '&#x1f462;', '&#x1f463;', '&#x1f464;', '&#x1f465;', '&#x1f466;', '&#x1f467;', '&#x1f468;', '&#x1f469;', '&#x1f46a;', '&#x1f46b;', '&#x1f46c;', '&#x1f46d;', '&#x1f46e;', '&#x1f46f;', '&#x1f470;', '&#x1f471;', '&#x1f472;', '&#x1f473;', '&#x1f474;', '&#x1f475;', '&#x1f476;', '&#x1f477;', '&#x1f478;', '&#x1f479;', '&#x1f47a;', '&#x1f47b;', '&#x1f47c;', '&#x1f47d;', '&#x1f47e;', '&#x1f47f;', '&#x1f480;', '&#x1f481;', '&#x1f482;', '&#x1f483;', '&#x1f484;', '&#x1f485;', '&#x1f486;', '&#x1f487;', '&#x1f488;', '&#x1f489;', '&#x1f48a;', '&#x1f48b;', '&#x1f48c;', '&#x1f48d;', '&#x1f48e;', '&#x1f48f;', '&#x1f490;', '&#x1f491;', '&#x1f492;', '&#x1f493;', '&#x1f494;', '&#x1f495;', '&#x1f496;', '&#x1f497;', '&#x1f498;', '&#x1f499;', '&#x1f49a;', '&#x1f49b;', '&#x1f49c;', '&#x1f49d;', '&#x1f49e;', '&#x1f49f;', '&#x1f4a0;', '&#x1f4a1;', '&#x1f4a2;', '&#x1f4a3;', '&#x1f4a4;', '&#x1f4a5;', '&#x1f4a6;', '&#x1f4a7;', '&#x1f4a8;', '&#x1f4a9;', '&#x1f4aa;', '&#x1f4ab;', '&#x1f4ac;', '&#x1f4ad;', '&#x1f4ae;', '&#x1f4af;', '&#x1f4b0;', '&#x1f4b1;', '&#x1f4b2;', '&#x1f4b3;', '&#x1f4b4;', '&#x1f4b5;', '&#x1f4b6;', '&#x1f4b7;', '&#x1f4b8;', '&#x1f4b9;', '&#x1f4ba;', '&#x1f4bb;', '&#x1f4bc;', '&#x1f4bd;', '&#x1f4be;', '&#x1f4bf;', '&#x1f4c0;', '&#x1f4c1;', '&#x1f4c2;', '&#x1f4c3;', '&#x1f4c4;', '&#x1f4c5;', '&#x1f4c6;', '&#x1f4c7;', '&#x1f4c8;', '&#x1f4c9;', '&#x1f4ca;', '&#x1f4cb;', '&#x1f4cc;', '&#x1f4cd;', '&#x1f4ce;', '&#x1f4cf;', '&#x1f4d0;', '&#x1f4d1;', '&#x1f4d2;', '&#x1f4d3;', '&#x1f4d4;', '&#x1f4d5;', '&#x1f4d6;', '&#x1f4d7;', '&#x1f4d8;', '&#x1f4d9;', '&#x1f4da;', '&#x1f4db;', '&#x1f4dc;', '&#x1f4dd;', '&#x1f4de;', '&#x1f4df;', '&#x1f4e0;', '&#x1f4e1;', '&#x1f4e2;', '&#x1f4e3;', '&#x1f4e4;', '&#x1f4e5;', '&#x1f4e6;', '&#x1f4e7;', '&#x1f4e8;', '&#x1f4e9;', '&#x1f4ea;', '&#x1f4eb;', '&#x1f4ec;', '&#x1f4ed;', '&#x1f4ee;', '&#x1f4ef;', '&#x1f4f0;', '&#x1f4f1;', '&#x1f4f2;', '&#x1f4f3;', '&#x1f4f4;', '&#x1f4f5;', '&#x1f4f6;', '&#x1f4f7;', '&#x1f4f8;', '&#x1f4f9;', '&#x1f4fa;', '&#x1f4fb;', '&#x1f4fc;', '&#x1f4fd;', '&#x1f4ff;', '&#x1f500;', '&#x1f501;', '&#x1f502;', '&#x1f503;', '&#x1f504;', '&#x1f505;', '&#x1f506;', '&#x1f507;', '&#x1f508;', '&#x1f509;', '&#x1f50a;', '&#x1f50b;', '&#x1f50c;', '&#x1f50d;', '&#x1f50e;', '&#x1f50f;', '&#x1f510;', '&#x1f511;', '&#x1f512;', '&#x1f513;', '&#x1f514;', '&#x1f515;', '&#x1f516;', '&#x1f517;', '&#x1f518;', '&#x1f519;', '&#x1f51a;', '&#x1f51b;', '&#x1f51c;', '&#x1f51d;', '&#x1f51e;', '&#x1f51f;', '&#x1f520;', '&#x1f521;', '&#x1f522;', '&#x1f523;', '&#x1f524;', '&#x1f525;', '&#x1f526;', '&#x1f527;', '&#x1f528;', '&#x1f529;', '&#x1f52a;', '&#x1f52b;', '&#x1f52c;', '&#x1f52d;', '&#x1f52e;', '&#x1f52f;', '&#x1f530;', '&#x1f531;', '&#x1f532;', '&#x1f533;', '&#x1f534;', '&#x1f535;', '&#x1f536;', '&#x1f537;', '&#x1f538;', '&#x1f539;', '&#x1f53a;', '&#x1f53b;', '&#x1f53c;', '&#x1f53d;', '&#x1f549;', '&#x1f54a;', '&#x1f54b;', '&#x1f54c;', '&#x1f54d;', '&#x1f54e;', '&#x1f550;', '&#x1f551;', '&#x1f552;', '&#x1f553;', '&#x1f554;', '&#x1f555;', '&#x1f556;', '&#x1f557;', '&#x1f558;', '&#x1f559;', '&#x1f55a;', '&#x1f55b;', '&#x1f55c;', '&#x1f55d;', '&#x1f55e;', '&#x1f55f;', '&#x1f560;', '&#x1f561;', '&#x1f562;', '&#x1f563;', '&#x1f564;', '&#x1f565;', '&#x1f566;', '&#x1f567;', '&#x1f56f;', '&#x1f570;', '&#x1f573;', '&#x1f574;', '&#x1f575;', '&#x1f576;', '&#x1f577;', '&#x1f578;', '&#x1f579;', '&#x1f57a;', '&#x1f587;', '&#x1f58a;', '&#x1f58b;', '&#x1f58c;', '&#x1f58d;', '&#x1f590;', '&#x1f595;', '&#x1f596;', '&#x1f5a4;', '&#x1f5a5;', '&#x1f5a8;', '&#x1f5b1;', '&#x1f5b2;', '&#x1f5bc;', '&#x1f5c2;', '&#x1f5c3;', '&#x1f5c4;', '&#x1f5d1;', '&#x1f5d2;', '&#x1f5d3;', '&#x1f5dc;', '&#x1f5dd;', '&#x1f5de;', '&#x1f5e1;', '&#x1f5e3;', '&#x1f5e8;', '&#x1f5ef;', '&#x1f5f3;', '&#x1f5fa;', '&#x1f5fb;', '&#x1f5fc;', '&#x1f5fd;', '&#x1f5fe;', '&#x1f5ff;', '&#x1f600;', '&#x1f601;', '&#x1f602;', '&#x1f603;', '&#x1f604;', '&#x1f605;', '&#x1f606;', '&#x1f607;', '&#x1f608;', '&#x1f609;', '&#x1f60a;', '&#x1f60b;', '&#x1f60c;', '&#x1f60d;', '&#x1f60e;', '&#x1f60f;', '&#x1f610;', '&#x1f611;', '&#x1f612;', '&#x1f613;', '&#x1f614;', '&#x1f615;', '&#x1f616;', '&#x1f617;', '&#x1f618;', '&#x1f619;', '&#x1f61a;', '&#x1f61b;', '&#x1f61c;', '&#x1f61d;', '&#x1f61e;', '&#x1f61f;', '&#x1f620;', '&#x1f621;', '&#x1f622;', '&#x1f623;', '&#x1f624;', '&#x1f625;', '&#x1f626;', '&#x1f627;', '&#x1f628;', '&#x1f629;', '&#x1f62a;', '&#x1f62b;', '&#x1f62c;', '&#x1f62d;', '&#x1f62e;', '&#x1f62f;', '&#x1f630;', '&#x1f631;', '&#x1f632;', '&#x1f633;', '&#x1f634;', '&#x1f635;', '&#x1f636;', '&#x1f637;', '&#x1f638;', '&#x1f639;', '&#x1f63a;', '&#x1f63b;', '&#x1f63c;', '&#x1f63d;', '&#x1f63e;', '&#x1f63f;', '&#x1f640;', '&#x1f641;', '&#x1f642;', '&#x1f643;', '&#x1f644;', '&#x1f645;', '&#x1f646;', '&#x1f647;', '&#x1f648;', '&#x1f649;', '&#x1f64a;', '&#x1f64b;', '&#x1f64c;', '&#x1f64d;', '&#x1f64e;', '&#x1f64f;', '&#x1f680;', '&#x1f681;', '&#x1f682;', '&#x1f683;', '&#x1f684;', '&#x1f685;', '&#x1f686;', '&#x1f687;', '&#x1f688;', '&#x1f689;', '&#x1f68a;', '&#x1f68b;', '&#x1f68c;', '&#x1f68d;', '&#x1f68e;', '&#x1f68f;', '&#x1f690;', '&#x1f691;', '&#x1f692;', '&#x1f693;', '&#x1f694;', '&#x1f695;', '&#x1f696;', '&#x1f697;', '&#x1f698;', '&#x1f699;', '&#x1f69a;', '&#x1f69b;', '&#x1f69c;', '&#x1f69d;', '&#x1f69e;', '&#x1f69f;', '&#x1f6a0;', '&#x1f6a1;', '&#x1f6a2;', '&#x1f6a3;', '&#x1f6a4;', '&#x1f6a5;', '&#x1f6a6;', '&#x1f6a7;', '&#x1f6a8;', '&#x1f6a9;', '&#x1f6aa;', '&#x1f6ab;', '&#x1f6ac;', '&#x1f6ad;', '&#x1f6ae;', '&#x1f6af;', '&#x1f6b0;', '&#x1f6b1;', '&#x1f6b2;', '&#x1f6b3;', '&#x1f6b4;', '&#x1f6b5;', '&#x1f6b6;', '&#x1f6b7;', '&#x1f6b8;', '&#x1f6b9;', '&#x1f6ba;', '&#x1f6bb;', '&#x1f6bc;', '&#x1f6bd;', '&#x1f6be;', '&#x1f6bf;', '&#x1f6c0;', '&#x1f6c1;', '&#x1f6c2;', '&#x1f6c3;', '&#x1f6c4;', '&#x1f6c5;', '&#x1f6cb;', '&#x1f6cc;', '&#x1f6cd;', '&#x1f6ce;', '&#x1f6cf;', '&#x1f6d0;', '&#x1f6d1;', '&#x1f6d2;', '&#x1f6d5;', '&#x1f6d6;', '&#x1f6d7;', '&#x1f6d8;', '&#x1f6dc;', '&#x1f6dd;', '&#x1f6de;', '&#x1f6df;', '&#x1f6e0;', '&#x1f6e1;', '&#x1f6e2;', '&#x1f6e3;', '&#x1f6e4;', '&#x1f6e5;', '&#x1f6e9;', '&#x1f6eb;', '&#x1f6ec;', '&#x1f6f0;', '&#x1f6f3;', '&#x1f6f4;', '&#x1f6f5;', '&#x1f6f6;', '&#x1f6f7;', '&#x1f6f8;', '&#x1f6f9;', '&#x1f6fa;', '&#x1f6fb;', '&#x1f6fc;', '&#x1f7e0;', '&#x1f7e1;', '&#x1f7e2;', '&#x1f7e3;', '&#x1f7e4;', '&#x1f7e5;', '&#x1f7e6;', '&#x1f7e7;', '&#x1f7e8;', '&#x1f7e9;', '&#x1f7ea;', '&#x1f7eb;', '&#x1f7f0;', '&#x1f90c;', '&#x1f90d;', '&#x1f90e;', '&#x1f90f;', '&#x1f910;', '&#x1f911;', '&#x1f912;', '&#x1f913;', '&#x1f914;', '&#x1f915;', '&#x1f916;', '&#x1f917;', '&#x1f918;', '&#x1f919;', '&#x1f91a;', '&#x1f91b;', '&#x1f91c;', '&#x1f91d;', '&#x1f91e;', '&#x1f91f;', '&#x1f920;', '&#x1f921;', '&#x1f922;', '&#x1f923;', '&#x1f924;', '&#x1f925;', '&#x1f926;', '&#x1f927;', '&#x1f928;', '&#x1f929;', '&#x1f92a;', '&#x1f92b;', '&#x1f92c;', '&#x1f92d;', '&#x1f92e;', '&#x1f92f;', '&#x1f930;', '&#x1f931;', '&#x1f932;', '&#x1f933;', '&#x1f934;', '&#x1f935;', '&#x1f936;', '&#x1f937;', '&#x1f938;', '&#x1f939;', '&#x1f93a;', '&#x1f93c;', '&#x1f93d;', '&#x1f93e;', '&#x1f93f;', '&#x1f940;', '&#x1f941;', '&#x1f942;', '&#x1f943;', '&#x1f944;', '&#x1f945;', '&#x1f947;', '&#x1f948;', '&#x1f949;', '&#x1f94a;', '&#x1f94b;', '&#x1f94c;', '&#x1f94d;', '&#x1f94e;', '&#x1f94f;', '&#x1f950;', '&#x1f951;', '&#x1f952;', '&#x1f953;', '&#x1f954;', '&#x1f955;', '&#x1f956;', '&#x1f957;', '&#x1f958;', '&#x1f959;', '&#x1f95a;', '&#x1f95b;', '&#x1f95c;', '&#x1f95d;', '&#x1f95e;', '&#x1f95f;', '&#x1f960;', '&#x1f961;', '&#x1f962;', '&#x1f963;', '&#x1f964;', '&#x1f965;', '&#x1f966;', '&#x1f967;', '&#x1f968;', '&#x1f969;', '&#x1f96a;', '&#x1f96b;', '&#x1f96c;', '&#x1f96d;', '&#x1f96e;', '&#x1f96f;', '&#x1f970;', '&#x1f971;', '&#x1f972;', '&#x1f973;', '&#x1f974;', '&#x1f975;', '&#x1f976;', '&#x1f977;', '&#x1f978;', '&#x1f979;', '&#x1f97a;', '&#x1f97b;', '&#x1f97c;', '&#x1f97d;', '&#x1f97e;', '&#x1f97f;', '&#x1f980;', '&#x1f981;', '&#x1f982;', '&#x1f983;', '&#x1f984;', '&#x1f985;', '&#x1f986;', '&#x1f987;', '&#x1f988;', '&#x1f989;', '&#x1f98a;', '&#x1f98b;', '&#x1f98c;', '&#x1f98d;', '&#x1f98e;', '&#x1f98f;', '&#x1f990;', '&#x1f991;', '&#x1f992;', '&#x1f993;', '&#x1f994;', '&#x1f995;', '&#x1f996;', '&#x1f997;', '&#x1f998;', '&#x1f999;', '&#x1f99a;', '&#x1f99b;', '&#x1f99c;', '&#x1f99d;', '&#x1f99e;', '&#x1f99f;', '&#x1f9a0;', '&#x1f9a1;', '&#x1f9a2;', '&#x1f9a3;', '&#x1f9a4;', '&#x1f9a5;', '&#x1f9a6;', '&#x1f9a7;', '&#x1f9a8;', '&#x1f9a9;', '&#x1f9aa;', '&#x1f9ab;', '&#x1f9ac;', '&#x1f9ad;', '&#x1f9ae;', '&#x1f9af;', '&#x1f9b0;', '&#x1f9b1;', '&#x1f9b2;', '&#x1f9b3;', '&#x1f9b4;', '&#x1f9b5;', '&#x1f9b6;', '&#x1f9b7;', '&#x1f9b8;', '&#x1f9b9;', '&#x1f9ba;', '&#x1f9bb;', '&#x1f9bc;', '&#x1f9bd;', '&#x1f9be;', '&#x1f9bf;', '&#x1f9c0;', '&#x1f9c1;', '&#x1f9c2;', '&#x1f9c3;', '&#x1f9c4;', '&#x1f9c5;', '&#x1f9c6;', '&#x1f9c7;', '&#x1f9c8;', '&#x1f9c9;', '&#x1f9ca;', '&#x1f9cb;', '&#x1f9cc;', '&#x1f9cd;', '&#x1f9ce;', '&#x1f9cf;', '&#x1f9d0;', '&#x1f9d1;', '&#x1f9d2;', '&#x1f9d3;', '&#x1f9d4;', '&#x1f9d5;', '&#x1f9d6;', '&#x1f9d7;', '&#x1f9d8;', '&#x1f9d9;', '&#x1f9da;', '&#x1f9db;', '&#x1f9dc;', '&#x1f9dd;', '&#x1f9de;', '&#x1f9df;', '&#x1f9e0;', '&#x1f9e1;', '&#x1f9e2;', '&#x1f9e3;', '&#x1f9e4;', '&#x1f9e5;', '&#x1f9e6;', '&#x1f9e7;', '&#x1f9e8;', '&#x1f9e9;', '&#x1f9ea;', '&#x1f9eb;', '&#x1f9ec;', '&#x1f9ed;', '&#x1f9ee;', '&#x1f9ef;', '&#x1f9f0;', '&#x1f9f1;', '&#x1f9f2;', '&#x1f9f3;', '&#x1f9f4;', '&#x1f9f5;', '&#x1f9f6;', '&#x1f9f7;', '&#x1f9f8;', '&#x1f9f9;', '&#x1f9fa;', '&#x1f9fb;', '&#x1f9fc;', '&#x1f9fd;', '&#x1f9fe;', '&#x1f9ff;', '&#x1fa70;', '&#x1fa71;', '&#x1fa72;', '&#x1fa73;', '&#x1fa74;', '&#x1fa75;', '&#x1fa76;', '&#x1fa77;', '&#x1fa78;', '&#x1fa79;', '&#x1fa7a;', '&#x1fa7b;', '&#x1fa7c;', '&#x1fa80;', '&#x1fa81;', '&#x1fa82;', '&#x1fa83;', '&#x1fa84;', '&#x1fa85;', '&#x1fa86;', '&#x1fa87;', '&#x1fa88;', '&#x1fa89;', '&#x1fa8a;', '&#x1fa8e;', '&#x1fa8f;', '&#x1fa90;', '&#x1fa91;', '&#x1fa92;', '&#x1fa93;', '&#x1fa94;', '&#x1fa95;', '&#x1fa96;', '&#x1fa97;', '&#x1fa98;', '&#x1fa99;', '&#x1fa9a;', '&#x1fa9b;', '&#x1fa9c;', '&#x1fa9d;', '&#x1fa9e;', '&#x1fa9f;', '&#x1faa0;', '&#x1faa1;', '&#x1faa2;', '&#x1faa3;', '&#x1faa4;', '&#x1faa5;', '&#x1faa6;', '&#x1faa7;', '&#x1faa8;', '&#x1faa9;', '&#x1faaa;', '&#x1faab;', '&#x1faac;', '&#x1faad;', '&#x1faae;', '&#x1faaf;', '&#x1fab0;', '&#x1fab1;', '&#x1fab2;', '&#x1fab3;', '&#x1fab4;', '&#x1fab5;', '&#x1fab6;', '&#x1fab7;', '&#x1fab8;', '&#x1fab9;', '&#x1faba;', '&#x1fabb;', '&#x1fabc;', '&#x1fabd;', '&#x1fabe;', '&#x1fabf;', '&#x1fac0;', '&#x1fac1;', '&#x1fac2;', '&#x1fac3;', '&#x1fac4;', '&#x1fac5;', '&#x1fac6;', '&#x1fac8;', '&#x1facd;', '&#x1face;', '&#x1facf;', '&#x1fad0;', '&#x1fad1;', '&#x1fad2;', '&#x1fad3;', '&#x1fad4;', '&#x1fad5;', '&#x1fad6;', '&#x1fad7;', '&#x1fad8;', '&#x1fad9;', '&#x1fada;', '&#x1fadb;', '&#x1fadc;', '&#x1fadf;', '&#x1fae0;', '&#x1fae1;', '&#x1fae2;', '&#x1fae3;', '&#x1fae4;', '&#x1fae5;', '&#x1fae6;', '&#x1fae7;', '&#x1fae8;', '&#x1fae9;', '&#x1faea;', '&#x1faef;', '&#x1faf0;', '&#x1faf1;', '&#x1faf2;', '&#x1faf3;', '&#x1faf4;', '&#x1faf5;', '&#x1faf6;', '&#x1faf7;', '&#x1faf8;', '&#x203c;', '&#x2049;', '&#x2122;', '&#x2139;', '&#x2194;', '&#x2195;', '&#x2196;', '&#x2197;', '&#x2198;', '&#x2199;', '&#x21a9;', '&#x21aa;', '&#x231a;', '&#x231b;', '&#x2328;', '&#x23cf;', '&#x23e9;', '&#x23ea;', '&#x23eb;', '&#x23ec;', '&#x23ed;', '&#x23ee;', '&#x23ef;', '&#x23f0;', '&#x23f1;', '&#x23f2;', '&#x23f3;', '&#x23f8;', '&#x23f9;', '&#x23fa;', '&#x24c2;', '&#x25aa;', '&#x25ab;', '&#x25b6;', '&#x25c0;', '&#x25fb;', '&#x25fc;', '&#x25fd;', '&#x25fe;', '&#x2600;', '&#x2601;', '&#x2602;', '&#x2603;', '&#x2604;', '&#x260e;', '&#x2611;', '&#x2614;', '&#x2615;', '&#x2618;', '&#x261d;', '&#x2620;', '&#x2622;', '&#x2623;', '&#x2626;', '&#x262a;', '&#x262e;', '&#x262f;', '&#x2638;', '&#x2639;', '&#x263a;', '&#x2640;', '&#x2642;', '&#x2648;', '&#x2649;', '&#x264a;', '&#x264b;', '&#x264c;', '&#x264d;', '&#x264e;', '&#x264f;', '&#x2650;', '&#x2651;', '&#x2652;', '&#x2653;', '&#x265f;', '&#x2660;', '&#x2663;', '&#x2665;', '&#x2666;', '&#x2668;', '&#x267b;', '&#x267e;', '&#x267f;', '&#x2692;', '&#x2693;', '&#x2694;', '&#x2695;', '&#x2696;', '&#x2697;', '&#x2699;', '&#x269b;', '&#x269c;', '&#x26a0;', '&#x26a1;', '&#x26a7;', '&#x26aa;', '&#x26ab;', '&#x26b0;', '&#x26b1;', '&#x26bd;', '&#x26be;', '&#x26c4;', '&#x26c5;', '&#x26c8;', '&#x26ce;', '&#x26cf;', '&#x26d1;', '&#x26d3;', '&#x26d4;', '&#x26e9;', '&#x26ea;', '&#x26f0;', '&#x26f1;', '&#x26f2;', '&#x26f3;', '&#x26f4;', '&#x26f5;', '&#x26f7;', '&#x26f8;', '&#x26f9;', '&#x26fa;', '&#x26fd;', '&#x2702;', '&#x2705;', '&#x2708;', '&#x2709;', '&#x270a;', '&#x270b;', '&#x270c;', '&#x270d;', '&#x270f;', '&#x2712;', '&#x2714;', '&#x2716;', '&#x271d;', '&#x2721;', '&#x2728;', '&#x2733;', '&#x2734;', '&#x2744;', '&#x2747;', '&#x274c;', '&#x274e;', '&#x2753;', '&#x2754;', '&#x2755;', '&#x2757;', '&#x2763;', '&#x2764;', '&#x2795;', '&#x2796;', '&#x2797;', '&#x27a1;', '&#x27b0;', '&#x27bf;', '&#x2934;', '&#x2935;', '&#x2b05;', '&#x2b06;', '&#x2b07;', '&#x2b1b;', '&#x2b1c;', '&#x2b50;', '&#x2b55;', '&#x3030;', '&#x303d;', '&#x3297;', '&#x3299;', '&#xe50a;' );
6298      $partials = array( '&#x1f004;', '&#x1f0cf;', '&#x1f170;', '&#x1f171;', '&#x1f17e;', '&#x1f17f;', '&#x1f18e;', '&#x1f191;', '&#x1f192;', '&#x1f193;', '&#x1f194;', '&#x1f195;', '&#x1f196;', '&#x1f197;', '&#x1f198;', '&#x1f199;', '&#x1f19a;', '&#x1f1e6;', '&#x1f1e8;', '&#x1f1e9;', '&#x1f1ea;', '&#x1f1eb;', '&#x1f1ec;', '&#x1f1ee;', '&#x1f1f1;', '&#x1f1f2;', '&#x1f1f4;', '&#x1f1f6;', '&#x1f1f7;', '&#x1f1f8;', '&#x1f1f9;', '&#x1f1fa;', '&#x1f1fc;', '&#x1f1fd;', '&#x1f1ff;', '&#x1f1e7;', '&#x1f1ed;', '&#x1f1ef;', '&#x1f1f3;', '&#x1f1fb;', '&#x1f1fe;', '&#x1f1f0;', '&#x1f1f5;', '&#x1f201;', '&#x1f202;', '&#x1f21a;', '&#x1f22f;', '&#x1f232;', '&#x1f233;', '&#x1f234;', '&#x1f235;', '&#x1f236;', '&#x1f237;', '&#x1f238;', '&#x1f239;', '&#x1f23a;', '&#x1f250;', '&#x1f251;', '&#x1f300;', '&#x1f301;', '&#x1f302;', '&#x1f303;', '&#x1f304;', '&#x1f305;', '&#x1f306;', '&#x1f307;', '&#x1f308;', '&#x1f309;', '&#x1f30a;', '&#x1f30b;', '&#x1f30c;', '&#x1f30d;', '&#x1f30e;', '&#x1f30f;', '&#x1f310;', '&#x1f311;', '&#x1f312;', '&#x1f313;', '&#x1f314;', '&#x1f315;', '&#x1f316;', '&#x1f317;', '&#x1f318;', '&#x1f319;', '&#x1f31a;', '&#x1f31b;', '&#x1f31c;', '&#x1f31d;', '&#x1f31e;', '&#x1f31f;', '&#x1f320;', '&#x1f321;', '&#x1f324;', '&#x1f325;', '&#x1f326;', '&#x1f327;', '&#x1f328;', '&#x1f329;', '&#x1f32a;', '&#x1f32b;', '&#x1f32c;', '&#x1f32d;', '&#x1f32e;', '&#x1f32f;', '&#x1f330;', '&#x1f331;', '&#x1f332;', '&#x1f333;', '&#x1f334;', '&#x1f335;', '&#x1f336;', '&#x1f337;', '&#x1f338;', '&#x1f339;', '&#x1f33a;', '&#x1f33b;', '&#x1f33c;', '&#x1f33d;', '&#x1f33e;', '&#x1f33f;', '&#x1f340;', '&#x1f341;', '&#x1f342;', '&#x1f343;', '&#x1f344;', '&#x200d;', '&#x1f7eb;', '&#x1f345;', '&#x1f346;', '&#x1f347;', '&#x1f348;', '&#x1f349;', '&#x1f34a;', '&#x1f34b;', '&#x1f7e9;', '&#x1f34c;', '&#x1f34d;', '&#x1f34e;', '&#x1f34f;', '&#x1f350;', '&#x1f351;', '&#x1f352;', '&#x1f353;', '&#x1f354;', '&#x1f355;', '&#x1f356;', '&#x1f357;', '&#x1f358;', '&#x1f359;', '&#x1f35a;', '&#x1f35b;', '&#x1f35c;', '&#x1f35d;', '&#x1f35e;', '&#x1f35f;', '&#x1f360;', '&#x1f361;', '&#x1f362;', '&#x1f363;', '&#x1f364;', '&#x1f365;', '&#x1f366;', '&#x1f367;', '&#x1f368;', '&#x1f369;', '&#x1f36a;', '&#x1f36b;', '&#x1f36c;', '&#x1f36d;', '&#x1f36e;', '&#x1f36f;', '&#x1f370;', '&#x1f371;', '&#x1f372;', '&#x1f373;', '&#x1f374;', '&#x1f375;', '&#x1f376;', '&#x1f377;', '&#x1f378;', '&#x1f379;', '&#x1f37a;', '&#x1f37b;', '&#x1f37c;', '&#x1f37d;', '&#x1f37e;', '&#x1f37f;', '&#x1f380;', '&#x1f381;', '&#x1f382;', '&#x1f383;', '&#x1f384;', '&#x1f385;', '&#x1f3fb;', '&#x1f3fc;', '&#x1f3fd;', '&#x1f3fe;', '&#x1f3ff;', '&#x1f386;', '&#x1f387;', '&#x1f388;', '&#x1f389;', '&#x1f38a;', '&#x1f38b;', '&#x1f38c;', '&#x1f38d;', '&#x1f38e;', '&#x1f38f;', '&#x1f390;', '&#x1f391;', '&#x1f392;', '&#x1f393;', '&#x1f396;', '&#x1f397;', '&#x1f399;', '&#x1f39a;', '&#x1f39b;', '&#x1f39e;', '&#x1f39f;', '&#x1f3a0;', '&#x1f3a1;', '&#x1f3a2;', '&#x1f3a3;', '&#x1f3a4;', '&#x1f3a5;', '&#x1f3a6;', '&#x1f3a7;', '&#x1f3a8;', '&#x1f3a9;', '&#x1f3aa;', '&#x1f3ab;', '&#x1f3ac;', '&#x1f3ad;', '&#x1f3ae;', '&#x1f3af;', '&#x1f3b0;', '&#x1f3b1;', '&#x1f3b2;', '&#x1f3b3;', '&#x1f3b4;', '&#x1f3b5;', '&#x1f3b6;', '&#x1f3b7;', '&#x1f3b8;', '&#x1f3b9;', '&#x1f3ba;', '&#x1f3bb;', '&#x1f3bc;', '&#x1f3bd;', '&#x1f3be;', '&#x1f3bf;', '&#x1f3c0;', '&#x1f3c1;', '&#x1f3c2;', '&#x1f3c3;', '&#x2640;', '&#xfe0f;', '&#x27a1;', '&#x2642;', '&#x1f3c4;', '&#x1f3c5;', '&#x1f3c6;', '&#x1f3c7;', '&#x1f3c8;', '&#x1f3c9;', '&#x1f3ca;', '&#x1f3cb;', '&#x1f3cc;', '&#x1f3cd;', '&#x1f3ce;', '&#x1f3cf;', '&#x1f3d0;', '&#x1f3d1;', '&#x1f3d2;', '&#x1f3d3;', '&#x1f3d4;', '&#x1f3d5;', '&#x1f3d6;', '&#x1f3d7;', '&#x1f3d8;', '&#x1f3d9;', '&#x1f3da;', '&#x1f3db;', '&#x1f3dc;', '&#x1f3dd;', '&#x1f3de;', '&#x1f3df;', '&#x1f3e0;', '&#x1f3e1;', '&#x1f3e2;', '&#x1f3e3;', '&#x1f3e4;', '&#x1f3e5;', '&#x1f3e6;', '&#x1f3e7;', '&#x1f3e8;', '&#x1f3e9;', '&#x1f3ea;', '&#x1f3eb;', '&#x1f3ec;', '&#x1f3ed;', '&#x1f3ee;', '&#x1f3ef;', '&#x1f3f0;', '&#x1f3f3;', '&#x26a7;', '&#x1f3f4;', '&#x2620;', '&#xe0067;', '&#xe0062;', '&#xe0065;', '&#xe006e;', '&#xe007f;', '&#xe0073;', '&#xe0063;', '&#xe0074;', '&#xe0077;', '&#xe006c;', '&#x1f3f5;', '&#x1f3f7;', '&#x1f3f8;', '&#x1f3f9;', '&#x1f3fa;', '&#x1f400;', '&#x1f401;', '&#x1f402;', '&#x1f403;', '&#x1f404;', '&#x1f405;', '&#x1f406;', '&#x1f407;', '&#x1f408;', '&#x2b1b;', '&#x1f409;', '&#x1f40a;', '&#x1f40b;', '&#x1f40c;', '&#x1f40d;', '&#x1f40e;', '&#x1f40f;', '&#x1f410;', '&#x1f411;', '&#x1f412;', '&#x1f413;', '&#x1f414;', '&#x1f415;', '&#x1f9ba;', '&#x1f416;', '&#x1f417;', '&#x1f418;', '&#x1f419;', '&#x1f41a;', '&#x1f41b;', '&#x1f41c;', '&#x1f41d;', '&#x1f41e;', '&#x1f41f;', '&#x1f420;', '&#x1f421;', '&#x1f422;', '&#x1f423;', '&#x1f424;', '&#x1f425;', '&#x1f426;', '&#x1f525;', '&#x1f427;', '&#x1f428;', '&#x1f429;', '&#x1f42a;', '&#x1f42b;', '&#x1f42c;', '&#x1f42d;', '&#x1f42e;', '&#x1f42f;', '&#x1f430;', '&#x1f431;', '&#x1f432;', '&#x1f433;', '&#x1f434;', '&#x1f435;', '&#x1f436;', '&#x1f437;', '&#x1f438;', '&#x1f439;', '&#x1f43a;', '&#x1f43b;', '&#x2744;', '&#x1f43c;', '&#x1f43d;', '&#x1f43e;', '&#x1f43f;', '&#x1f440;', '&#x1f441;', '&#x1f5e8;', '&#x1f442;', '&#x1f443;', '&#x1f444;', '&#x1f445;', '&#x1f446;', '&#x1f447;', '&#x1f448;', '&#x1f449;', '&#x1f44a;', '&#x1f44b;', '&#x1f44c;', '&#x1f44d;', '&#x1f44e;', '&#x1f44f;', '&#x1f450;', '&#x1f451;', '&#x1f452;', '&#x1f453;', '&#x1f454;', '&#x1f455;', '&#x1f456;', '&#x1f457;', '&#x1f458;', '&#x1f459;', '&#x1f45a;', '&#x1f45b;', '&#x1f45c;', '&#x1f45d;', '&#x1f45e;', '&#x1f45f;', '&#x1f460;', '&#x1f461;', '&#x1f462;', '&#x1f463;', '&#x1f464;', '&#x1f465;', '&#x1f466;', '&#x1f467;', '&#x1f468;', '&#x1f4bb;', '&#x1f4bc;', '&#x1f527;', '&#x1f52c;', '&#x1f680;', '&#x1f692;', '&#x1f91d;', '&#x1f9af;', '&#x1f9b0;', '&#x1f9b1;', '&#x1f9b2;', '&#x1f9b3;', '&#x1f9bc;', '&#x1f9bd;', '&#x1faef;', '&#x2695;', '&#x2696;', '&#x2708;', '&#x2764;', '&#x1f48b;', '&#x1f469;', '&#x1f46a;', '&#x1f46b;', '&#x1f46c;', '&#x1f46d;', '&#x1f46e;', '&#x1f46f;', '&#x1f470;', '&#x1f471;', '&#x1f472;', '&#x1f473;', '&#x1f474;', '&#x1f475;', '&#x1f476;', '&#x1f477;', '&#x1f478;', '&#x1f479;', '&#x1f47a;', '&#x1f47b;', '&#x1f47c;', '&#x1f47d;', '&#x1f47e;', '&#x1f47f;', '&#x1f480;', '&#x1f481;', '&#x1f482;', '&#x1f483;', '&#x1f484;', '&#x1f485;', '&#x1f486;', '&#x1f487;', '&#x1f488;', '&#x1f489;', '&#x1f48a;', '&#x1f48c;', '&#x1f48d;', '&#x1f48e;', '&#x1f48f;', '&#x1f490;', '&#x1f491;', '&#x1f492;', '&#x1f493;', '&#x1f494;', '&#x1f495;', '&#x1f496;', '&#x1f497;', '&#x1f498;', '&#x1f499;', '&#x1f49a;', '&#x1f49b;', '&#x1f49c;', '&#x1f49d;', '&#x1f49e;', '&#x1f49f;', '&#x1f4a0;', '&#x1f4a1;', '&#x1f4a2;', '&#x1f4a3;', '&#x1f4a4;', '&#x1f4a5;', '&#x1f4a6;', '&#x1f4a7;', '&#x1f4a8;', '&#x1f4a9;', '&#x1f4aa;', '&#x1f4ab;', '&#x1f4ac;', '&#x1f4ad;', '&#x1f4ae;', '&#x1f4af;', '&#x1f4b0;', '&#x1f4b1;', '&#x1f4b2;', '&#x1f4b3;', '&#x1f4b4;', '&#x1f4b5;', '&#x1f4b6;', '&#x1f4b7;', '&#x1f4b8;', '&#x1f4b9;', '&#x1f4ba;', '&#x1f4bd;', '&#x1f4be;', '&#x1f4bf;', '&#x1f4c0;', '&#x1f4c1;', '&#x1f4c2;', '&#x1f4c3;', '&#x1f4c4;', '&#x1f4c5;', '&#x1f4c6;', '&#x1f4c7;', '&#x1f4c8;', '&#x1f4c9;', '&#x1f4ca;', '&#x1f4cb;', '&#x1f4cc;', '&#x1f4cd;', '&#x1f4ce;', '&#x1f4cf;', '&#x1f4d0;', '&#x1f4d1;', '&#x1f4d2;', '&#x1f4d3;', '&#x1f4d4;', '&#x1f4d5;', '&#x1f4d6;', '&#x1f4d7;', '&#x1f4d8;', '&#x1f4d9;', '&#x1f4da;', '&#x1f4db;', '&#x1f4dc;', '&#x1f4dd;', '&#x1f4de;', '&#x1f4df;', '&#x1f4e0;', '&#x1f4e1;', '&#x1f4e2;', '&#x1f4e3;', '&#x1f4e4;', '&#x1f4e5;', '&#x1f4e6;', '&#x1f4e7;', '&#x1f4e8;', '&#x1f4e9;', '&#x1f4ea;', '&#x1f4eb;', '&#x1f4ec;', '&#x1f4ed;', '&#x1f4ee;', '&#x1f4ef;', '&#x1f4f0;', '&#x1f4f1;', '&#x1f4f2;', '&#x1f4f3;', '&#x1f4f4;', '&#x1f4f5;', '&#x1f4f6;', '&#x1f4f7;', '&#x1f4f8;', '&#x1f4f9;', '&#x1f4fa;', '&#x1f4fb;', '&#x1f4fc;', '&#x1f4fd;', '&#x1f4ff;', '&#x1f500;', '&#x1f501;', '&#x1f502;', '&#x1f503;', '&#x1f504;', '&#x1f505;', '&#x1f506;', '&#x1f507;', '&#x1f508;', '&#x1f509;', '&#x1f50a;', '&#x1f50b;', '&#x1f50c;', '&#x1f50d;', '&#x1f50e;', '&#x1f50f;', '&#x1f510;', '&#x1f511;', '&#x1f512;', '&#x1f513;', '&#x1f514;', '&#x1f515;', '&#x1f516;', '&#x1f517;', '&#x1f518;', '&#x1f519;', '&#x1f51a;', '&#x1f51b;', '&#x1f51c;', '&#x1f51d;', '&#x1f51e;', '&#x1f51f;', '&#x1f520;', '&#x1f521;', '&#x1f522;', '&#x1f523;', '&#x1f524;', '&#x1f526;', '&#x1f528;', '&#x1f529;', '&#x1f52a;', '&#x1f52b;', '&#x1f52d;', '&#x1f52e;', '&#x1f52f;', '&#x1f530;', '&#x1f531;', '&#x1f532;', '&#x1f533;', '&#x1f534;', '&#x1f535;', '&#x1f536;', '&#x1f537;', '&#x1f538;', '&#x1f539;', '&#x1f53a;', '&#x1f53b;', '&#x1f53c;', '&#x1f53d;', '&#x1f549;', '&#x1f54a;', '&#x1f54b;', '&#x1f54c;', '&#x1f54d;', '&#x1f54e;', '&#x1f550;', '&#x1f551;', '&#x1f552;', '&#x1f553;', '&#x1f554;', '&#x1f555;', '&#x1f556;', '&#x1f557;', '&#x1f558;', '&#x1f559;', '&#x1f55a;', '&#x1f55b;', '&#x1f55c;', '&#x1f55d;', '&#x1f55e;', '&#x1f55f;', '&#x1f560;', '&#x1f561;', '&#x1f562;', '&#x1f563;', '&#x1f564;', '&#x1f565;', '&#x1f566;', '&#x1f567;', '&#x1f56f;', '&#x1f570;', '&#x1f573;', '&#x1f574;', '&#x1f575;', '&#x1f576;', '&#x1f577;', '&#x1f578;', '&#x1f579;', '&#x1f57a;', '&#x1f587;', '&#x1f58a;', '&#x1f58b;', '&#x1f58c;', '&#x1f58d;', '&#x1f590;', '&#x1f595;', '&#x1f596;', '&#x1f5a4;', '&#x1f5a5;', '&#x1f5a8;', '&#x1f5b1;', '&#x1f5b2;', '&#x1f5bc;', '&#x1f5c2;', '&#x1f5c3;', '&#x1f5c4;', '&#x1f5d1;', '&#x1f5d2;', '&#x1f5d3;', '&#x1f5dc;', '&#x1f5dd;', '&#x1f5de;', '&#x1f5e1;', '&#x1f5e3;', '&#x1f5ef;', '&#x1f5f3;', '&#x1f5fa;', '&#x1f5fb;', '&#x1f5fc;', '&#x1f5fd;', '&#x1f5fe;', '&#x1f5ff;', '&#x1f600;', '&#x1f601;', '&#x1f602;', '&#x1f603;', '&#x1f604;', '&#x1f605;', '&#x1f606;', '&#x1f607;', '&#x1f608;', '&#x1f609;', '&#x1f60a;', '&#x1f60b;', '&#x1f60c;', '&#x1f60d;', '&#x1f60e;', '&#x1f60f;', '&#x1f610;', '&#x1f611;', '&#x1f612;', '&#x1f613;', '&#x1f614;', '&#x1f615;', '&#x1f616;', '&#x1f617;', '&#x1f618;', '&#x1f619;', '&#x1f61a;', '&#x1f61b;', '&#x1f61c;', '&#x1f61d;', '&#x1f61e;', '&#x1f61f;', '&#x1f620;', '&#x1f621;', '&#x1f622;', '&#x1f623;', '&#x1f624;', '&#x1f625;', '&#x1f626;', '&#x1f627;', '&#x1f628;', '&#x1f629;', '&#x1f62a;', '&#x1f62b;', '&#x1f62c;', '&#x1f62d;', '&#x1f62e;', '&#x1f62f;', '&#x1f630;', '&#x1f631;', '&#x1f632;', '&#x1f633;', '&#x1f634;', '&#x1f635;', '&#x1f636;', '&#x1f637;', '&#x1f638;', '&#x1f639;', '&#x1f63a;', '&#x1f63b;', '&#x1f63c;', '&#x1f63d;', '&#x1f63e;', '&#x1f63f;', '&#x1f640;', '&#x1f641;', '&#x1f642;', '&#x2194;', '&#x2195;', '&#x1f643;', '&#x1f644;', '&#x1f645;', '&#x1f646;', '&#x1f647;', '&#x1f648;', '&#x1f649;', '&#x1f64a;', '&#x1f64b;', '&#x1f64c;', '&#x1f64d;', '&#x1f64e;', '&#x1f64f;', '&#x1f681;', '&#x1f682;', '&#x1f683;', '&#x1f684;', '&#x1f685;', '&#x1f686;', '&#x1f687;', '&#x1f688;', '&#x1f689;', '&#x1f68a;', '&#x1f68b;', '&#x1f68c;', '&#x1f68d;', '&#x1f68e;', '&#x1f68f;', '&#x1f690;', '&#x1f691;', '&#x1f693;', '&#x1f694;', '&#x1f695;', '&#x1f696;', '&#x1f697;', '&#x1f698;', '&#x1f699;', '&#x1f69a;', '&#x1f69b;', '&#x1f69c;', '&#x1f69d;', '&#x1f69e;', '&#x1f69f;', '&#x1f6a0;', '&#x1f6a1;', '&#x1f6a2;', '&#x1f6a3;', '&#x1f6a4;', '&#x1f6a5;', '&#x1f6a6;', '&#x1f6a7;', '&#x1f6a8;', '&#x1f6a9;', '&#x1f6aa;', '&#x1f6ab;', '&#x1f6ac;', '&#x1f6ad;', '&#x1f6ae;', '&#x1f6af;', '&#x1f6b0;', '&#x1f6b1;', '&#x1f6b2;', '&#x1f6b3;', '&#x1f6b4;', '&#x1f6b5;', '&#x1f6b6;', '&#x1f6b7;', '&#x1f6b8;', '&#x1f6b9;', '&#x1f6ba;', '&#x1f6bb;', '&#x1f6bc;', '&#x1f6bd;', '&#x1f6be;', '&#x1f6bf;', '&#x1f6c0;', '&#x1f6c1;', '&#x1f6c2;', '&#x1f6c3;', '&#x1f6c4;', '&#x1f6c5;', '&#x1f6cb;', '&#x1f6cc;', '&#x1f6cd;', '&#x1f6ce;', '&#x1f6cf;', '&#x1f6d0;', '&#x1f6d1;', '&#x1f6d2;', '&#x1f6d5;', '&#x1f6d6;', '&#x1f6d7;', '&#x1f6d8;', '&#x1f6dc;', '&#x1f6dd;', '&#x1f6de;', '&#x1f6df;', '&#x1f6e0;', '&#x1f6e1;', '&#x1f6e2;', '&#x1f6e3;', '&#x1f6e4;', '&#x1f6e5;', '&#x1f6e9;', '&#x1f6eb;', '&#x1f6ec;', '&#x1f6f0;', '&#x1f6f3;', '&#x1f6f4;', '&#x1f6f5;', '&#x1f6f6;', '&#x1f6f7;', '&#x1f6f8;', '&#x1f6f9;', '&#x1f6fa;', '&#x1f6fb;', '&#x1f6fc;', '&#x1f7e0;', '&#x1f7e1;', '&#x1f7e2;', '&#x1f7e3;', '&#x1f7e4;', '&#x1f7e5;', '&#x1f7e6;', '&#x1f7e7;', '&#x1f7e8;', '&#x1f7ea;', '&#x1f7f0;', '&#x1f90c;', '&#x1f90d;', '&#x1f90e;', '&#x1f90f;', '&#x1f910;', '&#x1f911;', '&#x1f912;', '&#x1f913;', '&#x1f914;', '&#x1f915;', '&#x1f916;', '&#x1f917;', '&#x1f918;', '&#x1f919;', '&#x1f91a;', '&#x1f91b;', '&#x1f91c;', '&#x1f91e;', '&#x1f91f;', '&#x1f920;', '&#x1f921;', '&#x1f922;', '&#x1f923;', '&#x1f924;', '&#x1f925;', '&#x1f926;', '&#x1f927;', '&#x1f928;', '&#x1f929;', '&#x1f92a;', '&#x1f92b;', '&#x1f92c;', '&#x1f92d;', '&#x1f92e;', '&#x1f92f;', '&#x1f930;', '&#x1f931;', '&#x1f932;', '&#x1f933;', '&#x1f934;', '&#x1f935;', '&#x1f936;', '&#x1f937;', '&#x1f938;', '&#x1f939;', '&#x1f93a;', '&#x1f93c;', '&#x1f93d;', '&#x1f93e;', '&#x1f93f;', '&#x1f940;', '&#x1f941;', '&#x1f942;', '&#x1f943;', '&#x1f944;', '&#x1f945;', '&#x1f947;', '&#x1f948;', '&#x1f949;', '&#x1f94a;', '&#x1f94b;', '&#x1f94c;', '&#x1f94d;', '&#x1f94e;', '&#x1f94f;', '&#x1f950;', '&#x1f951;', '&#x1f952;', '&#x1f953;', '&#x1f954;', '&#x1f955;', '&#x1f956;', '&#x1f957;', '&#x1f958;', '&#x1f959;', '&#x1f95a;', '&#x1f95b;', '&#x1f95c;', '&#x1f95d;', '&#x1f95e;', '&#x1f95f;', '&#x1f960;', '&#x1f961;', '&#x1f962;', '&#x1f963;', '&#x1f964;', '&#x1f965;', '&#x1f966;', '&#x1f967;', '&#x1f968;', '&#x1f969;', '&#x1f96a;', '&#x1f96b;', '&#x1f96c;', '&#x1f96d;', '&#x1f96e;', '&#x1f96f;', '&#x1f970;', '&#x1f971;', '&#x1f972;', '&#x1f973;', '&#x1f974;', '&#x1f975;', '&#x1f976;', '&#x1f977;', '&#x1f978;', '&#x1f979;', '&#x1f97a;', '&#x1f97b;', '&#x1f97c;', '&#x1f97d;', '&#x1f97e;', '&#x1f97f;', '&#x1f980;', '&#x1f981;', '&#x1f982;', '&#x1f983;', '&#x1f984;', '&#x1f985;', '&#x1f986;', '&#x1f987;', '&#x1f988;', '&#x1f989;', '&#x1f98a;', '&#x1f98b;', '&#x1f98c;', '&#x1f98d;', '&#x1f98e;', '&#x1f98f;', '&#x1f990;', '&#x1f991;', '&#x1f992;', '&#x1f993;', '&#x1f994;', '&#x1f995;', '&#x1f996;', '&#x1f997;', '&#x1f998;', '&#x1f999;', '&#x1f99a;', '&#x1f99b;', '&#x1f99c;', '&#x1f99d;', '&#x1f99e;', '&#x1f99f;', '&#x1f9a0;', '&#x1f9a1;', '&#x1f9a2;', '&#x1f9a3;', '&#x1f9a4;', '&#x1f9a5;', '&#x1f9a6;', '&#x1f9a7;', '&#x1f9a8;', '&#x1f9a9;', '&#x1f9aa;', '&#x1f9ab;', '&#x1f9ac;', '&#x1f9ad;', '&#x1f9ae;', '&#x1f9b4;', '&#x1f9b5;', '&#x1f9b6;', '&#x1f9b7;', '&#x1f9b8;', '&#x1f9b9;', '&#x1f9bb;', '&#x1f9be;', '&#x1f9bf;', '&#x1f9c0;', '&#x1f9c1;', '&#x1f9c2;', '&#x1f9c3;', '&#x1f9c4;', '&#x1f9c5;', '&#x1f9c6;', '&#x1f9c7;', '&#x1f9c8;', '&#x1f9c9;', '&#x1f9ca;', '&#x1f9cb;', '&#x1f9cc;', '&#x1f9cd;', '&#x1f9ce;', '&#x1f9cf;', '&#x1f9d0;', '&#x1f9d1;', '&#x1fa70;', '&#x1f9d2;', '&#x1f9d3;', '&#x1f9d4;', '&#x1f9d5;', '&#x1f9d6;', '&#x1f9d7;', '&#x1f9d8;', '&#x1f9d9;', '&#x1f9da;', '&#x1f9db;', '&#x1f9dc;', '&#x1f9dd;', '&#x1f9de;', '&#x1f9df;', '&#x1f9e0;', '&#x1f9e1;', '&#x1f9e2;', '&#x1f9e3;', '&#x1f9e4;', '&#x1f9e5;', '&#x1f9e6;', '&#x1f9e7;', '&#x1f9e8;', '&#x1f9e9;', '&#x1f9ea;', '&#x1f9eb;', '&#x1f9ec;', '&#x1f9ed;', '&#x1f9ee;', '&#x1f9ef;', '&#x1f9f0;', '&#x1f9f1;', '&#x1f9f2;', '&#x1f9f3;', '&#x1f9f4;', '&#x1f9f5;', '&#x1f9f6;', '&#x1f9f7;', '&#x1f9f8;', '&#x1f9f9;', '&#x1f9fa;', '&#x1f9fb;', '&#x1f9fc;', '&#x1f9fd;', '&#x1f9fe;', '&#x1f9ff;', '&#x1fa71;', '&#x1fa72;', '&#x1fa73;', '&#x1fa74;', '&#x1fa75;', '&#x1fa76;', '&#x1fa77;', '&#x1fa78;', '&#x1fa79;', '&#x1fa7a;', '&#x1fa7b;', '&#x1fa7c;', '&#x1fa80;', '&#x1fa81;', '&#x1fa82;', '&#x1fa83;', '&#x1fa84;', '&#x1fa85;', '&#x1fa86;', '&#x1fa87;', '&#x1fa88;', '&#x1fa89;', '&#x1fa8a;', '&#x1fa8e;', '&#x1fa8f;', '&#x1fa90;', '&#x1fa91;', '&#x1fa92;', '&#x1fa93;', '&#x1fa94;', '&#x1fa95;', '&#x1fa96;', '&#x1fa97;', '&#x1fa98;', '&#x1fa99;', '&#x1fa9a;', '&#x1fa9b;', '&#x1fa9c;', '&#x1fa9d;', '&#x1fa9e;', '&#x1fa9f;', '&#x1faa0;', '&#x1faa1;', '&#x1faa2;', '&#x1faa3;', '&#x1faa4;', '&#x1faa5;', '&#x1faa6;', '&#x1faa7;', '&#x1faa8;', '&#x1faa9;', '&#x1faaa;', '&#x1faab;', '&#x1faac;', '&#x1faad;', '&#x1faae;', '&#x1faaf;', '&#x1fab0;', '&#x1fab1;', '&#x1fab2;', '&#x1fab3;', '&#x1fab4;', '&#x1fab5;', '&#x1fab6;', '&#x1fab7;', '&#x1fab8;', '&#x1fab9;', '&#x1faba;', '&#x1fabb;', '&#x1fabc;', '&#x1fabd;', '&#x1fabe;', '&#x1fabf;', '&#x1fac0;', '&#x1fac1;', '&#x1fac2;', '&#x1fac3;', '&#x1fac4;', '&#x1fac5;', '&#x1fac6;', '&#x1fac8;', '&#x1facd;', '&#x1face;', '&#x1facf;', '&#x1fad0;', '&#x1fad1;', '&#x1fad2;', '&#x1fad3;', '&#x1fad4;', '&#x1fad5;', '&#x1fad6;', '&#x1fad7;', '&#x1fad8;', '&#x1fad9;', '&#x1fada;', '&#x1fadb;', '&#x1fadc;', '&#x1fadf;', '&#x1fae0;', '&#x1fae1;', '&#x1fae2;', '&#x1fae3;', '&#x1fae4;', '&#x1fae5;', '&#x1fae6;', '&#x1fae7;', '&#x1fae8;', '&#x1fae9;', '&#x1faea;', '&#x1faf0;', '&#x1faf1;', '&#x1faf2;', '&#x1faf3;', '&#x1faf4;', '&#x1faf5;', '&#x1faf6;', '&#x1faf7;', '&#x1faf8;', '&#x203c;', '&#x2049;', '&#x2122;', '&#x2139;', '&#x2196;', '&#x2197;', '&#x2198;', '&#x2199;', '&#x21a9;', '&#x21aa;', '&#x20e3;', '&#x231a;', '&#x231b;', '&#x2328;', '&#x23cf;', '&#x23e9;', '&#x23ea;', '&#x23eb;', '&#x23ec;', '&#x23ed;', '&#x23ee;', '&#x23ef;', '&#x23f0;', '&#x23f1;', '&#x23f2;', '&#x23f3;', '&#x23f8;', '&#x23f9;', '&#x23fa;', '&#x24c2;', '&#x25aa;', '&#x25ab;', '&#x25b6;', '&#x25c0;', '&#x25fb;', '&#x25fc;', '&#x25fd;', '&#x25fe;', '&#x2600;', '&#x2601;', '&#x2602;', '&#x2603;', '&#x2604;', '&#x260e;', '&#x2611;', '&#x2614;', '&#x2615;', '&#x2618;', '&#x261d;', '&#x2622;', '&#x2623;', '&#x2626;', '&#x262a;', '&#x262e;', '&#x262f;', '&#x2638;', '&#x2639;', '&#x263a;', '&#x2648;', '&#x2649;', '&#x264a;', '&#x264b;', '&#x264c;', '&#x264d;', '&#x264e;', '&#x264f;', '&#x2650;', '&#x2651;', '&#x2652;', '&#x2653;', '&#x265f;', '&#x2660;', '&#x2663;', '&#x2665;', '&#x2666;', '&#x2668;', '&#x267b;', '&#x267e;', '&#x267f;', '&#x2692;', '&#x2693;', '&#x2694;', '&#x2697;', '&#x2699;', '&#x269b;', '&#x269c;', '&#x26a0;', '&#x26a1;', '&#x26aa;', '&#x26ab;', '&#x26b0;', '&#x26b1;', '&#x26bd;', '&#x26be;', '&#x26c4;', '&#x26c5;', '&#x26c8;', '&#x26ce;', '&#x26cf;', '&#x26d1;', '&#x26d3;', '&#x26d4;', '&#x26e9;', '&#x26ea;', '&#x26f0;', '&#x26f1;', '&#x26f2;', '&#x26f3;', '&#x26f4;', '&#x26f5;', '&#x26f7;', '&#x26f8;', '&#x26f9;', '&#x26fa;', '&#x26fd;', '&#x2702;', '&#x2705;', '&#x2709;', '&#x270a;', '&#x270b;', '&#x270c;', '&#x270d;', '&#x270f;', '&#x2712;', '&#x2714;', '&#x2716;', '&#x271d;', '&#x2721;', '&#x2728;', '&#x2733;', '&#x2734;', '&#x2747;', '&#x274c;', '&#x274e;', '&#x2753;', '&#x2754;', '&#x2755;', '&#x2757;', '&#x2763;', '&#x2795;', '&#x2796;', '&#x2797;', '&#x27b0;', '&#x27bf;', '&#x2934;', '&#x2935;', '&#x2b05;', '&#x2b06;', '&#x2b07;', '&#x2b1c;', '&#x2b50;', '&#x2b55;', '&#x3030;', '&#x303d;', '&#x3297;', '&#x3299;', '&#xe50a;' );
6299      // END: emoji arrays
6300  
6301      if ( 'entities' === $type ) {
6302          return $entities;
6303      }
6304  
6305      return $partials;
6306  }
6307  
6308  /**
6309   * Shortens a URL, to be used as link text.
6310   *
6311   * @since 1.2.0
6312   * @since 4.4.0 Moved to wp-includes/formatting.php from wp-admin/includes/misc.php and added $length param.
6313   *
6314   * @param string $url    URL to shorten.
6315   * @param int    $length Optional. Maximum length of the shortened URL. Default 35 characters.
6316   * @return string Shortened URL.
6317   */
6318  function url_shorten( $url, $length = 35 ) {
6319      $stripped  = str_replace( array( 'https://', 'http://', 'www.' ), '', $url );
6320      $short_url = untrailingslashit( $stripped );
6321  
6322      if ( strlen( $short_url ) > $length ) {
6323          $short_url = substr( $short_url, 0, $length - 3 ) . '&hellip;';
6324      }
6325      return $short_url;
6326  }
6327  
6328  /**
6329   * Sanitizes a hex color.
6330   *
6331   * Returns either '', a 3 or 6 digit hex color (with #), or nothing.
6332   * For sanitizing values without a #, see sanitize_hex_color_no_hash().
6333   *
6334   * @since 3.4.0
6335   *
6336   * @param string $color
6337   * @return string|null The sanitized hex color, or null if invalid.
6338   */
6339  function sanitize_hex_color( $color ) {
6340      if ( '' === $color ) {
6341          return '';
6342      }
6343  
6344      // 3 or 6 hex digits, or the empty string.
6345      if ( preg_match( '|^#([A-Fa-f0-9]{3}){1,2}$|', $color ) ) {
6346          return $color;
6347      }
6348      return null;
6349  }
6350  
6351  /**
6352   * Sanitizes a hex color without a hash. Use sanitize_hex_color() when possible.
6353   *
6354   * Saving hex colors without a hash puts the burden of adding the hash on the
6355   * UI, which makes it difficult to use or upgrade to other color types such as
6356   * rgba, hsl, rgb, and HTML color names.
6357   *
6358   * Returns either '', a 3 or 6 digit hex color (without a #), or null.
6359   *
6360   * @since 3.4.0
6361   *
6362   * @param string $color The color value to sanitize. Can be with or without a #.
6363   * @return string|null The sanitized hex color without the hash prefix,
6364   *                     empty string if input is empty, or null if invalid.
6365   */
6366  function sanitize_hex_color_no_hash( $color ) {
6367      $color = ltrim( $color, '#' );
6368  
6369      if ( '' === $color ) {
6370          return '';
6371      }
6372  
6373      return sanitize_hex_color( '#' . $color ) ? $color : null;
6374  }
6375  
6376  /**
6377   * Ensures that any hex color is properly hashed.
6378   * Otherwise, returns value untouched.
6379   *
6380   * This method should only be necessary if using sanitize_hex_color_no_hash().
6381   *
6382   * @since 3.4.0
6383   *
6384   * @param string $color The color value to add the hash prefix to. Can be with or without a #.
6385   * @return string The color with the hash prefix if it's a valid hex color,
6386   *                otherwise the original value.
6387   */
6388  function maybe_hash_hex_color( $color ) {
6389      $unhashed = sanitize_hex_color_no_hash( $color );
6390      if ( $unhashed ) {
6391          return '#' . $unhashed;
6392      }
6393  
6394      return $color;
6395  }


Generated : Wed Jul 29 08:20:18 2026 Cross-referenced by PHPXref