diff options
| author | fukachan <fukachan> | 2001-01-19 14:39:51 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-01-19 14:39:51 +0000 |
| commit | 4919e9c841db46667e682283904ecea191ab2be3 (patch) | |
| tree | 766b1ec1b54a36a25abdda57706512ac96700939 /cpan | |
| parent | d63380e790c2f93ae981a0425b85d22601c1acaa (diff) | |
| download | fml8-4919e9c841db46667e682283904ecea191ab2be3.tar.gz fml8-4919e9c841db46667e682283904ecea191ab2be3.tar.bz2 fml8-4919e9c841db46667e682283904ecea191ab2be3.zip | |
Initial revision
Diffstat (limited to 'cpan')
68 files changed, 49443 insertions, 0 deletions
diff --git a/cpan/dist/Jcode/HISTORY b/cpan/dist/Jcode/HISTORY new file mode 100644 index 00000000..0684346c --- /dev/null +++ b/cpan/dist/Jcode/HISTORY @@ -0,0 +1,79 @@ +# +# $Id: HISTORY,v 0.65 2000/12/11 05:35:36 dankogai Exp $ +# +0.66 2000/12/21 + * =?iso-2022-jp?b? is now case insensitive + (toshihiro.kayama@toshiba.co.jp) + * documentation bug fixed (miyagawa@edge.co.jp) + * $mime_header = $j->mime_encode() now accepts optional arguments + * \x0a -> \n, \x0d -> \r unless suitable (ohzaki@iod.ricoh.co.jp) +0.65 2000/12/11 + * $jcode->mime_(de|en)code debug + * t/mime.t added +0.64 2000/11/24 + * Same as 0.63; just misuploaded CPAN +0.63 2000/11/24 + * $jcode->mime_(de|en)code bugfix + (thank you, ohzaki@iod.ricoh.co.jp; + I shamelessly stole your code) +0.62 2000/11/23 + * Jcode/Tr.pm -- allows 3-byte tr (maybe slow!) + * $jcode->jfold() added + * $jcode->mime_(de|en)code is more RFC2045-compliant +0.61 2000/11/15 (Unreleased) + * Unicode/unicode.c -> Unicode/uni.c + to avoid namespace breach on windoze +0.60 1999/10/18 + * all $& exterminated due to popular demand +0.59 1999/10/17 + * fixed jperl incompatibiliy (Thanx, watanabe!) +0.58 1999/07/28 + * (mac|win)_install.pl now deletes old files before installing + new ones. + * ActivePerl Support (Win_Install.PL) + * t/ scripts are now more compatible with Non-unix platforms + * *_Install.PL renamed to *_install.pl to prevent MakeMaker + from executing these files. +0.57 1999/07/27 + * Access Methods to misc. Jcode objecsts added + * UTF8 detection supported by getcode + * POD correction +0.56 1999/07/24 + * Jcode::getcode(); SJIS detection is now faster for MOST cases + * POD correction +0.55 1999/07/23 + * Due to the popular demands, Non-XS version of modules are back! + * Jcode::NKF dropped + * Non-XS version of utf8 -> ucs2 conversion is much faster! +0.50 1999/07/21 + * Conversion routines are now all XS! + * Significant Performance improvement everywhere + * Especially Unicode-related routines +0.40 1999/07/16 (Internal only) + * suggestion by ISHINO k16 <k16@softvision.co.jp> + * Unicode conversion now leaves ascii as it is + * unless $Jcode::Unicode::PEDANTIC is set + * POD integrated in all .pm files +0.36 1999/07/15 (Internal only) + * All modules has $VERSION now! (to make CPAN.pm happier) + * All Octals are gone! + (Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp>) + * Remarks on jcode.pl is moved from COPYRIGHT to ACKNOWLEDGEMENTS + * (C) of Unicode, Inc. added +0.35 1999/07/15 + * Jcode now internally stores a reference to string, not string + * Furthur performance optimization. Jcode::convert() is now faster + than jcode::convert() for most cases. + * documentation fixes +0.30 1999/07/12 + * Regexp bug fixed (Jcode::Constants, $RE{JIS_0212}) + * H2Z bug fixed + * Significant Code Optimization + * Jcode->set() and Jcode->append() added for repeated use +0.21 1999/07/10 + * Typo correction +0.20 1999/07/10 2nd Preview Release + * Code optimization + * Unicode Support + * Lots of Bug Fixes +0.10 1999/07/08 First Preview Release
\ No newline at end of file diff --git a/cpan/dist/Jcode/INSTALL b/cpan/dist/Jcode/INSTALL new file mode 100644 index 00000000..70b2a17b --- /dev/null +++ b/cpan/dist/Jcode/INSTALL @@ -0,0 +1,48 @@ +# +# $Id: INSTALL,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +To install +========== + +Unix with a compiler +-------------------- + + Do the following via web + + perl Makefile.PL + make + make test + make install + +Macintosh +--------- + + Run "mac_install.pl" just once. Make sure you have "site_perl" + folder where your MacPerl folder resides. If not, create one before + you run this script. + +Windows (ActivePerl) +-------------------- + + Run "win_install.pl" just once. Make sure you have "site\lib" + folder where your ActivePerl folder resides. If not, create one + before you run this script. + +Mac, Win, RedHat Linux with just default packages installed... +--------------------------------------------------------------- +(or any other platforms where no compiler is available) + + Just copy Jcode.pm and Jcode directory (folder) into perl's lib +directory. + + To find where the heck that lib folder is, run this small perl + script. + + print join("\n", @INC); + + +__END__ + +Dan the Jcoder + diff --git a/cpan/dist/Jcode/Jcode.pm b/cpan/dist/Jcode/Jcode.pm new file mode 100644 index 00000000..317bb34a --- /dev/null +++ b/cpan/dist/Jcode/Jcode.pm @@ -0,0 +1,754 @@ +# +# $Id: Jcode.pm,v 0.66 2000/12/21 12:04:40 dankogai Exp dankogai $ +# + +=head1 NAME + +Jcode - Japanese Charset Handler + +=head1 SYNOPSIS + + use Jcode; + + # traditional + Jcode::convert(\$str, $ocode, $icode, "z"); + # or OOP! + print Jcode->new($str)->h2z->tr($from, $to)->utf8; + +=cut + +=head1 DESCRIPTION + +Jcode.pm supports both object and traditional approach. +With object approach, you can go like; + +$iso_2022_jp = Jcode->new($str)->h2z->jis; + +Which is more elegant than; + +$iso_2022_jp = &jcode::convert(\$str,'jis',jcode::getcode(\str), "z"); + +For those unfamiliar with objects, Jcode.pm still supports getcode() +and convert(). + +=cut + +package Jcode; +require 5.004; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: Jcode.pm,v 0.66 2000/12/21 12:04:40 dankogai Exp dankogai $; +$VERSION = do { my @r = (q$Revision: 0.66 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +BEGIN { + use Exporter; + use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); + @ISA = qw(Exporter); + @EXPORT = qw(jcode getcode); + @EXPORT_OK = qw($RCSID $VERSION $DEBUG $USE_CACHE); + %EXPORT_TAGS = ( all => [ @EXPORT_OK, @EXPORT ] ); +} + +use vars @EXPORT_OK; + +$DEBUG = 0; +$USE_CACHE = 1; + +print $RCSID, "\n" if $DEBUG; + +use Jcode::Constants qw(:all); + +=head1 Methods + +Methods mentioned here all return Jcode object unless otherwise mentioned. + +=over 4 + +=cut + +use overload + '""' => sub { ${$_[0]->[0]} }, + '==' => sub {overload::StrVal($_[0]) eq overload::StrVal($_[1])}, + fallback => 1, + ; + +=item $j = Jcode->new($str [, $icode]); + +Creates Jcode object $j from $str. Input code is automatically checked +unless you explicitly set $icode. For available charset, see L<getcode()> +below. + +The object keeps the string in EUC format enternaly. When the object +itself is evaluated, it returns the EUC-converted string so you can +"print $j;" without calling access method if you are using EUC +(thanks to function overload). + +=item Passing Reference + +Instead of scalar value, You can use reference as + +Jcode->new(\$str); + +This saves time a little bit. In exchange of the value of $str being +converted. (In a way, $str is now "tied" to jcode object). + +=cut + +sub new { + my $class = shift; + my ($thingy, $icode) = @_; + my $r_str = _mkbuf($thingy); + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + convert($r_str, 'euc', $icode); + my $self = [ + $r_str, + $icode, + $nmatch, + ]; + carp "Object of class $class created" if $DEBUG >= 2; + bless $self, $class; +} + +sub r_str { $_[0]->[0] } +sub icode { $_[0]->[1] } +sub nmatch { $_[0]->[2] } + +=item $j->set($str [, $icode]); + +Sets $j's internal string to $str. Handy when you use Jcode object repeatedly +(saves time and memory to create object). + + # converts mailbox to SJIS format + my $jconv = new Jcode; + while(<>){ + print $jconv->set(\$_)->mime_decode->sjis; + } + +=cut + +sub set { + my $self = shift; + my ($thingy, $icode) = @_; + my $r_str = _mkbuf($thingy); + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + convert($r_str, 'euc', $icode); + $self->[0] = $r_str; + $self->[1] = $icode; + $self->[2] = $nmatch; + return $self; +} + +=item $j->append($str [, $icode]); + +Appends $str to $j's internal string. + +=cut + +sub append { + my $self = shift; + my ($thingy, $icode) = @_; + my $r_str = _mkbuf($thingy); + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + convert($r_str, 'euc', $icode); + ${$self->[0]} .= $$r_str; + $self->[1] = $icode; + $self->[2] = $nmatch; + return $self; +} + + +=item $j = jcode($str [, $icode]); + +shortcut for Jcode->new() so you can go like; + +$sjis = jcode($str)->sjis; + +=item $euc = $j->euc; + +=item $jis = $j->jis; + +=item $sjis = $j->sjis; + +What you code is what you get :) + +=cut + +sub jcode { return Jcode->new(@_) } +sub euc { return ${$_[0]->[0]} } +sub jis { return &euc_jis(${$_[0]->[0]})} +sub sjis { return &euc_sjis(${$_[0]->[0]})} + +=item $iso_2022_jp = $j->iso_2022_jp + +Same as $j->z2h->jis. +Hankaku Kanas are forcibly converted to Zenkaku. + +=cut + +sub iso_2022_jp{return $_[0]->h2z->jis} + +=item [@lines =] $jcode->jfold([$bytes_per_line, $newline_str]); + +folds lines in jcode string every $bytes_per_line (default: 72) +in a way that does not clobber the multibyte string. +(Sorry, no Kinsoku done!) +with a newline string spified by $newline_str (default: \n). + +=cut + +sub jfold{ + my $self = shift; + my ($bpl, $nl) = @_; + $bpl ||= 72; + $nl ||= "\n"; + my $r_str = $self->[0]; + my (@lines, $len, $i); + while ($$r_str =~ m/([\x8f\x8e]$RE{EUC_C}|$RE{EUC_C}|[\x00-\xff])/sgo){ + if ($len + length($1) > $bpl){ # fold! + $i++; + $len = 0; + } + $lines[$i] .= $1; + $len += length($1); + } + $lines[$i] or pop @lines; + $$r_str = join($nl, @lines); + return wantarray ? @lines : $self; +} + + +=head2 Methods that use MIME::Base64 + +To use methods below, you need MIME::Base64. To install, simply + + perl -MCPAN -e 'CPAN::Shell->install("MIME::Base64")' + +=item $mime_header = $j->mime_encode([$lf, $bpl]); + +Converts $str to MIME-Header documented in RFC1522. +When $lf is specified, it uses $lf to fold line (default: \n); +When $bpl is specified, it uses $bpl for the number of bytes (default: 76); + +=cut + +sub mime_encode{ + my $self = shift; + my $r_str = $self->[0]; + my $lf = shift || "\n"; + my $bpl = shift || 76; + + my ($trailing_crlf) = ($$r_str =~ /(\n|\r|\x0d\x0a)$/o); + my $str = _mime_unstructured_header($$r_str, $lf, $bpl); + not $trailing_crlf and $str =~ s/(\n|\r|\x0d\x0a)$//o; + $str; +} + +# +# shamelessly stolen from +# http://www.din.or.jp/~ohzaki/perl.htm#JP_Base64 +# + +sub _add_encoded_word { + require MIME::Base64; + my($str, $line) = @_; + my $result = ''; + while (length($str)) { + my $target = $str; + $str = ''; + if (length($line) + 22 + + ($target =~ /^(?:$RE{EUC_0212}|$RE{EUC_C})/o) * 8 > 76) { + $line =~ s/[ \t\n\r]*$/\n/; + $result .= $line; + $line = ' '; + } + while (1) { + my $encoded = '=?ISO-2022-JP?B?' . + MIME::Base64::encode_base64( + jcode($target, 'euc')->iso_2022_jp, '') + . '?='; + if (length($encoded) + length($line) > 76) { + $target =~ s/(RE{EUC_0212}|$RE{EUC_C}|$RE{ASCII})$//o; + $str = $1 . $str; + } else { + $line .= $encoded; + last; + } + } + } + return $result . $line; +} + + +sub _mime_unstructured_header { + my ($oldheader, $lf, $bpl) = @_; + my(@words, @wordstmp, $i); + my $header = ''; + $oldheader =~ s/\s+$//; + @wordstmp = split /\s+/, $oldheader; + for ($i = 0; $i < $#wordstmp; $i++) { + if ($wordstmp[$i] !~ /^[\x21-\x7E]+$/ and + $wordstmp[$i + 1] !~ /^[\x21-\x7E]+$/) { + $wordstmp[$i + 1] = "$wordstmp[$i] $wordstmp[$i + 1]"; + } else { + push(@words, $wordstmp[$i]); + } + } + push(@words, $wordstmp[-1]); + for my $word (@words) { + if ($word =~ /^[\x21-\x7E]+$/) { + $header =~ /(?:.*\n)?(.*)/; + if (length($1) + length($word) > $bpl) { + $header .= "$lf $word"; + } else { + $header .= $word; + } + } else { + $header = _add_encoded_word($word, $header); + } + $header =~ /(?:.*\n)?(.*)/; + if (length($1) == $bpl) { + $header .= "$lf "; + } else { + $header .= ' '; + } + } + $header =~ s/\n? $/\n/; + $header; +} + +=item $j->mime_decode; + +Decodes MIME-Header in Jcode object. + +You can retrieve the number of matches via $j->nmatch; + +=cut + +# see http://www.din.or.jp/~ohzaki/perl.htm#JP_Base64 +#$lws = '(?:(?:\x0d\x0a)?[ \t])+'; +#$ew_regex = '=\?ISO-2022-JP\?B\?([A-Za-z0-9+/]+=*)\?='; +#$str =~ s/($ew_regex)$lws(?=$ew_regex)/$1/gio; +#$str =~ s/$lws/ /go; $str =~ s/$ew_regex/decode_base64($1)/egio; + +sub mime_decode{ + require MIME::Base64; # not use + my $self = shift; + my $r_str = $self->[0]; + my $re_lws = '(?:(?:\r|\n|\x0d\x0a)?[ \t])+'; + my $re_ew = '(?i:=\?ISO-2022-JP\?B\?)([A-Za-z0-9+/]+=*)\?='; + $$r_str =~ s/($re_ew)$re_lws(?=$re_ew)/$1/sgo; + $$r_str =~ s/$re_lws/ /go; + $self->[2] = + ($$r_str =~ + s/$re_ew/jis_euc(MIME::Base64::decode_base64($1))/ego + ); + $self; +} + +=head2 Methods implemented by Jcode::H2Z + +Methods below are actually implemented in Jcode::H2Z. + +=item $j->h2z([$keep_dakuten]); + +Converts X201 kana (Hankaku) to X208 kana (Zenkaku). +When $keep_dakuten is set, it leaves dakuten as is +(That is, "ka + dakuten" is left as is instead of +being converted to "ga") + +You can retrieve the number of matches via $j->nmatch; + +=cut + +sub h2z { + require Jcode::H2Z; # not use + my $self = shift; + $self->[2] = Jcode::H2Z::h2z($self->[0], @_); + return $self; +} + +=item $j->z2h; + +Converts X208 kana (Zenkaku) to X201 kana (Hankazu). + +You can retrieve the number of matches via $j->nmatch; + +=cut + +sub z2h { + require Jcode::H2Z; # not use + my $self = shift; + $self->[2] = &Jcode::H2Z::z2h($self->[0], @_); + return $self; +} + +=head2 Methods implemented in Jcode::Tr + +Methods here are actually implemented in Jcode::Tr. + +=item $j->tr($from, $to); + +Applies tr on Jcode object. $from and $to can contain EUC Japanese. + +You can retrieve the number of matches via $j->nmatch; + +=cut + +sub tr{ + require Jcode::Tr; # not use + my $self = shift; + $self->[2] = Jcode::Tr::tr($self->[0], @_); + return $self; +} + +# +# load needed module depending on the configuration just once! +# + +use vars qw(%PKG_LOADED); +sub load_module{ + my $pkg = shift; + return $pkg if $PKG_LOADED{$pkg}++; + eval qq( require $pkg; ); + unless ($@){ + carp "$pkg loaded." if $DEBUG; + }else{ + $pkg .= "::NoXS"; + eval qq( require $pkg; ); + unless ($@){ + carp "$pkg loaded" if $DEBUG; + }else{ + croak "Loading $pkg failed!"; + } + } + $pkg; +} + +=head2 Methods implemented in Jcode::Unicode + +If your perl does not support XS (or you can't C<perl Makefile.PL>, +Jcode::Unicode::NoXS will be used. + +See L<Jcode::Unicode> and L<Jcode::Unicode::NoXS> for details + +=item $ucs2 = $j->ucs2; + +Returns UCS2 (Raw Unicode) string. + +=cut + +sub ucs2{ + load_module("Jcode::Unicode"); + euc_ucs2(${$_[0]->[0]}); +} + +=item $ucs2 = $j->utf8; + +Returns utf8 String. + +=cut + +sub utf8{ + load_module("Jcode::Unicode"); + euc_utf8(${$_[0]->[0]}); +} + +=head2 Instance Variables + +If you need to access instance variables of Jcode object, use access +methods below instead of directly accessing them (That's what OOP +is all about) + +FYI, Jcode uses a ref to array instead of ref to hash (common way) to +optimize speed (Actually you don't have to know as long as you use +access methods instead; Once again, that's OOP) + +=item $j->r_str + +Reference to the EUC-coded String. + +=item $j->icode + +Input charcode in recent operation. + +=item $j->nmatch + +Number of matches (Used in $j->tr, etc.) + +=cut + +=head1 Subroutines + +=item ($code, [$nmatch]) = getcode($str); + +Returns char code of $str. Return codes are as follows + + ascii Ascii (Contains no Japanese Code) + binary Binary (Not Text File) + euc EUC-JP + sjis SHIFT_JIS + jis JIS (ISO-2022-JP) + ucs2 UCS2 (Raw Unicode) + utf8 UTF8 + +When array context is used instead of scaler, it also returns how many +character codes are found. As mentioned above, $str can be \$str +instead. + +=item jcode.pl Users: + +This function is 100% upper-conpatible with jcode::getcode() -- well, almost; + + * When its return value is an array, the order is the opposite; + jcode::getcode() returns $nmatch first. + + * jcode::getcode() returns 'undef' when the number of EUC characters + is equal to that of SJIS. Jcode::getcode() returns EUC. for + Jcode.pm is no in-betweens. + +=cut + +sub getcode { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my ($code, $nmatch, $sjis, $euc, $utf8) = ("", 0, 0, 0, 0); + + if ($$r_str =~ /$RE{BIN}/o) { # 'binary' + my $ucs2; + $ucs2 += length($1) + while $$r_str =~ /(\x00$RE{ASCII})+/go; + if ($ucs2){ # smells like raw unicode + ($code, $nmatch) = ('ucs2', $ucs2); + }else{ + ($code, $nmatch) = ('binary', 0); + } + } + elsif ($$r_str !~ /[\e\x80-\xff]/o) { # not Japanese + ($code, $nmatch) = ('ascii', 1); + } # 'jis' + elsif ($$r_str =~ + m[ + $RE{JIS_0208}|$RE{JIS_0212}|$RE{JIS_ASC}|$RE{JIS_KANA} + ]ox) + { + ($code, $nmatch) = ('jis', 1); + } + else { # should be euc|sjis|utf8 + # use of (?:) by Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp> + $sjis += length($1) + while $$r_str =~ /((?:$RE{SJIS_C})+)/go; + $euc += length($1) + while $$r_str =~ /((?:$RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212})+)/go; + $utf8 += length($1) + while $$r_str =~ /((?:$RE{UTF8})+)/go; + $nmatch = _max($utf8, $sjis, $euc); + carp ">DEBUG:sjis = $sjis, euc = $euc, utf8 = $utf8" if $DEBUG >= 3; + $code = + ($euc > $sjis and $euc > $utf8) ? 'euc' : + ($sjis > $euc and $sjis > $utf8) ? 'sjis' : + ($utf8 > $euc and $utf8 > $sjis) ? 'utf8' : undef; + } + return wantarray ? ($code, $nmatch) : $code; +} + +=item Jcode::convert($str, [$ocode, $icode, $opt]); + +Converts $str to char code specified by $ocode. When $icode is specified +also, it assumes $icode for input string instead of the one checked by +getcode(). As mentioned above, $str can be \$str instead. + +=item jcode.pl Users: + +This function is 100% upper-conpatible with jcode::convert() ! + +=cut + +sub convert{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my ($ocode, $icode, $opt) = @_; + + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + + return $$r_str if $icode eq $ocode; # do nothin' + + no strict qw(refs); + my $method; + + # convert to EUC + + load_module("Jcode::Unicode") if $icode =~ /ucs2|utf8/o; + if ($icode and defined &{$method = $icode . "_euc"}){ + carp "Dispatching \&$method" if $DEBUG >= 2; + &{$method}($r_str) ; + } + + # h2z or z2h + + if ($opt){ + my $cmd = ($opt =~ /^z/o) ? "h2z" : ($opt =~ /^h/o) ? "z2h" : undef; + if ($cmd){ + require Jcode::H2Z; + &{'Jcode::H2Z::' . $cmd}($r_str); + } + } + + # convert to $ocode + + load_module("Jcode::Unicode") if $ocode =~ /ucs2|utf8/o; + if ($ocode and defined &{$method = "euc_" . $ocode}){ + carp "Dispatching \&$method" if $DEBUG >= 2; + &{$method}($r_str) ; + } + $$r_str; +} + +# JIS<->EUC + +sub jis_euc { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s( + ($RE{JIS_0212}|$RE{JIS_0208}|$RE{JIS_ASC}|$RE{JIS_KANA}) + ([^\e]*) + ) + { + my ($esc, $str) = ($1, $2); + if ($esc !~ /$RE{JIS_ASC}/o) { + $str =~ tr/\x21-\x7e/\xa1-\xfe/; + if ($esc =~ /$RE{JIS_KANA}/o) { + $str =~ s/([\xa1-\xdf])/\x8e$1/og; + } + elsif ($esc =~ /$RE{JIS_0212}/o) { + $str =~ s/([\xa1-\xfe][\xa1-\xfe])/\x8f$1/og; + } + } + $str; + }geox; + $$r_str; +} + +# +sub euc_jis { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s{ + (($RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212})+) + } + { + my $str = $1; + my $esc = ($str =~ tr/\x8e//d) ? $ESC{KANA} : + ($str =~ tr/\x8f//d) ? $ESC{JIS_0212} : $ESC{JIS_0208}; + $str =~ tr/\xa1-\xfe/\x21-\x7e/; + $esc . $str . $ESC{ASC} + }geox; + $$r_str; +} + +# EUC<->SJIS + +my %_S2E = (); +my %_E2S = (); + +sub sjis_euc { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s( + ($RE{SJIS_C}|$RE{SJIS_KANA}) + ) + { + my $str = $1; + unless ($_S2E{$1}){ + my ($c1, $c2) = unpack('CC', $str); + if (0xa1 <= $c1 && $c1 <= 0xdf) { + $c2 = $c1; + $c1 = 0x8e; + } elsif (0x9f <= $c2) { + $c1 = $c1 * 2 - ($c1 >= 0xe0 ? 0xe0 : 0x60); + $c2 += 2; + } else { + $c1 = $c1 * 2 - ($c1 >= 0xe0 ? 0xe1 : 0x61); + $c2 += 0x60 + ($c2 < 0x7f); + } + $_S2E{$str} = pack('CC', $c1, $c2); + } + $_S2E{$str}; + }geox; + $$r_str; +} + +# + +sub euc_sjis { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s( + ($RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212}) + ) + { + my $str = $1; + unless ($_E2S{$str}){ + my ($c1, $c2) = unpack('CC', $str); + if ($c1 == 0x8e) { # SS2 + $_E2S{$str} = chr($c2); + } elsif ($c1 == 0x8f) { # SS3 + $_E2S{$str} = $CHARCODE{UNDEF_SJIS}; + }else { #SS1 or X0208 + if ($c1 % 2) { + $c1 = ($c1>>1) + ($c1 < 0xdf ? 0x31 : 0x71); + $c2 -= 0x60 + ($c2 < 0xe0); + } else { + $c1 = ($c1>>1) + ($c1 < 0xdf ? 0x30 : 0x70); + $c2 -= 2; + } + $_E2S{$str} = pack('CC', $c1, $c2); + } + } + $_E2S{$str}; + }geox; + $$r_str; +} + +# + +1; + +__END__ + +=head1 BUGS + +=item Unicode support by Jcode is far from efficient! + +=head1 ACKNOWLEDGEMENTS + +This package owes a lot in motivation, design, and code, to the jcode.pl +for Perl4 by Kazumasa Utashiro <utashiro@iij.ad.jp>. + +Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp> has helped me polish regexp from the +very first stage of development. + +And folks at Jcode Mailing list <jcode5@ring.gr.jp>. Without them, I +couldn't have coded this far. + +=head1 SEE ALSO + +=item L<Jcode::Unicode> + +=item L<Jcode::Unicode::NoXS> + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +=cut diff --git a/cpan/dist/Jcode/Jcode/Constants.pm b/cpan/dist/Jcode/Jcode/Constants.pm new file mode 100644 index 00000000..7bce2ea0 --- /dev/null +++ b/cpan/dist/Jcode/Jcode/Constants.pm @@ -0,0 +1,88 @@ +# +# $Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $ +# + +package Jcode::Constants; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +BEGIN { + use Exporter; + use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); + @ISA = qw(Exporter); + @EXPORT = qw(); + @EXPORT_OK = qw(&_max &_mkbuf %CHARCODE %ESC %RE); + %EXPORT_TAGS = ( 'all' => [ @EXPORT_OK, @EXPORT ] ); +} + +use vars @EXPORT_OK; + +my %_0208 = ( + 1978 => '\e\$\@', + 1983 => '\e\$B', + 1990 => '\e&\@\e\$B', + ); + +%CHARCODE = ( + UNDEF_EUC => "\xa2\xae", # ¢® in EUC + UNDEF_SJIS => "\x81\xac", # ¢® in SJIS + UNDEF_JIS => "\xa2\xf7", # ¢÷ -- used in unicode + UNDEF_UNICODE => "\x20\x20", # ¢÷ -- used in unicode + ); + +%ESC = ( + JIS_0208 => "\e\$B", + JIS_0212 => "\e\$(D", + ASC => "\e\(B", + KANA => "\e\(I", + ); + +%RE = + ( + ASCII => '[\x00-\x7f]', + BIN => '[\x00-\x06\x7f\xff]', + EUC_0212 => '\x8f[\xa1-\xfe][\xa1-\xfe]', + EUC_C => '[\xa1-\xfe][\xa1-\xfe]', + EUC_KANA => '\x8e[\xa1-\xdf]', + JIS_0208 => "$_0208{1978}|$_0208{1983}|$_0208{1990}", + JIS_0212 => "\e" . '\$\(D', + JIS_ASC => "\e" . '\([BJ]', + JIS_KANA => "\e" . '\(I', + SJIS_C => '[\x81-\x9f\xe0-\xfc][\x40-\x7e\x80-\xfc]', + SJIS_KANA => '[\xa1-\xdf]', + UTF8 => '[\xc0-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf][\x80-\xbf]' + ); + +# +# Util. Functions +# + +# Make buffer when and only when necessary + +sub _mkbuf { + my $thingy = shift; + if (ref $thingy){ + return $thingy; + } + else{ + my $buf = $thingy; + return \$buf; + } +} + +sub _max { + my $result = shift; + for my $n (@_){ + $result = $n if $n > $result; + } + return $result; +} + +1; + diff --git a/cpan/dist/Jcode/Jcode/H2Z.pm b/cpan/dist/Jcode/Jcode/H2Z.pm new file mode 100644 index 00000000..79aa3794 --- /dev/null +++ b/cpan/dist/Jcode/Jcode/H2Z.pm @@ -0,0 +1,168 @@ +# +# $Id: H2Z.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +package Jcode::H2Z; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: H2Z.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 0.61 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +use Jcode::Constants qw(:all); + +use vars qw(%_D2Z $_PAT_D2Z + %_Z2D $_PAT_Z2D + %_H2Z $_PAT_H2Z + %_Z2H $_PAT_Z2H); + +%_H2Z = ( + "\x8e\xa1" => "\xa1\xa3", #¡£ + "\x8e\xa2" => "\xa1\xd6", #¡Ö + "\x8e\xa3" => "\xa1\xd7", #¡× + "\x8e\xa4" => "\xa1\xa2", #¡¢ + "\x8e\xa5" => "\xa1\xa6", #¡¦ + "\x8e\xa6" => "\xa5\xf2", #¥ò + "\x8e\xa7" => "\xa5\xa1", #¥¡ + "\x8e\xa8" => "\xa5\xa3", #¥£ + "\x8e\xa9" => "\xa5\xa5", #¥¥ + "\x8e\xaa" => "\xa5\xa7", #¥§ + "\x8e\xab" => "\xa5\xa9", #¥© + "\x8e\xac" => "\xa5\xe3", #¥ã + "\x8e\xad" => "\xa5\xe5", #¥å + "\x8e\xae" => "\xa5\xe7", #¥ç + "\x8e\xaf" => "\xa5\xc3", #¥Ã + "\x8e\xb0" => "\xa1\xbc", #¡¼ + "\x8e\xb1" => "\xa5\xa2", #¥¢ + "\x8e\xb2" => "\xa5\xa4", #¥¤ + "\x8e\xb3" => "\xa5\xa6", #¥¦ + "\x8e\xb4" => "\xa5\xa8", #¥¨ + "\x8e\xb5" => "\xa5\xaa", #¥ª + "\x8e\xb6" => "\xa5\xab", #¥« + "\x8e\xb7" => "\xa5\xad", #¥ + "\x8e\xb8" => "\xa5\xaf", #¥¯ + "\x8e\xb9" => "\xa5\xb1", #¥± + "\x8e\xba" => "\xa5\xb3", #¥³ + "\x8e\xbb" => "\xa5\xb5", #¥µ + "\x8e\xbc" => "\xa5\xb7", #¥· + "\x8e\xbd" => "\xa5\xb9", #¥¹ + "\x8e\xbe" => "\xa5\xbb", #¥» + "\x8e\xbf" => "\xa5\xbd", #¥½ + "\x8e\xc0" => "\xa5\xbf", #¥¿ + "\x8e\xc1" => "\xa5\xc1", #¥Á + "\x8e\xc2" => "\xa5\xc4", #¥Ä + "\x8e\xc3" => "\xa5\xc6", #¥Æ + "\x8e\xc4" => "\xa5\xc8", #¥È + "\x8e\xc5" => "\xa5\xca", #¥Ê + "\x8e\xc6" => "\xa5\xcb", #¥Ë + "\x8e\xc7" => "\xa5\xcc", #¥Ì + "\x8e\xc8" => "\xa5\xcd", #¥Í + "\x8e\xc9" => "\xa5\xce", #¥Î + "\x8e\xca" => "\xa5\xcf", #¥Ï + "\x8e\xcb" => "\xa5\xd2", #¥Ò + "\x8e\xcc" => "\xa5\xd5", #¥Õ + "\x8e\xcd" => "\xa5\xd8", #¥Ø + "\x8e\xce" => "\xa5\xdb", #¥Û + "\x8e\xcf" => "\xa5\xde", #¥Þ + "\x8e\xd0" => "\xa5\xdf", #¥ß + "\x8e\xd1" => "\xa5\xe0", #¥à + "\x8e\xd2" => "\xa5\xe1", #¥á + "\x8e\xd3" => "\xa5\xe2", #¥â + "\x8e\xd4" => "\xa5\xe4", #¥ä + "\x8e\xd5" => "\xa5\xe6", #¥æ + "\x8e\xd6" => "\xa5\xe8", #¥è + "\x8e\xd7" => "\xa5\xe9", #¥é + "\x8e\xd8" => "\xa5\xea", #¥ê + "\x8e\xd9" => "\xa5\xeb", #¥ë + "\x8e\xda" => "\xa5\xec", #¥ì + "\x8e\xdb" => "\xa5\xed", #¥í + "\x8e\xdc" => "\xa5\xef", #¥ï + "\x8e\xdd" => "\xa5\xf3", #¥ó + "\x8e\xde" => "\xa1\xab", #¡« + "\x8e\xdf" => "\xa1\xac", #¡¬ +); + +%_D2Z = ( + "\x8e\xb6\x8e\xde" => "\xa5\xac", #¥¬ + "\x8e\xb7\x8e\xde" => "\xa5\xae", #¥® + "\x8e\xb8\x8e\xde" => "\xa5\xb0", #¥° + "\x8e\xb9\x8e\xde" => "\xa5\xb2", #¥² + "\x8e\xba\x8e\xde" => "\xa5\xb4", #¥´ + "\x8e\xbb\x8e\xde" => "\xa5\xb6", #¥¶ + "\x8e\xbc\x8e\xde" => "\xa5\xb8", #¥¸ + "\x8e\xbd\x8e\xde" => "\xa5\xba", #¥º + "\x8e\xbe\x8e\xde" => "\xa5\xbc", #¥¼ + "\x8e\xbf\x8e\xde" => "\xa5\xbe", #¥¾ + "\x8e\xc0\x8e\xde" => "\xa5\xc0", #¥À + "\x8e\xc1\x8e\xde" => "\xa5\xc2", #¥Â + "\x8e\xc2\x8e\xde" => "\xa5\xc5", #¥Å + "\x8e\xc3\x8e\xde" => "\xa5\xc7", #¥Ç + "\x8e\xc4\x8e\xde" => "\xa5\xc9", #¥É + "\x8e\xca\x8e\xde" => "\xa5\xd0", #¥Ð + "\x8e\xcb\x8e\xde" => "\xa5\xd3", #¥Ó + "\x8e\xcc\x8e\xde" => "\xa5\xd6", #¥Ö + "\x8e\xcd\x8e\xde" => "\xa5\xd9", #¥Ù + "\x8e\xce\x8e\xde" => "\xa5\xdc", #¥Ü + "\x8e\xca\x8e\xdf" => "\xa5\xd1", #¥Ñ + "\x8e\xcb\x8e\xdf" => "\xa5\xd4", #¥Ô + "\x8e\xcc\x8e\xdf" => "\xa5\xd7", #¥× + "\x8e\xcd\x8e\xdf" => "\xa5\xda", #¥Ú + "\x8e\xce\x8e\xdf" => "\xa5\xdd", #¥Ý + "\x8e\xb3\x8e\xde" => "\xa5\xf4", #¥ô +); + +# init only once; + +$_PAT_D2Z = join("|", keys %_D2Z); +$_PAT_H2Z = join("|", keys %_H2Z); + +%_Z2H = reverse %_H2Z; +%_Z2D = reverse %_D2Z; + +$_PAT_Z2H = join("|", keys %_Z2H); +$_PAT_Z2D = join("|", keys %_Z2D); + +sub h2z { + my $r_str = shift; + my ($keep_dakuten) = @_; + my $n = 0; + unless ($keep_dakuten){ + $n = ( + $$r_str =~ s( + ($RE{EUC_KANA} + (:?\x8e[\xde\xdf])?) + ){ + my $str = $1; + $_D2Z{$str} || $_H2Z{$str} || + # in case dakuten and handakuten are side-by-side! + $_H2Z{substr($str,0,2)} . $_H2Z{substr($str,2,2)}; + }eogx + ); + }else{ + $n = ( + $$r_str =~ s( + ($RE{EUC_KANA}) + ){ + $_H2Z{$1}; + }eogx + ); + } + $n; +} + +sub z2h { + my $r_str = shift; + my $n = ( + $$r_str =~ s( + ($RE{EUC_C}|$RE{EUC_KANA}) + ){ + $_Z2D{$1} || $_Z2H{$1} || $1; + }eogx + ); + $n; +} + +1; diff --git a/cpan/dist/Jcode/Jcode/Tr.pm b/cpan/dist/Jcode/Jcode/Tr.pm new file mode 100644 index 00000000..4d8ee1ff --- /dev/null +++ b/cpan/dist/Jcode/Jcode/Tr.pm @@ -0,0 +1,87 @@ +# +# $Id: Tr.pm,v 0.63 2000/11/22 09:05:01 dankogai Exp dankogai $ +# + +package Jcode::Tr; + +use strict; +use vars qw($VERSION $RCSID); + +$RCSID = q$Id: Tr.pm,v 0.63 2000/11/22 09:05:01 dankogai Exp dankogai $; +$VERSION = do { my @r = (q$Revision: 0.63 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +use Jcode::Constants qw(:all); +use vars qw(%_TABLE); + +sub tr { + # $prev_from, $prev_to, %table are persistent variables + my ($r_str, $from, $to, $opt) = @_; + my (@from, @to); + my $n = 0; + + undef %_TABLE; + &_maketable($from, $to, $opt); + + $$r_str =~ s( + ([\x80-\xff][\x00-\xff]|[\x00-\xff]) + ) + {defined($_TABLE{$1}) && ++$n ? + $_TABLE{$1} : $1}ogex; + + return $n; +} + +sub _maketable { + my ($from, $to, $opt) = @_; + + grep(s/([\x8e\x8f]$RE{EUC_C}-[\x8e\x8f]$RE{EUC_C})/&_expnd3($1)/geo, + $from,$to); + grep(s/($RE{EUC_C}-$RE{EUC_C})/&_expnd2($1)/geo, + $from,$to); + grep(s/($RE{ASCII}-$RE{ASCII})/&_expnd1($1)/geo, + $from,$to); + + my @to = $to =~ /[\x8e\x8f]$RE{EUC_C}|$RE{EUC_C}|[\x00-\xff]/go; + my @from = $from =~ /[\x8e\x8f]$RE{EUC_C}|$RE{EUC_C}|[\x00-\xff]/go; + + push(@to, ($opt =~ /d/ ? '' : $to[$#to]) x (@from - @to)) if @to < @from; + @_TABLE{@from} = @to; +} + +sub _expnd1 { + my ($str) = @_; + s/\\(.)/$1/og; + my($c1, $c2) = unpack('CxC', $str); + if ($c1 <= $c2) { + for ($str = ''; $c1 <= $c2; $c1++) { + $str .= pack('C', $c1); + } + } + return $str; +} + +sub _expnd2 { + my ($str) = @_; + my ($c1, $c2, $c3, $c4) = unpack('CCxCC', $str); + if ($c1 == $c3 && $c2 <= $c4) { + for ($str = ''; $c2 <= $c4; $c2++) { + $str .= pack('CC', $c1, $c2); + } + } + return $str; +} + +sub _expnd3 { + my ($str) = @_; + my ($c1, $c2, $c3, $c4) = unpack('CCCxCCC', $str); + if ($c1 == $c3 && $c2 <= $c4) { + for ($str = ''; $c2 <= $c4; $c2++) { + $str .= pack('CCC', $c1, $c2); + } + } + return $str; +} + +1; diff --git a/cpan/dist/Jcode/Jcode/Unicode/Constants.pm b/cpan/dist/Jcode/Jcode/Unicode/Constants.pm new file mode 100644 index 00000000..4538da03 --- /dev/null +++ b/cpan/dist/Jcode/Jcode/Unicode/Constants.pm @@ -0,0 +1,13075 @@ +# +# $Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $ +# + +package Jcode::Unicode::Constants; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +# Exporter is not used to optimize speed + +package Jcode::Unicode::Constants; + +use vars qw(%_U2E %_E2U); + +# Ugly S.O.B Here! +%_U2E = ( +"\x00\xa1" => "\x8f\xa2\xc2", +"\x00\xa2" => "\xa1\xf1", +"\x00\xa3" => "\xa1\xf2", +"\x00\xa4" => "\x8f\xa2\xf0", +"\x00\xa5" => "\x5c", +"\x00\xa6" => "\x8f\xa2\xc3", +"\x00\xa7" => "\xa1\xf8", +"\x00\xa8" => "\xa1\xaf", +"\x00\xa9" => "\x8f\xa2\xed", +"\x00\xaa" => "\x8f\xa2\xec", +"\x00\xac" => "\xa2\xcc", +"\x00\xae" => "\x8f\xa2\xee", +"\x00\xaf" => "\x8f\xa2\xb4", +"\x00\xb0" => "\xa1\xeb", +"\x00\xb1" => "\xa1\xde", +"\x00\xb4" => "\xa1\xad", +"\x00\xb6" => "\xa2\xf9", +"\x00\xb8" => "\x8f\xa2\xb1", +"\x00\xba" => "\x8f\xa2\xeb", +"\x00\xbf" => "\x8f\xa2\xc4", +"\x00\xc0" => "\x8f\xaa\xa2", +"\x00\xc1" => "\x8f\xaa\xa1", +"\x00\xc2" => "\x8f\xaa\xa4", +"\x00\xc3" => "\x8f\xaa\xaa", +"\x00\xc4" => "\x8f\xaa\xa3", +"\x00\xc5" => "\x8f\xaa\xa9", +"\x00\xc6" => "\x8f\xa9\xa1", +"\x00\xc7" => "\x8f\xaa\xae", +"\x00\xc8" => "\x8f\xaa\xb2", +"\x00\xc9" => "\x8f\xaa\xb1", +"\x00\xca" => "\x8f\xaa\xb4", +"\x00\xcb" => "\x8f\xaa\xb3", +"\x00\xcc" => "\x8f\xaa\xc0", +"\x00\xcd" => "\x8f\xaa\xbf", +"\x00\xce" => "\x8f\xaa\xc2", +"\x00\xcf" => "\x8f\xaa\xc1", +"\x00\xd1" => "\x8f\xaa\xd0", +"\x00\xd2" => "\x8f\xaa\xd2", +"\x00\xd3" => "\x8f\xaa\xd1", +"\x00\xd4" => "\x8f\xaa\xd4", +"\x00\xd5" => "\x8f\xaa\xd8", +"\x00\xd6" => "\x8f\xaa\xd3", +"\x00\xd7" => "\xa1\xdf", +"\x00\xd8" => "\x8f\xa9\xac", +"\x00\xd9" => "\x8f\xaa\xe3", +"\x00\xda" => "\x8f\xaa\xe2", +"\x00\xdb" => "\x8f\xaa\xe5", +"\x00\xdc" => "\x8f\xaa\xe4", +"\x00\xdd" => "\x8f\xaa\xf2", +"\x00\xde" => "\x8f\xa9\xb0", +"\x00\xdf" => "\x8f\xa9\xce", +"\x00\xe0" => "\x8f\xab\xa2", +"\x00\xe1" => "\x8f\xab\xa1", +"\x00\xe2" => "\x8f\xab\xa4", +"\x00\xe3" => "\x8f\xab\xaa", +"\x00\xe4" => "\x8f\xab\xa3", +"\x00\xe5" => "\x8f\xab\xa9", +"\x00\xe6" => "\x8f\xa9\xc1", +"\x00\xe7" => "\x8f\xab\xae", +"\x00\xe8" => "\x8f\xab\xb2", +"\x00\xe9" => "\x8f\xab\xb1", +"\x00\xea" => "\x8f\xab\xb4", +"\x00\xeb" => "\x8f\xab\xb3", +"\x00\xec" => "\x8f\xab\xc0", +"\x00\xed" => "\x8f\xab\xbf", +"\x00\xee" => "\x8f\xab\xc2", +"\x00\xef" => "\x8f\xab\xc1", +"\x00\xf0" => "\x8f\xa9\xc3", +"\x00\xf1" => "\x8f\xab\xd0", +"\x00\xf2" => "\x8f\xab\xd2", +"\x00\xf3" => "\x8f\xab\xd1", +"\x00\xf4" => "\x8f\xab\xd4", +"\x00\xf5" => "\x8f\xab\xd8", +"\x00\xf6" => "\x8f\xab\xd3", +"\x00\xf7" => "\xa1\xe0", +"\x00\xf8" => "\x8f\xa9\xcc", +"\x00\xf9" => "\x8f\xab\xe3", +"\x00\xfa" => "\x8f\xab\xe2", +"\x00\xfb" => "\x8f\xab\xe5", +"\x00\xfc" => "\x8f\xab\xe4", +"\x00\xfd" => "\x8f\xab\xf2", +"\x00\xfe" => "\x8f\xa9\xd0", +"\x00\xff" => "\x8f\xab\xf3", +"\x01\x00" => "\x8f\xaa\xa7", +"\x01\x01" => "\x8f\xab\xa7", +"\x01\x02" => "\x8f\xaa\xa5", +"\x01\x03" => "\x8f\xab\xa5", +"\x01\x04" => "\x8f\xaa\xa8", +"\x01\x05" => "\x8f\xab\xa8", +"\x01\x06" => "\x8f\xaa\xab", +"\x01\x07" => "\x8f\xab\xab", +"\x01\x08" => "\x8f\xaa\xac", +"\x01\x09" => "\x8f\xab\xac", +"\x01\x0a" => "\x8f\xaa\xaf", +"\x01\x0b" => "\x8f\xab\xaf", +"\x01\x0c" => "\x8f\xaa\xad", +"\x01\x0d" => "\x8f\xab\xad", +"\x01\x0e" => "\x8f\xaa\xb0", +"\x01\x0f" => "\x8f\xab\xb0", +"\x01\x10" => "\x8f\xa9\xa2", +"\x01\x11" => "\x8f\xa9\xc2", +"\x01\x12" => "\x8f\xaa\xb7", +"\x01\x13" => "\x8f\xab\xb7", +"\x01\x16" => "\x8f\xaa\xb6", +"\x01\x17" => "\x8f\xab\xb6", +"\x01\x18" => "\x8f\xaa\xb8", +"\x01\x19" => "\x8f\xab\xb8", +"\x01\x1a" => "\x8f\xaa\xb5", +"\x01\x1b" => "\x8f\xab\xb5", +"\x01\x1c" => "\x8f\xaa\xba", +"\x01\x1d" => "\x8f\xab\xba", +"\x01\x1e" => "\x8f\xaa\xbb", +"\x01\x1f" => "\x8f\xab\xbb", +"\x01\x20" => "\x8f\xaa\xbd", +"\x01\x21" => "\x8f\xab\xbd", +"\x01\x22" => "\x8f\xaa\xbc", +"\x01\x24" => "\x8f\xaa\xbe", +"\x01\x25" => "\x8f\xab\xbe", +"\x01\x26" => "\x8f\xa9\xa4", +"\x01\x27" => "\x8f\xa9\xc4", +"\x01\x28" => "\x8f\xaa\xc7", +"\x01\x29" => "\x8f\xab\xc7", +"\x01\x2a" => "\x8f\xaa\xc5", +"\x01\x2b" => "\x8f\xab\xc5", +"\x01\x2e" => "\x8f\xaa\xc6", +"\x01\x2f" => "\x8f\xab\xc6", +"\x01\x30" => "\x8f\xaa\xc4", +"\x01\x31" => "\x8f\xa9\xc5", +"\x01\x32" => "\x8f\xa9\xa6", +"\x01\x33" => "\x8f\xa9\xc6", +"\x01\x34" => "\x8f\xaa\xc8", +"\x01\x35" => "\x8f\xab\xc8", +"\x01\x36" => "\x8f\xaa\xc9", +"\x01\x37" => "\x8f\xab\xc9", +"\x01\x38" => "\x8f\xa9\xc7", +"\x01\x39" => "\x8f\xaa\xca", +"\x01\x3a" => "\x8f\xab\xca", +"\x01\x3b" => "\x8f\xaa\xcc", +"\x01\x3c" => "\x8f\xab\xcc", +"\x01\x3d" => "\x8f\xaa\xcb", +"\x01\x3e" => "\x8f\xab\xcb", +"\x01\x3f" => "\x8f\xa9\xa9", +"\x01\x40" => "\x8f\xa9\xc9", +"\x01\x41" => "\x8f\xa9\xa8", +"\x01\x42" => "\x8f\xa9\xc8", +"\x01\x43" => "\x8f\xaa\xcd", +"\x01\x44" => "\x8f\xab\xcd", +"\x01\x45" => "\x8f\xaa\xcf", +"\x01\x46" => "\x8f\xab\xcf", +"\x01\x47" => "\x8f\xaa\xce", +"\x01\x48" => "\x8f\xab\xce", +"\x01\x49" => "\x8f\xa9\xca", +"\x01\x4a" => "\x8f\xa9\xab", +"\x01\x4b" => "\x8f\xa9\xcb", +"\x01\x4c" => "\x8f\xaa\xd7", +"\x01\x4d" => "\x8f\xab\xd7", +"\x01\x50" => "\x8f\xaa\xd6", +"\x01\x51" => "\x8f\xab\xd6", +"\x01\x52" => "\x8f\xa9\xad", +"\x01\x53" => "\x8f\xa9\xcd", +"\x01\x54" => "\x8f\xaa\xd9", +"\x01\x55" => "\x8f\xab\xd9", +"\x01\x56" => "\x8f\xaa\xdb", +"\x01\x57" => "\x8f\xab\xdb", +"\x01\x58" => "\x8f\xaa\xda", +"\x01\x59" => "\x8f\xab\xda", +"\x01\x5a" => "\x8f\xaa\xdc", +"\x01\x5b" => "\x8f\xab\xdc", +"\x01\x5c" => "\x8f\xaa\xdd", +"\x01\x5d" => "\x8f\xab\xdd", +"\x01\x5e" => "\x8f\xaa\xdf", +"\x01\x5f" => "\x8f\xab\xdf", +"\x01\x60" => "\x8f\xaa\xde", +"\x01\x61" => "\x8f\xab\xde", +"\x01\x62" => "\x8f\xaa\xe1", +"\x01\x63" => "\x8f\xab\xe1", +"\x01\x64" => "\x8f\xaa\xe0", +"\x01\x65" => "\x8f\xab\xe0", +"\x01\x66" => "\x8f\xa9\xaf", +"\x01\x67" => "\x8f\xa9\xcf", +"\x01\x68" => "\x8f\xaa\xec", +"\x01\x69" => "\x8f\xab\xec", +"\x01\x6a" => "\x8f\xaa\xe9", +"\x01\x6b" => "\x8f\xab\xe9", +"\x01\x6c" => "\x8f\xaa\xe6", +"\x01\x6d" => "\x8f\xab\xe6", +"\x01\x6e" => "\x8f\xaa\xeb", +"\x01\x6f" => "\x8f\xab\xeb", +"\x01\x70" => "\x8f\xaa\xe8", +"\x01\x71" => "\x8f\xab\xe8", +"\x01\x72" => "\x8f\xaa\xea", +"\x01\x73" => "\x8f\xab\xea", +"\x01\x74" => "\x8f\xaa\xf1", +"\x01\x75" => "\x8f\xab\xf1", +"\x01\x76" => "\x8f\xaa\xf4", +"\x01\x77" => "\x8f\xab\xf4", +"\x01\x78" => "\x8f\xaa\xf3", +"\x01\x79" => "\x8f\xaa\xf5", +"\x01\x7a" => "\x8f\xab\xf5", +"\x01\x7b" => "\x8f\xaa\xf7", +"\x01\x7c" => "\x8f\xab\xf7", +"\x01\x7d" => "\x8f\xaa\xf6", +"\x01\x7e" => "\x8f\xab\xf6", +"\x01\xcd" => "\x8f\xaa\xa6", +"\x01\xce" => "\x8f\xab\xa6", +"\x01\xcf" => "\x8f\xaa\xc3", +"\x01\xd0" => "\x8f\xab\xc3", +"\x01\xd1" => "\x8f\xaa\xd5", +"\x01\xd2" => "\x8f\xab\xd5", +"\x01\xd3" => "\x8f\xaa\xe7", +"\x01\xd4" => "\x8f\xab\xe7", +"\x01\xd5" => "\x8f\xaa\xf0", +"\x01\xd6" => "\x8f\xab\xf0", +"\x01\xd7" => "\x8f\xaa\xed", +"\x01\xd8" => "\x8f\xab\xed", +"\x01\xd9" => "\x8f\xaa\xef", +"\x01\xda" => "\x8f\xab\xef", +"\x01\xdb" => "\x8f\xaa\xee", +"\x01\xdc" => "\x8f\xab\xee", +"\x01\xf5" => "\x8f\xab\xb9", +"\x02\xc7" => "\x8f\xa2\xb0", +"\x02\xd8" => "\x8f\xa2\xaf", +"\x02\xd9" => "\x8f\xa2\xb2", +"\x02\xda" => "\x8f\xa2\xb6", +"\x02\xdb" => "\x8f\xa2\xb5", +"\x02\xdd" => "\x8f\xa2\xb3", +"\x03\x84" => "\x8f\xa2\xb8", +"\x03\x85" => "\x8f\xa2\xb9", +"\x03\x86" => "\x8f\xa6\xe1", +"\x03\x88" => "\x8f\xa6\xe2", +"\x03\x89" => "\x8f\xa6\xe3", +"\x03\x8a" => "\x8f\xa6\xe4", +"\x03\x8c" => "\x8f\xa6\xe7", +"\x03\x8e" => "\x8f\xa6\xe9", +"\x03\x8f" => "\x8f\xa6\xec", +"\x03\x90" => "\x8f\xa6\xf6", +"\x03\x91" => "\xa6\xa1", +"\x03\x92" => "\xa6\xa2", +"\x03\x93" => "\xa6\xa3", +"\x03\x94" => "\xa6\xa4", +"\x03\x95" => "\xa6\xa5", +"\x03\x96" => "\xa6\xa6", +"\x03\x97" => "\xa6\xa7", +"\x03\x98" => "\xa6\xa8", +"\x03\x99" => "\xa6\xa9", +"\x03\x9a" => "\xa6\xaa", +"\x03\x9b" => "\xa6\xab", +"\x03\x9c" => "\xa6\xac", +"\x03\x9d" => "\xa6\xad", +"\x03\x9e" => "\xa6\xae", +"\x03\x9f" => "\xa6\xaf", +"\x03\xa0" => "\xa6\xb0", +"\x03\xa1" => "\xa6\xb1", +"\x03\xa3" => "\xa6\xb2", +"\x03\xa4" => "\xa6\xb3", +"\x03\xa5" => "\xa6\xb4", +"\x03\xa6" => "\xa6\xb5", +"\x03\xa7" => "\xa6\xb6", +"\x03\xa8" => "\xa6\xb7", +"\x03\xa9" => "\xa6\xb8", +"\x03\xaa" => "\x8f\xa6\xe5", +"\x03\xab" => "\x8f\xa6\xea", +"\x03\xac" => "\x8f\xa6\xf1", +"\x03\xad" => "\x8f\xa6\xf2", +"\x03\xae" => "\x8f\xa6\xf3", +"\x03\xaf" => "\x8f\xa6\xf4", +"\x03\xb0" => "\x8f\xa6\xfb", +"\x03\xb1" => "\xa6\xc1", +"\x03\xb2" => "\xa6\xc2", +"\x03\xb3" => "\xa6\xc3", +"\x03\xb4" => "\xa6\xc4", +"\x03\xb5" => "\xa6\xc5", +"\x03\xb6" => "\xa6\xc6", +"\x03\xb7" => "\xa6\xc7", +"\x03\xb8" => "\xa6\xc8", +"\x03\xb9" => "\xa6\xc9", +"\x03\xba" => "\xa6\xca", +"\x03\xbb" => "\xa6\xcb", +"\x03\xbc" => "\xa6\xcc", +"\x03\xbd" => "\xa6\xcd", +"\x03\xbe" => "\xa6\xce", +"\x03\xbf" => "\xa6\xcf", +"\x03\xc0" => "\xa6\xd0", +"\x03\xc1" => "\xa6\xd1", +"\x03\xc2" => "\x8f\xa6\xf8", +"\x03\xc3" => "\xa6\xd2", +"\x03\xc4" => "\xa6\xd3", +"\x03\xc5" => "\xa6\xd4", +"\x03\xc6" => "\xa6\xd5", +"\x03\xc7" => "\xa6\xd6", +"\x03\xc8" => "\xa6\xd7", +"\x03\xc9" => "\xa6\xd8", +"\x03\xca" => "\x8f\xa6\xf5", +"\x03\xcb" => "\x8f\xa6\xfa", +"\x03\xcc" => "\x8f\xa6\xf7", +"\x03\xcd" => "\x8f\xa6\xf9", +"\x03\xce" => "\x8f\xa6\xfc", +"\x04\x01" => "\xa7\xa7", +"\x04\x02" => "\x8f\xa7\xc2", +"\x04\x03" => "\x8f\xa7\xc3", +"\x04\x04" => "\x8f\xa7\xc4", +"\x04\x05" => "\x8f\xa7\xc5", +"\x04\x06" => "\x8f\xa7\xc6", +"\x04\x07" => "\x8f\xa7\xc7", +"\x04\x08" => "\x8f\xa7\xc8", +"\x04\x09" => "\x8f\xa7\xc9", +"\x04\x0a" => "\x8f\xa7\xca", +"\x04\x0b" => "\x8f\xa7\xcb", +"\x04\x0c" => "\x8f\xa7\xcc", +"\x04\x0e" => "\x8f\xa7\xcd", +"\x04\x0f" => "\x8f\xa7\xce", +"\x04\x10" => "\xa7\xa1", +"\x04\x11" => "\xa7\xa2", +"\x04\x12" => "\xa7\xa3", +"\x04\x13" => "\xa7\xa4", +"\x04\x14" => "\xa7\xa5", +"\x04\x15" => "\xa7\xa6", +"\x04\x16" => "\xa7\xa8", +"\x04\x17" => "\xa7\xa9", +"\x04\x18" => "\xa7\xaa", +"\x04\x19" => "\xa7\xab", +"\x04\x1a" => "\xa7\xac", +"\x04\x1b" => "\xa7\xad", +"\x04\x1c" => "\xa7\xae", +"\x04\x1d" => "\xa7\xaf", +"\x04\x1e" => "\xa7\xb0", +"\x04\x1f" => "\xa7\xb1", +"\x04\x20" => "\xa7\xb2", +"\x04\x21" => "\xa7\xb3", +"\x04\x22" => "\xa7\xb4", +"\x04\x23" => "\xa7\xb5", +"\x04\x24" => "\xa7\xb6", +"\x04\x25" => "\xa7\xb7", +"\x04\x26" => "\xa7\xb8", +"\x04\x27" => "\xa7\xb9", +"\x04\x28" => "\xa7\xba", +"\x04\x29" => "\xa7\xbb", +"\x04\x2a" => "\xa7\xbc", +"\x04\x2b" => "\xa7\xbd", +"\x04\x2c" => "\xa7\xbe", +"\x04\x2d" => "\xa7\xbf", +"\x04\x2e" => "\xa7\xc0", +"\x04\x2f" => "\xa7\xc1", +"\x04\x30" => "\xa7\xd1", +"\x04\x31" => "\xa7\xd2", +"\x04\x32" => "\xa7\xd3", +"\x04\x33" => "\xa7\xd4", +"\x04\x34" => "\xa7\xd5", +"\x04\x35" => "\xa7\xd6", +"\x04\x36" => "\xa7\xd8", +"\x04\x37" => "\xa7\xd9", +"\x04\x38" => "\xa7\xda", +"\x04\x39" => "\xa7\xdb", +"\x04\x3a" => "\xa7\xdc", +"\x04\x3b" => "\xa7\xdd", +"\x04\x3c" => "\xa7\xde", +"\x04\x3d" => "\xa7\xdf", +"\x04\x3e" => "\xa7\xe0", +"\x04\x3f" => "\xa7\xe1", +"\x04\x40" => "\xa7\xe2", +"\x04\x41" => "\xa7\xe3", +"\x04\x42" => "\xa7\xe4", +"\x04\x43" => "\xa7\xe5", +"\x04\x44" => "\xa7\xe6", +"\x04\x45" => "\xa7\xe7", +"\x04\x46" => "\xa7\xe8", +"\x04\x47" => "\xa7\xe9", +"\x04\x48" => "\xa7\xea", +"\x04\x49" => "\xa7\xeb", +"\x04\x4a" => "\xa7\xec", +"\x04\x4b" => "\xa7\xed", +"\x04\x4c" => "\xa7\xee", +"\x04\x4d" => "\xa7\xef", +"\x04\x4e" => "\xa7\xf0", +"\x04\x4f" => "\xa7\xf1", +"\x04\x51" => "\xa7\xd7", +"\x04\x52" => "\x8f\xa7\xf2", +"\x04\x53" => "\x8f\xa7\xf3", +"\x04\x54" => "\x8f\xa7\xf4", +"\x04\x55" => "\x8f\xa7\xf5", +"\x04\x56" => "\x8f\xa7\xf6", +"\x04\x57" => "\x8f\xa7\xf7", +"\x04\x58" => "\x8f\xa7\xf8", +"\x04\x59" => "\x8f\xa7\xf9", +"\x04\x5a" => "\x8f\xa7\xfa", +"\x04\x5b" => "\x8f\xa7\xfb", +"\x04\x5c" => "\x8f\xa7\xfc", +"\x04\x5e" => "\x8f\xa7\xfd", +"\x04\x5f" => "\x8f\xa7\xfe", +"\x20\x10" => "\xa1\xbe", +"\x20\x15" => "\xa1\xbd", +"\x20\x16" => "\xa1\xc2", +"\x20\x18" => "\xa1\xc6", +"\x20\x19" => "\xa1\xc7", +"\x20\x1c" => "\xa1\xc8", +"\x20\x1d" => "\xa1\xc9", +"\x20\x20" => "\xa2\xf7", +"\x20\x21" => "\xa2\xf8", +"\x20\x25" => "\xa1\xc5", +"\x20\x26" => "\xa1\xc4", +"\x20\x30" => "\xa2\xf3", +"\x20\x32" => "\xa1\xec", +"\x20\x33" => "\xa1\xed", +"\x20\x3b" => "\xa2\xa8", +"\x20\x3e" => "\x7e", +"\x21\x03" => "\xa1\xee", +"\x21\x16" => "\x8f\xa2\xf1", +"\x21\x22" => "\x8f\xa2\xef", +"\x21\x2b" => "\xa2\xf2", +"\x21\x90" => "\xa2\xab", +"\x21\x91" => "\xa2\xac", +"\x21\x92" => "\xa2\xaa", +"\x21\x93" => "\xa2\xad", +"\x21\xd2" => "\xa2\xcd", +"\x21\xd4" => "\xa2\xce", +"\x22\x00" => "\xa2\xcf", +"\x22\x02" => "\xa2\xdf", +"\x22\x03" => "\xa2\xd0", +"\x22\x07" => "\xa2\xe0", +"\x22\x08" => "\xa2\xba", +"\x22\x0b" => "\xa2\xbb", +"\x22\x12" => "\xa1\xdd", +"\x22\x1a" => "\xa2\xe5", +"\x22\x1d" => "\xa2\xe7", +"\x22\x1e" => "\xa1\xe7", +"\x22\x20" => "\xa2\xdc", +"\x22\x27" => "\xa2\xca", +"\x22\x28" => "\xa2\xcb", +"\x22\x29" => "\xa2\xc1", +"\x22\x2a" => "\xa2\xc0", +"\x22\x2b" => "\xa2\xe9", +"\x22\x2c" => "\xa2\xea", +"\x22\x34" => "\xa1\xe8", +"\x22\x35" => "\xa2\xe8", +"\x22\x3d" => "\xa2\xe6", +"\x22\x52" => "\xa2\xe2", +"\x22\x60" => "\xa1\xe2", +"\x22\x61" => "\xa2\xe1", +"\x22\x66" => "\xa1\xe5", +"\x22\x67" => "\xa1\xe6", +"\x22\x6a" => "\xa2\xe3", +"\x22\x6b" => "\xa2\xe4", +"\x22\x82" => "\xa2\xbe", +"\x22\x83" => "\xa2\xbf", +"\x22\x86" => "\xa2\xbc", +"\x22\x87" => "\xa2\xbd", +"\x22\xa5" => "\xa2\xdd", +"\x23\x12" => "\xa2\xde", +"\x25\x00" => "\xa8\xa1", +"\x25\x01" => "\xa8\xac", +"\x25\x02" => "\xa8\xa2", +"\x25\x03" => "\xa8\xad", +"\x25\x0c" => "\xa8\xa3", +"\x25\x0f" => "\xa8\xae", +"\x25\x10" => "\xa8\xa4", +"\x25\x13" => "\xa8\xaf", +"\x25\x14" => "\xa8\xa6", +"\x25\x17" => "\xa8\xb1", +"\x25\x18" => "\xa8\xa5", +"\x25\x1b" => "\xa8\xb0", +"\x25\x1c" => "\xa8\xa7", +"\x25\x1d" => "\xa8\xbc", +"\x25\x20" => "\xa8\xb7", +"\x25\x23" => "\xa8\xb2", +"\x25\x24" => "\xa8\xa9", +"\x25\x25" => "\xa8\xbe", +"\x25\x28" => "\xa8\xb9", +"\x25\x2b" => "\xa8\xb4", +"\x25\x2c" => "\xa8\xa8", +"\x25\x2f" => "\xa8\xb8", +"\x25\x30" => "\xa8\xbd", +"\x25\x33" => "\xa8\xb3", +"\x25\x34" => "\xa8\xaa", +"\x25\x37" => "\xa8\xba", +"\x25\x38" => "\xa8\xbf", +"\x25\x3b" => "\xa8\xb5", +"\x25\x3c" => "\xa8\xab", +"\x25\x3f" => "\xa8\xbb", +"\x25\x42" => "\xa8\xc0", +"\x25\x4b" => "\xa8\xb6", +"\x25\xa0" => "\xa2\xa3", +"\x25\xa1" => "\xa2\xa2", +"\x25\xb2" => "\xa2\xa5", +"\x25\xb3" => "\xa2\xa4", +"\x25\xbc" => "\xa2\xa7", +"\x25\xbd" => "\xa2\xa6", +"\x25\xc6" => "\xa2\xa1", +"\x25\xc7" => "\xa1\xfe", +"\x25\xcb" => "\xa1\xfb", +"\x25\xce" => "\xa1\xfd", +"\x25\xcf" => "\xa1\xfc", +"\x25\xef" => "\xa2\xfe", +"\x26\x05" => "\xa1\xfa", +"\x26\x06" => "\xa1\xf9", +"\x26\x40" => "\xa1\xea", +"\x26\x42" => "\xa1\xe9", +"\x26\x6a" => "\xa2\xf6", +"\x26\x6d" => "\xa2\xf5", +"\x26\x6f" => "\xa2\xf4", +"\x30\x00" => "\xa1\xa1", +"\x30\x01" => "\xa1\xa2", +"\x30\x02" => "\xa1\xa3", +"\x30\x03" => "\xa1\xb7", +"\x30\x05" => "\xa1\xb9", +"\x30\x06" => "\xa1\xba", +"\x30\x07" => "\xa1\xbb", +"\x30\x08" => "\xa1\xd2", +"\x30\x09" => "\xa1\xd3", +"\x30\x0a" => "\xa1\xd4", +"\x30\x0b" => "\xa1\xd5", +"\x30\x0c" => "\xa1\xd6", +"\x30\x0d" => "\xa1\xd7", +"\x30\x0e" => "\xa1\xd8", +"\x30\x0f" => "\xa1\xd9", +"\x30\x10" => "\xa1\xda", +"\x30\x11" => "\xa1\xdb", +"\x30\x12" => "\xa2\xa9", +"\x30\x13" => "\xa2\xae", +"\x30\x14" => "\xa1\xcc", +"\x30\x15" => "\xa1\xcd", +"\x30\x1c" => "\xa1\xc1", +"\x30\x41" => "\xa4\xa1", +"\x30\x42" => "\xa4\xa2", +"\x30\x43" => "\xa4\xa3", +"\x30\x44" => "\xa4\xa4", +"\x30\x45" => "\xa4\xa5", +"\x30\x46" => "\xa4\xa6", +"\x30\x47" => "\xa4\xa7", +"\x30\x48" => "\xa4\xa8", +"\x30\x49" => "\xa4\xa9", +"\x30\x4a" => "\xa4\xaa", +"\x30\x4b" => "\xa4\xab", +"\x30\x4c" => "\xa4\xac", +"\x30\x4d" => "\xa4\xad", +"\x30\x4e" => "\xa4\xae", +"\x30\x4f" => "\xa4\xaf", +"\x30\x50" => "\xa4\xb0", +"\x30\x51" => "\xa4\xb1", +"\x30\x52" => "\xa4\xb2", +"\x30\x53" => "\xa4\xb3", +"\x30\x54" => "\xa4\xb4", +"\x30\x55" => "\xa4\xb5", +"\x30\x56" => "\xa4\xb6", +"\x30\x57" => "\xa4\xb7", +"\x30\x58" => "\xa4\xb8", +"\x30\x59" => "\xa4\xb9", +"\x30\x5a" => "\xa4\xba", +"\x30\x5b" => "\xa4\xbb", +"\x30\x5c" => "\xa4\xbc", +"\x30\x5d" => "\xa4\xbd", +"\x30\x5e" => "\xa4\xbe", +"\x30\x5f" => "\xa4\xbf", +"\x30\x60" => "\xa4\xc0", +"\x30\x61" => "\xa4\xc1", +"\x30\x62" => "\xa4\xc2", +"\x30\x63" => "\xa4\xc3", +"\x30\x64" => "\xa4\xc4", +"\x30\x65" => "\xa4\xc5", +"\x30\x66" => "\xa4\xc6", +"\x30\x67" => "\xa4\xc7", +"\x30\x68" => "\xa4\xc8", +"\x30\x69" => "\xa4\xc9", +"\x30\x6a" => "\xa4\xca", +"\x30\x6b" => "\xa4\xcb", +"\x30\x6c" => "\xa4\xcc", +"\x30\x6d" => "\xa4\xcd", +"\x30\x6e" => "\xa4\xce", +"\x30\x6f" => "\xa4\xcf", +"\x30\x70" => "\xa4\xd0", +"\x30\x71" => "\xa4\xd1", +"\x30\x72" => "\xa4\xd2", +"\x30\x73" => "\xa4\xd3", +"\x30\x74" => "\xa4\xd4", +"\x30\x75" => "\xa4\xd5", +"\x30\x76" => "\xa4\xd6", +"\x30\x77" => "\xa4\xd7", +"\x30\x78" => "\xa4\xd8", +"\x30\x79" => "\xa4\xd9", +"\x30\x7a" => "\xa4\xda", +"\x30\x7b" => "\xa4\xdb", +"\x30\x7c" => "\xa4\xdc", +"\x30\x7d" => "\xa4\xdd", +"\x30\x7e" => "\xa4\xde", +"\x30\x7f" => "\xa4\xdf", +"\x30\x80" => "\xa4\xe0", +"\x30\x81" => "\xa4\xe1", +"\x30\x82" => "\xa4\xe2", +"\x30\x83" => "\xa4\xe3", +"\x30\x84" => "\xa4\xe4", +"\x30\x85" => "\xa4\xe5", +"\x30\x86" => "\xa4\xe6", +"\x30\x87" => "\xa4\xe7", +"\x30\x88" => "\xa4\xe8", +"\x30\x89" => "\xa4\xe9", +"\x30\x8a" => "\xa4\xea", +"\x30\x8b" => "\xa4\xeb", +"\x30\x8c" => "\xa4\xec", +"\x30\x8d" => "\xa4\xed", +"\x30\x8e" => "\xa4\xee", +"\x30\x8f" => "\xa4\xef", +"\x30\x90" => "\xa4\xf0", +"\x30\x91" => "\xa4\xf1", +"\x30\x92" => "\xa4\xf2", +"\x30\x93" => "\xa4\xf3", +"\x30\x9b" => "\xa1\xab", +"\x30\x9c" => "\xa1\xac", +"\x30\x9d" => "\xa1\xb5", +"\x30\x9e" => "\xa1\xb6", +"\x30\xa1" => "\xa5\xa1", +"\x30\xa2" => "\xa5\xa2", +"\x30\xa3" => "\xa5\xa3", +"\x30\xa4" => "\xa5\xa4", +"\x30\xa5" => "\xa5\xa5", +"\x30\xa6" => "\xa5\xa6", +"\x30\xa7" => "\xa5\xa7", +"\x30\xa8" => "\xa5\xa8", +"\x30\xa9" => "\xa5\xa9", +"\x30\xaa" => "\xa5\xaa", +"\x30\xab" => "\xa5\xab", +"\x30\xac" => "\xa5\xac", +"\x30\xad" => "\xa5\xad", +"\x30\xae" => "\xa5\xae", +"\x30\xaf" => "\xa5\xaf", +"\x30\xb0" => "\xa5\xb0", +"\x30\xb1" => "\xa5\xb1", +"\x30\xb2" => "\xa5\xb2", +"\x30\xb3" => "\xa5\xb3", +"\x30\xb4" => "\xa5\xb4", +"\x30\xb5" => "\xa5\xb5", +"\x30\xb6" => "\xa5\xb6", +"\x30\xb7" => "\xa5\xb7", +"\x30\xb8" => "\xa5\xb8", +"\x30\xb9" => "\xa5\xb9", +"\x30\xba" => "\xa5\xba", +"\x30\xbb" => "\xa5\xbb", +"\x30\xbc" => "\xa5\xbc", +"\x30\xbd" => "\xa5\xbd", +"\x30\xbe" => "\xa5\xbe", +"\x30\xbf" => "\xa5\xbf", +"\x30\xc0" => "\xa5\xc0", +"\x30\xc1" => "\xa5\xc1", +"\x30\xc2" => "\xa5\xc2", +"\x30\xc3" => "\xa5\xc3", +"\x30\xc4" => "\xa5\xc4", +"\x30\xc5" => "\xa5\xc5", +"\x30\xc6" => "\xa5\xc6", +"\x30\xc7" => "\xa5\xc7", +"\x30\xc8" => "\xa5\xc8", +"\x30\xc9" => "\xa5\xc9", +"\x30\xca" => "\xa5\xca", +"\x30\xcb" => "\xa5\xcb", +"\x30\xcc" => "\xa5\xcc", +"\x30\xcd" => "\xa5\xcd", +"\x30\xce" => "\xa5\xce", +"\x30\xcf" => "\xa5\xcf", +"\x30\xd0" => "\xa5\xd0", +"\x30\xd1" => "\xa5\xd1", +"\x30\xd2" => "\xa5\xd2", +"\x30\xd3" => "\xa5\xd3", +"\x30\xd4" => "\xa5\xd4", +"\x30\xd5" => "\xa5\xd5", +"\x30\xd6" => "\xa5\xd6", +"\x30\xd7" => "\xa5\xd7", +"\x30\xd8" => "\xa5\xd8", +"\x30\xd9" => "\xa5\xd9", +"\x30\xda" => "\xa5\xda", +"\x30\xdb" => "\xa5\xdb", +"\x30\xdc" => "\xa5\xdc", +"\x30\xdd" => "\xa5\xdd", +"\x30\xde" => "\xa5\xde", +"\x30\xdf" => "\xa5\xdf", +"\x30\xe0" => "\xa5\xe0", +"\x30\xe1" => "\xa5\xe1", +"\x30\xe2" => "\xa5\xe2", +"\x30\xe3" => "\xa5\xe3", +"\x30\xe4" => "\xa5\xe4", +"\x30\xe5" => "\xa5\xe5", +"\x30\xe6" => "\xa5\xe6", +"\x30\xe7" => "\xa5\xe7", +"\x30\xe8" => "\xa5\xe8", +"\x30\xe9" => "\xa5\xe9", +"\x30\xea" => "\xa5\xea", +"\x30\xeb" => "\xa5\xeb", +"\x30\xec" => "\xa5\xec", +"\x30\xed" => "\xa5\xed", +"\x30\xee" => "\xa5\xee", +"\x30\xef" => "\xa5\xef", +"\x30\xf0" => "\xa5\xf0", +"\x30\xf1" => "\xa5\xf1", +"\x30\xf2" => "\xa5\xf2", +"\x30\xf3" => "\xa5\xf3", +"\x30\xf4" => "\xa5\xf4", +"\x30\xf5" => "\xa5\xf5", +"\x30\xf6" => "\xa5\xf6", +"\x30\xfb" => "\xa1\xa6", +"\x30\xfc" => "\xa1\xbc", +"\x30\xfd" => "\xa1\xb3", +"\x30\xfe" => "\xa1\xb4", +"\x4e\x00" => "\xb0\xec", +"\x4e\x01" => "\xc3\xfa", +"\x4e\x02" => "\x8f\xb0\xa1", +"\x4e\x03" => "\xbc\xb7", +"\x4e\x04" => "\x8f\xb0\xa2", +"\x4e\x05" => "\x8f\xb0\xa3", +"\x4e\x07" => "\xcb\xfc", +"\x4e\x08" => "\xbe\xe6", +"\x4e\x09" => "\xbb\xb0", +"\x4e\x0a" => "\xbe\xe5", +"\x4e\x0b" => "\xb2\xbc", +"\x4e\x0c" => "\x8f\xb0\xa4", +"\x4e\x0d" => "\xc9\xd4", +"\x4e\x0e" => "\xcd\xbf", +"\x4e\x10" => "\xd0\xa2", +"\x4e\x11" => "\xb1\xaf", +"\x4e\x12" => "\x8f\xb0\xa5", +"\x4e\x14" => "\xb3\xee", +"\x4e\x15" => "\xd0\xa3", +"\x4e\x16" => "\xc0\xa4", +"\x4e\x17" => "\xd2\xc2", +"\x4e\x18" => "\xb5\xd6", +"\x4e\x19" => "\xca\xba", +"\x4e\x1e" => "\xbe\xe7", +"\x4e\x1f" => "\x8f\xb0\xa6", +"\x4e\x21" => "\xce\xbe", +"\x4e\x23" => "\x8f\xb0\xa7", +"\x4e\x24" => "\x8f\xb0\xa8", +"\x4e\x26" => "\xca\xc2", +"\x4e\x28" => "\x8f\xb0\xa9", +"\x4e\x2a" => "\xd0\xa4", +"\x4e\x2b" => "\x8f\xb0\xaa", +"\x4e\x2d" => "\xc3\xe6", +"\x4e\x2e" => "\x8f\xb0\xab", +"\x4e\x2f" => "\x8f\xb0\xac", +"\x4e\x30" => "\x8f\xb0\xad", +"\x4e\x31" => "\xd0\xa5", +"\x4e\x32" => "\xb6\xfa", +"\x4e\x35" => "\x8f\xb0\xae", +"\x4e\x36" => "\xd0\xa6", +"\x4e\x38" => "\xb4\xdd", +"\x4e\x39" => "\xc3\xb0", +"\x4e\x3b" => "\xbc\xe7", +"\x4e\x3c" => "\xd0\xa7", +"\x4e\x3f" => "\xd0\xa8", +"\x4e\x40" => "\x8f\xb0\xaf", +"\x4e\x41" => "\x8f\xb0\xb0", +"\x4e\x42" => "\xd0\xa9", +"\x4e\x43" => "\xc7\xb5", +"\x4e\x44" => "\x8f\xb0\xb1", +"\x4e\x45" => "\xb5\xd7", +"\x4e\x47" => "\x8f\xb0\xb2", +"\x4e\x4b" => "\xc7\xb7", +"\x4e\x4d" => "\xc6\xe3", +"\x4e\x4e" => "\xb8\xc3", +"\x4e\x4f" => "\xcb\xb3", +"\x4e\x51" => "\x8f\xb0\xb3", +"\x4e\x55" => "\xe9\xc9", +"\x4e\x56" => "\xd0\xaa", +"\x4e\x57" => "\xbe\xe8", +"\x4e\x58" => "\xd0\xab", +"\x4e\x59" => "\xb2\xb5", +"\x4e\x5a" => "\x8f\xb0\xb4", +"\x4e\x5c" => "\x8f\xb0\xb5", +"\x4e\x5d" => "\xb6\xe5", +"\x4e\x5e" => "\xb8\xf0", +"\x4e\x5f" => "\xcc\xe9", +"\x4e\x62" => "\xd6\xa6", +"\x4e\x63" => "\x8f\xb0\xb6", +"\x4e\x68" => "\x8f\xb0\xb7", +"\x4e\x69" => "\x8f\xb0\xb8", +"\x4e\x71" => "\xcd\xf0", +"\x4e\x73" => "\xc6\xfd", +"\x4e\x74" => "\x8f\xb0\xb9", +"\x4e\x75" => "\x8f\xb0\xba", +"\x4e\x79" => "\x8f\xb0\xbb", +"\x4e\x7e" => "\xb4\xa5", +"\x4e\x7f" => "\x8f\xb0\xbc", +"\x4e\x80" => "\xb5\xb5", +"\x4e\x82" => "\xd0\xac", +"\x4e\x85" => "\xd0\xad", +"\x4e\x86" => "\xce\xbb", +"\x4e\x88" => "\xcd\xbd", +"\x4e\x89" => "\xc1\xe8", +"\x4e\x8a" => "\xd0\xaf", +"\x4e\x8b" => "\xbb\xf6", +"\x4e\x8c" => "\xc6\xf3", +"\x4e\x8d" => "\x8f\xb0\xbd", +"\x4e\x8e" => "\xd0\xb2", +"\x4e\x91" => "\xb1\xbe", +"\x4e\x92" => "\xb8\xdf", +"\x4e\x94" => "\xb8\xde", +"\x4e\x95" => "\xb0\xe6", +"\x4e\x96" => "\x8f\xb0\xbe", +"\x4e\x97" => "\x8f\xb0\xbf", +"\x4e\x98" => "\xcf\xcb", +"\x4e\x99" => "\xcf\xca", +"\x4e\x9b" => "\xba\xb3", +"\x4e\x9c" => "\xb0\xa1", +"\x4e\x9d" => "\x8f\xb0\xc0", +"\x4e\x9e" => "\xd0\xb3", +"\x4e\x9f" => "\xd0\xb4", +"\x4e\xa0" => "\xd0\xb5", +"\x4e\xa1" => "\xcb\xb4", +"\x4e\xa2" => "\xd0\xb6", +"\x4e\xa4" => "\xb8\xf2", +"\x4e\xa5" => "\xb0\xe7", +"\x4e\xa6" => "\xcb\xf2", +"\x4e\xa8" => "\xb5\xfc", +"\x4e\xab" => "\xb5\xfd", +"\x4e\xac" => "\xb5\xfe", +"\x4e\xad" => "\xc4\xe2", +"\x4e\xae" => "\xce\xbc", +"\x4e\xaf" => "\x8f\xb0\xc1", +"\x4e\xb0" => "\xd0\xb7", +"\x4e\xb3" => "\xd0\xb8", +"\x4e\xb6" => "\xd0\xb9", +"\x4e\xb9" => "\x8f\xb0\xc2", +"\x4e\xba" => "\xbf\xcd", +"\x4e\xc0" => "\xbd\xba", +"\x4e\xc1" => "\xbf\xce", +"\x4e\xc2" => "\xd0\xbe", +"\x4e\xc3" => "\x8f\xb0\xc3", +"\x4e\xc4" => "\xd0\xbc", +"\x4e\xc6" => "\xd0\xbd", +"\x4e\xc7" => "\xb5\xd8", +"\x4e\xca" => "\xba\xa3", +"\x4e\xcb" => "\xb2\xf0", +"\x4e\xcd" => "\xd0\xbb", +"\x4e\xce" => "\xd0\xba", +"\x4e\xcf" => "\xca\xa9", +"\x4e\xd0" => "\x8f\xb0\xc4", +"\x4e\xd4" => "\xbb\xc6", +"\x4e\xd5" => "\xbb\xc5", +"\x4e\xd6" => "\xc2\xbe", +"\x4e\xd7" => "\xd0\xbf", +"\x4e\xd8" => "\xc9\xd5", +"\x4e\xd9" => "\xc0\xe7", +"\x4e\xda" => "\x8f\xb0\xc5", +"\x4e\xdb" => "\x8f\xb0\xc6", +"\x4e\xdd" => "\xa1\xb8", +"\x4e\xde" => "\xd0\xc0", +"\x4e\xdf" => "\xd0\xc2", +"\x4e\xe0" => "\x8f\xb0\xc7", +"\x4e\xe1" => "\x8f\xb0\xc8", +"\x4e\xe2" => "\x8f\xb0\xc9", +"\x4e\xe3" => "\xc2\xe5", +"\x4e\xe4" => "\xce\xe1", +"\x4e\xe5" => "\xb0\xca", +"\x4e\xe8" => "\x8f\xb0\xca", +"\x4e\xed" => "\xd0\xc1", +"\x4e\xee" => "\xb2\xbe", +"\x4e\xef" => "\x8f\xb0\xcb", +"\x4e\xf0" => "\xb6\xc4", +"\x4e\xf1" => "\x8f\xb0\xcc", +"\x4e\xf2" => "\xc3\xe7", +"\x4e\xf3" => "\x8f\xb0\xcd", +"\x4e\xf5" => "\x8f\xb0\xce", +"\x4e\xf6" => "\xb7\xef", +"\x4e\xf7" => "\xd0\xc3", +"\x4e\xfb" => "\xc7\xa4", +"\x4e\xfd" => "\x8f\xb0\xcf", +"\x4e\xfe" => "\x8f\xb0\xd0", +"\x4e\xff" => "\x8f\xb0\xd1", +"\x4f\x00" => "\x8f\xb0\xd2", +"\x4f\x01" => "\xb4\xeb", +"\x4f\x02" => "\x8f\xb0\xd3", +"\x4f\x03" => "\x8f\xb0\xd4", +"\x4f\x08" => "\x8f\xb0\xd5", +"\x4f\x09" => "\xd0\xc4", +"\x4f\x0a" => "\xb0\xcb", +"\x4f\x0b" => "\x8f\xb0\xd6", +"\x4f\x0c" => "\x8f\xb0\xd7", +"\x4f\x0d" => "\xb8\xe0", +"\x4f\x0e" => "\xb4\xec", +"\x4f\x0f" => "\xc9\xfa", +"\x4f\x10" => "\xc8\xb2", +"\x4f\x11" => "\xb5\xd9", +"\x4f\x12" => "\x8f\xb0\xd8", +"\x4f\x15" => "\x8f\xb0\xd9", +"\x4f\x16" => "\x8f\xb0\xda", +"\x4f\x17" => "\x8f\xb0\xdb", +"\x4f\x19" => "\x8f\xb0\xdc", +"\x4f\x1a" => "\xb2\xf1", +"\x4f\x1c" => "\xd0\xe7", +"\x4f\x1d" => "\xc5\xc1", +"\x4f\x2e" => "\x8f\xb0\xdd", +"\x4f\x2f" => "\xc7\xec", +"\x4f\x30" => "\xd0\xc6", +"\x4f\x31" => "\x8f\xb0\xde", +"\x4f\x33" => "\x8f\xb0\xe0", +"\x4f\x34" => "\xc8\xbc", +"\x4f\x35" => "\x8f\xb0\xe1", +"\x4f\x36" => "\xce\xe2", +"\x4f\x37" => "\x8f\xb0\xe2", +"\x4f\x38" => "\xbf\xad", +"\x4f\x39" => "\x8f\xb0\xe3", +"\x4f\x3a" => "\xbb\xc7", +"\x4f\x3b" => "\x8f\xb0\xe4", +"\x4f\x3c" => "\xbb\xf7", +"\x4f\x3d" => "\xb2\xc0", +"\x4f\x3e" => "\x8f\xb0\xe5", +"\x4f\x40" => "\x8f\xb0\xe6", +"\x4f\x42" => "\x8f\xb0\xe7", +"\x4f\x43" => "\xc4\xd1", +"\x4f\x46" => "\xc3\xa2", +"\x4f\x47" => "\xd0\xca", +"\x4f\x48" => "\x8f\xb0\xe8", +"\x4f\x49" => "\x8f\xb0\xe9", +"\x4f\x4b" => "\x8f\xb0\xea", +"\x4f\x4c" => "\x8f\xb0\xeb", +"\x4f\x4d" => "\xb0\xcc", +"\x4f\x4e" => "\xc4\xe3", +"\x4f\x4f" => "\xbd\xbb", +"\x4f\x50" => "\xba\xb4", +"\x4f\x51" => "\xcd\xa4", +"\x4f\x52" => "\x8f\xb0\xec", +"\x4f\x53" => "\xc2\xce", +"\x4f\x54" => "\x8f\xb0\xed", +"\x4f\x55" => "\xb2\xbf", +"\x4f\x56" => "\x8f\xb0\xee", +"\x4f\x57" => "\xd0\xc9", +"\x4f\x58" => "\x8f\xb0\xef", +"\x4f\x59" => "\xcd\xbe", +"\x4f\x5a" => "\xd0\xc5", +"\x4f\x5b" => "\xd0\xc7", +"\x4f\x5c" => "\xba\xee", +"\x4f\x5d" => "\xd0\xc8", +"\x4f\x5e" => "\xd5\xa4", +"\x4f\x5f" => "\x8f\xb0\xf0", +"\x4f\x60" => "\x8f\xb0\xdf", +"\x4f\x63" => "\x8f\xb0\xf1", +"\x4f\x69" => "\xd0\xd0", +"\x4f\x6a" => "\x8f\xb0\xf2", +"\x4f\x6c" => "\x8f\xb0\xf3", +"\x4f\x6e" => "\x8f\xb0\xf4", +"\x4f\x6f" => "\xd0\xd3", +"\x4f\x70" => "\xd0\xd1", +"\x4f\x71" => "\x8f\xb0\xf5", +"\x4f\x73" => "\xb2\xc2", +"\x4f\x75" => "\xca\xbb", +"\x4f\x76" => "\xd0\xcb", +"\x4f\x77" => "\x8f\xb0\xf6", +"\x4f\x78" => "\x8f\xb0\xf7", +"\x4f\x79" => "\x8f\xb0\xf8", +"\x4f\x7a" => "\x8f\xb0\xf9", +"\x4f\x7b" => "\xd0\xcf", +"\x4f\x7c" => "\xb8\xf3", +"\x4f\x7d" => "\x8f\xb0\xfa", +"\x4f\x7e" => "\x8f\xb0\xfb", +"\x4f\x7f" => "\xbb\xc8", +"\x4f\x81" => "\x8f\xb0\xfc", +"\x4f\x82" => "\x8f\xb0\xfd", +"\x4f\x83" => "\xb4\xa6", +"\x4f\x84" => "\x8f\xb0\xfe", +"\x4f\x85" => "\x8f\xb1\xa1", +"\x4f\x86" => "\xd0\xd4", +"\x4f\x88" => "\xd0\xcc", +"\x4f\x89" => "\x8f\xb1\xa2", +"\x4f\x8a" => "\x8f\xb1\xa3", +"\x4f\x8b" => "\xce\xe3", +"\x4f\x8c" => "\x8f\xb1\xa4", +"\x4f\x8d" => "\xbb\xf8", +"\x4f\x8e" => "\x8f\xb1\xa5", +"\x4f\x8f" => "\xd0\xcd", +"\x4f\x90" => "\x8f\xb1\xa6", +"\x4f\x91" => "\xd0\xd2", +"\x4f\x92" => "\x8f\xb1\xa7", +"\x4f\x93" => "\x8f\xb1\xa8", +"\x4f\x94" => "\x8f\xb1\xa9", +"\x4f\x96" => "\xd0\xd5", +"\x4f\x97" => "\x8f\xb1\xaa", +"\x4f\x98" => "\xd0\xce", +"\x4f\x99" => "\x8f\xb1\xab", +"\x4f\x9a" => "\x8f\xb1\xac", +"\x4f\x9b" => "\xb6\xa1", +"\x4f\x9d" => "\xb0\xcd", +"\x4f\x9e" => "\x8f\xb1\xad", +"\x4f\x9f" => "\x8f\xb1\xae", +"\x4f\xa0" => "\xb6\xa2", +"\x4f\xa1" => "\xb2\xc1", +"\x4f\xab" => "\xd5\xa5", +"\x4f\xad" => "\xcb\xf9", +"\x4f\xae" => "\xc9\xee", +"\x4f\xaf" => "\xb8\xf4", +"\x4f\xb2" => "\x8f\xb1\xaf", +"\x4f\xb5" => "\xbf\xaf", +"\x4f\xb6" => "\xce\xb7", +"\x4f\xb7" => "\x8f\xb1\xb0", +"\x4f\xb9" => "\x8f\xb1\xb1", +"\x4f\xbb" => "\x8f\xb1\xb2", +"\x4f\xbc" => "\x8f\xb1\xb3", +"\x4f\xbd" => "\x8f\xb1\xb4", +"\x4f\xbe" => "\x8f\xb1\xb5", +"\x4f\xbf" => "\xca\xd8", +"\x4f\xc0" => "\x8f\xb1\xb6", +"\x4f\xc1" => "\x8f\xb1\xb7", +"\x4f\xc2" => "\xb7\xb8", +"\x4f\xc3" => "\xc2\xa5", +"\x4f\xc4" => "\xb2\xe4", +"\x4f\xc5" => "\x8f\xb1\xb8", +"\x4f\xc6" => "\x8f\xb1\xb9", +"\x4f\xc8" => "\x8f\xb1\xba", +"\x4f\xc9" => "\x8f\xb1\xbb", +"\x4f\xca" => "\xbd\xd3", +"\x4f\xcb" => "\x8f\xb1\xbc", +"\x4f\xcc" => "\x8f\xb1\xbd", +"\x4f\xcd" => "\x8f\xb1\xbe", +"\x4f\xce" => "\xd0\xd9", +"\x4f\xcf" => "\x8f\xb1\xbf", +"\x4f\xd0" => "\xd0\xde", +"\x4f\xd1" => "\xd0\xdc", +"\x4f\xd2" => "\x8f\xb1\xc0", +"\x4f\xd4" => "\xd0\xd7", +"\x4f\xd7" => "\xc2\xaf", +"\x4f\xd8" => "\xd0\xda", +"\x4f\xda" => "\xd0\xdd", +"\x4f\xdb" => "\xd0\xdb", +"\x4f\xdc" => "\x8f\xb1\xc1", +"\x4f\xdd" => "\xca\xdd", +"\x4f\xdf" => "\xd0\xd8", +"\x4f\xe0" => "\x8f\xb1\xc2", +"\x4f\xe1" => "\xbf\xae", +"\x4f\xe2" => "\x8f\xb1\xc3", +"\x4f\xe3" => "\xcb\xf3", +"\x4f\xe4" => "\xd0\xdf", +"\x4f\xe5" => "\xd0\xe0", +"\x4f\xee" => "\xbd\xa4", +"\x4f\xef" => "\xd0\xed", +"\x4f\xf0" => "\x8f\xb1\xc4", +"\x4f\xf2" => "\x8f\xb1\xc5", +"\x4f\xf3" => "\xc7\xd0", +"\x4f\xf5" => "\xc9\xb6", +"\x4f\xf6" => "\xd0\xe8", +"\x4f\xf8" => "\xca\xf0", +"\x4f\xfa" => "\xb2\xb6", +"\x4f\xfc" => "\x8f\xb1\xc6", +"\x4f\xfd" => "\x8f\xb1\xc7", +"\x4f\xfe" => "\xd0\xec", +"\x4f\xff" => "\x8f\xb1\xc8", +"\x50\x00" => "\x8f\xb1\xc9", +"\x50\x01" => "\x8f\xb1\xca", +"\x50\x04" => "\x8f\xb1\xcb", +"\x50\x05" => "\xd0\xe6", +"\x50\x06" => "\xd0\xef", +"\x50\x07" => "\x8f\xb1\xcc", +"\x50\x09" => "\xc1\xd2", +"\x50\x0a" => "\x8f\xb1\xcd", +"\x50\x0b" => "\xb8\xc4", +"\x50\x0c" => "\x8f\xb1\xce", +"\x50\x0d" => "\xc7\xdc", +"\x50\x0e" => "\x8f\xb1\xcf", +"\x50\x0f" => "\xe0\xc7", +"\x50\x10" => "\x8f\xb1\xd0", +"\x50\x11" => "\xd0\xee", +"\x50\x12" => "\xc5\xdd", +"\x50\x13" => "\x8f\xb1\xd1", +"\x50\x14" => "\xd0\xe3", +"\x50\x16" => "\xb8\xf6", +"\x50\x17" => "\x8f\xb1\xd2", +"\x50\x18" => "\x8f\xb1\xd3", +"\x50\x19" => "\xb8\xf5", +"\x50\x1a" => "\xd0\xe1", +"\x50\x1b" => "\x8f\xb1\xd4", +"\x50\x1c" => "\x8f\xb1\xd5", +"\x50\x1d" => "\x8f\xb1\xd6", +"\x50\x1e" => "\x8f\xb1\xd7", +"\x50\x1f" => "\xbc\xda", +"\x50\x21" => "\xd0\xe9", +"\x50\x22" => "\x8f\xb1\xd8", +"\x50\x23" => "\xca\xef", +"\x50\x24" => "\xc3\xcd", +"\x50\x25" => "\xd0\xe5", +"\x50\x26" => "\xb7\xf1", +"\x50\x27" => "\x8f\xb1\xd9", +"\x50\x28" => "\xd0\xe2", +"\x50\x29" => "\xd0\xea", +"\x50\x2a" => "\xd0\xe4", +"\x50\x2b" => "\xce\xd1", +"\x50\x2c" => "\xd0\xeb", +"\x50\x2d" => "\xcf\xc1", +"\x50\x2e" => "\x8f\xb1\xda", +"\x50\x30" => "\x8f\xb1\xdb", +"\x50\x32" => "\x8f\xb1\xdc", +"\x50\x33" => "\x8f\xb1\xdd", +"\x50\x35" => "\x8f\xb1\xde", +"\x50\x36" => "\xb6\xe6", +"\x50\x39" => "\xb7\xf0", +"\x50\x3b" => "\x8f\xb1\xf6", +"\x50\x40" => "\x8f\xb1\xdf", +"\x50\x41" => "\x8f\xb1\xe0", +"\x50\x42" => "\x8f\xb1\xe1", +"\x50\x43" => "\xd0\xf0", +"\x50\x45" => "\x8f\xb1\xe2", +"\x50\x46" => "\x8f\xb1\xe3", +"\x50\x47" => "\xd0\xf1", +"\x50\x48" => "\xd0\xf5", +"\x50\x49" => "\xb0\xce", +"\x50\x4a" => "\x8f\xb1\xe4", +"\x50\x4c" => "\x8f\xb1\xe5", +"\x50\x4e" => "\x8f\xb1\xe6", +"\x50\x4f" => "\xca\xd0", +"\x50\x50" => "\xd0\xf4", +"\x50\x51" => "\x8f\xb1\xe7", +"\x50\x52" => "\x8f\xb1\xe8", +"\x50\x53" => "\x8f\xb1\xe9", +"\x50\x55" => "\xd0\xf3", +"\x50\x56" => "\xd0\xf7", +"\x50\x57" => "\x8f\xb1\xea", +"\x50\x59" => "\x8f\xb1\xeb", +"\x50\x5a" => "\xd0\xf6", +"\x50\x5c" => "\xc4\xe4", +"\x50\x5f" => "\x8f\xb1\xec", +"\x50\x60" => "\x8f\xb1\xed", +"\x50\x62" => "\x8f\xb1\xee", +"\x50\x63" => "\x8f\xb1\xef", +"\x50\x65" => "\xb7\xf2", +"\x50\x66" => "\x8f\xb1\xf0", +"\x50\x67" => "\x8f\xb1\xf1", +"\x50\x6a" => "\x8f\xb1\xf2", +"\x50\x6c" => "\xd0\xf8", +"\x50\x6d" => "\x8f\xb1\xf3", +"\x50\x70" => "\x8f\xb1\xf4", +"\x50\x71" => "\x8f\xb1\xf5", +"\x50\x72" => "\xbc\xc5", +"\x50\x74" => "\xc2\xa6", +"\x50\x75" => "\xc4\xe5", +"\x50\x76" => "\xb6\xf6", +"\x50\x78" => "\xd0\xf9", +"\x50\x7d" => "\xb5\xb6", +"\x50\x80" => "\xd0\xfa", +"\x50\x81" => "\x8f\xb1\xf7", +"\x50\x83" => "\x8f\xb1\xf8", +"\x50\x84" => "\x8f\xb1\xf9", +"\x50\x85" => "\xd0\xfc", +"\x50\x86" => "\x8f\xb1\xfa", +"\x50\x8a" => "\x8f\xb1\xfb", +"\x50\x8d" => "\xcb\xb5", +"\x50\x8e" => "\x8f\xb1\xfc", +"\x50\x8f" => "\x8f\xb1\xfd", +"\x50\x90" => "\x8f\xb1\xfe", +"\x50\x91" => "\xb7\xe6", +"\x50\x92" => "\x8f\xb2\xa1", +"\x50\x93" => "\x8f\xb2\xa2", +"\x50\x94" => "\x8f\xb2\xa3", +"\x50\x96" => "\x8f\xb2\xa4", +"\x50\x98" => "\xbb\xb1", +"\x50\x99" => "\xc8\xf7", +"\x50\x9a" => "\xd0\xfb", +"\x50\x9b" => "\x8f\xb2\xa5", +"\x50\x9c" => "\x8f\xb2\xa6", +"\x50\x9e" => "\x8f\xb2\xa7", +"\x50\x9f" => "\x8f\xb2\xa8", +"\x50\xa0" => "\x8f\xb2\xa9", +"\x50\xa1" => "\x8f\xb2\xaa", +"\x50\xa2" => "\x8f\xb2\xab", +"\x50\xaa" => "\x8f\xb2\xac", +"\x50\xac" => "\xba\xc5", +"\x50\xad" => "\xcd\xc3", +"\x50\xaf" => "\x8f\xb2\xad", +"\x50\xb0" => "\x8f\xb2\xae", +"\x50\xb2" => "\xd0\xfe", +"\x50\xb3" => "\xd1\xa3", +"\x50\xb4" => "\xd0\xfd", +"\x50\xb5" => "\xba\xc4", +"\x50\xb7" => "\xbd\xfd", +"\x50\xb9" => "\x8f\xb2\xaf", +"\x50\xba" => "\x8f\xb2\xb0", +"\x50\xbd" => "\x8f\xb2\xb1", +"\x50\xbe" => "\xb7\xb9", +"\x50\xc0" => "\x8f\xb2\xb2", +"\x50\xc2" => "\xd1\xa4", +"\x50\xc3" => "\x8f\xb2\xb3", +"\x50\xc4" => "\x8f\xb2\xb4", +"\x50\xc5" => "\xb6\xcf", +"\x50\xc7" => "\x8f\xb2\xb5", +"\x50\xc9" => "\xd1\xa1", +"\x50\xca" => "\xd1\xa2", +"\x50\xcc" => "\x8f\xb2\xb6", +"\x50\xcd" => "\xc6\xaf", +"\x50\xce" => "\x8f\xb2\xb7", +"\x50\xcf" => "\xc1\xfc", +"\x50\xd0" => "\x8f\xb2\xb8", +"\x50\xd1" => "\xb6\xa3", +"\x50\xd3" => "\x8f\xb2\xb9", +"\x50\xd4" => "\x8f\xb2\xba", +"\x50\xd5" => "\xcb\xcd", +"\x50\xd6" => "\xd1\xa5", +"\x50\xd8" => "\x8f\xb2\xbb", +"\x50\xda" => "\xce\xbd", +"\x50\xdc" => "\x8f\xb2\xbc", +"\x50\xdd" => "\x8f\xb2\xbd", +"\x50\xde" => "\xd1\xa6", +"\x50\xdf" => "\x8f\xb2\xbe", +"\x50\xe2" => "\x8f\xb2\xbf", +"\x50\xe3" => "\xd1\xa9", +"\x50\xe4" => "\x8f\xb2\xc0", +"\x50\xe5" => "\xd1\xa7", +"\x50\xe6" => "\x8f\xb2\xc1", +"\x50\xe7" => "\xc1\xce", +"\x50\xe8" => "\x8f\xb2\xc2", +"\x50\xe9" => "\x8f\xb2\xc3", +"\x50\xed" => "\xd1\xa8", +"\x50\xee" => "\xd1\xaa", +"\x50\xef" => "\x8f\xb2\xc4", +"\x50\xf1" => "\x8f\xb2\xc5", +"\x50\xf2" => "\x8f\xb2\xd1", +"\x50\xf5" => "\xd1\xac", +"\x50\xf6" => "\x8f\xb2\xc6", +"\x50\xf9" => "\xd1\xab", +"\x50\xfa" => "\x8f\xb2\xc7", +"\x50\xfb" => "\xca\xc8", +"\x50\xfe" => "\x8f\xb2\xc8", +"\x51\x00" => "\xb5\xb7", +"\x51\x01" => "\xd1\xae", +"\x51\x02" => "\xd1\xaf", +"\x51\x03" => "\x8f\xb2\xc9", +"\x51\x04" => "\xb2\xaf", +"\x51\x06" => "\x8f\xb2\xca", +"\x51\x07" => "\x8f\xb2\xcb", +"\x51\x08" => "\x8f\xb2\xcc", +"\x51\x09" => "\xd1\xad", +"\x51\x0b" => "\x8f\xb2\xcd", +"\x51\x0c" => "\x8f\xb2\xce", +"\x51\x0d" => "\x8f\xb2\xcf", +"\x51\x0e" => "\x8f\xb2\xd0", +"\x51\x10" => "\x8f\xb2\xd2", +"\x51\x12" => "\xbc\xf4", +"\x51\x14" => "\xd1\xb2", +"\x51\x15" => "\xd1\xb1", +"\x51\x16" => "\xd1\xb0", +"\x51\x17" => "\x8f\xb2\xd3", +"\x51\x18" => "\xd0\xd6", +"\x51\x19" => "\x8f\xb2\xd4", +"\x51\x1a" => "\xd1\xb3", +"\x51\x1b" => "\x8f\xb2\xd5", +"\x51\x1c" => "\x8f\xb2\xd6", +"\x51\x1d" => "\x8f\xb2\xd7", +"\x51\x1e" => "\x8f\xb2\xd8", +"\x51\x1f" => "\xbd\xfe", +"\x51\x21" => "\xd1\xb4", +"\x51\x23" => "\x8f\xb2\xd9", +"\x51\x27" => "\x8f\xb2\xda", +"\x51\x28" => "\x8f\xb2\xdb", +"\x51\x2a" => "\xcd\xa5", +"\x51\x2c" => "\x8f\xb2\xdc", +"\x51\x2d" => "\x8f\xb2\xdd", +"\x51\x2f" => "\x8f\xb2\xde", +"\x51\x31" => "\x8f\xb2\xdf", +"\x51\x32" => "\xcc\xd9", +"\x51\x33" => "\x8f\xb2\xe0", +"\x51\x34" => "\x8f\xb2\xe1", +"\x51\x35" => "\x8f\xb2\xe2", +"\x51\x37" => "\xd1\xb6", +"\x51\x38" => "\x8f\xb2\xe3", +"\x51\x39" => "\x8f\xb2\xe4", +"\x51\x3a" => "\xd1\xb5", +"\x51\x3b" => "\xd1\xb8", +"\x51\x3c" => "\xd1\xb7", +"\x51\x3f" => "\xd1\xb9", +"\x51\x40" => "\xd1\xba", +"\x51\x41" => "\xb0\xf4", +"\x51\x42" => "\x8f\xb2\xe5", +"\x51\x43" => "\xb8\xb5", +"\x51\x44" => "\xb7\xbb", +"\x51\x45" => "\xbd\xbc", +"\x51\x46" => "\xc3\xfb", +"\x51\x47" => "\xb6\xa4", +"\x51\x48" => "\xc0\xe8", +"\x51\x49" => "\xb8\xf7", +"\x51\x4a" => "\x8f\xb2\xe6", +"\x51\x4b" => "\xb9\xee", +"\x51\x4c" => "\xd1\xbc", +"\x51\x4d" => "\xcc\xc8", +"\x51\x4e" => "\xc5\xc6", +"\x51\x4f" => "\x8f\xb2\xe7", +"\x51\x50" => "\xbb\xf9", +"\x51\x52" => "\xd1\xbb", +"\x51\x53" => "\x8f\xb2\xe8", +"\x51\x54" => "\xd1\xbd", +"\x51\x55" => "\x8f\xb2\xe9", +"\x51\x57" => "\x8f\xb2\xea", +"\x51\x58" => "\x8f\xb2\xeb", +"\x51\x5a" => "\xc5\xde", +"\x51\x5c" => "\xb3\xf5", +"\x51\x5f" => "\x8f\xb2\xec", +"\x51\x62" => "\xd1\xbe", +"\x51\x64" => "\x8f\xb2\xed", +"\x51\x65" => "\xc6\xfe", +"\x51\x66" => "\x8f\xb2\xee", +"\x51\x68" => "\xc1\xb4", +"\x51\x69" => "\xd1\xc0", +"\x51\x6a" => "\xd1\xc1", +"\x51\x6b" => "\xc8\xac", +"\x51\x6c" => "\xb8\xf8", +"\x51\x6d" => "\xcf\xbb", +"\x51\x6e" => "\xd1\xc2", +"\x51\x71" => "\xb6\xa6", +"\x51\x75" => "\xca\xbc", +"\x51\x76" => "\xc2\xb6", +"\x51\x77" => "\xb6\xf1", +"\x51\x78" => "\xc5\xb5", +"\x51\x7c" => "\xb7\xf3", +"\x51\x7e" => "\x8f\xb2\xef", +"\x51\x80" => "\xd1\xc3", +"\x51\x82" => "\xd1\xc4", +"\x51\x83" => "\x8f\xb2\xf0", +"\x51\x84" => "\x8f\xb2\xf1", +"\x51\x85" => "\xc6\xe2", +"\x51\x86" => "\xb1\xdf", +"\x51\x89" => "\xd1\xc7", +"\x51\x8a" => "\xba\xfd", +"\x51\x8b" => "\x8f\xb2\xf2", +"\x51\x8c" => "\xd1\xc6", +"\x51\x8d" => "\xba\xc6", +"\x51\x8e" => "\x8f\xb2\xf3", +"\x51\x8f" => "\xd1\xc8", +"\x51\x90" => "\xe6\xee", +"\x51\x91" => "\xd1\xc9", +"\x51\x92" => "\xcb\xc1", +"\x51\x93" => "\xd1\xca", +"\x51\x95" => "\xd1\xcb", +"\x51\x96" => "\xd1\xcc", +"\x51\x97" => "\xbe\xe9", +"\x51\x98" => "\x8f\xb2\xf4", +"\x51\x99" => "\xbc\xcc", +"\x51\x9d" => "\x8f\xb2\xf5", +"\x51\xa0" => "\xb4\xa7", +"\x51\xa1" => "\x8f\xb2\xf6", +"\x51\xa2" => "\xd1\xcf", +"\x51\xa3" => "\x8f\xb2\xf7", +"\x51\xa4" => "\xd1\xcd", +"\x51\xa5" => "\xcc\xbd", +"\x51\xa6" => "\xd1\xce", +"\x51\xa8" => "\xc9\xda", +"\x51\xa9" => "\xd1\xd0", +"\x51\xaa" => "\xd1\xd1", +"\x51\xab" => "\xd1\xd2", +"\x51\xac" => "\xc5\xdf", +"\x51\xad" => "\x8f\xb2\xf8", +"\x51\xb0" => "\xd1\xd6", +"\x51\xb1" => "\xd1\xd4", +"\x51\xb2" => "\xd1\xd5", +"\x51\xb3" => "\xd1\xd3", +"\x51\xb4" => "\xba\xe3", +"\x51\xb5" => "\xd1\xd7", +"\x51\xb6" => "\xcc\xea", +"\x51\xb7" => "\xce\xe4", +"\x51\xb8" => "\x8f\xb2\xf9", +"\x51\xba" => "\x8f\xb2\xfa", +"\x51\xbc" => "\x8f\xb2\xfb", +"\x51\xbd" => "\xd1\xd8", +"\x51\xbe" => "\x8f\xb2\xfc", +"\x51\xbf" => "\x8f\xb2\xfd", +"\x51\xc2" => "\x8f\xb2\xfe", +"\x51\xc4" => "\xc0\xa8", +"\x51\xc5" => "\xd1\xd9", +"\x51\xc6" => "\xbd\xda", +"\x51\xc8" => "\x8f\xb3\xa1", +"\x51\xc9" => "\xd1\xda", +"\x51\xcb" => "\xc3\xfc", +"\x51\xcc" => "\xce\xbf", +"\x51\xcd" => "\xc5\xe0", +"\x51\xcf" => "\x8f\xb3\xa2", +"\x51\xd1" => "\x8f\xb3\xa3", +"\x51\xd2" => "\x8f\xb3\xa4", +"\x51\xd3" => "\x8f\xb3\xa5", +"\x51\xd5" => "\x8f\xb3\xa6", +"\x51\xd6" => "\xd2\xc5", +"\x51\xd8" => "\x8f\xb3\xa7", +"\x51\xdb" => "\xd1\xdb", +"\x51\xdc" => "\xf4\xa5", +"\x51\xdd" => "\xb6\xc5", +"\x51\xde" => "\x8f\xb3\xa8", +"\x51\xe0" => "\xd1\xdc", +"\x51\xe1" => "\xcb\xde", +"\x51\xe2" => "\x8f\xb3\xa9", +"\x51\xe5" => "\x8f\xb3\xaa", +"\x51\xe6" => "\xbd\xe8", +"\x51\xe7" => "\xc2\xfc", +"\x51\xe9" => "\xd1\xde", +"\x51\xea" => "\xc6\xe4", +"\x51\xed" => "\xd1\xdf", +"\x51\xee" => "\x8f\xb3\xab", +"\x51\xf0" => "\xd1\xe0", +"\x51\xf1" => "\xb3\xae", +"\x51\xf2" => "\x8f\xb3\xac", +"\x51\xf3" => "\x8f\xb3\xad", +"\x51\xf4" => "\x8f\xb3\xae", +"\x51\xf5" => "\xd1\xe1", +"\x51\xf6" => "\xb6\xa7", +"\x51\xf7" => "\x8f\xb3\xaf", +"\x51\xf8" => "\xc6\xcc", +"\x51\xf9" => "\xb1\xfa", +"\x51\xfa" => "\xbd\xd0", +"\x51\xfd" => "\xc8\xa1", +"\x51\xfe" => "\xd1\xe2", +"\x52\x00" => "\xc5\xe1", +"\x52\x01" => "\x8f\xb3\xb0", +"\x52\x02" => "\x8f\xb3\xb1", +"\x52\x03" => "\xbf\xcf", +"\x52\x04" => "\xd1\xe3", +"\x52\x05" => "\x8f\xb3\xb2", +"\x52\x06" => "\xca\xac", +"\x52\x07" => "\xc0\xda", +"\x52\x08" => "\xb4\xa2", +"\x52\x0a" => "\xb4\xa9", +"\x52\x0b" => "\xd1\xe4", +"\x52\x0e" => "\xd1\xe6", +"\x52\x11" => "\xb7\xba", +"\x52\x12" => "\x8f\xb3\xb3", +"\x52\x13" => "\x8f\xb3\xb4", +"\x52\x14" => "\xd1\xe5", +"\x52\x15" => "\x8f\xb3\xb5", +"\x52\x16" => "\x8f\xb3\xb6", +"\x52\x17" => "\xce\xf3", +"\x52\x18" => "\x8f\xb3\xb7", +"\x52\x1d" => "\xbd\xe9", +"\x52\x22" => "\x8f\xb3\xb8", +"\x52\x24" => "\xc8\xbd", +"\x52\x25" => "\xca\xcc", +"\x52\x27" => "\xd1\xe7", +"\x52\x28" => "\x8f\xb3\xb9", +"\x52\x29" => "\xcd\xf8", +"\x52\x2a" => "\xd1\xe8", +"\x52\x2e" => "\xd1\xe9", +"\x52\x30" => "\xc5\xfe", +"\x52\x31" => "\x8f\xb3\xba", +"\x52\x32" => "\x8f\xb3\xbb", +"\x52\x33" => "\xd1\xea", +"\x52\x35" => "\x8f\xb3\xbc", +"\x52\x36" => "\xc0\xa9", +"\x52\x37" => "\xba\xfe", +"\x52\x38" => "\xb7\xf4", +"\x52\x39" => "\xd1\xeb", +"\x52\x3a" => "\xbb\xc9", +"\x52\x3b" => "\xb9\xef", +"\x52\x3c" => "\x8f\xb3\xbd", +"\x52\x43" => "\xc4\xe6", +"\x52\x44" => "\xd1\xed", +"\x52\x45" => "\x8f\xb3\xbe", +"\x52\x47" => "\xc2\xa7", +"\x52\x49" => "\x8f\xb3\xbf", +"\x52\x4a" => "\xba\xef", +"\x52\x4b" => "\xd1\xee", +"\x52\x4c" => "\xd1\xef", +"\x52\x4d" => "\xc1\xb0", +"\x52\x4f" => "\xd1\xec", +"\x52\x54" => "\xd1\xf1", +"\x52\x55" => "\x8f\xb3\xc0", +"\x52\x56" => "\xcb\xb6", +"\x52\x57" => "\x8f\xb3\xc1", +"\x52\x58" => "\x8f\xb3\xc2", +"\x52\x5a" => "\x8f\xb3\xc3", +"\x52\x5b" => "\xb9\xe4", +"\x52\x5c" => "\x8f\xb3\xc4", +"\x52\x5e" => "\xd1\xf0", +"\x52\x5f" => "\x8f\xb3\xc5", +"\x52\x60" => "\x8f\xb3\xc6", +"\x52\x61" => "\x8f\xb3\xc7", +"\x52\x63" => "\xb7\xf5", +"\x52\x64" => "\xba\xde", +"\x52\x65" => "\xc7\xed", +"\x52\x66" => "\x8f\xb3\xc8", +"\x52\x69" => "\xd1\xf4", +"\x52\x6a" => "\xd1\xf2", +"\x52\x6e" => "\x8f\xb3\xc9", +"\x52\x6f" => "\xc9\xfb", +"\x52\x70" => "\xbe\xea", +"\x52\x71" => "\xd1\xfb", +"\x52\x72" => "\xb3\xe4", +"\x52\x73" => "\xd1\xf5", +"\x52\x74" => "\xd1\xf3", +"\x52\x75" => "\xc1\xcf", +"\x52\x77" => "\x8f\xb3\xca", +"\x52\x78" => "\x8f\xb3\xcb", +"\x52\x79" => "\x8f\xb3\xcc", +"\x52\x7d" => "\xd1\xf7", +"\x52\x7f" => "\xd1\xf6", +"\x52\x80" => "\x8f\xb3\xcd", +"\x52\x82" => "\x8f\xb3\xce", +"\x52\x83" => "\xb3\xc4", +"\x52\x85" => "\x8f\xb3\xcf", +"\x52\x87" => "\xb7\xe0", +"\x52\x88" => "\xd1\xfc", +"\x52\x89" => "\xce\xad", +"\x52\x8a" => "\x8f\xb3\xd0", +"\x52\x8c" => "\x8f\xb3\xd1", +"\x52\x8d" => "\xd1\xf8", +"\x52\x91" => "\xd1\xfd", +"\x52\x92" => "\xd1\xfa", +"\x52\x93" => "\x8f\xb3\xd2", +"\x52\x94" => "\xd1\xf9", +"\x52\x95" => "\x8f\xb3\xd3", +"\x52\x96" => "\x8f\xb3\xd4", +"\x52\x97" => "\x8f\xb3\xd5", +"\x52\x98" => "\x8f\xb3\xd6", +"\x52\x9a" => "\x8f\xb3\xd7", +"\x52\x9b" => "\xce\xcf", +"\x52\x9c" => "\x8f\xb3\xd8", +"\x52\x9f" => "\xb8\xf9", +"\x52\xa0" => "\xb2\xc3", +"\x52\xa3" => "\xce\xf4", +"\x52\xa4" => "\x8f\xb3\xd9", +"\x52\xa5" => "\x8f\xb3\xda", +"\x52\xa6" => "\x8f\xb3\xdb", +"\x52\xa7" => "\x8f\xb3\xdc", +"\x52\xa9" => "\xbd\xf5", +"\x52\xaa" => "\xc5\xd8", +"\x52\xab" => "\xb9\xe5", +"\x52\xac" => "\xd2\xa2", +"\x52\xad" => "\xd2\xa3", +"\x52\xaf" => "\x8f\xb3\xdd", +"\x52\xb0" => "\x8f\xb3\xde", +"\x52\xb1" => "\xce\xe5", +"\x52\xb4" => "\xcf\xab", +"\x52\xb5" => "\xd2\xa5", +"\x52\xb6" => "\x8f\xb3\xdf", +"\x52\xb7" => "\x8f\xb3\xe0", +"\x52\xb8" => "\x8f\xb3\xe1", +"\x52\xb9" => "\xb8\xfa", +"\x52\xba" => "\x8f\xb3\xe2", +"\x52\xbb" => "\x8f\xb3\xe3", +"\x52\xbc" => "\xd2\xa4", +"\x52\xbd" => "\x8f\xb3\xe4", +"\x52\xbe" => "\xb3\xaf", +"\x52\xc0" => "\x8f\xb3\xe5", +"\x52\xc1" => "\xd2\xa6", +"\x52\xc3" => "\xcb\xd6", +"\x52\xc4" => "\x8f\xb3\xe6", +"\x52\xc5" => "\xc4\xbc", +"\x52\xc6" => "\x8f\xb3\xe7", +"\x52\xc7" => "\xcd\xa6", +"\x52\xc8" => "\x8f\xb3\xe8", +"\x52\xc9" => "\xca\xd9", +"\x52\xcc" => "\x8f\xb3\xe9", +"\x52\xcd" => "\xd2\xa7", +"\x52\xcf" => "\x8f\xb3\xea", +"\x52\xd1" => "\x8f\xb3\xeb", +"\x52\xd2" => "\xf0\xd5", +"\x52\xd4" => "\x8f\xb3\xec", +"\x52\xd5" => "\xc6\xb0", +"\x52\xd6" => "\x8f\xb3\xed", +"\x52\xd7" => "\xd2\xa8", +"\x52\xd8" => "\xb4\xaa", +"\x52\xd9" => "\xcc\xb3", +"\x52\xdb" => "\x8f\xb3\xee", +"\x52\xdc" => "\x8f\xb3\xef", +"\x52\xdd" => "\xbe\xa1", +"\x52\xde" => "\xd2\xa9", +"\x52\xdf" => "\xca\xe7", +"\x52\xe0" => "\xd2\xad", +"\x52\xe1" => "\x8f\xb3\xf0", +"\x52\xe2" => "\xc0\xaa", +"\x52\xe3" => "\xd2\xaa", +"\x52\xe4" => "\xb6\xd0", +"\x52\xe5" => "\x8f\xb3\xf1", +"\x52\xe6" => "\xd2\xab", +"\x52\xe7" => "\xb4\xab", +"\x52\xe8" => "\x8f\xb3\xf2", +"\x52\xe9" => "\x8f\xb3\xf3", +"\x52\xea" => "\x8f\xb3\xf4", +"\x52\xec" => "\x8f\xb3\xf5", +"\x52\xf0" => "\x8f\xb3\xf6", +"\x52\xf1" => "\x8f\xb3\xf7", +"\x52\xf2" => "\xb7\xae", +"\x52\xf3" => "\xd2\xae", +"\x52\xf4" => "\x8f\xb3\xf8", +"\x52\xf5" => "\xd2\xaf", +"\x52\xf6" => "\x8f\xb3\xf9", +"\x52\xf7" => "\x8f\xb3\xfa", +"\x52\xf8" => "\xd2\xb0", +"\x52\xf9" => "\xd2\xb1", +"\x52\xfa" => "\xbc\xdb", +"\x52\xfe" => "\xb8\xfb", +"\x52\xff" => "\xcc\xde", +"\x53\x00" => "\x8f\xb3\xfb", +"\x53\x01" => "\xcc\xe8", +"\x53\x02" => "\xc6\xf7", +"\x53\x03" => "\x8f\xb3\xfc", +"\x53\x05" => "\xca\xf1", +"\x53\x06" => "\xd2\xb2", +"\x53\x08" => "\xd2\xb3", +"\x53\x0a" => "\x8f\xb3\xfd", +"\x53\x0b" => "\x8f\xb3\xfe", +"\x53\x0c" => "\x8f\xb4\xa1", +"\x53\x0d" => "\xd2\xb5", +"\x53\x0f" => "\xd2\xb7", +"\x53\x10" => "\xd2\xb6", +"\x53\x11" => "\x8f\xb4\xa2", +"\x53\x13" => "\x8f\xb4\xa3", +"\x53\x15" => "\xd2\xb8", +"\x53\x16" => "\xb2\xbd", +"\x53\x17" => "\xcb\xcc", +"\x53\x18" => "\x8f\xb4\xa4", +"\x53\x19" => "\xba\xfc", +"\x53\x1a" => "\xd2\xb9", +"\x53\x1b" => "\x8f\xb4\xa5", +"\x53\x1c" => "\x8f\xb4\xa6", +"\x53\x1d" => "\xc1\xd9", +"\x53\x1e" => "\x8f\xb4\xa7", +"\x53\x1f" => "\x8f\xb4\xa8", +"\x53\x20" => "\xbe\xa2", +"\x53\x21" => "\xb6\xa9", +"\x53\x23" => "\xd2\xba", +"\x53\x25" => "\x8f\xb4\xa9", +"\x53\x27" => "\x8f\xb4\xaa", +"\x53\x28" => "\x8f\xb4\xab", +"\x53\x29" => "\x8f\xb4\xac", +"\x53\x2a" => "\xc8\xdb", +"\x53\x2b" => "\x8f\xb4\xad", +"\x53\x2c" => "\x8f\xb4\xae", +"\x53\x2d" => "\x8f\xb4\xaf", +"\x53\x2f" => "\xd2\xbb", +"\x53\x30" => "\x8f\xb4\xb0", +"\x53\x31" => "\xd2\xbc", +"\x53\x32" => "\x8f\xb4\xb1", +"\x53\x33" => "\xd2\xbd", +"\x53\x35" => "\x8f\xb4\xb2", +"\x53\x38" => "\xd2\xbe", +"\x53\x39" => "\xc9\xa4", +"\x53\x3a" => "\xb6\xe8", +"\x53\x3b" => "\xb0\xe5", +"\x53\x3c" => "\x8f\xb4\xb3", +"\x53\x3d" => "\x8f\xb4\xb4", +"\x53\x3e" => "\x8f\xb4\xb5", +"\x53\x3f" => "\xc6\xbf", +"\x53\x40" => "\xd2\xbf", +"\x53\x41" => "\xbd\xbd", +"\x53\x42" => "\x8f\xb4\xb6", +"\x53\x43" => "\xc0\xe9", +"\x53\x45" => "\xd2\xc1", +"\x53\x46" => "\xd2\xc0", +"\x53\x47" => "\xbe\xa3", +"\x53\x48" => "\xb8\xe1", +"\x53\x49" => "\xd2\xc3", +"\x53\x4a" => "\xc8\xbe", +"\x53\x4b" => "\x8f\xb4\xb8", +"\x53\x4c" => "\x8f\xb4\xb7", +"\x53\x4d" => "\xd2\xc4", +"\x53\x51" => "\xc8\xdc", +"\x53\x52" => "\xc2\xb4", +"\x53\x53" => "\xc2\xee", +"\x53\x54" => "\xb6\xa8", +"\x53\x57" => "\xc6\xee", +"\x53\x58" => "\xc3\xb1", +"\x53\x59" => "\x8f\xb4\xb9", +"\x53\x5a" => "\xc7\xee", +"\x53\x5b" => "\x8f\xb4\xba", +"\x53\x5c" => "\xcb\xce", +"\x53\x5e" => "\xd2\xc6", +"\x53\x60" => "\xc0\xea", +"\x53\x61" => "\x8f\xb4\xbb", +"\x53\x63" => "\x8f\xb4\xbc", +"\x53\x65" => "\x8f\xb4\xbd", +"\x53\x66" => "\xb7\xb5", +"\x53\x69" => "\xd2\xc7", +"\x53\x6c" => "\x8f\xb4\xbe", +"\x53\x6d" => "\x8f\xb4\xbf", +"\x53\x6e" => "\xd2\xc8", +"\x53\x6f" => "\xb1\xac", +"\x53\x70" => "\xb0\xf5", +"\x53\x71" => "\xb4\xed", +"\x53\x72" => "\x8f\xb4\xc0", +"\x53\x73" => "\xc2\xa8", +"\x53\x74" => "\xb5\xd1", +"\x53\x75" => "\xcd\xf1", +"\x53\x77" => "\xd2\xcb", +"\x53\x78" => "\xb2\xb7", +"\x53\x79" => "\x8f\xb4\xc1", +"\x53\x7b" => "\xd2\xca", +"\x53\x7e" => "\x8f\xb4\xc2", +"\x53\x7f" => "\xb6\xaa", +"\x53\x82" => "\xd2\xcc", +"\x53\x83" => "\x8f\xb4\xc3", +"\x53\x84" => "\xcc\xf1", +"\x53\x87" => "\x8f\xb4\xc4", +"\x53\x88" => "\x8f\xb4\xc5", +"\x53\x8e" => "\x8f\xb4\xc6", +"\x53\x93" => "\x8f\xb4\xc7", +"\x53\x94" => "\x8f\xb4\xc8", +"\x53\x96" => "\xd2\xcd", +"\x53\x98" => "\xce\xd2", +"\x53\x99" => "\x8f\xb4\xc9", +"\x53\x9a" => "\xb8\xfc", +"\x53\x9d" => "\x8f\xb4\xca", +"\x53\x9f" => "\xb8\xb6", +"\x53\xa0" => "\xd2\xce", +"\x53\xa1" => "\x8f\xb4\xcb", +"\x53\xa4" => "\x8f\xb4\xcc", +"\x53\xa5" => "\xd2\xd0", +"\x53\xa6" => "\xd2\xcf", +"\x53\xa8" => "\xbf\xdf", +"\x53\xa9" => "\xb1\xb9", +"\x53\xaa" => "\x8f\xb4\xcd", +"\x53\xab" => "\x8f\xb4\xce", +"\x53\xad" => "\xb1\xde", +"\x53\xae" => "\xd2\xd1", +"\x53\xaf" => "\x8f\xb4\xcf", +"\x53\xb0" => "\xd2\xd2", +"\x53\xb2" => "\x8f\xb4\xd0", +"\x53\xb3" => "\xb8\xb7", +"\x53\xb4" => "\x8f\xb4\xd1", +"\x53\xb5" => "\x8f\xb4\xd2", +"\x53\xb6" => "\xd2\xd3", +"\x53\xb7" => "\x8f\xb4\xd3", +"\x53\xb8" => "\x8f\xb4\xd4", +"\x53\xba" => "\x8f\xb4\xd5", +"\x53\xbb" => "\xb5\xee", +"\x53\xbd" => "\x8f\xb4\xd6", +"\x53\xc0" => "\x8f\xb4\xd7", +"\x53\xc2" => "\xbb\xb2", +"\x53\xc3" => "\xd2\xd4", +"\x53\xc5" => "\x8f\xb4\xd8", +"\x53\xc8" => "\xcb\xf4", +"\x53\xc9" => "\xba\xb5", +"\x53\xca" => "\xb5\xda", +"\x53\xcb" => "\xcd\xa7", +"\x53\xcc" => "\xc1\xd0", +"\x53\xcd" => "\xc8\xbf", +"\x53\xce" => "\xbc\xfd", +"\x53\xcf" => "\x8f\xb4\xd9", +"\x53\xd2" => "\x8f\xb4\xda", +"\x53\xd3" => "\x8f\xb4\xdb", +"\x53\xd4" => "\xbd\xc7", +"\x53\xd5" => "\x8f\xb4\xdc", +"\x53\xd6" => "\xbc\xe8", +"\x53\xd7" => "\xbc\xf5", +"\x53\xd9" => "\xbd\xf6", +"\x53\xda" => "\x8f\xb4\xdd", +"\x53\xdb" => "\xc8\xc0", +"\x53\xdd" => "\x8f\xb4\xde", +"\x53\xde" => "\x8f\xb4\xdf", +"\x53\xdf" => "\xd2\xd7", +"\x53\xe0" => "\x8f\xb4\xe0", +"\x53\xe1" => "\xb1\xc3", +"\x53\xe2" => "\xc1\xd1", +"\x53\xe3" => "\xb8\xfd", +"\x53\xe4" => "\xb8\xc5", +"\x53\xe5" => "\xb6\xe7", +"\x53\xe6" => "\x8f\xb4\xe1", +"\x53\xe7" => "\x8f\xb4\xe2", +"\x53\xe8" => "\xd2\xdb", +"\x53\xe9" => "\xc3\xa1", +"\x53\xea" => "\xc2\xfe", +"\x53\xeb" => "\xb6\xab", +"\x53\xec" => "\xbe\xa4", +"\x53\xed" => "\xd2\xdc", +"\x53\xee" => "\xd2\xda", +"\x53\xef" => "\xb2\xc4", +"\x53\xf0" => "\xc2\xe6", +"\x53\xf1" => "\xbc\xb8", +"\x53\xf2" => "\xbb\xcb", +"\x53\xf3" => "\xb1\xa6", +"\x53\xf5" => "\x8f\xb4\xe3", +"\x53\xf6" => "\xb3\xf0", +"\x53\xf7" => "\xb9\xe6", +"\x53\xf8" => "\xbb\xca", +"\x53\xfa" => "\xd2\xdd", +"\x54\x01" => "\xd2\xde", +"\x54\x02" => "\x8f\xb4\xe4", +"\x54\x03" => "\xb5\xc9", +"\x54\x04" => "\xb3\xc6", +"\x54\x08" => "\xb9\xe7", +"\x54\x09" => "\xb5\xc8", +"\x54\x0a" => "\xc4\xdf", +"\x54\x0b" => "\xb1\xa5", +"\x54\x0c" => "\xc6\xb1", +"\x54\x0d" => "\xcc\xbe", +"\x54\x0e" => "\xb9\xa1", +"\x54\x0f" => "\xcd\xf9", +"\x54\x10" => "\xc5\xc7", +"\x54\x11" => "\xb8\xfe", +"\x54\x13" => "\x8f\xb4\xe5", +"\x54\x1a" => "\x8f\xb4\xe6", +"\x54\x1b" => "\xb7\xaf", +"\x54\x1d" => "\xd2\xe7", +"\x54\x1f" => "\xb6\xe3", +"\x54\x20" => "\xcb\xca", +"\x54\x21" => "\x8f\xb4\xe7", +"\x54\x26" => "\xc8\xdd", +"\x54\x27" => "\x8f\xb4\xe8", +"\x54\x28" => "\x8f\xb4\xe9", +"\x54\x29" => "\xd2\xe6", +"\x54\x2a" => "\x8f\xb4\xea", +"\x54\x2b" => "\xb4\xde", +"\x54\x2c" => "\xd2\xe1", +"\x54\x2d" => "\xd2\xe2", +"\x54\x2e" => "\xd2\xe4", +"\x54\x2f" => "\x8f\xb4\xeb", +"\x54\x31" => "\x8f\xb4\xec", +"\x54\x34" => "\x8f\xb4\xed", +"\x54\x35" => "\x8f\xb4\xee", +"\x54\x36" => "\xd2\xe5", +"\x54\x38" => "\xb5\xdb", +"\x54\x39" => "\xbf\xe1", +"\x54\x3b" => "\xca\xad", +"\x54\x3c" => "\xd2\xe3", +"\x54\x3d" => "\xd2\xdf", +"\x54\x3e" => "\xb8\xe3", +"\x54\x40" => "\xd2\xe0", +"\x54\x42" => "\xcf\xa4", +"\x54\x43" => "\x8f\xb4\xef", +"\x54\x44" => "\x8f\xb4\xf0", +"\x54\x46" => "\xca\xf2", +"\x54\x47" => "\x8f\xb4\xf1", +"\x54\x48" => "\xc4\xe8", +"\x54\x49" => "\xb8\xe2", +"\x54\x4a" => "\xb9\xf0", +"\x54\x4d" => "\x8f\xb4\xf2", +"\x54\x4e" => "\xd2\xe8", +"\x54\x4f" => "\x8f\xb4\xf3", +"\x54\x51" => "\xc6\xdd", +"\x54\x5e" => "\x8f\xb4\xf4", +"\x54\x5f" => "\xd2\xec", +"\x54\x62" => "\x8f\xb4\xf5", +"\x54\x64" => "\x8f\xb4\xf6", +"\x54\x66" => "\x8f\xb4\xf7", +"\x54\x67" => "\x8f\xb4\xf8", +"\x54\x68" => "\xbc\xfe", +"\x54\x69" => "\x8f\xb4\xf9", +"\x54\x6a" => "\xbc\xf6", +"\x54\x6b" => "\x8f\xb4\xfa", +"\x54\x6d" => "\x8f\xb4\xfb", +"\x54\x6e" => "\x8f\xb4\xfc", +"\x54\x70" => "\xd2\xef", +"\x54\x71" => "\xd2\xed", +"\x54\x73" => "\xcc\xa3", +"\x54\x74" => "\x8f\xb4\xfd", +"\x54\x75" => "\xd2\xea", +"\x54\x76" => "\xd2\xf3", +"\x54\x77" => "\xd2\xee", +"\x54\x7b" => "\xd2\xf1", +"\x54\x7c" => "\xb8\xc6", +"\x54\x7d" => "\xcc\xbf", +"\x54\x7f" => "\x8f\xb4\xfe", +"\x54\x80" => "\xd2\xf2", +"\x54\x81" => "\x8f\xb5\xa1", +"\x54\x83" => "\x8f\xb5\xa2", +"\x54\x84" => "\xd2\xf4", +"\x54\x85" => "\x8f\xb5\xa3", +"\x54\x86" => "\xd2\xf6", +"\x54\x88" => "\x8f\xb5\xa4", +"\x54\x89" => "\x8f\xb5\xa5", +"\x54\x8b" => "\xba\xf0", +"\x54\x8c" => "\xcf\xc2", +"\x54\x8d" => "\x8f\xb5\xa6", +"\x54\x8e" => "\xd2\xeb", +"\x54\x8f" => "\xd2\xe9", +"\x54\x90" => "\xd2\xf5", +"\x54\x91" => "\x8f\xb5\xa7", +"\x54\x92" => "\xd2\xf0", +"\x54\x95" => "\x8f\xb5\xa8", +"\x54\x96" => "\x8f\xb5\xa9", +"\x54\x9c" => "\x8f\xb5\xaa", +"\x54\x9f" => "\x8f\xb5\xab", +"\x54\xa1" => "\x8f\xb5\xac", +"\x54\xa2" => "\xd2\xf8", +"\x54\xa4" => "\xd3\xa3", +"\x54\xa5" => "\xd2\xfa", +"\x54\xa6" => "\x8f\xb5\xad", +"\x54\xa7" => "\x8f\xb5\xae", +"\x54\xa8" => "\xd2\xfe", +"\x54\xa9" => "\x8f\xb5\xaf", +"\x54\xaa" => "\x8f\xb5\xb0", +"\x54\xab" => "\xd3\xa1", +"\x54\xac" => "\xd2\xfb", +"\x54\xad" => "\x8f\xb5\xb1", +"\x54\xae" => "\x8f\xb5\xb2", +"\x54\xaf" => "\xd3\xbe", +"\x54\xb1" => "\x8f\xb5\xb3", +"\x54\xb2" => "\xba\xe9", +"\x54\xb3" => "\xb3\xb1", +"\x54\xb7" => "\x8f\xb5\xb4", +"\x54\xb8" => "\xd2\xf9", +"\x54\xb9" => "\x8f\xb5\xb5", +"\x54\xba" => "\x8f\xb5\xb6", +"\x54\xbb" => "\x8f\xb5\xb7", +"\x54\xbc" => "\xd3\xa5", +"\x54\xbd" => "\xb0\xf6", +"\x54\xbe" => "\xd3\xa4", +"\x54\xbf" => "\x8f\xb5\xb8", +"\x54\xc0" => "\xb0\xa5", +"\x54\xc1" => "\xc9\xca", +"\x54\xc2" => "\xd3\xa2", +"\x54\xc4" => "\xd2\xfc", +"\x54\xc6" => "\x8f\xb5\xb9", +"\x54\xc7" => "\xd2\xf7", +"\x54\xc8" => "\xd2\xfd", +"\x54\xc9" => "\xba\xc8", +"\x54\xca" => "\x8f\xb5\xba", +"\x54\xcd" => "\x8f\xb5\xbb", +"\x54\xce" => "\x8f\xb5\xbc", +"\x54\xd8" => "\xd3\xa6", +"\x54\xe0" => "\x8f\xb5\xbd", +"\x54\xe1" => "\xb0\xf7", +"\x54\xe2" => "\xd3\xaf", +"\x54\xe5" => "\xd3\xa7", +"\x54\xe6" => "\xd3\xa8", +"\x54\xe8" => "\xbe\xa5", +"\x54\xe9" => "\xcb\xe9", +"\x54\xea" => "\x8f\xb5\xbe", +"\x54\xec" => "\x8f\xb5\xbf", +"\x54\xed" => "\xd3\xad", +"\x54\xee" => "\xd3\xac", +"\x54\xef" => "\x8f\xb5\xc0", +"\x54\xf2" => "\xc5\xaf", +"\x54\xf6" => "\x8f\xb5\xc1", +"\x54\xfa" => "\xd3\xae", +"\x54\xfc" => "\x8f\xb5\xc2", +"\x54\xfd" => "\xd3\xab", +"\x54\xfe" => "\x8f\xb5\xc3", +"\x54\xff" => "\x8f\xb5\xc4", +"\x55\x00" => "\x8f\xb5\xc5", +"\x55\x01" => "\x8f\xb5\xc6", +"\x55\x04" => "\xb1\xb4", +"\x55\x05" => "\x8f\xb5\xc7", +"\x55\x06" => "\xba\xb6", +"\x55\x07" => "\xbf\xb0", +"\x55\x08" => "\x8f\xb5\xc8", +"\x55\x09" => "\x8f\xb5\xc9", +"\x55\x0c" => "\x8f\xb5\xca", +"\x55\x0d" => "\x8f\xb5\xcb", +"\x55\x0e" => "\x8f\xb5\xcc", +"\x55\x0f" => "\xd3\xa9", +"\x55\x10" => "\xc5\xe2", +"\x55\x14" => "\xd3\xaa", +"\x55\x15" => "\x8f\xb5\xcd", +"\x55\x16" => "\xb0\xa2", +"\x55\x2a" => "\x8f\xb5\xce", +"\x55\x2b" => "\x8f\xb5\xcf", +"\x55\x2e" => "\xd3\xb4", +"\x55\x2f" => "\xcd\xa3", +"\x55\x31" => "\xbe\xa7", +"\x55\x32" => "\x8f\xb5\xd0", +"\x55\x33" => "\xd3\xba", +"\x55\x35" => "\x8f\xb5\xd1", +"\x55\x36" => "\x8f\xb5\xd2", +"\x55\x38" => "\xd3\xb9", +"\x55\x39" => "\xd3\xb0", +"\x55\x3b" => "\x8f\xb5\xd3", +"\x55\x3c" => "\x8f\xb5\xd4", +"\x55\x3d" => "\x8f\xb5\xd5", +"\x55\x3e" => "\xc2\xc3", +"\x55\x40" => "\xd3\xb1", +"\x55\x41" => "\x8f\xb5\xd6", +"\x55\x44" => "\xc2\xef", +"\x55\x45" => "\xd3\xb6", +"\x55\x46" => "\xbe\xa6", +"\x55\x47" => "\x8f\xb5\xd7", +"\x55\x49" => "\x8f\xb5\xd8", +"\x55\x4a" => "\x8f\xb5\xd9", +"\x55\x4c" => "\xd3\xb3", +"\x55\x4d" => "\x8f\xb5\xda", +"\x55\x4f" => "\xcc\xe4", +"\x55\x50" => "\x8f\xb5\xdb", +"\x55\x51" => "\x8f\xb5\xdc", +"\x55\x53" => "\xb7\xbc", +"\x55\x56" => "\xd3\xb7", +"\x55\x57" => "\xd3\xb8", +"\x55\x58" => "\x8f\xb5\xdd", +"\x55\x5a" => "\x8f\xb5\xde", +"\x55\x5b" => "\x8f\xb5\xdf", +"\x55\x5c" => "\xd3\xb5", +"\x55\x5d" => "\xd3\xbb", +"\x55\x5e" => "\x8f\xb5\xe0", +"\x55\x60" => "\x8f\xb5\xe1", +"\x55\x61" => "\x8f\xb5\xe2", +"\x55\x63" => "\xd3\xb2", +"\x55\x64" => "\x8f\xb5\xe3", +"\x55\x66" => "\x8f\xb5\xe4", +"\x55\x7b" => "\xd3\xc1", +"\x55\x7c" => "\xd3\xc6", +"\x55\x7e" => "\xd3\xc2", +"\x55\x7f" => "\x8f\xb5\xe5", +"\x55\x80" => "\xd3\xbd", +"\x55\x81" => "\x8f\xb5\xe6", +"\x55\x82" => "\x8f\xb5\xe7", +"\x55\x83" => "\xd3\xc7", +"\x55\x84" => "\xc1\xb1", +"\x55\x86" => "\x8f\xb5\xe8", +"\x55\x87" => "\xd3\xc9", +"\x55\x88" => "\x8f\xb5\xe9", +"\x55\x89" => "\xb9\xa2", +"\x55\x8a" => "\xd3\xbf", +"\x55\x8b" => "\xc3\xfd", +"\x55\x8e" => "\x8f\xb5\xea", +"\x55\x8f" => "\x8f\xb5\xeb", +"\x55\x91" => "\x8f\xb5\xec", +"\x55\x92" => "\x8f\xb5\xed", +"\x55\x93" => "\x8f\xb5\xee", +"\x55\x94" => "\x8f\xb5\xef", +"\x55\x97" => "\x8f\xb5\xf0", +"\x55\x98" => "\xd3\xc3", +"\x55\x99" => "\xd3\xbc", +"\x55\x9a" => "\xb4\xad", +"\x55\x9c" => "\xb4\xee", +"\x55\x9d" => "\xb3\xe5", +"\x55\x9e" => "\xd3\xc4", +"\x55\x9f" => "\xd3\xc0", +"\x55\xa3" => "\x8f\xb5\xf1", +"\x55\xa4" => "\x8f\xb5\xf2", +"\x55\xa7" => "\xb7\xf6", +"\x55\xa8" => "\xd3\xca", +"\x55\xa9" => "\xd3\xc8", +"\x55\xaa" => "\xc1\xd3", +"\x55\xab" => "\xb5\xca", +"\x55\xac" => "\xb6\xac", +"\x55\xad" => "\x8f\xb5\xf3", +"\x55\xae" => "\xd3\xc5", +"\x55\xb0" => "\xb6\xf4", +"\x55\xb2" => "\x8f\xb5\xf4", +"\x55\xb6" => "\xb1\xc4", +"\x55\xbf" => "\x8f\xb5\xf5", +"\x55\xc1" => "\x8f\xb5\xf6", +"\x55\xc3" => "\x8f\xb5\xf7", +"\x55\xc4" => "\xd3\xce", +"\x55\xc5" => "\xd3\xcc", +"\x55\xc6" => "\x8f\xb5\xf8", +"\x55\xc7" => "\xd4\xa7", +"\x55\xc9" => "\x8f\xb5\xf9", +"\x55\xcb" => "\x8f\xb5\xfa", +"\x55\xcc" => "\x8f\xb5\xfb", +"\x55\xce" => "\x8f\xb5\xfc", +"\x55\xd1" => "\x8f\xb5\xfd", +"\x55\xd2" => "\x8f\xb5\xfe", +"\x55\xd3" => "\x8f\xb6\xa1", +"\x55\xd4" => "\xd3\xd1", +"\x55\xd7" => "\x8f\xb6\xa2", +"\x55\xd8" => "\x8f\xb6\xa3", +"\x55\xda" => "\xd3\xcb", +"\x55\xdb" => "\x8f\xb6\xa4", +"\x55\xdc" => "\xd3\xcf", +"\x55\xde" => "\x8f\xb6\xa5", +"\x55\xdf" => "\xd3\xcd", +"\x55\xe2" => "\x8f\xb6\xa6", +"\x55\xe3" => "\xbb\xcc", +"\x55\xe4" => "\xd3\xd0", +"\x55\xe9" => "\x8f\xb6\xa7", +"\x55\xf6" => "\x8f\xb6\xa8", +"\x55\xf7" => "\xd3\xd3", +"\x55\xf9" => "\xd3\xd8", +"\x55\xfd" => "\xd3\xd6", +"\x55\xfe" => "\xd3\xd5", +"\x55\xff" => "\x8f\xb6\xa9", +"\x56\x05" => "\x8f\xb6\xaa", +"\x56\x06" => "\xc3\xb2", +"\x56\x08" => "\x8f\xb6\xab", +"\x56\x09" => "\xb2\xc5", +"\x56\x0a" => "\x8f\xb6\xac", +"\x56\x0d" => "\x8f\xb6\xad", +"\x56\x0e" => "\x8f\xb6\xae", +"\x56\x0f" => "\x8f\xb6\xaf", +"\x56\x10" => "\x8f\xb6\xb0", +"\x56\x11" => "\x8f\xb6\xb1", +"\x56\x12" => "\x8f\xb6\xb2", +"\x56\x14" => "\xd3\xd2", +"\x56\x16" => "\xd3\xd4", +"\x56\x17" => "\xbe\xa8", +"\x56\x18" => "\xb1\xb3", +"\x56\x19" => "\x8f\xb6\xb3", +"\x56\x1b" => "\xd3\xd7", +"\x56\x29" => "\xb2\xde", +"\x56\x2c" => "\x8f\xb6\xb4", +"\x56\x2f" => "\xd3\xe2", +"\x56\x30" => "\x8f\xb6\xb5", +"\x56\x31" => "\xbe\xfc", +"\x56\x32" => "\xd3\xde", +"\x56\x33" => "\x8f\xb6\xb6", +"\x56\x34" => "\xd3\xdc", +"\x56\x35" => "\x8f\xb6\xb7", +"\x56\x36" => "\xd3\xdd", +"\x56\x37" => "\x8f\xb6\xb8", +"\x56\x38" => "\xd3\xdf", +"\x56\x39" => "\x8f\xb6\xb9", +"\x56\x3b" => "\x8f\xb6\xba", +"\x56\x3c" => "\x8f\xb6\xbb", +"\x56\x3d" => "\x8f\xb6\xbc", +"\x56\x3f" => "\x8f\xb6\xbd", +"\x56\x40" => "\x8f\xb6\xbe", +"\x56\x41" => "\x8f\xb6\xbf", +"\x56\x42" => "\xb1\xbd", +"\x56\x43" => "\x8f\xb6\xc0", +"\x56\x44" => "\x8f\xb6\xc1", +"\x56\x46" => "\x8f\xb6\xc2", +"\x56\x49" => "\x8f\xb6\xc3", +"\x56\x4b" => "\x8f\xb6\xc4", +"\x56\x4c" => "\xc1\xb9", +"\x56\x4d" => "\x8f\xb6\xc5", +"\x56\x4e" => "\xd3\xd9", +"\x56\x4f" => "\x8f\xb6\xc6", +"\x56\x50" => "\xd3\xda", +"\x56\x54" => "\x8f\xb6\xc7", +"\x56\x5b" => "\xb3\xfa", +"\x56\x5e" => "\x8f\xb6\xc8", +"\x56\x60" => "\x8f\xb6\xc9", +"\x56\x61" => "\x8f\xb6\xca", +"\x56\x62" => "\x8f\xb6\xcb", +"\x56\x63" => "\x8f\xb6\xcc", +"\x56\x64" => "\xd3\xe1", +"\x56\x66" => "\x8f\xb6\xcd", +"\x56\x68" => "\xb4\xef", +"\x56\x69" => "\x8f\xb6\xce", +"\x56\x6a" => "\xd3\xe4", +"\x56\x6b" => "\xd3\xe0", +"\x56\x6c" => "\xd3\xe3", +"\x56\x6d" => "\x8f\xb6\xcf", +"\x56\x6f" => "\x8f\xb6\xd0", +"\x56\x71" => "\x8f\xb6\xd1", +"\x56\x72" => "\x8f\xb6\xd2", +"\x56\x74" => "\xca\xae", +"\x56\x75" => "\x8f\xb6\xd3", +"\x56\x78" => "\xc6\xd5", +"\x56\x7a" => "\xc8\xb8", +"\x56\x80" => "\xd3\xe6", +"\x56\x84" => "\x8f\xb6\xd4", +"\x56\x85" => "\x8f\xb6\xd5", +"\x56\x86" => "\xd3\xe5", +"\x56\x87" => "\xb3\xc5", +"\x56\x88" => "\x8f\xb6\xd6", +"\x56\x8a" => "\xd3\xe7", +"\x56\x8b" => "\x8f\xb6\xd7", +"\x56\x8c" => "\x8f\xb6\xd8", +"\x56\x8f" => "\xd3\xea", +"\x56\x94" => "\xd3\xe9", +"\x56\x95" => "\x8f\xb6\xd9", +"\x56\x99" => "\x8f\xb6\xda", +"\x56\x9a" => "\x8f\xb6\xdb", +"\x56\x9d" => "\x8f\xb6\xdc", +"\x56\x9e" => "\x8f\xb6\xdd", +"\x56\x9f" => "\x8f\xb6\xde", +"\x56\xa0" => "\xd3\xe8", +"\x56\xa2" => "\xc7\xb9", +"\x56\xa5" => "\xd3\xeb", +"\x56\xa6" => "\x8f\xb6\xdf", +"\x56\xa7" => "\x8f\xb6\xe0", +"\x56\xa8" => "\x8f\xb6\xe1", +"\x56\xa9" => "\x8f\xb6\xe2", +"\x56\xab" => "\x8f\xb6\xe3", +"\x56\xac" => "\x8f\xb6\xe4", +"\x56\xad" => "\x8f\xb6\xe5", +"\x56\xae" => "\xd3\xec", +"\x56\xb1" => "\x8f\xb6\xe6", +"\x56\xb3" => "\x8f\xb6\xe7", +"\x56\xb4" => "\xd3\xee", +"\x56\xb6" => "\xd3\xed", +"\x56\xb7" => "\x8f\xb6\xe8", +"\x56\xbc" => "\xd3\xf0", +"\x56\xbe" => "\x8f\xb6\xe9", +"\x56\xc0" => "\xd3\xf3", +"\x56\xc1" => "\xd3\xf1", +"\x56\xc2" => "\xd3\xef", +"\x56\xc3" => "\xd3\xf2", +"\x56\xc5" => "\x8f\xb6\xea", +"\x56\xc8" => "\xd3\xf4", +"\x56\xc9" => "\x8f\xb6\xeb", +"\x56\xca" => "\x8f\xb6\xec", +"\x56\xcb" => "\x8f\xb6\xed", +"\x56\xcc" => "\x8f\xb6\xf0", +"\x56\xcd" => "\x8f\xb6\xf1", +"\x56\xce" => "\xd3\xf5", +"\x56\xcf" => "\x8f\xb6\xee", +"\x56\xd0" => "\x8f\xb6\xef", +"\x56\xd1" => "\xd3\xf6", +"\x56\xd3" => "\xd3\xf7", +"\x56\xd7" => "\xd3\xf8", +"\x56\xd8" => "\xd1\xc5", +"\x56\xd9" => "\x8f\xb6\xf2", +"\x56\xda" => "\xbc\xfc", +"\x56\xdb" => "\xbb\xcd", +"\x56\xdc" => "\x8f\xb6\xf3", +"\x56\xdd" => "\x8f\xb6\xf4", +"\x56\xde" => "\xb2\xf3", +"\x56\xdf" => "\x8f\xb6\xf5", +"\x56\xe0" => "\xb0\xf8", +"\x56\xe1" => "\x8f\xb6\xf6", +"\x56\xe3" => "\xc3\xc4", +"\x56\xe4" => "\x8f\xb6\xf7", +"\x56\xe5" => "\x8f\xb6\xf8", +"\x56\xe6" => "\x8f\xb6\xf9", +"\x56\xe7" => "\x8f\xb6\xfa", +"\x56\xe8" => "\x8f\xb6\xfb", +"\x56\xeb" => "\x8f\xb6\xfd", +"\x56\xed" => "\x8f\xb6\xfe", +"\x56\xee" => "\xd3\xf9", +"\x56\xf0" => "\xba\xa4", +"\x56\xf1" => "\x8f\xb6\xfc", +"\x56\xf2" => "\xb0\xcf", +"\x56\xf3" => "\xbf\xde", +"\x56\xf6" => "\x8f\xb7\xa1", +"\x56\xf7" => "\x8f\xb7\xa2", +"\x56\xf9" => "\xd3\xfa", +"\x56\xfa" => "\xb8\xc7", +"\x56\xfd" => "\xb9\xf1", +"\x56\xff" => "\xd3\xfc", +"\x57\x00" => "\xd3\xfb", +"\x57\x01" => "\x8f\xb7\xa3", +"\x57\x02" => "\x8f\xb7\xa4", +"\x57\x03" => "\xca\xe0", +"\x57\x04" => "\xd3\xfd", +"\x57\x07" => "\x8f\xb7\xa5", +"\x57\x08" => "\xd4\xa1", +"\x57\x09" => "\xd3\xfe", +"\x57\x0a" => "\x8f\xb7\xa6", +"\x57\x0b" => "\xd4\xa2", +"\x57\x0c" => "\x8f\xb7\xa7", +"\x57\x0d" => "\xd4\xa3", +"\x57\x0f" => "\xb7\xf7", +"\x57\x11" => "\x8f\xb7\xa8", +"\x57\x12" => "\xb1\xe0", +"\x57\x13" => "\xd4\xa4", +"\x57\x15" => "\x8f\xb7\xa9", +"\x57\x16" => "\xd4\xa6", +"\x57\x18" => "\xd4\xa5", +"\x57\x1a" => "\x8f\xb7\xaa", +"\x57\x1b" => "\x8f\xb7\xab", +"\x57\x1c" => "\xd4\xa8", +"\x57\x1d" => "\x8f\xb7\xac", +"\x57\x1f" => "\xc5\xda", +"\x57\x20" => "\x8f\xb7\xad", +"\x57\x22" => "\x8f\xb7\xae", +"\x57\x23" => "\x8f\xb7\xaf", +"\x57\x24" => "\x8f\xb7\xb0", +"\x57\x25" => "\x8f\xb7\xb1", +"\x57\x26" => "\xd4\xa9", +"\x57\x27" => "\xb0\xb5", +"\x57\x28" => "\xba\xdf", +"\x57\x29" => "\x8f\xb7\xb2", +"\x57\x2a" => "\x8f\xb7\xb3", +"\x57\x2c" => "\x8f\xb7\xb4", +"\x57\x2d" => "\xb7\xbd", +"\x57\x2e" => "\x8f\xb7\xb5", +"\x57\x2f" => "\x8f\xb7\xb6", +"\x57\x30" => "\xc3\xcf", +"\x57\x33" => "\x8f\xb7\xb7", +"\x57\x34" => "\x8f\xb7\xb8", +"\x57\x37" => "\xd4\xaa", +"\x57\x38" => "\xd4\xab", +"\x57\x3b" => "\xd4\xad", +"\x57\x3d" => "\x8f\xb7\xb9", +"\x57\x3e" => "\x8f\xb7\xba", +"\x57\x3f" => "\x8f\xb7\xbb", +"\x57\x40" => "\xd4\xae", +"\x57\x42" => "\xba\xe4", +"\x57\x45" => "\x8f\xb7\xbc", +"\x57\x46" => "\x8f\xb7\xbd", +"\x57\x47" => "\xb6\xd1", +"\x57\x4a" => "\xcb\xb7", +"\x57\x4c" => "\x8f\xb7\xbe", +"\x57\x4d" => "\x8f\xb7\xbf", +"\x57\x4e" => "\xd4\xac", +"\x57\x4f" => "\xd4\xaf", +"\x57\x50" => "\xba\xc1", +"\x57\x51" => "\xb9\xa3", +"\x57\x52" => "\x8f\xb7\xc0", +"\x57\x61" => "\xd4\xb3", +"\x57\x62" => "\x8f\xb7\xc1", +"\x57\x64" => "\xba\xa5", +"\x57\x65" => "\x8f\xb7\xc2", +"\x57\x66" => "\xc3\xb3", +"\x57\x67" => "\x8f\xb7\xc3", +"\x57\x68" => "\x8f\xb7\xc4", +"\x57\x69" => "\xd4\xb0", +"\x57\x6a" => "\xc4\xda", +"\x57\x6b" => "\x8f\xb7\xc5", +"\x57\x6d" => "\x8f\xb7\xc6", +"\x57\x6e" => "\x8f\xb7\xc7", +"\x57\x6f" => "\x8f\xb7\xc8", +"\x57\x70" => "\x8f\xb7\xc9", +"\x57\x71" => "\x8f\xb7\xca", +"\x57\x73" => "\x8f\xb7\xcb", +"\x57\x74" => "\x8f\xb7\xcc", +"\x57\x75" => "\x8f\xb7\xcd", +"\x57\x77" => "\x8f\xb7\xce", +"\x57\x79" => "\x8f\xb7\xcf", +"\x57\x7a" => "\x8f\xb7\xd0", +"\x57\x7b" => "\x8f\xb7\xd1", +"\x57\x7c" => "\x8f\xb7\xd2", +"\x57\x7e" => "\x8f\xb7\xd3", +"\x57\x7f" => "\xd4\xb4", +"\x57\x81" => "\x8f\xb7\xd4", +"\x57\x82" => "\xbf\xe2", +"\x57\x83" => "\x8f\xb7\xd5", +"\x57\x88" => "\xd4\xb2", +"\x57\x89" => "\xd4\xb5", +"\x57\x8b" => "\xb7\xbf", +"\x57\x8c" => "\x8f\xb7\xd6", +"\x57\x93" => "\xd4\xb6", +"\x57\x94" => "\x8f\xb7\xd7", +"\x57\x95" => "\x8f\xb7\xe0", +"\x57\x97" => "\x8f\xb7\xd8", +"\x57\x99" => "\x8f\xb7\xd9", +"\x57\x9a" => "\x8f\xb7\xda", +"\x57\x9c" => "\x8f\xb7\xdb", +"\x57\x9d" => "\x8f\xb7\xdc", +"\x57\x9e" => "\x8f\xb7\xdd", +"\x57\x9f" => "\x8f\xb7\xde", +"\x57\xa0" => "\xd4\xb7", +"\x57\xa1" => "\x8f\xb7\xdf", +"\x57\xa2" => "\xb9\xa4", +"\x57\xa3" => "\xb3\xc0", +"\x57\xa4" => "\xd4\xb9", +"\x57\xa7" => "\x8f\xb7\xe1", +"\x57\xa8" => "\x8f\xb7\xe2", +"\x57\xa9" => "\x8f\xb7\xe3", +"\x57\xaa" => "\xd4\xba", +"\x57\xac" => "\x8f\xb7\xe4", +"\x57\xb0" => "\xd4\xbb", +"\x57\xb3" => "\xd4\xb8", +"\x57\xb8" => "\x8f\xb7\xe5", +"\x57\xbd" => "\x8f\xb7\xe6", +"\x57\xc0" => "\xd4\xb1", +"\x57\xc3" => "\xd4\xbc", +"\x57\xc6" => "\xd4\xbd", +"\x57\xc7" => "\x8f\xb7\xe7", +"\x57\xc8" => "\x8f\xb7\xe8", +"\x57\xcb" => "\xcb\xe4", +"\x57\xcc" => "\x8f\xb7\xe9", +"\x57\xce" => "\xbe\xeb", +"\x57\xcf" => "\x8f\xb7\xea", +"\x57\xd2" => "\xd4\xbf", +"\x57\xd3" => "\xd4\xc0", +"\x57\xd4" => "\xd4\xbe", +"\x57\xd5" => "\x8f\xb7\xeb", +"\x57\xd6" => "\xd4\xc2", +"\x57\xdc" => "\xc7\xb8", +"\x57\xdd" => "\x8f\xb7\xec", +"\x57\xde" => "\x8f\xb7\xed", +"\x57\xdf" => "\xb0\xe8", +"\x57\xe0" => "\xc9\xd6", +"\x57\xe1" => "\x8f\xb7\xfe", +"\x57\xe3" => "\xd4\xc3", +"\x57\xe4" => "\x8f\xb7\xee", +"\x57\xe6" => "\x8f\xb7\xef", +"\x57\xe7" => "\x8f\xb7\xf0", +"\x57\xe9" => "\x8f\xb7\xf1", +"\x57\xed" => "\x8f\xb7\xf2", +"\x57\xf0" => "\x8f\xb7\xf3", +"\x57\xf4" => "\xbe\xfd", +"\x57\xf5" => "\x8f\xb7\xf4", +"\x57\xf6" => "\x8f\xb7\xf5", +"\x57\xf7" => "\xbc\xb9", +"\x57\xf8" => "\x8f\xb7\xf6", +"\x57\xf9" => "\xc7\xdd", +"\x57\xfa" => "\xb4\xf0", +"\x57\xfc" => "\xba\xeb", +"\x57\xfd" => "\x8f\xb7\xf7", +"\x57\xfe" => "\x8f\xb7\xf8", +"\x57\xff" => "\x8f\xb7\xf9", +"\x58\x00" => "\xcb\xd9", +"\x58\x02" => "\xc6\xb2", +"\x58\x03" => "\x8f\xb7\xfa", +"\x58\x04" => "\x8f\xb7\xfb", +"\x58\x05" => "\xb7\xf8", +"\x58\x06" => "\xc2\xcf", +"\x58\x08" => "\x8f\xb7\xfc", +"\x58\x09" => "\x8f\xb7\xfd", +"\x58\x0a" => "\xd4\xc1", +"\x58\x0b" => "\xd4\xc4", +"\x58\x0c" => "\x8f\xb8\xa1", +"\x58\x0d" => "\x8f\xb8\xa2", +"\x58\x15" => "\xc2\xc4", +"\x58\x19" => "\xd4\xc5", +"\x58\x1b" => "\x8f\xb8\xa3", +"\x58\x1d" => "\xd4\xc6", +"\x58\x1e" => "\x8f\xb8\xa4", +"\x58\x1f" => "\x8f\xb8\xa5", +"\x58\x20" => "\x8f\xb8\xa6", +"\x58\x21" => "\xd4\xc8", +"\x58\x24" => "\xc4\xe9", +"\x58\x26" => "\x8f\xb8\xa7", +"\x58\x27" => "\x8f\xb8\xa8", +"\x58\x2a" => "\xb4\xae", +"\x58\x2d" => "\x8f\xb8\xa9", +"\x58\x2f" => "\xf4\xa1", +"\x58\x30" => "\xb1\xe1", +"\x58\x31" => "\xca\xf3", +"\x58\x32" => "\x8f\xb8\xaa", +"\x58\x34" => "\xbe\xec", +"\x58\x35" => "\xc5\xc8", +"\x58\x39" => "\x8f\xb8\xab", +"\x58\x3a" => "\xba\xe6", +"\x58\x3d" => "\xd4\xce", +"\x58\x3f" => "\x8f\xb8\xac", +"\x58\x40" => "\xca\xbd", +"\x58\x41" => "\xce\xdd", +"\x58\x49" => "\x8f\xb8\xad", +"\x58\x4a" => "\xb2\xf4", +"\x58\x4b" => "\xd4\xca", +"\x58\x4c" => "\x8f\xb8\xae", +"\x58\x4d" => "\x8f\xb8\xaf", +"\x58\x4f" => "\x8f\xb8\xb0", +"\x58\x50" => "\x8f\xb8\xb1", +"\x58\x51" => "\xc1\xba", +"\x58\x52" => "\xd4\xcd", +"\x58\x54" => "\xc5\xe3", +"\x58\x55" => "\x8f\xb8\xb2", +"\x58\x57" => "\xc5\xc9", +"\x58\x58" => "\xc5\xe4", +"\x58\x59" => "\xc8\xb9", +"\x58\x5a" => "\xc4\xcd", +"\x58\x5e" => "\xba\xc9", +"\x58\x5f" => "\x8f\xb8\xb3", +"\x58\x61" => "\x8f\xb8\xb4", +"\x58\x62" => "\xd4\xc9", +"\x58\x64" => "\x8f\xb8\xb5", +"\x58\x67" => "\x8f\xb8\xb6", +"\x58\x68" => "\x8f\xb8\xb7", +"\x58\x69" => "\xb1\xf6", +"\x58\x6b" => "\xc5\xb6", +"\x58\x70" => "\xd4\xcb", +"\x58\x72" => "\xd4\xc7", +"\x58\x75" => "\xbf\xd0", +"\x58\x78" => "\x8f\xb8\xb8", +"\x58\x79" => "\xd4\xcf", +"\x58\x7c" => "\x8f\xb8\xb9", +"\x58\x7e" => "\xbd\xce", +"\x58\x7f" => "\x8f\xb8\xba", +"\x58\x80" => "\x8f\xb8\xbb", +"\x58\x81" => "\x8f\xb8\xbc", +"\x58\x83" => "\xb6\xad", +"\x58\x85" => "\xd4\xd0", +"\x58\x87" => "\x8f\xb8\xbd", +"\x58\x88" => "\x8f\xb8\xbe", +"\x58\x89" => "\x8f\xb8\xbf", +"\x58\x8a" => "\x8f\xb8\xc0", +"\x58\x8c" => "\x8f\xb8\xc1", +"\x58\x8d" => "\x8f\xb8\xc2", +"\x58\x8f" => "\x8f\xb8\xc3", +"\x58\x90" => "\x8f\xb8\xc4", +"\x58\x93" => "\xca\xe8", +"\x58\x94" => "\x8f\xb8\xc5", +"\x58\x96" => "\x8f\xb8\xc6", +"\x58\x97" => "\xc1\xfd", +"\x58\x9c" => "\xc4\xc6", +"\x58\x9d" => "\x8f\xb8\xc7", +"\x58\x9f" => "\xd4\xd2", +"\x58\xa0" => "\x8f\xb8\xc8", +"\x58\xa1" => "\x8f\xb8\xc9", +"\x58\xa2" => "\x8f\xb8\xca", +"\x58\xa6" => "\x8f\xb8\xcb", +"\x58\xa8" => "\xcb\xcf", +"\x58\xa9" => "\x8f\xb8\xcc", +"\x58\xab" => "\xd4\xd3", +"\x58\xae" => "\xd4\xd8", +"\x58\xb1" => "\x8f\xb8\xcd", +"\x58\xb2" => "\x8f\xb8\xce", +"\x58\xb3" => "\xca\xaf", +"\x58\xb8" => "\xd4\xd7", +"\x58\xb9" => "\xd4\xd1", +"\x58\xba" => "\xd4\xd4", +"\x58\xbb" => "\xd4\xd6", +"\x58\xbc" => "\x8f\xb8\xd0", +"\x58\xbe" => "\xba\xa6", +"\x58\xc1" => "\xca\xc9", +"\x58\xc2" => "\x8f\xb8\xd1", +"\x58\xc4" => "\x8f\xb8\xcf", +"\x58\xc5" => "\xd4\xd9", +"\x58\xc7" => "\xc3\xc5", +"\x58\xc8" => "\x8f\xb8\xd2", +"\x58\xca" => "\xb2\xf5", +"\x58\xcc" => "\xbe\xed", +"\x58\xcd" => "\x8f\xb8\xd3", +"\x58\xce" => "\x8f\xb8\xd4", +"\x58\xd0" => "\x8f\xb8\xd5", +"\x58\xd1" => "\xd4\xdb", +"\x58\xd2" => "\x8f\xb8\xd6", +"\x58\xd3" => "\xd4\xda", +"\x58\xd4" => "\x8f\xb8\xd7", +"\x58\xd5" => "\xb9\xe8", +"\x58\xd6" => "\x8f\xb8\xd8", +"\x58\xd7" => "\xd4\xdc", +"\x58\xd8" => "\xd4\xde", +"\x58\xd9" => "\xd4\xdd", +"\x58\xda" => "\x8f\xb8\xd9", +"\x58\xdc" => "\xd4\xe0", +"\x58\xdd" => "\x8f\xb8\xda", +"\x58\xde" => "\xd4\xd5", +"\x58\xdf" => "\xd4\xe2", +"\x58\xe1" => "\x8f\xb8\xdb", +"\x58\xe2" => "\x8f\xb8\xdc", +"\x58\xe4" => "\xd4\xe1", +"\x58\xe5" => "\xd4\xdf", +"\x58\xe9" => "\x8f\xb8\xdd", +"\x58\xeb" => "\xbb\xce", +"\x58\xec" => "\xbf\xd1", +"\x58\xee" => "\xc1\xd4", +"\x58\xef" => "\xd4\xe3", +"\x58\xf0" => "\xc0\xbc", +"\x58\xf1" => "\xb0\xed", +"\x58\xf2" => "\xc7\xe4", +"\x58\xf3" => "\x8f\xb8\xde", +"\x58\xf7" => "\xc4\xdb", +"\x58\xf9" => "\xd4\xe5", +"\x58\xfa" => "\xd4\xe4", +"\x58\xfb" => "\xd4\xe6", +"\x58\xfc" => "\xd4\xe7", +"\x58\xfd" => "\xd4\xe8", +"\x59\x02" => "\xd4\xe9", +"\x59\x05" => "\x8f\xb8\xdf", +"\x59\x06" => "\x8f\xb8\xe0", +"\x59\x09" => "\xca\xd1", +"\x59\x0a" => "\xd4\xea", +"\x59\x0b" => "\x8f\xb8\xe1", +"\x59\x0c" => "\x8f\xb8\xe2", +"\x59\x0f" => "\xb2\xc6", +"\x59\x10" => "\xd4\xeb", +"\x59\x12" => "\x8f\xb8\xe3", +"\x59\x13" => "\x8f\xb8\xe4", +"\x59\x14" => "\x8f\xb8\xe5", +"\x59\x15" => "\xcd\xbc", +"\x59\x16" => "\xb3\xb0", +"\x59\x18" => "\xd2\xc9", +"\x59\x19" => "\xbd\xc8", +"\x59\x1a" => "\xc2\xbf", +"\x59\x1b" => "\xd4\xec", +"\x59\x1c" => "\xcc\xeb", +"\x59\x1d" => "\x8f\xb8\xe7", +"\x59\x21" => "\x8f\xb8\xe8", +"\x59\x22" => "\xcc\xb4", +"\x59\x23" => "\x8f\xb8\xe9", +"\x59\x24" => "\x8f\xb8\xea", +"\x59\x25" => "\xd4\xee", +"\x59\x27" => "\xc2\xe7", +"\x59\x28" => "\x8f\xb8\xeb", +"\x59\x29" => "\xc5\xb7", +"\x59\x2a" => "\xc2\xc0", +"\x59\x2b" => "\xc9\xd7", +"\x59\x2c" => "\xd4\xef", +"\x59\x2d" => "\xd4\xf0", +"\x59\x2e" => "\xb1\xfb", +"\x59\x2f" => "\x8f\xb8\xec", +"\x59\x30" => "\x8f\xb8\xed", +"\x59\x31" => "\xbc\xba", +"\x59\x32" => "\xd4\xf1", +"\x59\x33" => "\x8f\xb8\xee", +"\x59\x35" => "\x8f\xb8\xef", +"\x59\x36" => "\x8f\xb8\xf0", +"\x59\x37" => "\xb0\xd0", +"\x59\x38" => "\xd4\xf2", +"\x59\x3e" => "\xd4\xf3", +"\x59\x3f" => "\x8f\xb8\xf1", +"\x59\x43" => "\x8f\xb8\xf2", +"\x59\x44" => "\xb1\xe2", +"\x59\x46" => "\x8f\xb8\xf3", +"\x59\x47" => "\xb4\xf1", +"\x59\x48" => "\xc6\xe0", +"\x59\x49" => "\xca\xf4", +"\x59\x4e" => "\xd4\xf7", +"\x59\x4f" => "\xc1\xd5", +"\x59\x50" => "\xd4\xf6", +"\x59\x51" => "\xb7\xc0", +"\x59\x52" => "\x8f\xb8\xf4", +"\x59\x53" => "\x8f\xb8\xf5", +"\x59\x54" => "\xcb\xdb", +"\x59\x55" => "\xd4\xf5", +"\x59\x57" => "\xc5\xe5", +"\x59\x58" => "\xd4\xf9", +"\x59\x59" => "\x8f\xb8\xf6", +"\x59\x5a" => "\xd4\xf8", +"\x59\x5b" => "\x8f\xb8\xf7", +"\x59\x5d" => "\x8f\xb8\xf8", +"\x59\x5e" => "\x8f\xb8\xf9", +"\x59\x5f" => "\x8f\xb8\xfa", +"\x59\x60" => "\xd4\xfb", +"\x59\x61" => "\x8f\xb8\xfb", +"\x59\x62" => "\xd4\xfa", +"\x59\x63" => "\x8f\xb8\xfc", +"\x59\x65" => "\xb1\xfc", +"\x59\x67" => "\xd4\xfc", +"\x59\x68" => "\xbe\xa9", +"\x59\x69" => "\xd4\xfe", +"\x59\x6a" => "\xc3\xa5", +"\x59\x6b" => "\x8f\xb8\xfd", +"\x59\x6c" => "\xd4\xfd", +"\x59\x6d" => "\x8f\xb8\xfe", +"\x59\x6e" => "\xca\xb3", +"\x59\x6f" => "\x8f\xb9\xa1", +"\x59\x72" => "\x8f\xb9\xa2", +"\x59\x73" => "\xbd\xf7", +"\x59\x74" => "\xc5\xdb", +"\x59\x75" => "\x8f\xb9\xa3", +"\x59\x76" => "\x8f\xb9\xa4", +"\x59\x78" => "\xd5\xa1", +"\x59\x79" => "\x8f\xb9\xa5", +"\x59\x7b" => "\x8f\xb9\xa6", +"\x59\x7c" => "\x8f\xb9\xa7", +"\x59\x7d" => "\xb9\xa5", +"\x59\x81" => "\xd5\xa2", +"\x59\x82" => "\xc7\xa1", +"\x59\x83" => "\xc8\xde", +"\x59\x84" => "\xcc\xd1", +"\x59\x8a" => "\xc7\xa5", +"\x59\x8b" => "\x8f\xb9\xa8", +"\x59\x8c" => "\x8f\xb9\xa9", +"\x59\x8d" => "\xd5\xab", +"\x59\x8e" => "\x8f\xb9\xaa", +"\x59\x92" => "\x8f\xb9\xab", +"\x59\x93" => "\xb5\xb8", +"\x59\x95" => "\x8f\xb9\xac", +"\x59\x96" => "\xcd\xc5", +"\x59\x97" => "\x8f\xb9\xad", +"\x59\x99" => "\xcc\xaf", +"\x59\x9b" => "\xd6\xac", +"\x59\x9d" => "\xd5\xa3", +"\x59\x9f" => "\x8f\xb9\xae", +"\x59\xa3" => "\xd5\xa6", +"\x59\xa4" => "\x8f\xb9\xaf", +"\x59\xa5" => "\xc2\xc5", +"\x59\xa7" => "\x8f\xb9\xb0", +"\x59\xa8" => "\xcb\xb8", +"\x59\xac" => "\xc5\xca", +"\x59\xad" => "\x8f\xb9\xb1", +"\x59\xae" => "\x8f\xb9\xb2", +"\x59\xaf" => "\x8f\xb9\xb3", +"\x59\xb0" => "\x8f\xb9\xb4", +"\x59\xb2" => "\xd5\xa7", +"\x59\xb3" => "\x8f\xb9\xb5", +"\x59\xb7" => "\x8f\xb9\xb6", +"\x59\xb9" => "\xcb\xe5", +"\x59\xba" => "\x8f\xb9\xb7", +"\x59\xbb" => "\xba\xca", +"\x59\xbc" => "\x8f\xb9\xb8", +"\x59\xbe" => "\xbe\xaa", +"\x59\xc1" => "\x8f\xb9\xb9", +"\x59\xc3" => "\x8f\xb9\xba", +"\x59\xc4" => "\x8f\xb9\xbb", +"\x59\xc6" => "\xd5\xa8", +"\x59\xc8" => "\x8f\xb9\xbc", +"\x59\xc9" => "\xbb\xd0", +"\x59\xca" => "\x8f\xb9\xbd", +"\x59\xcb" => "\xbb\xcf", +"\x59\xcd" => "\x8f\xb9\xbe", +"\x59\xd0" => "\xb0\xb9", +"\x59\xd1" => "\xb8\xc8", +"\x59\xd2" => "\x8f\xb9\xbf", +"\x59\xd3" => "\xc0\xab", +"\x59\xd4" => "\xb0\xd1", +"\x59\xd9" => "\xd5\xac", +"\x59\xda" => "\xd5\xad", +"\x59\xdc" => "\xd5\xaa", +"\x59\xdd" => "\x8f\xb9\xc0", +"\x59\xde" => "\x8f\xb9\xc1", +"\x59\xdf" => "\x8f\xb9\xc2", +"\x59\xe3" => "\x8f\xb9\xc3", +"\x59\xe4" => "\x8f\xb9\xc4", +"\x59\xe5" => "\xb1\xb8", +"\x59\xe6" => "\xb4\xaf", +"\x59\xe7" => "\x8f\xb9\xc5", +"\x59\xe8" => "\xd5\xa9", +"\x59\xea" => "\xcc\xc5", +"\x59\xeb" => "\xc9\xb1", +"\x59\xee" => "\x8f\xb9\xc6", +"\x59\xef" => "\x8f\xb9\xc7", +"\x59\xf1" => "\x8f\xb9\xc8", +"\x59\xf2" => "\x8f\xb9\xc9", +"\x59\xf4" => "\x8f\xb9\xca", +"\x59\xf6" => "\xb0\xa8", +"\x59\xf7" => "\x8f\xb9\xcb", +"\x59\xfb" => "\xb0\xf9", +"\x59\xff" => "\xbb\xd1", +"\x5a\x00" => "\x8f\xb9\xcc", +"\x5a\x01" => "\xb0\xd2", +"\x5a\x03" => "\xb0\xa3", +"\x5a\x04" => "\x8f\xb9\xcd", +"\x5a\x09" => "\xd5\xb2", +"\x5a\x0c" => "\x8f\xb9\xce", +"\x5a\x0d" => "\x8f\xb9\xcf", +"\x5a\x0e" => "\x8f\xb9\xd0", +"\x5a\x11" => "\xd5\xb0", +"\x5a\x12" => "\x8f\xb9\xd1", +"\x5a\x13" => "\x8f\xb9\xd2", +"\x5a\x18" => "\xcc\xbc", +"\x5a\x1a" => "\xd5\xb3", +"\x5a\x1c" => "\xd5\xb1", +"\x5a\x1e" => "\x8f\xb9\xd3", +"\x5a\x1f" => "\xd5\xaf", +"\x5a\x20" => "\xbf\xb1", +"\x5a\x23" => "\x8f\xb9\xd4", +"\x5a\x24" => "\x8f\xb9\xd5", +"\x5a\x25" => "\xd5\xae", +"\x5a\x27" => "\x8f\xb9\xd6", +"\x5a\x28" => "\x8f\xb9\xd7", +"\x5a\x29" => "\xca\xda", +"\x5a\x2a" => "\x8f\xb9\xd8", +"\x5a\x2d" => "\x8f\xb9\xd9", +"\x5a\x2f" => "\xb8\xe4", +"\x5a\x30" => "\x8f\xb9\xda", +"\x5a\x35" => "\xd5\xb7", +"\x5a\x36" => "\xd5\xb8", +"\x5a\x3c" => "\xbe\xab", +"\x5a\x40" => "\xd5\xb4", +"\x5a\x41" => "\xcf\xac", +"\x5a\x44" => "\x8f\xb9\xdb", +"\x5a\x45" => "\x8f\xb9\xdc", +"\x5a\x46" => "\xc7\xcc", +"\x5a\x47" => "\x8f\xb9\xdd", +"\x5a\x48" => "\x8f\xb9\xde", +"\x5a\x49" => "\xd5\xb6", +"\x5a\x4c" => "\x8f\xb9\xdf", +"\x5a\x50" => "\x8f\xb9\xe0", +"\x5a\x55" => "\x8f\xb9\xe1", +"\x5a\x5a" => "\xba\xa7", +"\x5a\x5e" => "\x8f\xb9\xe2", +"\x5a\x62" => "\xd5\xb9", +"\x5a\x63" => "\x8f\xb9\xe3", +"\x5a\x65" => "\x8f\xb9\xe4", +"\x5a\x66" => "\xc9\xd8", +"\x5a\x67" => "\x8f\xb9\xe5", +"\x5a\x6a" => "\xd5\xba", +"\x5a\x6c" => "\xd5\xb5", +"\x5a\x6d" => "\x8f\xb9\xe6", +"\x5a\x77" => "\x8f\xb9\xe7", +"\x5a\x7a" => "\x8f\xb9\xe8", +"\x5a\x7b" => "\x8f\xb9\xe9", +"\x5a\x7e" => "\x8f\xb9\xea", +"\x5a\x7f" => "\xcc\xbb", +"\x5a\x8b" => "\x8f\xb9\xeb", +"\x5a\x90" => "\x8f\xb9\xec", +"\x5a\x92" => "\xc7\xde", +"\x5a\x93" => "\x8f\xb9\xed", +"\x5a\x96" => "\x8f\xb9\xee", +"\x5a\x99" => "\x8f\xb9\xef", +"\x5a\x9a" => "\xd5\xbb", +"\x5a\x9b" => "\xc9\xb2", +"\x5a\x9c" => "\x8f\xb9\xf0", +"\x5a\x9e" => "\x8f\xb9\xf1", +"\x5a\x9f" => "\x8f\xb9\xf2", +"\x5a\xa0" => "\x8f\xb9\xf3", +"\x5a\xa2" => "\x8f\xb9\xf4", +"\x5a\xa7" => "\x8f\xb9\xf5", +"\x5a\xac" => "\x8f\xb9\xf6", +"\x5a\xb1" => "\x8f\xb9\xf7", +"\x5a\xb2" => "\x8f\xb9\xf8", +"\x5a\xb3" => "\x8f\xb9\xf9", +"\x5a\xb5" => "\x8f\xb9\xfa", +"\x5a\xb8" => "\x8f\xb9\xfb", +"\x5a\xba" => "\x8f\xb9\xfc", +"\x5a\xbb" => "\x8f\xb9\xfd", +"\x5a\xbc" => "\xd5\xbc", +"\x5a\xbd" => "\xd5\xc0", +"\x5a\xbe" => "\xd5\xbd", +"\x5a\xbf" => "\x8f\xb9\xfe", +"\x5a\xc1" => "\xb2\xc7", +"\x5a\xc2" => "\xd5\xbf", +"\x5a\xc4" => "\x8f\xba\xa1", +"\x5a\xc6" => "\x8f\xba\xa2", +"\x5a\xc8" => "\x8f\xba\xa3", +"\x5a\xc9" => "\xbc\xbb", +"\x5a\xcb" => "\xd5\xbe", +"\x5a\xcc" => "\xb7\xf9", +"\x5a\xcf" => "\x8f\xba\xa4", +"\x5a\xd0" => "\xd5\xcc", +"\x5a\xd6" => "\xd5\xc5", +"\x5a\xd7" => "\xd5\xc2", +"\x5a\xda" => "\x8f\xba\xa5", +"\x5a\xdc" => "\x8f\xba\xa6", +"\x5a\xe0" => "\x8f\xba\xa7", +"\x5a\xe1" => "\xc3\xe4", +"\x5a\xe3" => "\xd5\xc1", +"\x5a\xe5" => "\x8f\xba\xa8", +"\x5a\xe6" => "\xd5\xc3", +"\x5a\xe9" => "\xd5\xc4", +"\x5a\xea" => "\x8f\xba\xa9", +"\x5a\xee" => "\x8f\xba\xaa", +"\x5a\xf5" => "\x8f\xba\xab", +"\x5a\xf6" => "\x8f\xba\xac", +"\x5a\xfa" => "\xd5\xc6", +"\x5a\xfb" => "\xd5\xc7", +"\x5a\xfd" => "\x8f\xba\xad", +"\x5b\x00" => "\x8f\xba\xae", +"\x5b\x01" => "\x8f\xba\xaf", +"\x5b\x08" => "\x8f\xba\xb0", +"\x5b\x09" => "\xb4\xf2", +"\x5b\x0b" => "\xd5\xc9", +"\x5b\x0c" => "\xd5\xc8", +"\x5b\x16" => "\xd5\xca", +"\x5b\x17" => "\x8f\xba\xb1", +"\x5b\x19" => "\x8f\xba\xb3", +"\x5b\x1b" => "\x8f\xba\xb4", +"\x5b\x1d" => "\x8f\xba\xb5", +"\x5b\x21" => "\x8f\xba\xb6", +"\x5b\x22" => "\xbe\xee", +"\x5b\x25" => "\x8f\xba\xb7", +"\x5b\x2a" => "\xd5\xcd", +"\x5b\x2c" => "\xc4\xdc", +"\x5b\x2d" => "\x8f\xba\xb8", +"\x5b\x30" => "\xb1\xc5", +"\x5b\x32" => "\xd5\xcb", +"\x5b\x34" => "\x8f\xba\xb2", +"\x5b\x36" => "\xd5\xce", +"\x5b\x38" => "\x8f\xba\xb9", +"\x5b\x3e" => "\xd5\xcf", +"\x5b\x40" => "\xd5\xd2", +"\x5b\x41" => "\x8f\xba\xba", +"\x5b\x43" => "\xd5\xd0", +"\x5b\x45" => "\xd5\xd1", +"\x5b\x4b" => "\x8f\xba\xbb", +"\x5b\x4c" => "\x8f\xba\xbc", +"\x5b\x50" => "\xbb\xd2", +"\x5b\x51" => "\xd5\xd3", +"\x5b\x52" => "\x8f\xba\xbd", +"\x5b\x54" => "\xb9\xa6", +"\x5b\x55" => "\xd5\xd4", +"\x5b\x56" => "\x8f\xba\xbe", +"\x5b\x57" => "\xbb\xfa", +"\x5b\x58" => "\xc2\xb8", +"\x5b\x5a" => "\xd5\xd5", +"\x5b\x5b" => "\xd5\xd6", +"\x5b\x5c" => "\xbb\xda", +"\x5b\x5d" => "\xb9\xa7", +"\x5b\x5e" => "\x8f\xba\xbf", +"\x5b\x5f" => "\xcc\xd2", +"\x5b\x63" => "\xb5\xa8", +"\x5b\x64" => "\xb8\xc9", +"\x5b\x65" => "\xd5\xd7", +"\x5b\x66" => "\xb3\xd8", +"\x5b\x68" => "\x8f\xba\xc0", +"\x5b\x69" => "\xd5\xd8", +"\x5b\x6b" => "\xc2\xb9", +"\x5b\x6e" => "\x8f\xba\xc1", +"\x5b\x6f" => "\x8f\xba\xc2", +"\x5b\x70" => "\xd5\xd9", +"\x5b\x71" => "\xd6\xa3", +"\x5b\x73" => "\xd5\xda", +"\x5b\x75" => "\xd5\xdb", +"\x5b\x78" => "\xd5\xdc", +"\x5b\x7a" => "\xd5\xde", +"\x5b\x7c" => "\x8f\xba\xc3", +"\x5b\x7d" => "\x8f\xba\xc4", +"\x5b\x7e" => "\x8f\xba\xc5", +"\x5b\x7f" => "\x8f\xba\xc6", +"\x5b\x80" => "\xd5\xdf", +"\x5b\x81" => "\x8f\xba\xc7", +"\x5b\x83" => "\xd5\xe0", +"\x5b\x84" => "\x8f\xba\xc8", +"\x5b\x85" => "\xc2\xf0", +"\x5b\x86" => "\x8f\xba\xc9", +"\x5b\x87" => "\xb1\xa7", +"\x5b\x88" => "\xbc\xe9", +"\x5b\x89" => "\xb0\xc2", +"\x5b\x8a" => "\x8f\xba\xca", +"\x5b\x8b" => "\xc1\xd7", +"\x5b\x8c" => "\xb4\xb0", +"\x5b\x8d" => "\xbc\xb5", +"\x5b\x8e" => "\x8f\xba\xcb", +"\x5b\x8f" => "\xb9\xa8", +"\x5b\x90" => "\x8f\xba\xcc", +"\x5b\x91" => "\x8f\xba\xcd", +"\x5b\x93" => "\x8f\xba\xce", +"\x5b\x94" => "\x8f\xba\xcf", +"\x5b\x95" => "\xc5\xe6", +"\x5b\x96" => "\x8f\xba\xd0", +"\x5b\x97" => "\xbd\xa1", +"\x5b\x98" => "\xb4\xb1", +"\x5b\x99" => "\xc3\xe8", +"\x5b\x9a" => "\xc4\xea", +"\x5b\x9b" => "\xb0\xb8", +"\x5b\x9c" => "\xb5\xb9", +"\x5b\x9d" => "\xca\xf5", +"\x5b\x9f" => "\xbc\xc2", +"\x5b\xa2" => "\xb5\xd2", +"\x5b\xa3" => "\xc0\xeb", +"\x5b\xa4" => "\xbc\xbc", +"\x5b\xa5" => "\xcd\xa8", +"\x5b\xa6" => "\xd5\xe1", +"\x5b\xa8" => "\x8f\xba\xd1", +"\x5b\xa9" => "\x8f\xba\xd2", +"\x5b\xac" => "\x8f\xba\xd3", +"\x5b\xad" => "\x8f\xba\xd4", +"\x5b\xae" => "\xb5\xdc", +"\x5b\xaf" => "\x8f\xba\xd5", +"\x5b\xb0" => "\xba\xcb", +"\x5b\xb1" => "\x8f\xba\xd6", +"\x5b\xb2" => "\x8f\xba\xd7", +"\x5b\xb3" => "\xb3\xb2", +"\x5b\xb4" => "\xb1\xe3", +"\x5b\xb5" => "\xbe\xac", +"\x5b\xb6" => "\xb2\xc8", +"\x5b\xb7" => "\x8f\xba\xd8", +"\x5b\xb8" => "\xd5\xe2", +"\x5b\xb9" => "\xcd\xc6", +"\x5b\xba" => "\x8f\xba\xd9", +"\x5b\xbc" => "\x8f\xba\xda", +"\x5b\xbf" => "\xbd\xc9", +"\x5b\xc0" => "\x8f\xba\xdb", +"\x5b\xc1" => "\x8f\xba\xdc", +"\x5b\xc2" => "\xbc\xe4", +"\x5b\xc3" => "\xd5\xe3", +"\x5b\xc4" => "\xb4\xf3", +"\x5b\xc5" => "\xc6\xd2", +"\x5b\xc6" => "\xcc\xa9", +"\x5b\xc7" => "\xd5\xe4", +"\x5b\xc9" => "\xd5\xe5", +"\x5b\xcc" => "\xc9\xd9", +"\x5b\xcd" => "\x8f\xba\xdd", +"\x5b\xcf" => "\x8f\xba\xde", +"\x5b\xd0" => "\xd5\xe7", +"\x5b\xd2" => "\xb4\xa8", +"\x5b\xd3" => "\xb6\xf7", +"\x5b\xd4" => "\xd5\xe6", +"\x5b\xd6" => "\x8f\xba\xdf", +"\x5b\xd7" => "\x8f\xba\xe0", +"\x5b\xd8" => "\x8f\xba\xe1", +"\x5b\xd9" => "\x8f\xba\xe2", +"\x5b\xda" => "\x8f\xba\xe3", +"\x5b\xdb" => "\xb4\xb2", +"\x5b\xdd" => "\xbf\xb2", +"\x5b\xde" => "\xd5\xeb", +"\x5b\xdf" => "\xbb\xa1", +"\x5b\xe0" => "\x8f\xba\xe4", +"\x5b\xe1" => "\xb2\xc9", +"\x5b\xe2" => "\xd5\xea", +"\x5b\xe4" => "\xd5\xe8", +"\x5b\xe5" => "\xd5\xec", +"\x5b\xe6" => "\xd5\xe9", +"\x5b\xe7" => "\xc7\xab", +"\x5b\xe8" => "\xdc\xcd", +"\x5b\xe9" => "\xbf\xb3", +"\x5b\xeb" => "\xd5\xed", +"\x5b\xee" => "\xce\xc0", +"\x5b\xef" => "\x8f\xba\xe5", +"\x5b\xf0" => "\xd5\xee", +"\x5b\xf1" => "\x8f\xba\xe6", +"\x5b\xf3" => "\xd5\xf0", +"\x5b\xf4" => "\x8f\xba\xe7", +"\x5b\xf5" => "\xc3\xfe", +"\x5b\xf6" => "\xd5\xef", +"\x5b\xf8" => "\xc0\xa3", +"\x5b\xfa" => "\xbb\xfb", +"\x5b\xfd" => "\x8f\xba\xe8", +"\x5b\xfe" => "\xc2\xd0", +"\x5b\xff" => "\xbc\xf7", +"\x5c\x01" => "\xc9\xf5", +"\x5c\x02" => "\xc0\xec", +"\x5c\x04" => "\xbc\xcd", +"\x5c\x05" => "\xd5\xf1", +"\x5c\x06" => "\xbe\xad", +"\x5c\x07" => "\xd5\xf2", +"\x5c\x08" => "\xd5\xf3", +"\x5c\x09" => "\xb0\xd3", +"\x5c\x0a" => "\xc2\xba", +"\x5c\x0b" => "\xbf\xd2", +"\x5c\x0c" => "\x8f\xba\xe9", +"\x5c\x0d" => "\xd5\xf4", +"\x5c\x0e" => "\xc6\xb3", +"\x5c\x0f" => "\xbe\xae", +"\x5c\x11" => "\xbe\xaf", +"\x5c\x13" => "\xd5\xf5", +"\x5c\x16" => "\xc0\xed", +"\x5c\x17" => "\x8f\xba\xea", +"\x5c\x1a" => "\xbe\xb0", +"\x5c\x1e" => "\x8f\xba\xeb", +"\x5c\x1f" => "\x8f\xba\xec", +"\x5c\x20" => "\xd5\xf6", +"\x5c\x22" => "\xd5\xf7", +"\x5c\x23" => "\x8f\xba\xed", +"\x5c\x24" => "\xcc\xe0", +"\x5c\x26" => "\x8f\xba\xee", +"\x5c\x28" => "\xd5\xf8", +"\x5c\x29" => "\x8f\xba\xef", +"\x5c\x2b" => "\x8f\xba\xf0", +"\x5c\x2c" => "\x8f\xba\xf1", +"\x5c\x2d" => "\xb6\xc6", +"\x5c\x2e" => "\x8f\xba\xf2", +"\x5c\x30" => "\x8f\xba\xf3", +"\x5c\x31" => "\xbd\xa2", +"\x5c\x32" => "\x8f\xba\xf4", +"\x5c\x35" => "\x8f\xba\xf5", +"\x5c\x36" => "\x8f\xba\xf6", +"\x5c\x38" => "\xd5\xf9", +"\x5c\x39" => "\xd5\xfa", +"\x5c\x3a" => "\xbc\xdc", +"\x5c\x3b" => "\xbf\xac", +"\x5c\x3c" => "\xc6\xf4", +"\x5c\x3d" => "\xbf\xd4", +"\x5c\x3e" => "\xc8\xf8", +"\x5c\x3f" => "\xc7\xa2", +"\x5c\x40" => "\xb6\xc9", +"\x5c\x41" => "\xd5\xfb", +"\x5c\x45" => "\xb5\xef", +"\x5c\x46" => "\xd5\xfc", +"\x5c\x48" => "\xb6\xfe", +"\x5c\x4a" => "\xc6\xcf", +"\x5c\x4b" => "\xb2\xb0", +"\x5c\x4d" => "\xbb\xd3", +"\x5c\x4e" => "\xd5\xfd", +"\x5c\x4f" => "\xd6\xa2", +"\x5c\x50" => "\xd6\xa1", +"\x5c\x51" => "\xb6\xfd", +"\x5c\x53" => "\xd5\xfe", +"\x5c\x55" => "\xc5\xb8", +"\x5c\x59" => "\x8f\xba\xf7", +"\x5c\x5a" => "\x8f\xba\xf8", +"\x5c\x5c" => "\x8f\xba\xf9", +"\x5c\x5e" => "\xc2\xb0", +"\x5c\x60" => "\xc5\xcb", +"\x5c\x61" => "\xbc\xc8", +"\x5c\x62" => "\x8f\xba\xfa", +"\x5c\x63" => "\x8f\xba\xfb", +"\x5c\x64" => "\xc1\xd8", +"\x5c\x65" => "\xcd\xfa", +"\x5c\x67" => "\x8f\xba\xfc", +"\x5c\x68" => "\x8f\xba\xfd", +"\x5c\x69" => "\x8f\xba\xfe", +"\x5c\x6c" => "\xd6\xa4", +"\x5c\x6d" => "\x8f\xbb\xa1", +"\x5c\x6e" => "\xd6\xa5", +"\x5c\x6f" => "\xc6\xd6", +"\x5c\x70" => "\x8f\xbb\xa2", +"\x5c\x71" => "\xbb\xb3", +"\x5c\x74" => "\x8f\xbb\xa3", +"\x5c\x75" => "\x8f\xbb\xa4", +"\x5c\x76" => "\xd6\xa7", +"\x5c\x79" => "\xd6\xa8", +"\x5c\x7a" => "\x8f\xbb\xa5", +"\x5c\x7b" => "\x8f\xbb\xa6", +"\x5c\x7c" => "\x8f\xbb\xa7", +"\x5c\x7d" => "\x8f\xbb\xa8", +"\x5c\x87" => "\x8f\xbb\xa9", +"\x5c\x88" => "\x8f\xbb\xaa", +"\x5c\x8a" => "\x8f\xbb\xab", +"\x5c\x8c" => "\xd6\xa9", +"\x5c\x8f" => "\x8f\xbb\xac", +"\x5c\x90" => "\xb4\xf4", +"\x5c\x91" => "\xd6\xaa", +"\x5c\x92" => "\x8f\xbb\xad", +"\x5c\x94" => "\xd6\xab", +"\x5c\x9d" => "\x8f\xbb\xae", +"\x5c\x9f" => "\x8f\xbb\xaf", +"\x5c\xa0" => "\x8f\xbb\xb0", +"\x5c\xa1" => "\xb2\xac", +"\x5c\xa2" => "\x8f\xbb\xb1", +"\x5c\xa3" => "\x8f\xbb\xb2", +"\x5c\xa6" => "\x8f\xbb\xb3", +"\x5c\xa8" => "\xc1\xbb", +"\x5c\xa9" => "\xb4\xe4", +"\x5c\xaa" => "\x8f\xbb\xb4", +"\x5c\xab" => "\xd6\xad", +"\x5c\xac" => "\xcc\xa8", +"\x5c\xb1" => "\xc2\xd2", +"\x5c\xb2" => "\x8f\xbb\xb5", +"\x5c\xb3" => "\xb3\xd9", +"\x5c\xb4" => "\x8f\xbb\xb6", +"\x5c\xb5" => "\x8f\xbb\xb7", +"\x5c\xb6" => "\xd6\xaf", +"\x5c\xb7" => "\xd6\xb1", +"\x5c\xb8" => "\xb4\xdf", +"\x5c\xba" => "\x8f\xbb\xb8", +"\x5c\xbb" => "\xd6\xae", +"\x5c\xbc" => "\xd6\xb0", +"\x5c\xbe" => "\xd6\xb3", +"\x5c\xc5" => "\xd6\xb2", +"\x5c\xc7" => "\xd6\xb4", +"\x5c\xc9" => "\x8f\xbb\xb9", +"\x5c\xcb" => "\x8f\xbb\xba", +"\x5c\xd2" => "\x8f\xbb\xbb", +"\x5c\xd7" => "\x8f\xbb\xbd", +"\x5c\xd9" => "\xd6\xb5", +"\x5c\xdd" => "\x8f\xbb\xbc", +"\x5c\xe0" => "\xc6\xbd", +"\x5c\xe1" => "\xb6\xae", +"\x5c\xe8" => "\xb2\xe5", +"\x5c\xe9" => "\xd6\xb6", +"\x5c\xea" => "\xd6\xbb", +"\x5c\xed" => "\xd6\xb9", +"\x5c\xee" => "\x8f\xbb\xbe", +"\x5c\xef" => "\xca\xf7", +"\x5c\xf0" => "\xca\xf6", +"\x5c\xf1" => "\x8f\xbb\xbf", +"\x5c\xf2" => "\x8f\xbb\xc0", +"\x5c\xf4" => "\x8f\xbb\xc1", +"\x5c\xf6" => "\xc5\xe7", +"\x5c\xfa" => "\xd6\xb8", +"\x5c\xfb" => "\xbd\xd4", +"\x5c\xfd" => "\xd6\xb7", +"\x5d\x01" => "\x8f\xbb\xc2", +"\x5d\x06" => "\x8f\xbb\xc3", +"\x5d\x07" => "\xbf\xf2", +"\x5d\x0b" => "\xd6\xbc", +"\x5d\x0d" => "\x8f\xbb\xc4", +"\x5d\x0e" => "\xba\xea", +"\x5d\x11" => "\xd6\xc2", +"\x5d\x12" => "\x8f\xbb\xc5", +"\x5d\x14" => "\xd6\xc3", +"\x5d\x15" => "\xd6\xbd", +"\x5d\x16" => "\xb3\xb3", +"\x5d\x17" => "\xd6\xbe", +"\x5d\x18" => "\xd6\xc7", +"\x5d\x19" => "\xd6\xc6", +"\x5d\x1a" => "\xd6\xc5", +"\x5d\x1b" => "\xd6\xc1", +"\x5d\x1f" => "\xd6\xc0", +"\x5d\x22" => "\xd6\xc4", +"\x5d\x23" => "\x8f\xbb\xc7", +"\x5d\x24" => "\x8f\xbb\xc8", +"\x5d\x26" => "\x8f\xbb\xc9", +"\x5d\x27" => "\x8f\xbb\xca", +"\x5d\x29" => "\xca\xf8", +"\x5d\x2b" => "\x8f\xbb\xc6", +"\x5d\x31" => "\x8f\xbb\xcb", +"\x5d\x34" => "\x8f\xbb\xcc", +"\x5d\x39" => "\x8f\xbb\xcd", +"\x5d\x3d" => "\x8f\xbb\xce", +"\x5d\x3f" => "\x8f\xbb\xcf", +"\x5d\x42" => "\x8f\xbb\xd0", +"\x5d\x43" => "\x8f\xbb\xd1", +"\x5d\x46" => "\x8f\xbb\xd2", +"\x5d\x48" => "\x8f\xbb\xd3", +"\x5d\x4a" => "\x8f\xbb\xd7", +"\x5d\x4b" => "\xd6\xcb", +"\x5d\x4c" => "\xd6\xc8", +"\x5d\x4e" => "\xd6\xca", +"\x5d\x50" => "\xcd\xf2", +"\x5d\x51" => "\x8f\xbb\xd5", +"\x5d\x52" => "\xd6\xc9", +"\x5d\x55" => "\x8f\xbb\xd4", +"\x5d\x59" => "\x8f\xbb\xd6", +"\x5d\x5c" => "\xd6\xbf", +"\x5d\x5f" => "\x8f\xbb\xd8", +"\x5d\x60" => "\x8f\xbb\xd9", +"\x5d\x61" => "\x8f\xbb\xda", +"\x5d\x62" => "\x8f\xbb\xdb", +"\x5d\x64" => "\x8f\xbb\xdc", +"\x5d\x69" => "\xbf\xf3", +"\x5d\x6a" => "\x8f\xbb\xdd", +"\x5d\x6c" => "\xd6\xcc", +"\x5d\x6d" => "\x8f\xbb\xde", +"\x5d\x6f" => "\xba\xb7", +"\x5d\x70" => "\x8f\xbb\xdf", +"\x5d\x73" => "\xd6\xcd", +"\x5d\x76" => "\xd6\xce", +"\x5d\x79" => "\x8f\xbb\xe0", +"\x5d\x7a" => "\x8f\xbb\xe1", +"\x5d\x7e" => "\x8f\xbb\xe2", +"\x5d\x7f" => "\x8f\xbb\xe3", +"\x5d\x81" => "\x8f\xbb\xe4", +"\x5d\x82" => "\xd6\xd1", +"\x5d\x83" => "\x8f\xbb\xe5", +"\x5d\x84" => "\xd6\xd0", +"\x5d\x87" => "\xd6\xcf", +"\x5d\x88" => "\x8f\xbb\xe6", +"\x5d\x8a" => "\x8f\xbb\xe7", +"\x5d\x8b" => "\xc5\xe8", +"\x5d\x8c" => "\xd6\xba", +"\x5d\x90" => "\xd6\xd7", +"\x5d\x92" => "\x8f\xbb\xe8", +"\x5d\x93" => "\x8f\xbb\xe9", +"\x5d\x94" => "\x8f\xbb\xea", +"\x5d\x95" => "\x8f\xbb\xeb", +"\x5d\x99" => "\x8f\xbb\xec", +"\x5d\x9b" => "\x8f\xbb\xed", +"\x5d\x9d" => "\xd6\xd3", +"\x5d\x9f" => "\x8f\xbb\xee", +"\x5d\xa0" => "\x8f\xbb\xef", +"\x5d\xa2" => "\xd6\xd2", +"\x5d\xa7" => "\x8f\xbb\xf0", +"\x5d\xab" => "\x8f\xbb\xf1", +"\x5d\xac" => "\xd6\xd4", +"\x5d\xae" => "\xd6\xd5", +"\x5d\xb0" => "\x8f\xbb\xf2", +"\x5d\xb2" => "\x8f\xe6\xf4", +"\x5d\xb4" => "\x8f\xbb\xf3", +"\x5d\xb7" => "\xd6\xd8", +"\x5d\xb8" => "\x8f\xbb\xf4", +"\x5d\xb9" => "\x8f\xbb\xf5", +"\x5d\xba" => "\xce\xe6", +"\x5d\xbc" => "\xd6\xd9", +"\x5d\xbd" => "\xd6\xd6", +"\x5d\xc3" => "\x8f\xbb\xf6", +"\x5d\xc7" => "\x8f\xbb\xf7", +"\x5d\xc9" => "\xd6\xda", +"\x5d\xcb" => "\x8f\xbb\xf8", +"\x5d\xcc" => "\xb4\xe0", +"\x5d\xcd" => "\xd6\xdb", +"\x5d\xce" => "\x8f\xbb\xfa", +"\x5d\xd0" => "\x8f\xbb\xf9", +"\x5d\xd2" => "\xd6\xdd", +"\x5d\xd3" => "\xd6\xdc", +"\x5d\xd6" => "\xd6\xde", +"\x5d\xd8" => "\x8f\xbb\xfb", +"\x5d\xd9" => "\x8f\xbb\xfc", +"\x5d\xdb" => "\xd6\xdf", +"\x5d\xdd" => "\xc0\xee", +"\x5d\xde" => "\xbd\xa3", +"\x5d\xe0" => "\x8f\xbb\xfd", +"\x5d\xe1" => "\xbd\xe4", +"\x5d\xe3" => "\xc1\xe3", +"\x5d\xe4" => "\x8f\xbb\xfe", +"\x5d\xe5" => "\xb9\xa9", +"\x5d\xe6" => "\xba\xb8", +"\x5d\xe7" => "\xb9\xaa", +"\x5d\xe8" => "\xb5\xf0", +"\x5d\xe9" => "\x8f\xbc\xa1", +"\x5d\xeb" => "\xd6\xe0", +"\x5d\xee" => "\xba\xb9", +"\x5d\xf1" => "\xb8\xca", +"\x5d\xf2" => "\xd6\xe1", +"\x5d\xf3" => "\xcc\xa6", +"\x5d\xf4" => "\xc7\xc3", +"\x5d\xf5" => "\xd6\xe2", +"\x5d\xf7" => "\xb9\xab", +"\x5d\xf8" => "\x8f\xbc\xa2", +"\x5d\xf9" => "\x8f\xbc\xa3", +"\x5d\xfb" => "\xb4\xac", +"\x5d\xfd" => "\xc3\xa7", +"\x5d\xfe" => "\xb6\xd2", +"\x5e\x00" => "\x8f\xbc\xa4", +"\x5e\x02" => "\xbb\xd4", +"\x5e\x03" => "\xc9\xdb", +"\x5e\x06" => "\xc8\xc1", +"\x5e\x07" => "\x8f\xbc\xa5", +"\x5e\x0b" => "\xd6\xe3", +"\x5e\x0c" => "\xb4\xf5", +"\x5e\x0d" => "\x8f\xbc\xa6", +"\x5e\x11" => "\xd6\xe6", +"\x5e\x12" => "\x8f\xbc\xa7", +"\x5e\x14" => "\x8f\xbc\xa8", +"\x5e\x15" => "\x8f\xbc\xa9", +"\x5e\x16" => "\xc4\xa1", +"\x5e\x18" => "\x8f\xbc\xaa", +"\x5e\x19" => "\xd6\xe5", +"\x5e\x1a" => "\xd6\xe4", +"\x5e\x1b" => "\xd6\xe7", +"\x5e\x1d" => "\xc4\xeb", +"\x5e\x1f" => "\x8f\xbc\xab", +"\x5e\x20" => "\x8f\xbc\xac", +"\x5e\x25" => "\xbf\xe3", +"\x5e\x28" => "\x8f\xbc\xae", +"\x5e\x2b" => "\xbb\xd5", +"\x5e\x2d" => "\xc0\xca", +"\x5e\x2e" => "\x8f\xbc\xad", +"\x5e\x2f" => "\xc2\xd3", +"\x5e\x30" => "\xb5\xa2", +"\x5e\x32" => "\x8f\xbc\xaf", +"\x5e\x33" => "\xc4\xa2", +"\x5e\x35" => "\x8f\xbc\xb0", +"\x5e\x36" => "\xd6\xe8", +"\x5e\x37" => "\xd6\xe9", +"\x5e\x38" => "\xbe\xef", +"\x5e\x3d" => "\xcb\xb9", +"\x5e\x3e" => "\x8f\xbc\xb1", +"\x5e\x40" => "\xd6\xec", +"\x5e\x43" => "\xd6\xeb", +"\x5e\x44" => "\xd6\xea", +"\x5e\x45" => "\xc9\xfd", +"\x5e\x47" => "\xd6\xf3", +"\x5e\x49" => "\x8f\xbc\xb4", +"\x5e\x4b" => "\x8f\xbc\xb2", +"\x5e\x4c" => "\xcb\xda", +"\x5e\x4e" => "\xd6\xed", +"\x5e\x50" => "\x8f\xbc\xb3", +"\x5e\x51" => "\x8f\xbc\xb5", +"\x5e\x54" => "\xd6\xef", +"\x5e\x55" => "\xcb\xeb", +"\x5e\x56" => "\x8f\xbc\xb6", +"\x5e\x57" => "\xd6\xee", +"\x5e\x58" => "\x8f\xbc\xb7", +"\x5e\x5b" => "\x8f\xbc\xb8", +"\x5e\x5c" => "\x8f\xbc\xb9", +"\x5e\x5e" => "\x8f\xbc\xba", +"\x5e\x5f" => "\xd6\xf0", +"\x5e\x61" => "\xc8\xa8", +"\x5e\x62" => "\xd6\xf1", +"\x5e\x63" => "\xca\xbe", +"\x5e\x64" => "\xd6\xf2", +"\x5e\x68" => "\x8f\xbc\xbb", +"\x5e\x6a" => "\x8f\xbc\xbc", +"\x5e\x6b" => "\x8f\xbc\xbd", +"\x5e\x6c" => "\x8f\xbc\xbe", +"\x5e\x6d" => "\x8f\xbc\xbf", +"\x5e\x6e" => "\x8f\xbc\xc0", +"\x5e\x70" => "\x8f\xbc\xc1", +"\x5e\x72" => "\xb4\xb3", +"\x5e\x73" => "\xca\xbf", +"\x5e\x74" => "\xc7\xaf", +"\x5e\x75" => "\xd6\xf4", +"\x5e\x76" => "\xd6\xf5", +"\x5e\x78" => "\xb9\xac", +"\x5e\x79" => "\xb4\xb4", +"\x5e\x7a" => "\xd6\xf6", +"\x5e\x7b" => "\xb8\xb8", +"\x5e\x7c" => "\xcd\xc4", +"\x5e\x7d" => "\xcd\xa9", +"\x5e\x7e" => "\xb4\xf6", +"\x5e\x7f" => "\xd6\xf8", +"\x5e\x80" => "\x8f\xbc\xc2", +"\x5e\x81" => "\xc4\xa3", +"\x5e\x83" => "\xb9\xad", +"\x5e\x84" => "\xbe\xb1", +"\x5e\x87" => "\xc8\xdf", +"\x5e\x8a" => "\xbe\xb2", +"\x5e\x8b" => "\x8f\xbc\xc3", +"\x5e\x8e" => "\x8f\xbc\xc4", +"\x5e\x8f" => "\xbd\xf8", +"\x5e\x95" => "\xc4\xec", +"\x5e\x96" => "\xca\xf9", +"\x5e\x97" => "\xc5\xb9", +"\x5e\x9a" => "\xb9\xae", +"\x5e\x9c" => "\xc9\xdc", +"\x5e\xa0" => "\xd6\xf9", +"\x5e\xa2" => "\x8f\xbc\xc5", +"\x5e\xa4" => "\x8f\xbc\xc6", +"\x5e\xa5" => "\x8f\xbc\xc7", +"\x5e\xa6" => "\xc5\xd9", +"\x5e\xa7" => "\xba\xc2", +"\x5e\xa8" => "\x8f\xbc\xc8", +"\x5e\xaa" => "\x8f\xbc\xc9", +"\x5e\xab" => "\xb8\xcb", +"\x5e\xac" => "\x8f\xbc\xca", +"\x5e\xad" => "\xc4\xed", +"\x5e\xb1" => "\x8f\xbc\xcb", +"\x5e\xb3" => "\x8f\xbc\xcc", +"\x5e\xb5" => "\xb0\xc3", +"\x5e\xb6" => "\xbd\xee", +"\x5e\xb7" => "\xb9\xaf", +"\x5e\xb8" => "\xcd\xc7", +"\x5e\xbd" => "\x8f\xbc\xcd", +"\x5e\xbe" => "\x8f\xbc\xce", +"\x5e\xbf" => "\x8f\xbc\xcf", +"\x5e\xc1" => "\xd6\xfa", +"\x5e\xc2" => "\xd6\xfb", +"\x5e\xc3" => "\xc7\xd1", +"\x5e\xc6" => "\x8f\xbc\xd0", +"\x5e\xc8" => "\xd6\xfc", +"\x5e\xc9" => "\xce\xf7", +"\x5e\xca" => "\xcf\xad", +"\x5e\xcb" => "\x8f\xbc\xd2", +"\x5e\xcc" => "\x8f\xbc\xd1", +"\x5e\xce" => "\x8f\xbc\xd3", +"\x5e\xcf" => "\xd6\xfe", +"\x5e\xd0" => "\xd6\xfd", +"\x5e\xd1" => "\x8f\xbc\xd4", +"\x5e\xd2" => "\x8f\xbc\xd5", +"\x5e\xd3" => "\xb3\xc7", +"\x5e\xd4" => "\x8f\xbc\xd6", +"\x5e\xd5" => "\x8f\xbc\xd7", +"\x5e\xd6" => "\xd7\xa1", +"\x5e\xda" => "\xd7\xa4", +"\x5e\xdb" => "\xd7\xa5", +"\x5e\xdc" => "\x8f\xbc\xd8", +"\x5e\xdd" => "\xd7\xa3", +"\x5e\xde" => "\x8f\xbc\xd9", +"\x5e\xdf" => "\xc9\xc0", +"\x5e\xe0" => "\xbe\xb3", +"\x5e\xe1" => "\xd7\xa7", +"\x5e\xe2" => "\xd7\xa6", +"\x5e\xe3" => "\xd7\xa2", +"\x5e\xe5" => "\x8f\xbc\xda", +"\x5e\xe8" => "\xd7\xa8", +"\x5e\xe9" => "\xd7\xa9", +"\x5e\xeb" => "\x8f\xbc\xdb", +"\x5e\xec" => "\xd7\xaa", +"\x5e\xf0" => "\xd7\xad", +"\x5e\xf1" => "\xd7\xab", +"\x5e\xf3" => "\xd7\xac", +"\x5e\xf4" => "\xd7\xae", +"\x5e\xf6" => "\xb1\xe4", +"\x5e\xf7" => "\xc4\xee", +"\x5e\xf8" => "\xd7\xaf", +"\x5e\xfa" => "\xb7\xfa", +"\x5e\xfb" => "\xb2\xf6", +"\x5e\xfc" => "\xc7\xb6", +"\x5e\xfe" => "\xd7\xb0", +"\x5e\xff" => "\xc6\xfb", +"\x5f\x01" => "\xca\xdb", +"\x5f\x02" => "\x8f\xbc\xdc", +"\x5f\x03" => "\xd7\xb1", +"\x5f\x04" => "\xcf\xae", +"\x5f\x06" => "\x8f\xbc\xdd", +"\x5f\x07" => "\x8f\xbc\xde", +"\x5f\x08" => "\x8f\xbc\xdf", +"\x5f\x09" => "\xd7\xb2", +"\x5f\x0a" => "\xca\xc0", +"\x5f\x0b" => "\xd7\xb5", +"\x5f\x0c" => "\xd0\xa1", +"\x5f\x0d" => "\xd0\xb1", +"\x5f\x0e" => "\x8f\xbc\xe0", +"\x5f\x0f" => "\xbc\xb0", +"\x5f\x10" => "\xc6\xf5", +"\x5f\x11" => "\xd7\xb6", +"\x5f\x13" => "\xb5\xdd", +"\x5f\x14" => "\xc4\xa4", +"\x5f\x15" => "\xb0\xfa", +"\x5f\x16" => "\xd7\xb7", +"\x5f\x17" => "\xca\xa6", +"\x5f\x18" => "\xb9\xb0", +"\x5f\x19" => "\x8f\xbc\xe1", +"\x5f\x1b" => "\xc3\xd0", +"\x5f\x1c" => "\x8f\xbc\xe2", +"\x5f\x1d" => "\x8f\xbc\xe3", +"\x5f\x1f" => "\xc4\xef", +"\x5f\x21" => "\x8f\xbc\xe4", +"\x5f\x22" => "\x8f\xbc\xe5", +"\x5f\x23" => "\x8f\xbc\xe6", +"\x5f\x24" => "\x8f\xbc\xe7", +"\x5f\x25" => "\xcc\xef", +"\x5f\x26" => "\xb8\xb9", +"\x5f\x27" => "\xb8\xcc", +"\x5f\x28" => "\x8f\xbc\xe8", +"\x5f\x29" => "\xd7\xb8", +"\x5f\x2b" => "\x8f\xbc\xe9", +"\x5f\x2c" => "\x8f\xbc\xea", +"\x5f\x2d" => "\xd7\xb9", +"\x5f\x2e" => "\x8f\xbc\xeb", +"\x5f\x2f" => "\xd7\xbf", +"\x5f\x30" => "\x8f\xbc\xec", +"\x5f\x31" => "\xbc\xe5", +"\x5f\x34" => "\x8f\xbc\xed", +"\x5f\x35" => "\xc4\xa5", +"\x5f\x36" => "\x8f\xbc\xee", +"\x5f\x37" => "\xb6\xaf", +"\x5f\x38" => "\xd7\xba", +"\x5f\x3b" => "\x8f\xbc\xef", +"\x5f\x3c" => "\xc9\xab", +"\x5f\x3d" => "\x8f\xbc\xf0", +"\x5f\x3e" => "\xc3\xc6", +"\x5f\x3f" => "\x8f\xbc\xf1", +"\x5f\x40" => "\x8f\xbc\xf2", +"\x5f\x41" => "\xd7\xbb", +"\x5f\x44" => "\x8f\xbc\xf3", +"\x5f\x45" => "\x8f\xbc\xf4", +"\x5f\x47" => "\x8f\xbc\xf5", +"\x5f\x48" => "\xd7\xbc", +"\x5f\x4a" => "\xb6\xb0", +"\x5f\x4c" => "\xd7\xbd", +"\x5f\x4d" => "\x8f\xbc\xf6", +"\x5f\x4e" => "\xd7\xbe", +"\x5f\x50" => "\x8f\xbc\xf7", +"\x5f\x51" => "\xd7\xc0", +"\x5f\x53" => "\xc5\xf6", +"\x5f\x54" => "\x8f\xbc\xf8", +"\x5f\x56" => "\xd7\xc1", +"\x5f\x57" => "\xd7\xc2", +"\x5f\x58" => "\x8f\xbc\xf9", +"\x5f\x59" => "\xd7\xc3", +"\x5f\x5b" => "\x8f\xbc\xfa", +"\x5f\x5c" => "\xd7\xb4", +"\x5f\x5d" => "\xd7\xb3", +"\x5f\x60" => "\x8f\xbc\xfb", +"\x5f\x61" => "\xd7\xc4", +"\x5f\x62" => "\xb7\xc1", +"\x5f\x63" => "\x8f\xbc\xfc", +"\x5f\x64" => "\x8f\xbc\xfd", +"\x5f\x66" => "\xc9\xa7", +"\x5f\x67" => "\x8f\xbc\xfe", +"\x5f\x69" => "\xba\xcc", +"\x5f\x6a" => "\xc9\xb7", +"\x5f\x6b" => "\xc4\xa6", +"\x5f\x6c" => "\xc9\xcb", +"\x5f\x6d" => "\xd7\xc5", +"\x5f\x6f" => "\x8f\xbd\xa1", +"\x5f\x70" => "\xbe\xb4", +"\x5f\x71" => "\xb1\xc6", +"\x5f\x72" => "\x8f\xbd\xa2", +"\x5f\x73" => "\xd7\xc6", +"\x5f\x74" => "\x8f\xbd\xa3", +"\x5f\x75" => "\x8f\xbd\xa4", +"\x5f\x77" => "\xd7\xc7", +"\x5f\x78" => "\x8f\xbd\xa5", +"\x5f\x79" => "\xcc\xf2", +"\x5f\x7a" => "\x8f\xbd\xa6", +"\x5f\x7c" => "\xc8\xe0", +"\x5f\x7d" => "\x8f\xbd\xa7", +"\x5f\x7e" => "\x8f\xbd\xa8", +"\x5f\x7f" => "\xd7\xca", +"\x5f\x80" => "\xb1\xfd", +"\x5f\x81" => "\xc0\xac", +"\x5f\x82" => "\xd7\xc9", +"\x5f\x83" => "\xd7\xc8", +"\x5f\x84" => "\xb7\xc2", +"\x5f\x85" => "\xc2\xd4", +"\x5f\x87" => "\xd7\xce", +"\x5f\x88" => "\xd7\xcc", +"\x5f\x89" => "\x8f\xbd\xa9", +"\x5f\x8a" => "\xd7\xcb", +"\x5f\x8b" => "\xce\xa7", +"\x5f\x8c" => "\xb8\xe5", +"\x5f\x8d" => "\x8f\xbd\xaa", +"\x5f\x8f" => "\x8f\xbd\xab", +"\x5f\x90" => "\xbd\xf9", +"\x5f\x91" => "\xd7\xcd", +"\x5f\x92" => "\xc5\xcc", +"\x5f\x93" => "\xbd\xbe", +"\x5f\x96" => "\x8f\xbd\xac", +"\x5f\x97" => "\xc6\xc0", +"\x5f\x98" => "\xd7\xd1", +"\x5f\x99" => "\xd7\xd0", +"\x5f\x9c" => "\x8f\xbd\xad", +"\x5f\x9d" => "\x8f\xbd\xae", +"\x5f\x9e" => "\xd7\xcf", +"\x5f\xa0" => "\xd7\xd2", +"\x5f\xa1" => "\xb8\xe6", +"\x5f\xa2" => "\x8f\xbd\xaf", +"\x5f\xa4" => "\x8f\xbd\xb2", +"\x5f\xa7" => "\x8f\xbd\xb0", +"\x5f\xa8" => "\xd7\xd3", +"\x5f\xa9" => "\xc9\xfc", +"\x5f\xaa" => "\xbd\xdb", +"\x5f\xab" => "\x8f\xbd\xb1", +"\x5f\xac" => "\x8f\xbd\xb3", +"\x5f\xad" => "\xd7\xd4", +"\x5f\xae" => "\xc8\xf9", +"\x5f\xaf" => "\x8f\xbd\xb4", +"\x5f\xb0" => "\x8f\xbd\xb5", +"\x5f\xb1" => "\x8f\xbd\xb6", +"\x5f\xb3" => "\xc6\xc1", +"\x5f\xb4" => "\xc4\xa7", +"\x5f\xb8" => "\x8f\xbd\xb7", +"\x5f\xb9" => "\xc5\xb0", +"\x5f\xbc" => "\xd7\xd5", +"\x5f\xbd" => "\xb5\xab", +"\x5f\xc3" => "\xbf\xb4", +"\x5f\xc4" => "\x8f\xbd\xb8", +"\x5f\xc5" => "\xc9\xac", +"\x5f\xc7" => "\x8f\xbd\xb9", +"\x5f\xc8" => "\x8f\xbd\xba", +"\x5f\xc9" => "\x8f\xbd\xbb", +"\x5f\xcb" => "\x8f\xbd\xbc", +"\x5f\xcc" => "\xb4\xf7", +"\x5f\xcd" => "\xc7\xa6", +"\x5f\xd0" => "\x8f\xbd\xbd", +"\x5f\xd1" => "\x8f\xbd\xbe", +"\x5f\xd2" => "\x8f\xbd\xbf", +"\x5f\xd3" => "\x8f\xbd\xc0", +"\x5f\xd4" => "\x8f\xbd\xc1", +"\x5f\xd6" => "\xd7\xd6", +"\x5f\xd7" => "\xbb\xd6", +"\x5f\xd8" => "\xcb\xba", +"\x5f\xd9" => "\xcb\xbb", +"\x5f\xdc" => "\xb1\xfe", +"\x5f\xdd" => "\xd7\xdb", +"\x5f\xde" => "\x8f\xbd\xc2", +"\x5f\xe0" => "\xc3\xe9", +"\x5f\xe1" => "\x8f\xbd\xc3", +"\x5f\xe2" => "\x8f\xbd\xc4", +"\x5f\xe4" => "\xd7\xd8", +"\x5f\xe8" => "\x8f\xbd\xc5", +"\x5f\xe9" => "\x8f\xbd\xc6", +"\x5f\xea" => "\x8f\xbd\xc7", +"\x5f\xeb" => "\xb2\xf7", +"\x5f\xec" => "\x8f\xbd\xc8", +"\x5f\xed" => "\x8f\xbd\xc9", +"\x5f\xee" => "\x8f\xbd\xca", +"\x5f\xef" => "\x8f\xbd\xcb", +"\x5f\xf0" => "\xd8\xad", +"\x5f\xf1" => "\xd7\xda", +"\x5f\xf2" => "\x8f\xbd\xcc", +"\x5f\xf3" => "\x8f\xbd\xcd", +"\x5f\xf5" => "\xc7\xb0", +"\x5f\xf6" => "\x8f\xbd\xce", +"\x5f\xf8" => "\xd7\xd9", +"\x5f\xfa" => "\x8f\xbd\xcf", +"\x5f\xfb" => "\xd7\xd7", +"\x5f\xfc" => "\x8f\xbd\xd0", +"\x5f\xfd" => "\xb9\xfa", +"\x5f\xff" => "\xd7\xdd", +"\x60\x07" => "\x8f\xbd\xd1", +"\x60\x0a" => "\x8f\xbd\xd2", +"\x60\x0d" => "\x8f\xbd\xd3", +"\x60\x0e" => "\xd7\xe3", +"\x60\x0f" => "\xd7\xe9", +"\x60\x10" => "\xd7\xe1", +"\x60\x12" => "\xc5\xdc", +"\x60\x13" => "\x8f\xbd\xd4", +"\x60\x14" => "\x8f\xbd\xd5", +"\x60\x15" => "\xd7\xe6", +"\x60\x16" => "\xc9\xdd", +"\x60\x17" => "\x8f\xbd\xd6", +"\x60\x18" => "\x8f\xbd\xd7", +"\x60\x19" => "\xd7\xe0", +"\x60\x1a" => "\x8f\xbd\xd8", +"\x60\x1b" => "\xd7\xe5", +"\x60\x1c" => "\xce\xe7", +"\x60\x1d" => "\xbb\xd7", +"\x60\x1f" => "\x8f\xbd\xd9", +"\x60\x20" => "\xc2\xd5", +"\x60\x21" => "\xd7\xde", +"\x60\x24" => "\x8f\xbd\xda", +"\x60\x25" => "\xb5\xde", +"\x60\x26" => "\xd7\xe8", +"\x60\x27" => "\xc0\xad", +"\x60\x28" => "\xb1\xe5", +"\x60\x29" => "\xd7\xe2", +"\x60\x2a" => "\xb2\xf8", +"\x60\x2b" => "\xd7\xe7", +"\x60\x2d" => "\x8f\xbd\xdb", +"\x60\x2f" => "\xb6\xb1", +"\x60\x31" => "\xd7\xe4", +"\x60\x33" => "\x8f\xbd\xdc", +"\x60\x35" => "\x8f\xbd\xdd", +"\x60\x3a" => "\xd7\xea", +"\x60\x40" => "\x8f\xbd\xde", +"\x60\x41" => "\xd7\xec", +"\x60\x42" => "\xd7\xf6", +"\x60\x43" => "\xd7\xf4", +"\x60\x46" => "\xd7\xf1", +"\x60\x47" => "\x8f\xbd\xdf", +"\x60\x48" => "\x8f\xbd\xe0", +"\x60\x49" => "\x8f\xbd\xe1", +"\x60\x4a" => "\xd7\xf0", +"\x60\x4b" => "\xce\xf8", +"\x60\x4c" => "\x8f\xbd\xe2", +"\x60\x4d" => "\xd7\xf2", +"\x60\x50" => "\xb6\xb2", +"\x60\x51" => "\x8f\xbd\xe3", +"\x60\x52" => "\xb9\xb1", +"\x60\x54" => "\x8f\xbd\xe4", +"\x60\x55" => "\xbd\xfa", +"\x60\x56" => "\x8f\xbd\xe5", +"\x60\x57" => "\x8f\xbd\xe6", +"\x60\x59" => "\xd7\xf9", +"\x60\x5a" => "\xd7\xeb", +"\x60\x5d" => "\x8f\xbd\xe7", +"\x60\x5f" => "\xd7\xef", +"\x60\x60" => "\xd7\xdf", +"\x60\x61" => "\x8f\xbd\xe8", +"\x60\x62" => "\xb2\xfa", +"\x60\x63" => "\xd7\xf3", +"\x60\x64" => "\xd7\xf5", +"\x60\x65" => "\xc3\xd1", +"\x60\x67" => "\x8f\xbd\xe9", +"\x60\x68" => "\xba\xa8", +"\x60\x69" => "\xb2\xb8", +"\x60\x6a" => "\xd7\xed", +"\x60\x6b" => "\xd7\xf8", +"\x60\x6c" => "\xd7\xf7", +"\x60\x6d" => "\xb6\xb3", +"\x60\x6f" => "\xc2\xa9", +"\x60\x70" => "\xb3\xe6", +"\x60\x71" => "\x8f\xbd\xea", +"\x60\x75" => "\xb7\xc3", +"\x60\x77" => "\xd7\xee", +"\x60\x7e" => "\x8f\xbd\xeb", +"\x60\x7f" => "\x8f\xbd\xec", +"\x60\x81" => "\xd7\xfa", +"\x60\x82" => "\x8f\xbd\xed", +"\x60\x83" => "\xd7\xfd", +"\x60\x84" => "\xd8\xa1", +"\x60\x86" => "\x8f\xbd\xee", +"\x60\x88" => "\x8f\xbd\xef", +"\x60\x89" => "\xbc\xbd", +"\x60\x8a" => "\x8f\xbd\xf0", +"\x60\x8b" => "\xd8\xa7", +"\x60\x8c" => "\xc4\xf0", +"\x60\x8d" => "\xd7\xfb", +"\x60\x8e" => "\x8f\xbd\xf1", +"\x60\x91" => "\x8f\xbd\xf2", +"\x60\x92" => "\xd8\xa5", +"\x60\x93" => "\x8f\xbd\xf3", +"\x60\x94" => "\xb2\xf9", +"\x60\x95" => "\x8f\xbd\xf4", +"\x60\x96" => "\xd8\xa3", +"\x60\x97" => "\xd8\xa4", +"\x60\x98" => "\x8f\xbd\xf5", +"\x60\x9a" => "\xd7\xfe", +"\x60\x9b" => "\xd8\xa2", +"\x60\x9d" => "\x8f\xbd\xf6", +"\x60\x9e" => "\x8f\xbd\xf7", +"\x60\x9f" => "\xb8\xe7", +"\x60\xa0" => "\xcd\xaa", +"\x60\xa2" => "\x8f\xbd\xf8", +"\x60\xa3" => "\xb4\xb5", +"\x60\xa4" => "\x8f\xbd\xf9", +"\x60\xa5" => "\x8f\xbd\xfa", +"\x60\xa6" => "\xb1\xd9", +"\x60\xa7" => "\xd8\xa6", +"\x60\xa8" => "\x8f\xbd\xfb", +"\x60\xa9" => "\xc7\xba", +"\x60\xaa" => "\xb0\xad", +"\x60\xb0" => "\x8f\xbd\xfc", +"\x60\xb1" => "\x8f\xbd\xfd", +"\x60\xb2" => "\xc8\xe1", +"\x60\xb3" => "\xd7\xdc", +"\x60\xb4" => "\xd8\xac", +"\x60\xb5" => "\xd8\xb0", +"\x60\xb6" => "\xcc\xe5", +"\x60\xb7" => "\x8f\xbd\xfe", +"\x60\xb8" => "\xd8\xa9", +"\x60\xbb" => "\x8f\xbe\xa1", +"\x60\xbc" => "\xc5\xe9", +"\x60\xbd" => "\xd8\xae", +"\x60\xbe" => "\x8f\xbe\xa2", +"\x60\xc2" => "\x8f\xbe\xa3", +"\x60\xc4" => "\x8f\xbe\xa4", +"\x60\xc5" => "\xbe\xf0", +"\x60\xc6" => "\xd8\xaf", +"\x60\xc7" => "\xc6\xd7", +"\x60\xc8" => "\x8f\xbe\xa5", +"\x60\xc9" => "\x8f\xbe\xa6", +"\x60\xca" => "\x8f\xbe\xa7", +"\x60\xcb" => "\x8f\xbe\xa8", +"\x60\xce" => "\x8f\xbe\xa9", +"\x60\xcf" => "\x8f\xbe\xaa", +"\x60\xd1" => "\xcf\xc7", +"\x60\xd3" => "\xd8\xab", +"\x60\xd4" => "\x8f\xbe\xab", +"\x60\xd5" => "\x8f\xbe\xac", +"\x60\xd8" => "\xd8\xb1", +"\x60\xd9" => "\x8f\xbe\xad", +"\x60\xda" => "\xb9\xfb", +"\x60\xdb" => "\x8f\xbe\xae", +"\x60\xdc" => "\xc0\xcb", +"\x60\xdd" => "\x8f\xbe\xaf", +"\x60\xde" => "\x8f\xbe\xb0", +"\x60\xdf" => "\xb0\xd4", +"\x60\xe0" => "\xd8\xaa", +"\x60\xe1" => "\xd8\xa8", +"\x60\xe2" => "\x8f\xbe\xb1", +"\x60\xe3" => "\xc1\xda", +"\x60\xe5" => "\x8f\xbe\xb2", +"\x60\xe7" => "\xd7\xfc", +"\x60\xe8" => "\xbb\xb4", +"\x60\xf0" => "\xc2\xc6", +"\x60\xf1" => "\xd8\xbd", +"\x60\xf2" => "\x8f\xbe\xb3", +"\x60\xf3" => "\xc1\xdb", +"\x60\xf4" => "\xd8\xb8", +"\x60\xf5" => "\x8f\xbe\xb4", +"\x60\xf6" => "\xd8\xb5", +"\x60\xf7" => "\xd8\xb6", +"\x60\xf8" => "\x8f\xbe\xb5", +"\x60\xf9" => "\xbc\xe6", +"\x60\xfa" => "\xd8\xb9", +"\x60\xfb" => "\xd8\xbc", +"\x60\xfc" => "\x8f\xbe\xb6", +"\x60\xfd" => "\x8f\xbe\xb7", +"\x61\x00" => "\xd8\xb7", +"\x61\x01" => "\xbd\xa5", +"\x61\x02" => "\x8f\xbe\xb8", +"\x61\x03" => "\xd8\xba", +"\x61\x06" => "\xd8\xb4", +"\x61\x07" => "\x8f\xbe\xb9", +"\x61\x08" => "\xcc\xfc", +"\x61\x09" => "\xcc\xfb", +"\x61\x0a" => "\x8f\xbe\xba", +"\x61\x0c" => "\x8f\xbe\xbb", +"\x61\x0d" => "\xd8\xbe", +"\x61\x0e" => "\xd8\xbf", +"\x61\x0f" => "\xb0\xd5", +"\x61\x10" => "\x8f\xbe\xbc", +"\x61\x11" => "\x8f\xbe\xbd", +"\x61\x12" => "\x8f\xbe\xbe", +"\x61\x13" => "\x8f\xbe\xbf", +"\x61\x14" => "\x8f\xbe\xc0", +"\x61\x15" => "\xd8\xb3", +"\x61\x16" => "\x8f\xbe\xc1", +"\x61\x17" => "\x8f\xbe\xc2", +"\x61\x19" => "\x8f\xbe\xc3", +"\x61\x1a" => "\xb6\xf2", +"\x61\x1b" => "\xb0\xa6", +"\x61\x1c" => "\x8f\xbe\xc4", +"\x61\x1e" => "\x8f\xbe\xc5", +"\x61\x1f" => "\xb4\xb6", +"\x61\x21" => "\xd8\xbb", +"\x61\x22" => "\x8f\xbe\xc6", +"\x61\x27" => "\xd8\xc3", +"\x61\x28" => "\xd8\xc2", +"\x61\x2a" => "\x8f\xbe\xc7", +"\x61\x2b" => "\x8f\xbe\xc8", +"\x61\x2c" => "\xd8\xc7", +"\x61\x30" => "\x8f\xbe\xc9", +"\x61\x31" => "\x8f\xbe\xca", +"\x61\x34" => "\xd8\xc8", +"\x61\x35" => "\x8f\xbe\xcb", +"\x61\x36" => "\x8f\xbe\xcc", +"\x61\x37" => "\x8f\xbe\xcd", +"\x61\x39" => "\x8f\xbe\xce", +"\x61\x3c" => "\xd8\xc6", +"\x61\x3d" => "\xd8\xc9", +"\x61\x3e" => "\xd8\xc1", +"\x61\x3f" => "\xd8\xc5", +"\x61\x41" => "\x8f\xbe\xcf", +"\x61\x42" => "\xd8\xca", +"\x61\x44" => "\xd8\xcb", +"\x61\x45" => "\x8f\xbe\xd0", +"\x61\x46" => "\x8f\xbe\xd1", +"\x61\x47" => "\xd8\xc0", +"\x61\x48" => "\xbb\xfc", +"\x61\x49" => "\x8f\xbe\xd2", +"\x61\x4a" => "\xd8\xc4", +"\x61\x4b" => "\xc2\xd6", +"\x61\x4c" => "\xb9\xb2", +"\x61\x4d" => "\xd8\xb2", +"\x61\x4e" => "\xbf\xb5", +"\x61\x53" => "\xd8\xd8", +"\x61\x55" => "\xca\xe9", +"\x61\x58" => "\xd8\xce", +"\x61\x59" => "\xd8\xcf", +"\x61\x5a" => "\xd8\xd0", +"\x61\x5d" => "\xd8\xd7", +"\x61\x5e" => "\x8f\xbe\xd3", +"\x61\x5f" => "\xd8\xd6", +"\x61\x60" => "\x8f\xbe\xd4", +"\x61\x62" => "\xcb\xfd", +"\x61\x63" => "\xb4\xb7", +"\x61\x65" => "\xd8\xd4", +"\x61\x67" => "\xb7\xc5", +"\x61\x68" => "\xb3\xb4", +"\x61\x6b" => "\xd8\xd1", +"\x61\x6c" => "\x8f\xbe\xd5", +"\x61\x6e" => "\xce\xb8", +"\x61\x6f" => "\xd8\xd3", +"\x61\x70" => "\xb0\xd6", +"\x61\x71" => "\xd8\xd5", +"\x61\x72" => "\x8f\xbe\xd6", +"\x61\x73" => "\xd8\xcc", +"\x61\x74" => "\xd8\xd2", +"\x61\x75" => "\xd8\xd9", +"\x61\x76" => "\xb7\xc4", +"\x61\x77" => "\xd8\xcd", +"\x61\x78" => "\x8f\xbe\xd7", +"\x61\x7b" => "\x8f\xbe\xd8", +"\x61\x7c" => "\x8f\xbe\xd9", +"\x61\x7e" => "\xcd\xdd", +"\x61\x7f" => "\x8f\xbe\xda", +"\x61\x80" => "\x8f\xbe\xdb", +"\x61\x81" => "\x8f\xbe\xdc", +"\x61\x82" => "\xcd\xab", +"\x61\x83" => "\x8f\xbe\xdd", +"\x61\x84" => "\x8f\xbe\xde", +"\x61\x87" => "\xd8\xdc", +"\x61\x8a" => "\xd8\xe0", +"\x61\x8b" => "\x8f\xbe\xdf", +"\x61\x8d" => "\x8f\xbe\xe0", +"\x61\x8e" => "\xc1\xfe", +"\x61\x90" => "\xce\xf9", +"\x61\x91" => "\xd8\xe1", +"\x61\x92" => "\x8f\xbe\xe1", +"\x61\x93" => "\x8f\xbe\xe2", +"\x61\x94" => "\xd8\xde", +"\x61\x96" => "\xd8\xdb", +"\x61\x97" => "\x8f\xbe\xe3", +"\x61\x98" => "\x8f\xbe\xe4", +"\x61\x99" => "\xd8\xda", +"\x61\x9a" => "\xd8\xdf", +"\x61\x9c" => "\x8f\xbe\xe5", +"\x61\x9d" => "\x8f\xbe\xe6", +"\x61\x9f" => "\x8f\xbe\xe7", +"\x61\xa0" => "\x8f\xbe\xe8", +"\x61\xa4" => "\xca\xb0", +"\x61\xa5" => "\x8f\xbe\xe9", +"\x61\xa7" => "\xc6\xb4", +"\x61\xa8" => "\x8f\xbe\xea", +"\x61\xa9" => "\xb7\xc6", +"\x61\xaa" => "\x8f\xbe\xeb", +"\x61\xab" => "\xd8\xe2", +"\x61\xac" => "\xd8\xdd", +"\x61\xad" => "\x8f\xbe\xec", +"\x61\xae" => "\xd8\xe3", +"\x61\xb2" => "\xb7\xfb", +"\x61\xb6" => "\xb2\xb1", +"\x61\xb8" => "\x8f\xbe\xed", +"\x61\xb9" => "\x8f\xbe\xee", +"\x61\xba" => "\xd8\xeb", +"\x61\xbc" => "\x8f\xbe\xef", +"\x61\xbe" => "\xb4\xb8", +"\x61\xc0" => "\x8f\xbe\xf0", +"\x61\xc1" => "\x8f\xbe\xf1", +"\x61\xc2" => "\x8f\xbe\xf2", +"\x61\xc3" => "\xd8\xe9", +"\x61\xc6" => "\xd8\xea", +"\x61\xc7" => "\xba\xa9", +"\x61\xc8" => "\xd8\xe8", +"\x61\xc9" => "\xd8\xe6", +"\x61\xca" => "\xd8\xe5", +"\x61\xcb" => "\xd8\xec", +"\x61\xcc" => "\xd8\xe4", +"\x61\xcd" => "\xd8\xee", +"\x61\xce" => "\x8f\xbe\xf3", +"\x61\xcf" => "\x8f\xbe\xf4", +"\x61\xd0" => "\xb2\xfb", +"\x61\xd5" => "\x8f\xbe\xf5", +"\x61\xdc" => "\x8f\xbe\xf6", +"\x61\xdd" => "\x8f\xbe\xf7", +"\x61\xde" => "\x8f\xbe\xf8", +"\x61\xdf" => "\x8f\xbe\xf9", +"\x61\xe1" => "\x8f\xbe\xfa", +"\x61\xe2" => "\x8f\xbe\xfb", +"\x61\xe3" => "\xd8\xf0", +"\x61\xe5" => "\x8f\xbe\xfe", +"\x61\xe6" => "\xd8\xef", +"\x61\xe7" => "\x8f\xbe\xfc", +"\x61\xe9" => "\x8f\xbe\xfd", +"\x61\xec" => "\x8f\xbf\xa1", +"\x61\xed" => "\x8f\xbf\xa2", +"\x61\xef" => "\x8f\xbf\xa3", +"\x61\xf2" => "\xc4\xa8", +"\x61\xf4" => "\xd8\xf3", +"\x61\xf6" => "\xd8\xf1", +"\x61\xf7" => "\xd8\xe7", +"\x61\xf8" => "\xb7\xfc", +"\x61\xfa" => "\xd8\xf2", +"\x61\xfc" => "\xd8\xf6", +"\x61\xfd" => "\xd8\xf5", +"\x61\xfe" => "\xd8\xf7", +"\x61\xff" => "\xd8\xf4", +"\x62\x00" => "\xd8\xf8", +"\x62\x01" => "\x8f\xbf\xa4", +"\x62\x03" => "\x8f\xbf\xa5", +"\x62\x04" => "\x8f\xbf\xa6", +"\x62\x07" => "\x8f\xbf\xa7", +"\x62\x08" => "\xd8\xf9", +"\x62\x09" => "\xd8\xfa", +"\x62\x0a" => "\xca\xea", +"\x62\x0c" => "\xd8\xfc", +"\x62\x0d" => "\xd8\xfb", +"\x62\x0e" => "\xbd\xbf", +"\x62\x10" => "\xc0\xae", +"\x62\x11" => "\xb2\xe6", +"\x62\x12" => "\xb2\xfc", +"\x62\x13" => "\x8f\xbf\xa8", +"\x62\x14" => "\xd8\xfd", +"\x62\x15" => "\x8f\xbf\xa9", +"\x62\x16" => "\xb0\xbf", +"\x62\x1a" => "\xc0\xcc", +"\x62\x1b" => "\xd8\xfe", +"\x62\x1c" => "\x8f\xbf\xaa", +"\x62\x1d" => "\xec\xc3", +"\x62\x1e" => "\xd9\xa1", +"\x62\x1f" => "\xb7\xe1", +"\x62\x20" => "\x8f\xbf\xab", +"\x62\x21" => "\xd9\xa2", +"\x62\x22" => "\x8f\xbf\xac", +"\x62\x23" => "\x8f\xbf\xad", +"\x62\x26" => "\xc0\xef", +"\x62\x27" => "\x8f\xbf\xae", +"\x62\x29" => "\x8f\xbf\xaf", +"\x62\x2a" => "\xd9\xa3", +"\x62\x2b" => "\x8f\xbf\xb0", +"\x62\x2e" => "\xd9\xa4", +"\x62\x2f" => "\xb5\xba", +"\x62\x30" => "\xd9\xa5", +"\x62\x32" => "\xd9\xa6", +"\x62\x33" => "\xd9\xa7", +"\x62\x34" => "\xc2\xd7", +"\x62\x38" => "\xb8\xcd", +"\x62\x39" => "\x8f\xbf\xb1", +"\x62\x3b" => "\xcc\xe1", +"\x62\x3d" => "\x8f\xbf\xb2", +"\x62\x3f" => "\xcb\xbc", +"\x62\x40" => "\xbd\xea", +"\x62\x41" => "\xd9\xa8", +"\x62\x42" => "\x8f\xbf\xb3", +"\x62\x43" => "\x8f\xbf\xb4", +"\x62\x44" => "\x8f\xbf\xb5", +"\x62\x46" => "\x8f\xbf\xb6", +"\x62\x47" => "\xc0\xf0", +"\x62\x48" => "\xee\xbd", +"\x62\x49" => "\xc8\xe2", +"\x62\x4b" => "\xbc\xea", +"\x62\x4c" => "\x8f\xbf\xb7", +"\x62\x4d" => "\xba\xcd", +"\x62\x4e" => "\xd9\xa9", +"\x62\x50" => "\x8f\xbf\xb8", +"\x62\x51" => "\x8f\xbf\xb9", +"\x62\x52" => "\x8f\xbf\xba", +"\x62\x53" => "\xc2\xc7", +"\x62\x54" => "\x8f\xbf\xbb", +"\x62\x55" => "\xca\xa7", +"\x62\x56" => "\x8f\xbf\xbc", +"\x62\x58" => "\xc2\xf1", +"\x62\x5a" => "\x8f\xbf\xbd", +"\x62\x5b" => "\xd9\xac", +"\x62\x5c" => "\x8f\xbf\xbe", +"\x62\x5e" => "\xd9\xaa", +"\x62\x60" => "\xd9\xad", +"\x62\x63" => "\xd9\xab", +"\x62\x64" => "\x8f\xbf\xbf", +"\x62\x68" => "\xd9\xae", +"\x62\x6d" => "\x8f\xbf\xc0", +"\x62\x6e" => "\xca\xb1", +"\x62\x6f" => "\x8f\xbf\xc1", +"\x62\x71" => "\xb0\xb7", +"\x62\x73" => "\x8f\xbf\xc2", +"\x62\x76" => "\xc9\xde", +"\x62\x79" => "\xc8\xe3", +"\x62\x7a" => "\x8f\xbf\xc3", +"\x62\x7c" => "\xd9\xaf", +"\x62\x7d" => "\x8f\xbf\xc4", +"\x62\x7e" => "\xd9\xb2", +"\x62\x7f" => "\xbe\xb5", +"\x62\x80" => "\xb5\xbb", +"\x62\x82" => "\xd9\xb0", +"\x62\x83" => "\xd9\xb7", +"\x62\x84" => "\xbe\xb6", +"\x62\x89" => "\xd9\xb1", +"\x62\x8a" => "\xc7\xc4", +"\x62\x8d" => "\x8f\xbf\xc5", +"\x62\x8e" => "\x8f\xbf\xc6", +"\x62\x8f" => "\x8f\xbf\xc7", +"\x62\x90" => "\x8f\xbf\xc8", +"\x62\x91" => "\xcd\xde", +"\x62\x92" => "\xd9\xb3", +"\x62\x93" => "\xd9\xb4", +"\x62\x94" => "\xd9\xb8", +"\x62\x95" => "\xc5\xea", +"\x62\x96" => "\xd9\xb5", +"\x62\x97" => "\xb9\xb3", +"\x62\x98" => "\xc0\xde", +"\x62\x9b" => "\xd9\xc6", +"\x62\x9c" => "\xc8\xb4", +"\x62\x9e" => "\xc2\xf2", +"\x62\xa6" => "\x8f\xbf\xc9", +"\x62\xa8" => "\x8f\xbf\xca", +"\x62\xab" => "\xc8\xe4", +"\x62\xac" => "\xda\xad", +"\x62\xb1" => "\xca\xfa", +"\x62\xb3" => "\x8f\xbf\xcb", +"\x62\xb5" => "\xc4\xf1", +"\x62\xb6" => "\x8f\xbf\xcc", +"\x62\xb7" => "\x8f\xbf\xcd", +"\x62\xb9" => "\xcb\xf5", +"\x62\xba" => "\x8f\xbf\xce", +"\x62\xbb" => "\xd9\xbb", +"\x62\xbc" => "\xb2\xa1", +"\x62\xbd" => "\xc3\xea", +"\x62\xbe" => "\x8f\xbf\xcf", +"\x62\xbf" => "\x8f\xbf\xd0", +"\x62\xc2" => "\xd9\xc4", +"\x62\xc4" => "\x8f\xbf\xd1", +"\x62\xc5" => "\xc3\xb4", +"\x62\xc6" => "\xd9\xbe", +"\x62\xc7" => "\xd9\xc5", +"\x62\xc8" => "\xd9\xc0", +"\x62\xc9" => "\xd9\xc7", +"\x62\xca" => "\xd9\xc3", +"\x62\xcc" => "\xd9\xc2", +"\x62\xcd" => "\xc7\xef", +"\x62\xce" => "\x8f\xbf\xd2", +"\x62\xcf" => "\xd9\xbc", +"\x62\xd0" => "\xb2\xfd", +"\x62\xd1" => "\xd9\xba", +"\x62\xd2" => "\xb5\xf1", +"\x62\xd3" => "\xc2\xf3", +"\x62\xd4" => "\xd9\xb6", +"\x62\xd5" => "\x8f\xbf\xd3", +"\x62\xd6" => "\x8f\xbf\xd4", +"\x62\xd7" => "\xd9\xb9", +"\x62\xd8" => "\xb9\xb4", +"\x62\xd9" => "\xc0\xdb", +"\x62\xda" => "\x8f\xbf\xd5", +"\x62\xdb" => "\xbe\xb7", +"\x62\xdc" => "\xd9\xc1", +"\x62\xdd" => "\xc7\xd2", +"\x62\xe0" => "\xb5\xf2", +"\x62\xe1" => "\xb3\xc8", +"\x62\xea" => "\x8f\xbf\xd6", +"\x62\xec" => "\xb3\xe7", +"\x62\xed" => "\xbf\xa1", +"\x62\xee" => "\xd9\xc9", +"\x62\xef" => "\xd9\xce", +"\x62\xf1" => "\xd9\xca", +"\x62\xf2" => "\x8f\xbf\xd7", +"\x62\xf3" => "\xb7\xfd", +"\x62\xf4" => "\x8f\xbf\xd8", +"\x62\xf5" => "\xd9\xcf", +"\x62\xf6" => "\xbb\xa2", +"\x62\xf7" => "\xb9\xe9", +"\x62\xfc" => "\x8f\xbf\xd9", +"\x62\xfd" => "\x8f\xbf\xda", +"\x62\xfe" => "\xbd\xa6", +"\x62\xff" => "\xd9\xbd", +"\x63\x01" => "\xbb\xfd", +"\x63\x02" => "\xd9\xcc", +"\x63\x03" => "\x8f\xbf\xdb", +"\x63\x04" => "\x8f\xbf\xdc", +"\x63\x07" => "\xbb\xd8", +"\x63\x08" => "\xd9\xcd", +"\x63\x09" => "\xb0\xc4", +"\x63\x0a" => "\x8f\xbf\xdd", +"\x63\x0b" => "\x8f\xbf\xde", +"\x63\x0c" => "\xd9\xc8", +"\x63\x0d" => "\x8f\xbf\xdf", +"\x63\x10" => "\x8f\xbf\xe0", +"\x63\x11" => "\xc4\xa9", +"\x63\x13" => "\x8f\xbf\xe1", +"\x63\x16" => "\x8f\xbf\xe2", +"\x63\x18" => "\x8f\xbf\xe3", +"\x63\x19" => "\xb5\xf3", +"\x63\x1f" => "\xb6\xb4", +"\x63\x27" => "\xd9\xcb", +"\x63\x28" => "\xb0\xa7", +"\x63\x29" => "\x8f\xbf\xe4", +"\x63\x2a" => "\x8f\xbf\xe5", +"\x63\x2b" => "\xba\xc3", +"\x63\x2d" => "\x8f\xbf\xe6", +"\x63\x2f" => "\xbf\xb6", +"\x63\x35" => "\x8f\xbf\xe7", +"\x63\x36" => "\x8f\xbf\xe8", +"\x63\x39" => "\x8f\xbf\xe9", +"\x63\x3a" => "\xc4\xf2", +"\x63\x3c" => "\x8f\xbf\xea", +"\x63\x3d" => "\xc8\xd4", +"\x63\x3e" => "\xd9\xd1", +"\x63\x3f" => "\xc1\xde", +"\x63\x41" => "\x8f\xbf\xeb", +"\x63\x42" => "\x8f\xbf\xec", +"\x63\x43" => "\x8f\xbf\xed", +"\x63\x44" => "\x8f\xbf\xee", +"\x63\x46" => "\x8f\xbf\xef", +"\x63\x49" => "\xc2\xaa", +"\x63\x4a" => "\x8f\xbf\xf0", +"\x63\x4b" => "\x8f\xbf\xf1", +"\x63\x4c" => "\xbb\xab", +"\x63\x4d" => "\xd9\xd2", +"\x63\x4e" => "\x8f\xbf\xf2", +"\x63\x4f" => "\xd9\xd4", +"\x63\x50" => "\xd9\xd0", +"\x63\x52" => "\x8f\xbf\xf3", +"\x63\x53" => "\x8f\xbf\xf4", +"\x63\x54" => "\x8f\xbf\xf5", +"\x63\x55" => "\xca\xe1", +"\x63\x57" => "\xc4\xbd", +"\x63\x58" => "\x8f\xbf\xf6", +"\x63\x5b" => "\x8f\xbf\xf7", +"\x63\x5c" => "\xc1\xdc", +"\x63\x65" => "\x8f\xbf\xf8", +"\x63\x66" => "\x8f\xbf\xf9", +"\x63\x67" => "\xca\xfb", +"\x63\x68" => "\xbc\xce", +"\x63\x69" => "\xd9\xe0", +"\x63\x6b" => "\xd9\xdf", +"\x63\x6c" => "\x8f\xbf\xfa", +"\x63\x6d" => "\x8f\xbf\xfb", +"\x63\x6e" => "\xbf\xf8", +"\x63\x71" => "\x8f\xbf\xfc", +"\x63\x72" => "\xb7\xfe", +"\x63\x74" => "\x8f\xbf\xfd", +"\x63\x75" => "\x8f\xbf\xfe", +"\x63\x76" => "\xd9\xd9", +"\x63\x77" => "\xbe\xb9", +"\x63\x78" => "\x8f\xc0\xa1", +"\x63\x7a" => "\xc6\xe8", +"\x63\x7b" => "\xc7\xb1", +"\x63\x7c" => "\x8f\xc0\xa2", +"\x63\x7d" => "\x8f\xc0\xa3", +"\x63\x7f" => "\x8f\xc0\xa4", +"\x63\x80" => "\xd9\xd7", +"\x63\x82" => "\x8f\xc0\xa5", +"\x63\x83" => "\xc1\xdd", +"\x63\x84" => "\x8f\xc0\xa6", +"\x63\x87" => "\x8f\xc0\xa7", +"\x63\x88" => "\xbc\xf8", +"\x63\x89" => "\xd9\xdc", +"\x63\x8a" => "\x8f\xc0\xa8", +"\x63\x8c" => "\xbe\xb8", +"\x63\x8e" => "\xd9\xd6", +"\x63\x8f" => "\xd9\xdb", +"\x63\x90" => "\x8f\xc0\xa9", +"\x63\x92" => "\xc7\xd3", +"\x63\x94" => "\x8f\xc0\xaa", +"\x63\x95" => "\x8f\xc0\xab", +"\x63\x96" => "\xd9\xd5", +"\x63\x98" => "\xb7\xa1", +"\x63\x99" => "\x8f\xc0\xac", +"\x63\x9a" => "\x8f\xc0\xad", +"\x63\x9b" => "\xb3\xdd", +"\x63\x9e" => "\x8f\xc0\xae", +"\x63\x9f" => "\xd9\xdd", +"\x63\xa0" => "\xce\xab", +"\x63\xa1" => "\xba\xce", +"\x63\xa2" => "\xc3\xb5", +"\x63\xa3" => "\xd9\xda", +"\x63\xa4" => "\x8f\xc0\xaf", +"\x63\xa5" => "\xc0\xdc", +"\x63\xa6" => "\x8f\xc0\xb0", +"\x63\xa7" => "\xb9\xb5", +"\x63\xa8" => "\xbf\xe4", +"\x63\xa9" => "\xb1\xe6", +"\x63\xaa" => "\xc1\xbc", +"\x63\xab" => "\xd9\xd8", +"\x63\xac" => "\xb5\xc5", +"\x63\xad" => "\x8f\xc0\xb1", +"\x63\xae" => "\x8f\xc0\xb2", +"\x63\xaf" => "\x8f\xc0\xb3", +"\x63\xb2" => "\xb7\xc7", +"\x63\xb4" => "\xc4\xcf", +"\x63\xb5" => "\xd9\xde", +"\x63\xbb" => "\xc1\xdf", +"\x63\xbd" => "\x8f\xc0\xb4", +"\x63\xbe" => "\xd9\xe1", +"\x63\xc0" => "\xd9\xe3", +"\x63\xc1" => "\x8f\xc0\xb5", +"\x63\xc3" => "\xc2\xb7", +"\x63\xc4" => "\xd9\xe9", +"\x63\xc5" => "\x8f\xc0\xb6", +"\x63\xc6" => "\xd9\xe4", +"\x63\xc8" => "\x8f\xc0\xb7", +"\x63\xc9" => "\xd9\xe6", +"\x63\xce" => "\x8f\xc0\xb8", +"\x63\xcf" => "\xc9\xc1", +"\x63\xd0" => "\xc4\xf3", +"\x63\xd1" => "\x8f\xc0\xb9", +"\x63\xd2" => "\xd9\xe7", +"\x63\xd3" => "\x8f\xc0\xba", +"\x63\xd4" => "\x8f\xc0\xbb", +"\x63\xd5" => "\x8f\xc0\xbc", +"\x63\xd6" => "\xcd\xac", +"\x63\xda" => "\xcd\xc8", +"\x63\xdb" => "\xb4\xb9", +"\x63\xdc" => "\x8f\xc0\xbd", +"\x63\xe0" => "\x8f\xc0\xbe", +"\x63\xe1" => "\xb0\xae", +"\x63\xe3" => "\xd9\xe5", +"\x63\xe5" => "\x8f\xc0\xbf", +"\x63\xe9" => "\xd9\xe2", +"\x63\xea" => "\x8f\xc0\xc0", +"\x63\xec" => "\x8f\xc0\xc1", +"\x63\xee" => "\xb4\xf8", +"\x63\xf2" => "\x8f\xc0\xc2", +"\x63\xf3" => "\x8f\xc0\xc3", +"\x63\xf4" => "\xb1\xe7", +"\x63\xf5" => "\x8f\xc0\xc4", +"\x63\xf6" => "\xd9\xe8", +"\x63\xf8" => "\x8f\xc0\xc5", +"\x63\xf9" => "\x8f\xc0\xc6", +"\x63\xfa" => "\xcd\xc9", +"\x64\x06" => "\xd9\xec", +"\x64\x09" => "\x8f\xc0\xc7", +"\x64\x0a" => "\x8f\xc0\xc8", +"\x64\x0d" => "\xc2\xbb", +"\x64\x0f" => "\xd9\xf3", +"\x64\x10" => "\x8f\xc0\xc9", +"\x64\x12" => "\x8f\xc0\xca", +"\x64\x13" => "\xd9\xed", +"\x64\x14" => "\x8f\xc0\xcb", +"\x64\x16" => "\xd9\xea", +"\x64\x17" => "\xd9\xf1", +"\x64\x18" => "\x8f\xc0\xcc", +"\x64\x1c" => "\xd9\xd3", +"\x64\x1e" => "\x8f\xc0\xcd", +"\x64\x20" => "\x8f\xc0\xce", +"\x64\x22" => "\x8f\xc0\xcf", +"\x64\x24" => "\x8f\xc0\xd0", +"\x64\x25" => "\x8f\xc0\xd1", +"\x64\x26" => "\xd9\xee", +"\x64\x28" => "\xd9\xf2", +"\x64\x29" => "\x8f\xc0\xd2", +"\x64\x2a" => "\x8f\xc0\xd3", +"\x64\x2c" => "\xc8\xc2", +"\x64\x2d" => "\xc5\xeb", +"\x64\x2f" => "\x8f\xc0\xd4", +"\x64\x30" => "\x8f\xc0\xd5", +"\x64\x34" => "\xd9\xeb", +"\x64\x35" => "\x8f\xc0\xd6", +"\x64\x36" => "\xd9\xef", +"\x64\x3a" => "\xb7\xc8", +"\x64\x3d" => "\x8f\xc0\xd7", +"\x64\x3e" => "\xba\xf1", +"\x64\x3f" => "\x8f\xc0\xd8", +"\x64\x42" => "\xc0\xdd", +"\x64\x4b" => "\x8f\xc0\xd9", +"\x64\x4e" => "\xd9\xf7", +"\x64\x4f" => "\x8f\xc0\xda", +"\x64\x51" => "\x8f\xc0\xdb", +"\x64\x52" => "\x8f\xc0\xdc", +"\x64\x53" => "\x8f\xc0\xdd", +"\x64\x54" => "\x8f\xc0\xde", +"\x64\x58" => "\xc5\xa6", +"\x64\x5a" => "\x8f\xc0\xdf", +"\x64\x5b" => "\x8f\xc0\xe0", +"\x64\x5c" => "\x8f\xc0\xe1", +"\x64\x5d" => "\x8f\xc0\xe2", +"\x64\x5f" => "\x8f\xc0\xe3", +"\x64\x60" => "\x8f\xc0\xe4", +"\x64\x61" => "\x8f\xc0\xe5", +"\x64\x63" => "\x8f\xc0\xe6", +"\x64\x67" => "\xd9\xf4", +"\x64\x69" => "\xcb\xe0", +"\x64\x6d" => "\x8f\xc0\xe7", +"\x64\x6f" => "\xd9\xf5", +"\x64\x73" => "\x8f\xc0\xe8", +"\x64\x74" => "\x8f\xc0\xe9", +"\x64\x76" => "\xd9\xf6", +"\x64\x78" => "\xcc\xce", +"\x64\x7a" => "\xc0\xa2", +"\x64\x7b" => "\x8f\xc0\xea", +"\x64\x7d" => "\x8f\xc0\xeb", +"\x64\x83" => "\xb7\xe2", +"\x64\x85" => "\x8f\xc0\xec", +"\x64\x87" => "\x8f\xc0\xed", +"\x64\x88" => "\xd9\xfd", +"\x64\x8f" => "\x8f\xc0\xee", +"\x64\x90" => "\x8f\xc0\xef", +"\x64\x91" => "\x8f\xc0\xf0", +"\x64\x92" => "\xbb\xb5", +"\x64\x93" => "\xd9\xfa", +"\x64\x95" => "\xd9\xf9", +"\x64\x98" => "\x8f\xc0\xf1", +"\x64\x99" => "\x8f\xc0\xf2", +"\x64\x9a" => "\xc7\xb2", +"\x64\x9b" => "\x8f\xc0\xf3", +"\x64\x9d" => "\x8f\xc0\xf4", +"\x64\x9e" => "\xc6\xb5", +"\x64\x9f" => "\x8f\xc0\xf5", +"\x64\xa1" => "\x8f\xc0\xf6", +"\x64\xa3" => "\x8f\xc0\xf7", +"\x64\xa4" => "\xc5\xb1", +"\x64\xa5" => "\xd9\xfb", +"\x64\xa6" => "\x8f\xc0\xf8", +"\x64\xa8" => "\x8f\xc0\xf9", +"\x64\xa9" => "\xd9\xfc", +"\x64\xab" => "\xc9\xef", +"\x64\xac" => "\x8f\xc0\xfa", +"\x64\xad" => "\xc7\xc5", +"\x64\xae" => "\xbb\xa3", +"\x64\xb0" => "\xc0\xf1", +"\x64\xb2" => "\xcb\xd0", +"\x64\xb3" => "\x8f\xc0\xfb", +"\x64\xb9" => "\xb3\xc9", +"\x64\xbb" => "\xda\xa5", +"\x64\xbc" => "\xd9\xfe", +"\x64\xbd" => "\x8f\xc0\xfc", +"\x64\xbe" => "\x8f\xc0\xfd", +"\x64\xbf" => "\x8f\xc0\xfe", +"\x64\xc1" => "\xcd\xca", +"\x64\xc2" => "\xda\xa7", +"\x64\xc4" => "\x8f\xc1\xa1", +"\x64\xc5" => "\xda\xa3", +"\x64\xc7" => "\xda\xa4", +"\x64\xc9" => "\x8f\xc1\xa2", +"\x64\xca" => "\x8f\xc1\xa3", +"\x64\xcb" => "\x8f\xc1\xa4", +"\x64\xcc" => "\x8f\xc1\xa5", +"\x64\xcd" => "\xc1\xe0", +"\x64\xce" => "\x8f\xc1\xa6", +"\x64\xd0" => "\x8f\xc1\xa7", +"\x64\xd1" => "\x8f\xc1\xa8", +"\x64\xd2" => "\xda\xa2", +"\x64\xd4" => "\xd9\xbf", +"\x64\xd5" => "\x8f\xc1\xa9", +"\x64\xd7" => "\x8f\xc1\xaa", +"\x64\xd8" => "\xda\xa6", +"\x64\xda" => "\xda\xa1", +"\x64\xe0" => "\xda\xab", +"\x64\xe1" => "\xda\xac", +"\x64\xe2" => "\xc5\xa7", +"\x64\xe3" => "\xda\xae", +"\x64\xe4" => "\x8f\xc1\xab", +"\x64\xe5" => "\x8f\xc1\xac", +"\x64\xe6" => "\xbb\xa4", +"\x64\xe7" => "\xda\xa9", +"\x64\xe9" => "\x8f\xc1\xad", +"\x64\xea" => "\x8f\xc1\xae", +"\x64\xec" => "\xb5\xbc", +"\x64\xed" => "\x8f\xc1\xaf", +"\x64\xef" => "\xda\xaf", +"\x64\xf0" => "\x8f\xc1\xb0", +"\x64\xf1" => "\xda\xa8", +"\x64\xf2" => "\xda\xb3", +"\x64\xf4" => "\xda\xb2", +"\x64\xf5" => "\x8f\xc1\xb1", +"\x64\xf6" => "\xda\xb1", +"\x64\xf7" => "\x8f\xc1\xb2", +"\x64\xfa" => "\xda\xb4", +"\x64\xfb" => "\x8f\xc1\xb3", +"\x64\xfd" => "\xda\xb6", +"\x64\xfe" => "\xbe\xf1", +"\x64\xff" => "\x8f\xc1\xb4", +"\x65\x00" => "\xda\xb5", +"\x65\x01" => "\x8f\xc1\xb5", +"\x65\x04" => "\x8f\xc1\xb6", +"\x65\x05" => "\xda\xb9", +"\x65\x08" => "\x8f\xc1\xb7", +"\x65\x09" => "\x8f\xc1\xb8", +"\x65\x0a" => "\x8f\xc1\xb9", +"\x65\x0f" => "\x8f\xc1\xba", +"\x65\x13" => "\x8f\xc1\xbb", +"\x65\x14" => "\x8f\xc1\xbc", +"\x65\x16" => "\x8f\xc1\xbd", +"\x65\x18" => "\xda\xb7", +"\x65\x19" => "\x8f\xc1\xbe", +"\x65\x1b" => "\x8f\xc1\xbf", +"\x65\x1c" => "\xda\xb8", +"\x65\x1d" => "\xd9\xf0", +"\x65\x1e" => "\x8f\xc1\xc0", +"\x65\x1f" => "\x8f\xc1\xc1", +"\x65\x22" => "\x8f\xc1\xc2", +"\x65\x23" => "\xda\xbb", +"\x65\x24" => "\xda\xba", +"\x65\x26" => "\x8f\xc1\xc3", +"\x65\x29" => "\x8f\xc1\xc4", +"\x65\x2a" => "\xd9\xf8", +"\x65\x2b" => "\xda\xbc", +"\x65\x2c" => "\xda\xb0", +"\x65\x2e" => "\x8f\xc1\xc5", +"\x65\x2f" => "\xbb\xd9", +"\x65\x31" => "\x8f\xc1\xc6", +"\x65\x34" => "\xda\xbd", +"\x65\x35" => "\xda\xbe", +"\x65\x36" => "\xda\xc0", +"\x65\x37" => "\xda\xbf", +"\x65\x38" => "\xda\xc1", +"\x65\x39" => "\xb2\xfe", +"\x65\x3a" => "\x8f\xc1\xc7", +"\x65\x3b" => "\xb9\xb6", +"\x65\x3c" => "\x8f\xc1\xc8", +"\x65\x3d" => "\x8f\xc1\xc9", +"\x65\x3e" => "\xca\xfc", +"\x65\x3f" => "\xc0\xaf", +"\x65\x43" => "\x8f\xc1\xca", +"\x65\x45" => "\xb8\xce", +"\x65\x47" => "\x8f\xc1\xcb", +"\x65\x48" => "\xda\xc3", +"\x65\x49" => "\x8f\xc1\xcc", +"\x65\x4d" => "\xda\xc6", +"\x65\x4f" => "\xc9\xd2", +"\x65\x50" => "\x8f\xc1\xcd", +"\x65\x51" => "\xb5\xdf", +"\x65\x52" => "\x8f\xc1\xce", +"\x65\x54" => "\x8f\xc1\xcf", +"\x65\x55" => "\xda\xc5", +"\x65\x56" => "\xda\xc4", +"\x65\x57" => "\xc7\xd4", +"\x65\x58" => "\xda\xc7", +"\x65\x59" => "\xb6\xb5", +"\x65\x5d" => "\xda\xc9", +"\x65\x5e" => "\xda\xc8", +"\x65\x5f" => "\x8f\xc1\xd0", +"\x65\x60" => "\x8f\xc1\xd1", +"\x65\x62" => "\xb4\xba", +"\x65\x63" => "\xbb\xb6", +"\x65\x66" => "\xc6\xd8", +"\x65\x67" => "\x8f\xc1\xd2", +"\x65\x6b" => "\x8f\xc1\xd3", +"\x65\x6c" => "\xb7\xc9", +"\x65\x70" => "\xbf\xf4", +"\x65\x72" => "\xda\xca", +"\x65\x74" => "\xc0\xb0", +"\x65\x75" => "\xc5\xa8", +"\x65\x77" => "\xc9\xdf", +"\x65\x78" => "\xda\xcb", +"\x65\x7a" => "\x8f\xc1\xd4", +"\x65\x7d" => "\x8f\xc1\xd5", +"\x65\x81" => "\x8f\xc1\xd6", +"\x65\x82" => "\xda\xcc", +"\x65\x83" => "\xda\xcd", +"\x65\x85" => "\x8f\xc1\xd7", +"\x65\x87" => "\xca\xb8", +"\x65\x88" => "\xd5\xdd", +"\x65\x89" => "\xc0\xc6", +"\x65\x8a" => "\x8f\xc1\xd8", +"\x65\x8c" => "\xc9\xcc", +"\x65\x8e" => "\xba\xd8", +"\x65\x90" => "\xc8\xe5", +"\x65\x91" => "\xc8\xc3", +"\x65\x92" => "\x8f\xc1\xd9", +"\x65\x95" => "\x8f\xc1\xda", +"\x65\x97" => "\xc5\xcd", +"\x65\x98" => "\x8f\xc1\xdb", +"\x65\x99" => "\xce\xc1", +"\x65\x9b" => "\xda\xcf", +"\x65\x9c" => "\xbc\xd0", +"\x65\x9d" => "\x8f\xc1\xdc", +"\x65\x9f" => "\xda\xd0", +"\x65\xa0" => "\x8f\xc1\xdd", +"\x65\xa1" => "\xb0\xb6", +"\x65\xa3" => "\x8f\xc1\xde", +"\x65\xa4" => "\xb6\xd4", +"\x65\xa5" => "\xc0\xcd", +"\x65\xa6" => "\x8f\xc1\xdf", +"\x65\xa7" => "\xc9\xe0", +"\x65\xab" => "\xda\xd1", +"\x65\xac" => "\xbb\xc2", +"\x65\xad" => "\xc3\xc7", +"\x65\xae" => "\x8f\xc1\xe0", +"\x65\xaf" => "\xbb\xdb", +"\x65\xb0" => "\xbf\xb7", +"\x65\xb2" => "\x8f\xc1\xe1", +"\x65\xb3" => "\x8f\xc1\xe2", +"\x65\xb4" => "\x8f\xc1\xe3", +"\x65\xb7" => "\xda\xd2", +"\x65\xb9" => "\xca\xfd", +"\x65\xbc" => "\xb1\xf7", +"\x65\xbd" => "\xbb\xdc", +"\x65\xbf" => "\x8f\xc1\xe4", +"\x65\xc1" => "\xda\xd5", +"\x65\xc2" => "\x8f\xc1\xe5", +"\x65\xc3" => "\xda\xd3", +"\x65\xc4" => "\xda\xd6", +"\x65\xc5" => "\xce\xb9", +"\x65\xc6" => "\xda\xd4", +"\x65\xc8" => "\x8f\xc1\xe6", +"\x65\xc9" => "\x8f\xc1\xe7", +"\x65\xcb" => "\xc0\xfb", +"\x65\xcc" => "\xda\xd7", +"\x65\xce" => "\x8f\xc1\xe8", +"\x65\xcf" => "\xc2\xb2", +"\x65\xd0" => "\x8f\xc1\xe9", +"\x65\xd2" => "\xda\xd8", +"\x65\xd4" => "\x8f\xc1\xea", +"\x65\xd6" => "\x8f\xc1\xeb", +"\x65\xd7" => "\xb4\xfa", +"\x65\xd8" => "\x8f\xc1\xec", +"\x65\xd9" => "\xda\xda", +"\x65\xdb" => "\xda\xd9", +"\x65\xdf" => "\x8f\xc1\xed", +"\x65\xe0" => "\xda\xdb", +"\x65\xe1" => "\xda\xdc", +"\x65\xe2" => "\xb4\xfb", +"\x65\xe5" => "\xc6\xfc", +"\x65\xe6" => "\xc3\xb6", +"\x65\xe7" => "\xb5\xec", +"\x65\xe8" => "\xbb\xdd", +"\x65\xe9" => "\xc1\xe1", +"\x65\xec" => "\xbd\xdc", +"\x65\xed" => "\xb0\xb0", +"\x65\xf0" => "\x8f\xc1\xee", +"\x65\xf1" => "\xda\xdd", +"\x65\xf2" => "\x8f\xc1\xef", +"\x65\xf4" => "\x8f\xc1\xf0", +"\x65\xf5" => "\x8f\xc1\xf1", +"\x65\xf9" => "\x8f\xc1\xf2", +"\x65\xfa" => "\xb2\xa2", +"\x65\xfb" => "\xda\xe1", +"\x65\xfe" => "\x8f\xc1\xf3", +"\x65\xff" => "\x8f\xc1\xf4", +"\x66\x00" => "\x8f\xc1\xf5", +"\x66\x02" => "\xb9\xb7", +"\x66\x03" => "\xda\xe0", +"\x66\x04" => "\x8f\xc1\xf6", +"\x66\x06" => "\xba\xab", +"\x66\x07" => "\xbe\xba", +"\x66\x08" => "\x8f\xc1\xf7", +"\x66\x09" => "\x8f\xc1\xf8", +"\x66\x0a" => "\xda\xdf", +"\x66\x0c" => "\xbe\xbb", +"\x66\x0d" => "\x8f\xc1\xf9", +"\x66\x0e" => "\xcc\xc0", +"\x66\x0f" => "\xba\xaa", +"\x66\x11" => "\x8f\xc1\xfa", +"\x66\x12" => "\x8f\xc1\xfb", +"\x66\x13" => "\xb0\xd7", +"\x66\x14" => "\xc0\xce", +"\x66\x15" => "\x8f\xc1\xfc", +"\x66\x16" => "\x8f\xc1\xfd", +"\x66\x1c" => "\xda\xe6", +"\x66\x1d" => "\x8f\xc1\xfe", +"\x66\x1e" => "\x8f\xc2\xa1", +"\x66\x1f" => "\xc0\xb1", +"\x66\x20" => "\xb1\xc7", +"\x66\x21" => "\x8f\xc2\xa2", +"\x66\x22" => "\x8f\xc2\xa3", +"\x66\x23" => "\x8f\xc2\xa4", +"\x66\x24" => "\x8f\xc2\xa5", +"\x66\x25" => "\xbd\xd5", +"\x66\x26" => "\x8f\xc2\xa6", +"\x66\x27" => "\xcb\xe6", +"\x66\x28" => "\xba\xf2", +"\x66\x29" => "\x8f\xc2\xa7", +"\x66\x2a" => "\x8f\xc2\xa8", +"\x66\x2b" => "\x8f\xc2\xa9", +"\x66\x2c" => "\x8f\xc2\xaa", +"\x66\x2d" => "\xbe\xbc", +"\x66\x2e" => "\x8f\xc2\xab", +"\x66\x2f" => "\xc0\xa7", +"\x66\x30" => "\x8f\xc2\xac", +"\x66\x31" => "\x8f\xc2\xad", +"\x66\x33" => "\x8f\xc2\xae", +"\x66\x34" => "\xda\xe5", +"\x66\x35" => "\xda\xe3", +"\x66\x36" => "\xda\xe4", +"\x66\x37" => "\x8f\xc2\xb0", +"\x66\x39" => "\x8f\xc2\xaf", +"\x66\x3c" => "\xc3\xeb", +"\x66\x3f" => "\xdb\xa6", +"\x66\x40" => "\x8f\xc2\xb1", +"\x66\x41" => "\xda\xea", +"\x66\x42" => "\xbb\xfe", +"\x66\x43" => "\xb9\xb8", +"\x66\x44" => "\xda\xe8", +"\x66\x45" => "\x8f\xc2\xb2", +"\x66\x46" => "\x8f\xc2\xb3", +"\x66\x49" => "\xda\xe9", +"\x66\x4a" => "\x8f\xc2\xb4", +"\x66\x4b" => "\xbf\xb8", +"\x66\x4c" => "\x8f\xc2\xb5", +"\x66\x4e" => "\x8f\xc2\xb7", +"\x66\x4f" => "\xda\xe7", +"\x66\x51" => "\x8f\xc2\xb6", +"\x66\x52" => "\xbb\xaf", +"\x66\x57" => "\x8f\xc2\xb8", +"\x66\x58" => "\x8f\xc2\xb9", +"\x66\x59" => "\x8f\xc2\xba", +"\x66\x5b" => "\x8f\xc2\xbb", +"\x66\x5c" => "\x8f\xc2\xbc", +"\x66\x5d" => "\xda\xec", +"\x66\x5e" => "\xda\xeb", +"\x66\x5f" => "\xda\xf0", +"\x66\x60" => "\x8f\xc2\xbd", +"\x66\x61" => "\x8f\xc2\xbe", +"\x66\x62" => "\xda\xf1", +"\x66\x64" => "\xda\xed", +"\x66\x66" => "\xb3\xa2", +"\x66\x67" => "\xda\xee", +"\x66\x68" => "\xda\xef", +"\x66\x69" => "\xc8\xd5", +"\x66\x6a" => "\x8f\xc2\xc0", +"\x66\x6b" => "\x8f\xc2\xc1", +"\x66\x6c" => "\x8f\xc2\xc2", +"\x66\x6e" => "\xc9\xe1", +"\x66\x6f" => "\xb7\xca", +"\x66\x70" => "\xda\xf2", +"\x66\x73" => "\x8f\xc2\xc4", +"\x66\x74" => "\xc0\xb2", +"\x66\x75" => "\x8f\xc2\xc5", +"\x66\x76" => "\xbe\xbd", +"\x66\x77" => "\x8f\xc2\xc7", +"\x66\x78" => "\x8f\xc2\xc8", +"\x66\x79" => "\x8f\xc2\xc9", +"\x66\x7a" => "\xc3\xd2", +"\x66\x7b" => "\x8f\xc2\xca", +"\x66\x7c" => "\x8f\xc2\xcc", +"\x66\x7e" => "\x8f\xc2\xc3", +"\x66\x7f" => "\x8f\xc2\xc6", +"\x66\x80" => "\x8f\xc2\xcb", +"\x66\x81" => "\xb6\xc7", +"\x66\x83" => "\xda\xf3", +"\x66\x84" => "\xda\xf7", +"\x66\x87" => "\xb2\xcb", +"\x66\x88" => "\xda\xf4", +"\x66\x89" => "\xda\xf6", +"\x66\x8b" => "\x8f\xc2\xcd", +"\x66\x8c" => "\x8f\xc2\xce", +"\x66\x8d" => "\x8f\xc2\xcf", +"\x66\x8e" => "\xda\xf5", +"\x66\x90" => "\x8f\xc2\xd0", +"\x66\x91" => "\xbd\xeb", +"\x66\x92" => "\x8f\xc2\xd1", +"\x66\x96" => "\xc3\xc8", +"\x66\x97" => "\xb0\xc5", +"\x66\x98" => "\xda\xf8", +"\x66\x99" => "\x8f\xc2\xd2", +"\x66\x9a" => "\x8f\xc2\xd3", +"\x66\x9b" => "\x8f\xc2\xd4", +"\x66\x9c" => "\x8f\xc2\xd5", +"\x66\x9d" => "\xda\xf9", +"\x66\x9f" => "\x8f\xc2\xd6", +"\x66\xa0" => "\x8f\xc2\xd7", +"\x66\xa2" => "\xc4\xaa", +"\x66\xa4" => "\x8f\xc2\xd8", +"\x66\xa6" => "\xce\xf1", +"\x66\xab" => "\xbb\xc3", +"\x66\xad" => "\x8f\xc2\xd9", +"\x66\xae" => "\xca\xeb", +"\x66\xb1" => "\x8f\xc2\xda", +"\x66\xb2" => "\x8f\xc2\xdb", +"\x66\xb4" => "\xcb\xbd", +"\x66\xb5" => "\x8f\xc2\xdc", +"\x66\xb8" => "\xdb\xa2", +"\x66\xb9" => "\xda\xfb", +"\x66\xbb" => "\x8f\xc2\xdd", +"\x66\xbc" => "\xda\xfe", +"\x66\xbe" => "\xda\xfd", +"\x66\xbf" => "\x8f\xc2\xde", +"\x66\xc0" => "\x8f\xc2\xdf", +"\x66\xc1" => "\xda\xfa", +"\x66\xc2" => "\x8f\xc2\xe0", +"\x66\xc3" => "\x8f\xc2\xe1", +"\x66\xc4" => "\xdb\xa1", +"\x66\xc7" => "\xc6\xde", +"\x66\xc8" => "\x8f\xc2\xe2", +"\x66\xc9" => "\xda\xfc", +"\x66\xcc" => "\x8f\xc2\xe3", +"\x66\xce" => "\x8f\xc2\xe4", +"\x66\xcf" => "\x8f\xc2\xe5", +"\x66\xd4" => "\x8f\xc2\xe6", +"\x66\xd6" => "\xdb\xa3", +"\x66\xd9" => "\xbd\xec", +"\x66\xda" => "\xdb\xa4", +"\x66\xdb" => "\x8f\xc2\xe7", +"\x66\xdc" => "\xcd\xcb", +"\x66\xdd" => "\xc7\xf8", +"\x66\xdf" => "\x8f\xc2\xe8", +"\x66\xe0" => "\xdb\xa5", +"\x66\xe6" => "\xdb\xa7", +"\x66\xe8" => "\x8f\xc2\xe9", +"\x66\xe9" => "\xdb\xa8", +"\x66\xeb" => "\x8f\xc2\xea", +"\x66\xec" => "\x8f\xc2\xeb", +"\x66\xee" => "\x8f\xc2\xec", +"\x66\xf0" => "\xdb\xa9", +"\x66\xf2" => "\xb6\xca", +"\x66\xf3" => "\xb1\xc8", +"\x66\xf4" => "\xb9\xb9", +"\x66\xf5" => "\xdb\xaa", +"\x66\xf7" => "\xdb\xab", +"\x66\xf8" => "\xbd\xf1", +"\x66\xf9" => "\xc1\xe2", +"\x66\xfa" => "\x8f\xc2\xed", +"\x66\xfb" => "\x8f\xc2\xbf", +"\x66\xfc" => "\xd2\xd8", +"\x66\xfd" => "\xc1\xbe", +"\x66\xfe" => "\xc1\xbd", +"\x66\xff" => "\xc2\xd8", +"\x67\x00" => "\xba\xc7", +"\x67\x03" => "\xd0\xf2", +"\x67\x05" => "\x8f\xc2\xee", +"\x67\x07" => "\x8f\xc2\xef", +"\x67\x08" => "\xb7\xee", +"\x67\x09" => "\xcd\xad", +"\x67\x0b" => "\xca\xfe", +"\x67\x0d" => "\xc9\xfe", +"\x67\x0e" => "\x8f\xc2\xf0", +"\x67\x0f" => "\xdb\xac", +"\x67\x13" => "\x8f\xc2\xf1", +"\x67\x14" => "\xba\xf3", +"\x67\x15" => "\xc4\xbf", +"\x67\x16" => "\xdb\xad", +"\x67\x17" => "\xcf\xaf", +"\x67\x19" => "\x8f\xc2\xf2", +"\x67\x1b" => "\xcb\xbe", +"\x67\x1c" => "\x8f\xc2\xf3", +"\x67\x1d" => "\xc4\xab", +"\x67\x1e" => "\xdb\xae", +"\x67\x1f" => "\xb4\xfc", +"\x67\x20" => "\x8f\xc2\xf4", +"\x67\x22" => "\x8f\xc2\xf5", +"\x67\x26" => "\xdb\xaf", +"\x67\x27" => "\xdb\xb0", +"\x67\x28" => "\xcc\xda", +"\x67\x2a" => "\xcc\xa4", +"\x67\x2b" => "\xcb\xf6", +"\x67\x2c" => "\xcb\xdc", +"\x67\x2d" => "\xbb\xa5", +"\x67\x2e" => "\xdb\xb2", +"\x67\x31" => "\xbc\xeb", +"\x67\x33" => "\x8f\xc2\xf6", +"\x67\x34" => "\xcb\xd1", +"\x67\x36" => "\xdb\xb4", +"\x67\x37" => "\xdb\xb7", +"\x67\x38" => "\xdb\xb6", +"\x67\x3a" => "\xb4\xf9", +"\x67\x3d" => "\xb5\xe0", +"\x67\x3e" => "\x8f\xc2\xf7", +"\x67\x3f" => "\xdb\xb3", +"\x67\x41" => "\xdb\xb5", +"\x67\x45" => "\x8f\xc2\xf8", +"\x67\x46" => "\xdb\xb8", +"\x67\x47" => "\x8f\xc2\xf9", +"\x67\x48" => "\x8f\xc2\xfa", +"\x67\x49" => "\xbf\xf9", +"\x67\x4c" => "\x8f\xc2\xfb", +"\x67\x4e" => "\xcd\xfb", +"\x67\x4f" => "\xb0\xc9", +"\x67\x50" => "\xba\xe0", +"\x67\x51" => "\xc2\xbc", +"\x67\x53" => "\xbc\xdd", +"\x67\x54" => "\x8f\xc2\xfc", +"\x67\x55" => "\x8f\xc2\xfd", +"\x67\x56" => "\xbe\xf3", +"\x67\x59" => "\xdb\xbb", +"\x67\x5c" => "\xc5\xce", +"\x67\x5d" => "\x8f\xc2\xfe", +"\x67\x5e" => "\xdb\xb9", +"\x67\x5f" => "\xc2\xab", +"\x67\x60" => "\xdb\xba", +"\x67\x61" => "\xbe\xf2", +"\x67\x62" => "\xcc\xdd", +"\x67\x63" => "\xdb\xbc", +"\x67\x64" => "\xdb\xbd", +"\x67\x65" => "\xcd\xe8", +"\x67\x66" => "\x8f\xc3\xa1", +"\x67\x6a" => "\xdb\xc2", +"\x67\x6c" => "\x8f\xc3\xa2", +"\x67\x6d" => "\xb9\xba", +"\x67\x6e" => "\x8f\xc3\xa3", +"\x67\x6f" => "\xc7\xd5", +"\x67\x70" => "\xdb\xbf", +"\x67\x71" => "\xc5\xec", +"\x67\x72" => "\xda\xde", +"\x67\x73" => "\xda\xe2", +"\x67\x74" => "\x8f\xc3\xa4", +"\x67\x75" => "\xb5\xcf", +"\x67\x76" => "\x8f\xc3\xa5", +"\x67\x77" => "\xc7\xc7", +"\x67\x7b" => "\x8f\xc3\xa6", +"\x67\x7c" => "\xdb\xc1", +"\x67\x7e" => "\xbe\xbe", +"\x67\x7f" => "\xc8\xc4", +"\x67\x81" => "\x8f\xc3\xa7", +"\x67\x84" => "\x8f\xc3\xa8", +"\x67\x85" => "\xdb\xc7", +"\x67\x87" => "\xc8\xfa", +"\x67\x89" => "\xdb\xbe", +"\x67\x8b" => "\xdb\xc4", +"\x67\x8c" => "\xdb\xc3", +"\x67\x8e" => "\x8f\xc3\xa9", +"\x67\x8f" => "\x8f\xc3\xaa", +"\x67\x90" => "\xc0\xcf", +"\x67\x91" => "\x8f\xc3\xab", +"\x67\x93" => "\x8f\xc3\xac", +"\x67\x95" => "\xcb\xed", +"\x67\x96" => "\x8f\xc3\xad", +"\x67\x97" => "\xce\xd3", +"\x67\x98" => "\x8f\xc3\xae", +"\x67\x99" => "\x8f\xc3\xaf", +"\x67\x9a" => "\xcb\xe7", +"\x67\x9b" => "\x8f\xc3\xb0", +"\x67\x9c" => "\xb2\xcc", +"\x67\x9d" => "\xbb\xde", +"\x67\xa0" => "\xcf\xc8", +"\x67\xa1" => "\xdb\xc6", +"\x67\xa2" => "\xbf\xf5", +"\x67\xa6" => "\xdb\xc5", +"\x67\xa9" => "\xdb\xc0", +"\x67\xaf" => "\xb8\xcf", +"\x67\xb0" => "\x8f\xc3\xb1", +"\x67\xb1" => "\x8f\xc3\xb2", +"\x67\xb2" => "\x8f\xc3\xb3", +"\x67\xb3" => "\xdb\xcc", +"\x67\xb4" => "\xdb\xca", +"\x67\xb5" => "\x8f\xc3\xb4", +"\x67\xb6" => "\xb2\xcd", +"\x67\xb7" => "\xdb\xc8", +"\x67\xb8" => "\xdb\xce", +"\x67\xb9" => "\xdb\xd4", +"\x67\xbb" => "\x8f\xc3\xb5", +"\x67\xbc" => "\x8f\xc3\xb6", +"\x67\xbd" => "\x8f\xc3\xb7", +"\x67\xc0" => "\x8f\xc3\xb9", +"\x67\xc1" => "\xc2\xc8", +"\x67\xc2" => "\x8f\xc3\xba", +"\x67\xc3" => "\x8f\xc3\xbb", +"\x67\xc4" => "\xca\xc1", +"\x67\xc5" => "\x8f\xc3\xbc", +"\x67\xc6" => "\xdb\xd6", +"\x67\xc8" => "\x8f\xc3\xbd", +"\x67\xc9" => "\x8f\xc3\xbe", +"\x67\xca" => "\xc9\xa2", +"\x67\xce" => "\xdb\xd5", +"\x67\xcf" => "\xc7\xf0", +"\x67\xd0" => "\xcb\xbf", +"\x67\xd1" => "\xb4\xbb", +"\x67\xd2" => "\x8f\xc3\xbf", +"\x67\xd3" => "\xc0\xf7", +"\x67\xd4" => "\xbd\xc0", +"\x67\xd7" => "\x8f\xc3\xc0", +"\x67\xd8" => "\xc4\xd3", +"\x67\xd9" => "\x8f\xc3\xc1", +"\x67\xda" => "\xcd\xae", +"\x67\xdc" => "\x8f\xc3\xc2", +"\x67\xdd" => "\xdb\xd1", +"\x67\xde" => "\xdb\xd0", +"\x67\xe1" => "\x8f\xc3\xc3", +"\x67\xe2" => "\xdb\xd2", +"\x67\xe4" => "\xdb\xcf", +"\x67\xe6" => "\x8f\xc3\xc4", +"\x67\xe7" => "\xdb\xd7", +"\x67\xe9" => "\xdb\xcd", +"\x67\xec" => "\xdb\xcb", +"\x67\xee" => "\xdb\xd3", +"\x67\xef" => "\xdb\xc9", +"\x67\xf0" => "\x8f\xc3\xc5", +"\x67\xf1" => "\xc3\xec", +"\x67\xf2" => "\x8f\xc3\xc6", +"\x67\xf3" => "\xcc\xf8", +"\x67\xf4" => "\xbc\xc6", +"\x67\xf5" => "\xba\xf4", +"\x67\xf6" => "\x8f\xc3\xc7", +"\x67\xf7" => "\x8f\xc3\xc8", +"\x67\xf9" => "\x8f\xc3\xb8", +"\x67\xfb" => "\xba\xba", +"\x67\xfe" => "\xcb\xef", +"\x67\xff" => "\xb3\xc1", +"\x68\x02" => "\xc4\xce", +"\x68\x03" => "\xc6\xca", +"\x68\x04" => "\xb1\xc9", +"\x68\x13" => "\xc0\xf2", +"\x68\x14" => "\x8f\xc3\xca", +"\x68\x16" => "\xc0\xb4", +"\x68\x17" => "\xb7\xaa", +"\x68\x19" => "\x8f\xc3\xcb", +"\x68\x1d" => "\x8f\xc3\xcc", +"\x68\x1e" => "\xdb\xd9", +"\x68\x1f" => "\x8f\xc3\xcd", +"\x68\x21" => "\xb9\xbb", +"\x68\x22" => "\xb3\xfc", +"\x68\x27" => "\x8f\xc3\xcf", +"\x68\x28" => "\x8f\xc3\xce", +"\x68\x29" => "\xdb\xdb", +"\x68\x2a" => "\xb3\xf4", +"\x68\x2b" => "\xdb\xe1", +"\x68\x2c" => "\x8f\xc3\xd0", +"\x68\x2d" => "\x8f\xc3\xd1", +"\x68\x2f" => "\x8f\xc3\xd2", +"\x68\x30" => "\x8f\xc3\xd3", +"\x68\x31" => "\x8f\xc3\xd4", +"\x68\x32" => "\xdb\xde", +"\x68\x33" => "\x8f\xc3\xd5", +"\x68\x34" => "\xc0\xf3", +"\x68\x38" => "\xb3\xcb", +"\x68\x39" => "\xba\xac", +"\x68\x3b" => "\x8f\xc3\xd6", +"\x68\x3c" => "\xb3\xca", +"\x68\x3d" => "\xba\xcf", +"\x68\x3f" => "\x8f\xc3\xd7", +"\x68\x40" => "\xdb\xdc", +"\x68\x41" => "\xb7\xe5", +"\x68\x42" => "\xb7\xcb", +"\x68\x43" => "\xc5\xed", +"\x68\x44" => "\x8f\xc3\xd8", +"\x68\x45" => "\x8f\xc3\xd9", +"\x68\x46" => "\xdb\xda", +"\x68\x48" => "\xb0\xc6", +"\x68\x4a" => "\x8f\xc3\xda", +"\x68\x4c" => "\x8f\xc3\xdb", +"\x68\x4d" => "\xdb\xdd", +"\x68\x4e" => "\xdb\xdf", +"\x68\x50" => "\xb6\xcd", +"\x68\x51" => "\xb7\xac", +"\x68\x52" => "\x8f\xc3\xc9", +"\x68\x53" => "\xb4\xbc", +"\x68\x54" => "\xb5\xcb", +"\x68\x55" => "\x8f\xc3\xdc", +"\x68\x57" => "\x8f\xc3\xdd", +"\x68\x58" => "\x8f\xc3\xde", +"\x68\x59" => "\xdb\xe2", +"\x68\x5b" => "\x8f\xc3\xdf", +"\x68\x5c" => "\xba\xf9", +"\x68\x5d" => "\xcb\xf1", +"\x68\x5f" => "\xbb\xb7", +"\x68\x63" => "\xdb\xe3", +"\x68\x67" => "\xc9\xb0", +"\x68\x6b" => "\x8f\xc3\xe0", +"\x68\x6e" => "\x8f\xc3\xe1", +"\x68\x6f" => "\x8f\xc3\xe2", +"\x68\x70" => "\x8f\xc3\xe3", +"\x68\x71" => "\x8f\xc3\xe4", +"\x68\x72" => "\x8f\xc3\xe5", +"\x68\x74" => "\xdb\xef", +"\x68\x75" => "\x8f\xc3\xe6", +"\x68\x76" => "\xb2\xb3", +"\x68\x77" => "\xdb\xe4", +"\x68\x79" => "\x8f\xc3\xe7", +"\x68\x7a" => "\x8f\xc3\xe8", +"\x68\x7b" => "\x8f\xc3\xe9", +"\x68\x7c" => "\x8f\xc3\xea", +"\x68\x7e" => "\xdb\xf5", +"\x68\x7f" => "\xdb\xe5", +"\x68\x81" => "\xce\xc2", +"\x68\x82" => "\x8f\xc3\xeb", +"\x68\x83" => "\xdb\xec", +"\x68\x84" => "\x8f\xc3\xec", +"\x68\x85" => "\xc7\xdf", +"\x68\x86" => "\x8f\xc3\xed", +"\x68\x88" => "\x8f\xc3\xee", +"\x68\x8d" => "\xdb\xf4", +"\x68\x8f" => "\xdb\xe7", +"\x68\x93" => "\xb0\xb4", +"\x68\x94" => "\xdb\xe9", +"\x68\x96" => "\x8f\xc3\xef", +"\x68\x97" => "\xb9\xbc", +"\x68\x98" => "\x8f\xc3\xf0", +"\x68\x9a" => "\x8f\xc3\xf1", +"\x68\x9b" => "\xdb\xeb", +"\x68\x9c" => "\x8f\xc3\xf2", +"\x68\x9d" => "\xdb\xea", +"\x68\x9f" => "\xdb\xe6", +"\x68\xa0" => "\xdb\xf1", +"\x68\xa1" => "\x8f\xc3\xf3", +"\x68\xa2" => "\xbe\xbf", +"\x68\xa3" => "\x8f\xc3\xf4", +"\x68\xa5" => "\x8f\xc3\xf5", +"\x68\xa6" => "\xd4\xed", +"\x68\xa7" => "\xb8\xe8", +"\x68\xa8" => "\xcd\xfc", +"\x68\xa9" => "\x8f\xc3\xf6", +"\x68\xaa" => "\x8f\xc3\xf7", +"\x68\xad" => "\xdb\xe8", +"\x68\xae" => "\x8f\xc3\xf8", +"\x68\xaf" => "\xc4\xf4", +"\x68\xb0" => "\xb3\xa3", +"\x68\xb1" => "\xba\xad", +"\x68\xb2" => "\x8f\xc3\xf9", +"\x68\xb3" => "\xdb\xe0", +"\x68\xb5" => "\xdb\xf0", +"\x68\xb6" => "\xb3\xe1", +"\x68\xb9" => "\xdb\xee", +"\x68\xba" => "\xdb\xf2", +"\x68\xbb" => "\x8f\xc3\xfa", +"\x68\xbc" => "\xc5\xee", +"\x68\xc4" => "\xb4\xfe", +"\x68\xc5" => "\x8f\xc3\xfb", +"\x68\xc6" => "\xdc\xb2", +"\x68\xc8" => "\x8f\xc3\xfc", +"\x68\xc9" => "\xcc\xc9", +"\x68\xca" => "\xdb\xf7", +"\x68\xcb" => "\xb4\xfd", +"\x68\xcc" => "\x8f\xc3\xfd", +"\x68\xcd" => "\xdb\xfe", +"\x68\xcf" => "\x8f\xc3\xfe", +"\x68\xd0" => "\x8f\xc4\xa1", +"\x68\xd1" => "\x8f\xc4\xa2", +"\x68\xd2" => "\xcb\xc0", +"\x68\xd3" => "\x8f\xc4\xa3", +"\x68\xd4" => "\xdc\xa1", +"\x68\xd5" => "\xdc\xa3", +"\x68\xd6" => "\x8f\xc4\xa4", +"\x68\xd7" => "\xdc\xa7", +"\x68\xd8" => "\xdb\xf9", +"\x68\xd9" => "\x8f\xc4\xa5", +"\x68\xda" => "\xc3\xaa", +"\x68\xdc" => "\x8f\xc4\xa6", +"\x68\xdd" => "\x8f\xc4\xa7", +"\x68\xdf" => "\xc5\xef", +"\x68\xe0" => "\xdc\xab", +"\x68\xe1" => "\xdb\xfc", +"\x68\xe3" => "\xdc\xa8", +"\x68\xe5" => "\x8f\xc4\xa8", +"\x68\xe7" => "\xdc\xa2", +"\x68\xe8" => "\x8f\xc4\xa9", +"\x68\xea" => "\x8f\xc4\xaa", +"\x68\xeb" => "\x8f\xc4\xab", +"\x68\xec" => "\x8f\xc4\xac", +"\x68\xed" => "\x8f\xc4\xad", +"\x68\xee" => "\xbf\xb9", +"\x68\xef" => "\xdc\xac", +"\x68\xf0" => "\x8f\xc4\xae", +"\x68\xf1" => "\x8f\xc4\xaf", +"\x68\xf2" => "\xc0\xb3", +"\x68\xf5" => "\x8f\xc4\xb0", +"\x68\xf6" => "\x8f\xc4\xb1", +"\x68\xf9" => "\xdc\xaa", +"\x68\xfa" => "\xb4\xbd", +"\x68\xfb" => "\x8f\xc4\xb2", +"\x68\xfc" => "\x8f\xc4\xb3", +"\x68\xfd" => "\x8f\xc4\xb4", +"\x69\x00" => "\xcf\xd0", +"\x69\x01" => "\xdb\xf6", +"\x69\x04" => "\xdc\xa6", +"\x69\x05" => "\xb0\xd8", +"\x69\x06" => "\x8f\xc4\xb5", +"\x69\x08" => "\xdb\xf8", +"\x69\x09" => "\x8f\xc4\xb6", +"\x69\x0a" => "\x8f\xc4\xb7", +"\x69\x0b" => "\xcc\xba", +"\x69\x0c" => "\xdb\xfd", +"\x69\x0d" => "\xbf\xa2", +"\x69\x0e" => "\xc4\xc7", +"\x69\x0f" => "\xdb\xf3", +"\x69\x10" => "\x8f\xc4\xb8", +"\x69\x11" => "\x8f\xc4\xb9", +"\x69\x12" => "\xdc\xa5", +"\x69\x13" => "\x8f\xc4\xba", +"\x69\x16" => "\x8f\xc4\xbb", +"\x69\x17" => "\x8f\xc4\xbc", +"\x69\x19" => "\xbf\xfa", +"\x69\x1a" => "\xdc\xaf", +"\x69\x1b" => "\xb3\xf1", +"\x69\x1c" => "\xb8\xa1", +"\x69\x21" => "\xdc\xb1", +"\x69\x22" => "\xdb\xfa", +"\x69\x23" => "\xdc\xb0", +"\x69\x25" => "\xdc\xa9", +"\x69\x26" => "\xdb\xfb", +"\x69\x28" => "\xdc\xad", +"\x69\x2a" => "\xdc\xae", +"\x69\x30" => "\xdc\xbf", +"\x69\x31" => "\x8f\xc4\xbd", +"\x69\x33" => "\x8f\xc4\xbe", +"\x69\x34" => "\xc6\xce", +"\x69\x35" => "\x8f\xc4\xbf", +"\x69\x36" => "\xdc\xa4", +"\x69\x38" => "\x8f\xc4\xc0", +"\x69\x39" => "\xdc\xbb", +"\x69\x3b" => "\x8f\xc4\xc1", +"\x69\x3d" => "\xdc\xbd", +"\x69\x3f" => "\xc4\xd8", +"\x69\x42" => "\x8f\xc4\xc2", +"\x69\x45" => "\x8f\xc4\xc3", +"\x69\x49" => "\x8f\xc4\xc4", +"\x69\x4a" => "\xcd\xcc", +"\x69\x4e" => "\x8f\xc4\xc5", +"\x69\x53" => "\xc9\xf6", +"\x69\x54" => "\xdc\xb8", +"\x69\x55" => "\xc2\xca", +"\x69\x57" => "\x8f\xc4\xc6", +"\x69\x59" => "\xdc\xbe", +"\x69\x5a" => "\xc1\xbf", +"\x69\x5b" => "\x8f\xc4\xc7", +"\x69\x5c" => "\xdc\xb5", +"\x69\x5d" => "\xdc\xc2", +"\x69\x5e" => "\xdc\xc1", +"\x69\x60" => "\xc6\xef", +"\x69\x61" => "\xdc\xc0", +"\x69\x62" => "\xc6\xea", +"\x69\x63" => "\x8f\xc4\xc8", +"\x69\x64" => "\x8f\xc4\xc9", +"\x69\x65" => "\x8f\xc4\xca", +"\x69\x66" => "\x8f\xc4\xcb", +"\x69\x68" => "\x8f\xc4\xcc", +"\x69\x69" => "\x8f\xc4\xcd", +"\x69\x6a" => "\xdc\xc4", +"\x69\x6b" => "\xdc\xb7", +"\x69\x6c" => "\x8f\xc4\xce", +"\x69\x6d" => "\xb6\xc8", +"\x69\x6e" => "\xdc\xba", +"\x69\x6f" => "\xbd\xdd", +"\x69\x70" => "\x8f\xc4\xcf", +"\x69\x71" => "\x8f\xc4\xd0", +"\x69\x72" => "\x8f\xc4\xd1", +"\x69\x73" => "\xc7\xe0", +"\x69\x74" => "\xdc\xbc", +"\x69\x75" => "\xb6\xcb", +"\x69\x77" => "\xdc\xb4", +"\x69\x78" => "\xdc\xb6", +"\x69\x79" => "\xdc\xb3", +"\x69\x7a" => "\x8f\xc4\xd2", +"\x69\x7b" => "\x8f\xc4\xd3", +"\x69\x7c" => "\xcf\xb0", +"\x69\x7d" => "\xb3\xda", +"\x69\x7e" => "\xdc\xb9", +"\x69\x7f" => "\x8f\xc4\xd4", +"\x69\x80" => "\x8f\xc4\xd5", +"\x69\x81" => "\xdc\xc3", +"\x69\x82" => "\xb3\xb5", +"\x69\x8a" => "\xba\xe7", +"\x69\x8d" => "\x8f\xc4\xd6", +"\x69\x8e" => "\xb1\xdd", +"\x69\x91" => "\xdc\xd4", +"\x69\x92" => "\x8f\xc4\xd7", +"\x69\x94" => "\xcf\xb1", +"\x69\x95" => "\xdc\xd7", +"\x69\x96" => "\x8f\xc4\xd8", +"\x69\x98" => "\x8f\xc4\xd9", +"\x69\x9b" => "\xbf\xba", +"\x69\x9c" => "\xdc\xd6", +"\x69\xa0" => "\xdc\xd5", +"\x69\xa1" => "\x8f\xc4\xda", +"\x69\xa5" => "\x8f\xc4\xdb", +"\x69\xa6" => "\x8f\xc4\xdc", +"\x69\xa7" => "\xdc\xd2", +"\x69\xa8" => "\x8f\xc4\xdd", +"\x69\xab" => "\x8f\xc4\xde", +"\x69\xad" => "\x8f\xc4\xdf", +"\x69\xae" => "\xdc\xc6", +"\x69\xaf" => "\x8f\xc4\xe0", +"\x69\xb1" => "\xdc\xe3", +"\x69\xb2" => "\xdc\xc5", +"\x69\xb4" => "\xdc\xd8", +"\x69\xb7" => "\x8f\xc4\xe1", +"\x69\xb8" => "\x8f\xc4\xe2", +"\x69\xba" => "\x8f\xc4\xe3", +"\x69\xbb" => "\xdc\xd0", +"\x69\xbc" => "\x8f\xc4\xe4", +"\x69\xbe" => "\xdc\xcb", +"\x69\xbf" => "\xdc\xc8", +"\x69\xc1" => "\xdc\xc9", +"\x69\xc3" => "\xdc\xd1", +"\x69\xc5" => "\x8f\xc4\xe5", +"\x69\xc7" => "\xf4\xa2", +"\x69\xc8" => "\x8f\xc4\xe6", +"\x69\xca" => "\xdc\xce", +"\x69\xcb" => "\xb9\xbd", +"\x69\xcc" => "\xc4\xc8", +"\x69\xcd" => "\xc1\xe4", +"\x69\xce" => "\xdc\xcc", +"\x69\xd0" => "\xdc\xc7", +"\x69\xd1" => "\x8f\xc4\xe7", +"\x69\xd3" => "\xdc\xca", +"\x69\xd6" => "\x8f\xc4\xe8", +"\x69\xd7" => "\x8f\xc4\xe9", +"\x69\xd8" => "\xcd\xcd", +"\x69\xd9" => "\xcb\xea", +"\x69\xdd" => "\xdc\xcf", +"\x69\xde" => "\xdc\xd9", +"\x69\xe2" => "\x8f\xc4\xea", +"\x69\xe5" => "\x8f\xc4\xeb", +"\x69\xe7" => "\xdc\xe1", +"\x69\xe8" => "\xdc\xda", +"\x69\xeb" => "\xdc\xe7", +"\x69\xed" => "\xdc\xe5", +"\x69\xee" => "\x8f\xc4\xec", +"\x69\xef" => "\x8f\xc4\xed", +"\x69\xf1" => "\x8f\xc4\xee", +"\x69\xf2" => "\xdc\xe0", +"\x69\xf3" => "\x8f\xc4\xef", +"\x69\xf5" => "\x8f\xc4\xf0", +"\x69\xf9" => "\xdc\xdf", +"\x69\xfb" => "\xc4\xd0", +"\x69\xfd" => "\xc1\xe5", +"\x69\xfe" => "\x8f\xc4\xf1", +"\x69\xff" => "\xdc\xdd", +"\x6a\x00" => "\x8f\xc4\xf2", +"\x6a\x01" => "\x8f\xc4\xf3", +"\x6a\x02" => "\xdc\xdb", +"\x6a\x03" => "\x8f\xc4\xf4", +"\x6a\x05" => "\xdc\xe2", +"\x6a\x0a" => "\xdc\xe8", +"\x6a\x0b" => "\xc8\xf5", +"\x6a\x0c" => "\xdc\xee", +"\x6a\x0f" => "\x8f\xc4\xf5", +"\x6a\x11" => "\x8f\xc4\xf6", +"\x6a\x12" => "\xdc\xe9", +"\x6a\x13" => "\xdc\xec", +"\x6a\x14" => "\xdc\xe6", +"\x6a\x15" => "\x8f\xc4\xf7", +"\x6a\x17" => "\xc3\xf4", +"\x6a\x19" => "\xc9\xb8", +"\x6a\x1a" => "\x8f\xc4\xf8", +"\x6a\x1b" => "\xdc\xdc", +"\x6a\x1d" => "\x8f\xc4\xf9", +"\x6a\x1e" => "\xdc\xe4", +"\x6a\x1f" => "\xbe\xc0", +"\x6a\x20" => "\x8f\xc4\xfa", +"\x6a\x21" => "\xcc\xcf", +"\x6a\x22" => "\xdc\xf8", +"\x6a\x23" => "\xdc\xeb", +"\x6a\x24" => "\x8f\xc4\xfb", +"\x6a\x28" => "\x8f\xc4\xfc", +"\x6a\x29" => "\xb8\xa2", +"\x6a\x2a" => "\xb2\xa3", +"\x6a\x2b" => "\xb3\xdf", +"\x6a\x2e" => "\xdc\xd3", +"\x6a\x30" => "\x8f\xc4\xfd", +"\x6a\x32" => "\x8f\xc4\xfe", +"\x6a\x34" => "\x8f\xc5\xa1", +"\x6a\x35" => "\xbe\xc1", +"\x6a\x36" => "\xdc\xf0", +"\x6a\x37" => "\x8f\xc5\xa2", +"\x6a\x38" => "\xdc\xf7", +"\x6a\x39" => "\xbc\xf9", +"\x6a\x3a" => "\xb3\xf2", +"\x6a\x3b" => "\x8f\xc5\xa3", +"\x6a\x3d" => "\xc3\xae", +"\x6a\x3e" => "\x8f\xc5\xa4", +"\x6a\x3f" => "\x8f\xc5\xa5", +"\x6a\x44" => "\xdc\xed", +"\x6a\x45" => "\x8f\xc5\xa6", +"\x6a\x46" => "\x8f\xc5\xa7", +"\x6a\x47" => "\xdc\xf2", +"\x6a\x48" => "\xdc\xf6", +"\x6a\x49" => "\x8f\xc5\xa8", +"\x6a\x4a" => "\x8f\xc5\xa9", +"\x6a\x4b" => "\xb6\xb6", +"\x6a\x4e" => "\x8f\xc5\xaa", +"\x6a\x50" => "\x8f\xc5\xab", +"\x6a\x51" => "\x8f\xc5\xac", +"\x6a\x52" => "\x8f\xc5\xad", +"\x6a\x55" => "\x8f\xc5\xae", +"\x6a\x56" => "\x8f\xc5\xaf", +"\x6a\x58" => "\xb5\xcc", +"\x6a\x59" => "\xdc\xf4", +"\x6a\x5b" => "\x8f\xc5\xb0", +"\x6a\x5f" => "\xb5\xa1", +"\x6a\x61" => "\xc6\xcb", +"\x6a\x62" => "\xdc\xf3", +"\x6a\x64" => "\x8f\xc5\xb1", +"\x6a\x66" => "\xdc\xf5", +"\x6a\x67" => "\x8f\xc5\xb2", +"\x6a\x6a" => "\x8f\xc5\xb3", +"\x6a\x71" => "\x8f\xc5\xb4", +"\x6a\x72" => "\xdc\xef", +"\x6a\x73" => "\x8f\xc5\xb5", +"\x6a\x78" => "\xdc\xf1", +"\x6a\x7e" => "\x8f\xc5\xb6", +"\x6a\x7f" => "\xb3\xe0", +"\x6a\x80" => "\xc3\xc9", +"\x6a\x81" => "\x8f\xc5\xb7", +"\x6a\x83" => "\x8f\xc5\xb8", +"\x6a\x84" => "\xdc\xfc", +"\x6a\x86" => "\x8f\xc5\xb9", +"\x6a\x87" => "\x8f\xc5\xba", +"\x6a\x89" => "\x8f\xc5\xbb", +"\x6a\x8b" => "\x8f\xc5\xbc", +"\x6a\x8d" => "\xdc\xfa", +"\x6a\x8e" => "\xb8\xe9", +"\x6a\x90" => "\xdc\xf9", +"\x6a\x91" => "\x8f\xc5\xbd", +"\x6a\x97" => "\xdd\xa1", +"\x6a\x9b" => "\x8f\xc5\xbe", +"\x6a\x9c" => "\xdb\xd8", +"\x6a\x9d" => "\x8f\xc5\xbf", +"\x6a\x9e" => "\x8f\xc5\xc0", +"\x6a\x9f" => "\x8f\xc5\xc1", +"\x6a\xa0" => "\xdc\xfb", +"\x6a\xa2" => "\xdc\xfd", +"\x6a\xa3" => "\xdc\xfe", +"\x6a\xa5" => "\x8f\xc5\xc2", +"\x6a\xaa" => "\xdd\xac", +"\x6a\xab" => "\x8f\xc5\xc3", +"\x6a\xac" => "\xdd\xa8", +"\x6a\xae" => "\xdb\xed", +"\x6a\xaf" => "\x8f\xc5\xc4", +"\x6a\xb0" => "\x8f\xc5\xc5", +"\x6a\xb1" => "\x8f\xc5\xc6", +"\x6a\xb3" => "\xdd\xa7", +"\x6a\xb4" => "\x8f\xc5\xc7", +"\x6a\xb8" => "\xdd\xa6", +"\x6a\xbb" => "\xdd\xa3", +"\x6a\xbd" => "\x8f\xc5\xc8", +"\x6a\xbe" => "\x8f\xc5\xc9", +"\x6a\xbf" => "\x8f\xc5\xca", +"\x6a\xc1" => "\xdc\xea", +"\x6a\xc2" => "\xdd\xa5", +"\x6a\xc3" => "\xdd\xa4", +"\x6a\xc6" => "\x8f\xc5\xcb", +"\x6a\xc8" => "\x8f\xc5\xcd", +"\x6a\xc9" => "\x8f\xc5\xcc", +"\x6a\xcc" => "\x8f\xc5\xce", +"\x6a\xd0" => "\x8f\xc5\xcf", +"\x6a\xd1" => "\xdd\xaa", +"\x6a\xd3" => "\xcf\xa6", +"\x6a\xd4" => "\x8f\xc5\xd0", +"\x6a\xd5" => "\x8f\xc5\xd1", +"\x6a\xd6" => "\x8f\xc5\xd2", +"\x6a\xda" => "\xdd\xad", +"\x6a\xdb" => "\xb6\xfb", +"\x6a\xdc" => "\x8f\xc5\xd3", +"\x6a\xdd" => "\x8f\xc5\xd4", +"\x6a\xde" => "\xdd\xa9", +"\x6a\xdf" => "\xdd\xab", +"\x6a\xe4" => "\x8f\xc5\xd5", +"\x6a\xe7" => "\x8f\xc5\xd6", +"\x6a\xe8" => "\xc8\xa7", +"\x6a\xea" => "\xdd\xae", +"\x6a\xec" => "\x8f\xc5\xd7", +"\x6a\xf0" => "\x8f\xc5\xd8", +"\x6a\xf1" => "\x8f\xc5\xd9", +"\x6a\xf2" => "\x8f\xc5\xda", +"\x6a\xfa" => "\xdd\xb2", +"\x6a\xfb" => "\xdd\xaf", +"\x6a\xfc" => "\x8f\xc5\xdb", +"\x6a\xfd" => "\x8f\xc5\xdc", +"\x6b\x02" => "\x8f\xc5\xdd", +"\x6b\x03" => "\x8f\xc5\xde", +"\x6b\x04" => "\xcd\xf3", +"\x6b\x05" => "\xdd\xb0", +"\x6b\x06" => "\x8f\xc5\xdf", +"\x6b\x07" => "\x8f\xc5\xe0", +"\x6b\x09" => "\x8f\xc5\xe1", +"\x6b\x0a" => "\xdc\xde", +"\x6b\x0f" => "\x8f\xc5\xe2", +"\x6b\x10" => "\x8f\xc5\xe3", +"\x6b\x11" => "\x8f\xc5\xe4", +"\x6b\x12" => "\xdd\xb3", +"\x6b\x16" => "\xdd\xb4", +"\x6b\x17" => "\x8f\xc5\xe5", +"\x6b\x1b" => "\x8f\xc5\xe6", +"\x6b\x1d" => "\xb1\xb5", +"\x6b\x1e" => "\x8f\xc5\xe7", +"\x6b\x1f" => "\xdd\xb6", +"\x6b\x20" => "\xb7\xe7", +"\x6b\x21" => "\xbc\xa1", +"\x6b\x23" => "\xb6\xd5", +"\x6b\x24" => "\x8f\xc5\xe8", +"\x6b\x27" => "\xb2\xa4", +"\x6b\x28" => "\x8f\xc5\xe9", +"\x6b\x2b" => "\x8f\xc5\xea", +"\x6b\x2c" => "\x8f\xc5\xeb", +"\x6b\x2f" => "\x8f\xc5\xec", +"\x6b\x32" => "\xcd\xdf", +"\x6b\x35" => "\x8f\xc5\xed", +"\x6b\x36" => "\x8f\xc5\xee", +"\x6b\x37" => "\xdd\xb8", +"\x6b\x38" => "\xdd\xb7", +"\x6b\x39" => "\xdd\xba", +"\x6b\x3a" => "\xb5\xbd", +"\x6b\x3b" => "\x8f\xc5\xef", +"\x6b\x3d" => "\xb6\xd6", +"\x6b\x3e" => "\xb4\xbe", +"\x6b\x3f" => "\x8f\xc5\xf0", +"\x6b\x43" => "\xdd\xbd", +"\x6b\x46" => "\x8f\xc5\xf1", +"\x6b\x47" => "\xdd\xbc", +"\x6b\x49" => "\xdd\xbe", +"\x6b\x4a" => "\x8f\xc5\xf2", +"\x6b\x4c" => "\xb2\xce", +"\x6b\x4d" => "\x8f\xc5\xf3", +"\x6b\x4e" => "\xc3\xb7", +"\x6b\x50" => "\xdd\xbf", +"\x6b\x52" => "\x8f\xc5\xf4", +"\x6b\x53" => "\xb4\xbf", +"\x6b\x54" => "\xdd\xc1", +"\x6b\x56" => "\x8f\xc5\xf5", +"\x6b\x58" => "\x8f\xc5\xf6", +"\x6b\x59" => "\xdd\xc0", +"\x6b\x5b" => "\xdd\xc2", +"\x6b\x5d" => "\x8f\xc5\xf7", +"\x6b\x5f" => "\xdd\xc3", +"\x6b\x60" => "\x8f\xc5\xf8", +"\x6b\x61" => "\xdd\xc4", +"\x6b\x62" => "\xbb\xdf", +"\x6b\x63" => "\xc0\xb5", +"\x6b\x64" => "\xba\xa1", +"\x6b\x66" => "\xc9\xf0", +"\x6b\x67" => "\x8f\xc5\xf9", +"\x6b\x69" => "\xca\xe2", +"\x6b\x6a" => "\xcf\xc4", +"\x6b\x6b" => "\x8f\xc5\xfa", +"\x6b\x6e" => "\x8f\xc5\xfb", +"\x6b\x6f" => "\xbb\xf5", +"\x6b\x70" => "\x8f\xc5\xfc", +"\x6b\x73" => "\xba\xd0", +"\x6b\x74" => "\xce\xf2", +"\x6b\x75" => "\x8f\xc5\xfd", +"\x6b\x78" => "\xdd\xc5", +"\x6b\x79" => "\xdd\xc6", +"\x6b\x7b" => "\xbb\xe0", +"\x6b\x7d" => "\x8f\xc5\xfe", +"\x6b\x7e" => "\x8f\xc6\xa1", +"\x6b\x7f" => "\xdd\xc7", +"\x6b\x80" => "\xdd\xc8", +"\x6b\x82" => "\x8f\xc6\xa2", +"\x6b\x83" => "\xdd\xca", +"\x6b\x84" => "\xdd\xc9", +"\x6b\x85" => "\x8f\xc6\xa3", +"\x6b\x86" => "\xcb\xd8", +"\x6b\x89" => "\xbd\xde", +"\x6b\x8a" => "\xbc\xec", +"\x6b\x8b" => "\xbb\xc4", +"\x6b\x8d" => "\xdd\xcb", +"\x6b\x95" => "\xdd\xcd", +"\x6b\x96" => "\xbf\xa3", +"\x6b\x97" => "\x8f\xc6\xa4", +"\x6b\x98" => "\xdd\xcc", +"\x6b\x9b" => "\x8f\xc6\xa5", +"\x6b\x9e" => "\xdd\xce", +"\x6b\x9f" => "\x8f\xc6\xa6", +"\x6b\xa0" => "\x8f\xc6\xa7", +"\x6b\xa2" => "\x8f\xc6\xa8", +"\x6b\xa3" => "\x8f\xc6\xa9", +"\x6b\xa4" => "\xdd\xcf", +"\x6b\xa8" => "\x8f\xc6\xaa", +"\x6b\xa9" => "\x8f\xc6\xab", +"\x6b\xaa" => "\xdd\xd0", +"\x6b\xab" => "\xdd\xd1", +"\x6b\xac" => "\x8f\xc6\xac", +"\x6b\xad" => "\x8f\xc6\xad", +"\x6b\xae" => "\x8f\xc6\xae", +"\x6b\xaf" => "\xdd\xd2", +"\x6b\xb0" => "\x8f\xc6\xaf", +"\x6b\xb1" => "\xdd\xd4", +"\x6b\xb2" => "\xdd\xd3", +"\x6b\xb3" => "\xdd\xd5", +"\x6b\xb4" => "\xb2\xa5", +"\x6b\xb5" => "\xc3\xca", +"\x6b\xb7" => "\xdd\xd6", +"\x6b\xb8" => "\x8f\xc6\xb0", +"\x6b\xb9" => "\x8f\xc6\xb1", +"\x6b\xba" => "\xbb\xa6", +"\x6b\xbb" => "\xb3\xcc", +"\x6b\xbc" => "\xdd\xd7", +"\x6b\xbd" => "\x8f\xc6\xb2", +"\x6b\xbe" => "\x8f\xc6\xb3", +"\x6b\xbf" => "\xc5\xc2", +"\x6b\xc0" => "\xd4\xcc", +"\x6b\xc3" => "\x8f\xc6\xb4", +"\x6b\xc4" => "\x8f\xc6\xb5", +"\x6b\xc5" => "\xb5\xa3", +"\x6b\xc6" => "\xdd\xd8", +"\x6b\xc9" => "\x8f\xc6\xb6", +"\x6b\xcb" => "\xdd\xd9", +"\x6b\xcc" => "\x8f\xc6\xb7", +"\x6b\xcd" => "\xca\xec", +"\x6b\xce" => "\xcb\xe8", +"\x6b\xd2" => "\xc6\xc7", +"\x6b\xd3" => "\xdd\xda", +"\x6b\xd4" => "\xc8\xe6", +"\x6b\xd6" => "\x8f\xc6\xb8", +"\x6b\xd8" => "\xc8\xfb", +"\x6b\xda" => "\x8f\xc6\xb9", +"\x6b\xdb" => "\xcc\xd3", +"\x6b\xdf" => "\xdd\xdb", +"\x6b\xe1" => "\x8f\xc6\xba", +"\x6b\xe3" => "\x8f\xc6\xbb", +"\x6b\xe6" => "\x8f\xc6\xbc", +"\x6b\xe7" => "\x8f\xc6\xbd", +"\x6b\xeb" => "\xdd\xdd", +"\x6b\xec" => "\xdd\xdc", +"\x6b\xee" => "\x8f\xc6\xbe", +"\x6b\xef" => "\xdd\xdf", +"\x6b\xf1" => "\x8f\xc6\xbf", +"\x6b\xf3" => "\xdd\xde", +"\x6b\xf7" => "\x8f\xc6\xc0", +"\x6b\xf9" => "\x8f\xc6\xc1", +"\x6b\xff" => "\x8f\xc6\xc2", +"\x6c\x02" => "\x8f\xc6\xc3", +"\x6c\x04" => "\x8f\xc6\xc4", +"\x6c\x05" => "\x8f\xc6\xc5", +"\x6c\x08" => "\xdd\xe1", +"\x6c\x09" => "\x8f\xc6\xc6", +"\x6c\x0d" => "\x8f\xc6\xc7", +"\x6c\x0e" => "\x8f\xc6\xc8", +"\x6c\x0f" => "\xbb\xe1", +"\x6c\x10" => "\x8f\xc6\xc9", +"\x6c\x11" => "\xcc\xb1", +"\x6c\x12" => "\x8f\xc6\xca", +"\x6c\x13" => "\xdd\xe2", +"\x6c\x14" => "\xdd\xe3", +"\x6c\x17" => "\xb5\xa4", +"\x6c\x19" => "\x8f\xc6\xcb", +"\x6c\x1b" => "\xdd\xe4", +"\x6c\x1f" => "\x8f\xc6\xcc", +"\x6c\x23" => "\xdd\xe6", +"\x6c\x24" => "\xdd\xe5", +"\x6c\x26" => "\x8f\xc6\xcd", +"\x6c\x27" => "\x8f\xc6\xce", +"\x6c\x28" => "\x8f\xc6\xcf", +"\x6c\x2c" => "\x8f\xc6\xd0", +"\x6c\x2e" => "\x8f\xc6\xd1", +"\x6c\x33" => "\x8f\xc6\xd2", +"\x6c\x34" => "\xbf\xe5", +"\x6c\x35" => "\x8f\xc6\xd3", +"\x6c\x36" => "\x8f\xc6\xd4", +"\x6c\x37" => "\xc9\xb9", +"\x6c\x38" => "\xb1\xca", +"\x6c\x3a" => "\x8f\xc6\xd5", +"\x6c\x3b" => "\x8f\xc6\xd6", +"\x6c\x3e" => "\xc8\xc5", +"\x6c\x3f" => "\x8f\xc6\xd7", +"\x6c\x40" => "\xc4\xf5", +"\x6c\x41" => "\xbd\xc1", +"\x6c\x42" => "\xb5\xe1", +"\x6c\x4a" => "\x8f\xc6\xd8", +"\x6c\x4b" => "\x8f\xc6\xd9", +"\x6c\x4d" => "\x8f\xc6\xda", +"\x6c\x4e" => "\xc8\xc6", +"\x6c\x4f" => "\x8f\xc6\xdb", +"\x6c\x50" => "\xbc\xae", +"\x6c\x52" => "\x8f\xc6\xdc", +"\x6c\x54" => "\x8f\xc6\xdd", +"\x6c\x55" => "\xdd\xe8", +"\x6c\x57" => "\xb4\xc0", +"\x6c\x59" => "\x8f\xc6\xde", +"\x6c\x5a" => "\xb1\xf8", +"\x6c\x5b" => "\x8f\xc6\xdf", +"\x6c\x5c" => "\x8f\xc6\xe0", +"\x6c\x5d" => "\xc6\xf2", +"\x6c\x5e" => "\xdd\xe7", +"\x6c\x5f" => "\xb9\xbe", +"\x6c\x60" => "\xc3\xd3", +"\x6c\x62" => "\xdd\xe9", +"\x6c\x67" => "\x8f\xc7\xb6", +"\x6c\x68" => "\xdd\xf1", +"\x6c\x6a" => "\xdd\xea", +"\x6c\x6b" => "\x8f\xc6\xe1", +"\x6c\x6d" => "\x8f\xc6\xe2", +"\x6c\x6f" => "\x8f\xc6\xe3", +"\x6c\x70" => "\xc2\xc1", +"\x6c\x72" => "\xb5\xe2", +"\x6c\x73" => "\xdd\xf2", +"\x6c\x74" => "\x8f\xc6\xe4", +"\x6c\x76" => "\x8f\xc6\xe5", +"\x6c\x78" => "\x8f\xc6\xe6", +"\x6c\x79" => "\x8f\xc6\xe7", +"\x6c\x7a" => "\xb7\xe8", +"\x6c\x7b" => "\x8f\xc6\xe8", +"\x6c\x7d" => "\xb5\xa5", +"\x6c\x7e" => "\xdd\xf0", +"\x6c\x81" => "\xdd\xee", +"\x6c\x82" => "\xdd\xeb", +"\x6c\x83" => "\xcd\xe0", +"\x6c\x85" => "\x8f\xc6\xe9", +"\x6c\x86" => "\x8f\xc6\xea", +"\x6c\x87" => "\x8f\xc6\xeb", +"\x6c\x88" => "\xc4\xc0", +"\x6c\x89" => "\x8f\xc6\xec", +"\x6c\x8c" => "\xc6\xd9", +"\x6c\x8d" => "\xdd\xec", +"\x6c\x90" => "\xdd\xf4", +"\x6c\x92" => "\xdd\xf3", +"\x6c\x93" => "\xb7\xa3", +"\x6c\x94" => "\x8f\xc6\xed", +"\x6c\x95" => "\x8f\xc6\xee", +"\x6c\x96" => "\xb2\xad", +"\x6c\x97" => "\x8f\xc6\xef", +"\x6c\x98" => "\x8f\xc6\xf0", +"\x6c\x99" => "\xba\xbb", +"\x6c\x9a" => "\xdd\xed", +"\x6c\x9b" => "\xdd\xef", +"\x6c\x9c" => "\x8f\xc6\xf1", +"\x6c\x9f" => "\x8f\xc6\xf2", +"\x6c\xa1" => "\xcb\xd7", +"\x6c\xa2" => "\xc2\xf4", +"\x6c\xab" => "\xcb\xf7", +"\x6c\xae" => "\xdd\xfc", +"\x6c\xb0" => "\x8f\xc6\xf3", +"\x6c\xb1" => "\xdd\xfd", +"\x6c\xb2" => "\x8f\xc6\xf4", +"\x6c\xb3" => "\xb2\xcf", +"\x6c\xb4" => "\x8f\xc6\xf5", +"\x6c\xb8" => "\xca\xa8", +"\x6c\xb9" => "\xcc\xfd", +"\x6c\xba" => "\xde\xa1", +"\x6c\xbb" => "\xbc\xa3", +"\x6c\xbc" => "\xbe\xc2", +"\x6c\xbd" => "\xdd\xf8", +"\x6c\xbe" => "\xdd\xfe", +"\x6c\xbf" => "\xb1\xe8", +"\x6c\xc1" => "\xb6\xb7", +"\x6c\xc2" => "\x8f\xc6\xf6", +"\x6c\xc4" => "\xdd\xf5", +"\x6c\xc5" => "\xdd\xfa", +"\x6c\xc6" => "\x8f\xc6\xf7", +"\x6c\xc9" => "\xc0\xf4", +"\x6c\xca" => "\xc7\xf1", +"\x6c\xcc" => "\xc8\xe7", +"\x6c\xcd" => "\x8f\xc6\xf8", +"\x6c\xcf" => "\x8f\xc6\xf9", +"\x6c\xd0" => "\x8f\xc6\xfa", +"\x6c\xd1" => "\x8f\xc6\xfb", +"\x6c\xd2" => "\x8f\xc6\xfc", +"\x6c\xd3" => "\xdd\xf7", +"\x6c\xd4" => "\x8f\xc6\xfd", +"\x6c\xd5" => "\xcb\xa1", +"\x6c\xd6" => "\x8f\xc6\xfe", +"\x6c\xd7" => "\xdd\xf9", +"\x6c\xd9" => "\xde\xa4", +"\x6c\xda" => "\x8f\xc7\xa1", +"\x6c\xdb" => "\xde\xa2", +"\x6c\xdc" => "\x8f\xc7\xa2", +"\x6c\xdd" => "\xdd\xfb", +"\x6c\xe0" => "\x8f\xc7\xa3", +"\x6c\xe1" => "\xcb\xa2", +"\x6c\xe2" => "\xc7\xc8", +"\x6c\xe3" => "\xb5\xe3", +"\x6c\xe5" => "\xc5\xa5", +"\x6c\xe7" => "\x8f\xc7\xa4", +"\x6c\xe8" => "\xc3\xed", +"\x6c\xe9" => "\x8f\xc7\xa5", +"\x6c\xea" => "\xde\xa5", +"\x6c\xeb" => "\x8f\xc7\xa6", +"\x6c\xec" => "\x8f\xc7\xa7", +"\x6c\xee" => "\x8f\xc7\xa8", +"\x6c\xef" => "\xde\xa3", +"\x6c\xf0" => "\xc2\xd9", +"\x6c\xf1" => "\xdd\xf6", +"\x6c\xf2" => "\x8f\xc7\xa9", +"\x6c\xf3" => "\xb1\xcb", +"\x6c\xf4" => "\x8f\xc7\xaa", +"\x6d\x04" => "\x8f\xc7\xab", +"\x6d\x07" => "\x8f\xc7\xac", +"\x6d\x0a" => "\x8f\xc7\xad", +"\x6d\x0b" => "\xcd\xce", +"\x6d\x0c" => "\xde\xb0", +"\x6d\x0e" => "\x8f\xc7\xae", +"\x6d\x0f" => "\x8f\xc7\xaf", +"\x6d\x11" => "\x8f\xc7\xb0", +"\x6d\x12" => "\xde\xaf", +"\x6d\x13" => "\x8f\xc7\xb1", +"\x6d\x17" => "\xc0\xf6", +"\x6d\x19" => "\xde\xac", +"\x6d\x1a" => "\x8f\xc7\xb2", +"\x6d\x1b" => "\xcd\xec", +"\x6d\x1e" => "\xc6\xb6", +"\x6d\x1f" => "\xde\xa6", +"\x6d\x25" => "\xc4\xc5", +"\x6d\x26" => "\x8f\xc7\xb3", +"\x6d\x27" => "\x8f\xc7\xb4", +"\x6d\x28" => "\x8f\xc7\xb5", +"\x6d\x29" => "\xb1\xcc", +"\x6d\x2a" => "\xb9\xbf", +"\x6d\x2b" => "\xde\xa9", +"\x6d\x2e" => "\x8f\xc7\xb7", +"\x6d\x2f" => "\x8f\xc7\xb8", +"\x6d\x31" => "\x8f\xc7\xb9", +"\x6d\x32" => "\xbd\xa7", +"\x6d\x33" => "\xde\xae", +"\x6d\x35" => "\xde\xad", +"\x6d\x36" => "\xde\xa8", +"\x6d\x38" => "\xde\xab", +"\x6d\x39" => "\x8f\xc7\xba", +"\x6d\x3b" => "\xb3\xe8", +"\x6d\x3c" => "\x8f\xc7\xbb", +"\x6d\x3d" => "\xde\xaa", +"\x6d\x3e" => "\xc7\xc9", +"\x6d\x3f" => "\x8f\xc7\xbc", +"\x6d\x41" => "\xce\xae", +"\x6d\x44" => "\xbe\xf4", +"\x6d\x45" => "\xc0\xf5", +"\x6d\x57" => "\x8f\xc7\xbd", +"\x6d\x59" => "\xde\xb6", +"\x6d\x5a" => "\xde\xb4", +"\x6d\x5c" => "\xc9\xcd", +"\x6d\x5e" => "\x8f\xc7\xbe", +"\x6d\x5f" => "\x8f\xc7\xbf", +"\x6d\x61" => "\x8f\xc7\xc0", +"\x6d\x63" => "\xde\xb1", +"\x6d\x64" => "\xde\xb3", +"\x6d\x65" => "\x8f\xc7\xc1", +"\x6d\x66" => "\xb1\xba", +"\x6d\x67" => "\x8f\xc7\xc2", +"\x6d\x69" => "\xb9\xc0", +"\x6d\x6a" => "\xcf\xb2", +"\x6d\x6c" => "\xb3\xbd", +"\x6d\x6e" => "\xc9\xe2", +"\x6d\x6f" => "\x8f\xc7\xc3", +"\x6d\x70" => "\x8f\xc7\xc4", +"\x6d\x74" => "\xcd\xe1", +"\x6d\x77" => "\xb3\xa4", +"\x6d\x78" => "\xbf\xbb", +"\x6d\x79" => "\xde\xb5", +"\x6d\x7c" => "\x8f\xc7\xc5", +"\x6d\x82" => "\x8f\xc7\xc6", +"\x6d\x85" => "\xde\xba", +"\x6d\x87" => "\x8f\xc7\xc7", +"\x6d\x88" => "\xbe\xc3", +"\x6d\x8c" => "\xcd\xb0", +"\x6d\x8e" => "\xde\xb7", +"\x6d\x91" => "\x8f\xc7\xc8", +"\x6d\x92" => "\x8f\xc7\xc9", +"\x6d\x93" => "\xde\xb2", +"\x6d\x94" => "\x8f\xc7\xca", +"\x6d\x95" => "\xde\xb8", +"\x6d\x96" => "\x8f\xc7\xcb", +"\x6d\x97" => "\x8f\xc7\xcc", +"\x6d\x98" => "\x8f\xc7\xcd", +"\x6d\x99" => "\xce\xde", +"\x6d\x9b" => "\xc5\xf3", +"\x6d\x9c" => "\xc6\xc2", +"\x6d\xaa" => "\x8f\xc7\xce", +"\x6d\xac" => "\x8f\xc7\xcf", +"\x6d\xaf" => "\xb3\xb6", +"\x6d\xb2" => "\xb1\xd5", +"\x6d\xb4" => "\x8f\xc7\xd0", +"\x6d\xb5" => "\xde\xbe", +"\x6d\xb7" => "\x8f\xc7\xd1", +"\x6d\xb8" => "\xde\xc1", +"\x6d\xb9" => "\x8f\xc7\xd2", +"\x6d\xbc" => "\xce\xc3", +"\x6d\xbd" => "\x8f\xc7\xd3", +"\x6d\xbf" => "\x8f\xc7\xd4", +"\x6d\xc0" => "\xcd\xe4", +"\x6d\xc4" => "\x8f\xc7\xd5", +"\x6d\xc5" => "\xde\xc8", +"\x6d\xc6" => "\xde\xc2", +"\x6d\xc7" => "\xde\xbf", +"\x6d\xc8" => "\x8f\xc7\xd6", +"\x6d\xca" => "\x8f\xc7\xd7", +"\x6d\xcb" => "\xce\xd4", +"\x6d\xcc" => "\xde\xc5", +"\x6d\xce" => "\x8f\xc7\xd8", +"\x6d\xcf" => "\x8f\xc7\xd9", +"\x6d\xd1" => "\xbd\xca", +"\x6d\xd2" => "\xde\xc7", +"\x6d\xd5" => "\xde\xcc", +"\x6d\xd6" => "\x8f\xc7\xda", +"\x6d\xd8" => "\xc5\xf1", +"\x6d\xd9" => "\xde\xca", +"\x6d\xdb" => "\x8f\xc7\xdb", +"\x6d\xdd" => "\x8f\xc7\xdc", +"\x6d\xde" => "\xde\xc4", +"\x6d\xdf" => "\x8f\xc7\xdd", +"\x6d\xe0" => "\x8f\xc7\xde", +"\x6d\xe1" => "\xc3\xb8", +"\x6d\xe2" => "\x8f\xc7\xdf", +"\x6d\xe4" => "\xde\xcb", +"\x6d\xe5" => "\x8f\xc7\xe0", +"\x6d\xe6" => "\xde\xc0", +"\x6d\xe8" => "\xde\xc6", +"\x6d\xe9" => "\x8f\xc7\xe1", +"\x6d\xea" => "\xde\xcd", +"\x6d\xeb" => "\xb0\xfc", +"\x6d\xec" => "\xde\xc3", +"\x6d\xee" => "\xde\xce", +"\x6d\xef" => "\x8f\xc7\xe2", +"\x6d\xf0" => "\x8f\xc7\xe3", +"\x6d\xf1" => "\xbf\xbc", +"\x6d\xf3" => "\xbd\xdf", +"\x6d\xf4" => "\x8f\xc7\xe4", +"\x6d\xf5" => "\xca\xa5", +"\x6d\xf6" => "\x8f\xc7\xe5", +"\x6d\xf7" => "\xba\xae", +"\x6d\xf9" => "\xde\xbb", +"\x6d\xfa" => "\xde\xc9", +"\x6d\xfb" => "\xc5\xba", +"\x6d\xfc" => "\x8f\xc7\xe6", +"\x6e\x00" => "\x8f\xc7\xe7", +"\x6e\x04" => "\x8f\xc7\xe8", +"\x6e\x05" => "\xc0\xb6", +"\x6e\x07" => "\xb3\xe9", +"\x6e\x08" => "\xba\xd1", +"\x6e\x09" => "\xbe\xc4", +"\x6e\x0a" => "\xde\xbd", +"\x6e\x0b" => "\xbd\xc2", +"\x6e\x13" => "\xb7\xcc", +"\x6e\x15" => "\xde\xbc", +"\x6e\x19" => "\xde\xd2", +"\x6e\x1a" => "\xbd\xed", +"\x6e\x1b" => "\xb8\xba", +"\x6e\x1d" => "\xde\xe1", +"\x6e\x1e" => "\x8f\xc7\xe9", +"\x6e\x1f" => "\xde\xdb", +"\x6e\x20" => "\xb5\xf4", +"\x6e\x21" => "\xc5\xcf", +"\x6e\x22" => "\x8f\xc7\xea", +"\x6e\x23" => "\xde\xd6", +"\x6e\x24" => "\xde\xdf", +"\x6e\x25" => "\xb0\xaf", +"\x6e\x26" => "\xb1\xb2", +"\x6e\x27" => "\x8f\xc7\xeb", +"\x6e\x29" => "\xb2\xb9", +"\x6e\x2b" => "\xde\xd8", +"\x6e\x2c" => "\xc2\xac", +"\x6e\x2d" => "\xde\xcf", +"\x6e\x2e" => "\xde\xd1", +"\x6e\x2f" => "\xb9\xc1", +"\x6e\x32" => "\x8f\xc7\xec", +"\x6e\x36" => "\x8f\xc7\xed", +"\x6e\x38" => "\xde\xe2", +"\x6e\x39" => "\x8f\xc7\xee", +"\x6e\x3a" => "\xde\xdd", +"\x6e\x3b" => "\x8f\xc7\xef", +"\x6e\x3c" => "\x8f\xc7\xf0", +"\x6e\x3e" => "\xde\xd5", +"\x6e\x43" => "\xde\xdc", +"\x6e\x44" => "\x8f\xc7\xf1", +"\x6e\x45" => "\x8f\xc7\xf2", +"\x6e\x48" => "\x8f\xc7\xf3", +"\x6e\x49" => "\x8f\xc7\xf4", +"\x6e\x4a" => "\xcc\xab", +"\x6e\x4b" => "\x8f\xc7\xf5", +"\x6e\x4d" => "\xde\xda", +"\x6e\x4e" => "\xde\xde", +"\x6e\x4f" => "\x8f\xc7\xf6", +"\x6e\x51" => "\x8f\xc7\xf7", +"\x6e\x52" => "\x8f\xc7\xf8", +"\x6e\x53" => "\x8f\xc7\xf9", +"\x6e\x54" => "\x8f\xc7\xfa", +"\x6e\x56" => "\xb8\xd0", +"\x6e\x57" => "\x8f\xc7\xfb", +"\x6e\x58" => "\xbe\xc5", +"\x6e\x5b" => "\xc3\xb9", +"\x6e\x5c" => "\x8f\xc7\xfc", +"\x6e\x5d" => "\x8f\xc7\xfd", +"\x6e\x5e" => "\x8f\xc7\xfe", +"\x6e\x5f" => "\xde\xd4", +"\x6e\x62" => "\x8f\xc8\xa1", +"\x6e\x63" => "\x8f\xc8\xa2", +"\x6e\x67" => "\xcd\xaf", +"\x6e\x68" => "\x8f\xc8\xa3", +"\x6e\x6b" => "\xde\xd7", +"\x6e\x6e" => "\xde\xd0", +"\x6e\x6f" => "\xc5\xf2", +"\x6e\x72" => "\xde\xd3", +"\x6e\x73" => "\x8f\xc8\xa4", +"\x6e\x76" => "\xde\xd9", +"\x6e\x7b" => "\x8f\xc8\xa5", +"\x6e\x7d" => "\x8f\xc8\xa6", +"\x6e\x7e" => "\xcf\xd1", +"\x6e\x7f" => "\xbc\xbe", +"\x6e\x80" => "\xcb\xfe", +"\x6e\x82" => "\xde\xe3", +"\x6e\x8c" => "\xc8\xae", +"\x6e\x8d" => "\x8f\xc8\xa7", +"\x6e\x8f" => "\xde\xef", +"\x6e\x90" => "\xb8\xbb", +"\x6e\x93" => "\x8f\xc8\xa8", +"\x6e\x96" => "\xbd\xe0", +"\x6e\x98" => "\xde\xe5", +"\x6e\x99" => "\x8f\xc8\xa9", +"\x6e\x9c" => "\xce\xaf", +"\x6e\x9d" => "\xb9\xc2", +"\x6e\x9f" => "\xde\xf2", +"\x6e\xa0" => "\x8f\xc8\xaa", +"\x6e\xa2" => "\xb0\xee", +"\x6e\xa5" => "\xde\xf0", +"\x6e\xa7" => "\x8f\xc8\xab", +"\x6e\xaa" => "\xde\xe4", +"\x6e\xad" => "\x8f\xc8\xac", +"\x6e\xae" => "\x8f\xc8\xad", +"\x6e\xaf" => "\xde\xea", +"\x6e\xb1" => "\x8f\xc8\xae", +"\x6e\xb2" => "\xde\xec", +"\x6e\xb3" => "\x8f\xc8\xaf", +"\x6e\xb6" => "\xcd\xcf", +"\x6e\xb7" => "\xde\xe7", +"\x6e\xba" => "\xc5\xae", +"\x6e\xbb" => "\x8f\xc8\xb0", +"\x6e\xbd" => "\xde\xe9", +"\x6e\xbf" => "\x8f\xc8\xb1", +"\x6e\xc0" => "\x8f\xc8\xb2", +"\x6e\xc1" => "\x8f\xc8\xb3", +"\x6e\xc2" => "\xde\xf1", +"\x6e\xc3" => "\x8f\xc8\xb4", +"\x6e\xc4" => "\xde\xeb", +"\x6e\xc5" => "\xcc\xc7", +"\x6e\xc7" => "\x8f\xc8\xb5", +"\x6e\xc8" => "\x8f\xc8\xb6", +"\x6e\xc9" => "\xde\xe6", +"\x6e\xca" => "\x8f\xc8\xb7", +"\x6e\xcb" => "\xbc\xa2", +"\x6e\xcc" => "\xde\xfe", +"\x6e\xcd" => "\x8f\xc8\xb8", +"\x6e\xce" => "\x8f\xc8\xb9", +"\x6e\xcf" => "\x8f\xc8\xba", +"\x6e\xd1" => "\xb3\xea", +"\x6e\xd3" => "\xde\xe8", +"\x6e\xd4" => "\xde\xed", +"\x6e\xd5" => "\xde\xee", +"\x6e\xdd" => "\xc2\xec", +"\x6e\xde" => "\xc2\xda", +"\x6e\xeb" => "\x8f\xc8\xbb", +"\x6e\xec" => "\xde\xf6", +"\x6e\xed" => "\x8f\xc8\xbc", +"\x6e\xee" => "\x8f\xc8\xbd", +"\x6e\xef" => "\xde\xfc", +"\x6e\xf2" => "\xde\xfa", +"\x6e\xf4" => "\xc5\xa9", +"\x6e\xf7" => "\xdf\xa3", +"\x6e\xf8" => "\xde\xf7", +"\x6e\xf9" => "\x8f\xc8\xbe", +"\x6e\xfb" => "\x8f\xc8\xbf", +"\x6e\xfd" => "\x8f\xc8\xc0", +"\x6e\xfe" => "\xde\xf8", +"\x6e\xff" => "\xde\xe0", +"\x6f\x01" => "\xb5\xf9", +"\x6f\x02" => "\xc9\xba", +"\x6f\x04" => "\x8f\xc8\xc1", +"\x6f\x06" => "\xbc\xbf", +"\x6f\x08" => "\x8f\xc8\xc2", +"\x6f\x09" => "\xb9\xf7", +"\x6f\x0a" => "\x8f\xc8\xc3", +"\x6f\x0c" => "\x8f\xc8\xc4", +"\x6f\x0d" => "\x8f\xc8\xc5", +"\x6f\x0f" => "\xcf\xb3", +"\x6f\x11" => "\xde\xf4", +"\x6f\x13" => "\xdf\xa2", +"\x6f\x14" => "\xb1\xe9", +"\x6f\x15" => "\xc1\xe6", +"\x6f\x16" => "\x8f\xc8\xc6", +"\x6f\x18" => "\x8f\xc8\xc7", +"\x6f\x1a" => "\x8f\xc8\xc8", +"\x6f\x1b" => "\x8f\xc8\xc9", +"\x6f\x20" => "\xc7\xf9", +"\x6f\x22" => "\xb4\xc1", +"\x6f\x23" => "\xce\xfa", +"\x6f\x26" => "\x8f\xc8\xca", +"\x6f\x29" => "\x8f\xc8\xcb", +"\x6f\x2a" => "\x8f\xc8\xcc", +"\x6f\x2b" => "\xcc\xa1", +"\x6f\x2c" => "\xc4\xd2", +"\x6f\x2d" => "\x8f\xc8\xd3", +"\x6f\x2f" => "\x8f\xc8\xcd", +"\x6f\x30" => "\x8f\xc8\xce", +"\x6f\x31" => "\xde\xfb", +"\x6f\x32" => "\xde\xfd", +"\x6f\x33" => "\x8f\xc8\xcf", +"\x6f\x36" => "\x8f\xc8\xd0", +"\x6f\x38" => "\xc1\xb2", +"\x6f\x3b" => "\x8f\xc8\xd1", +"\x6f\x3c" => "\x8f\xc8\xd2", +"\x6f\x3e" => "\xdf\xa1", +"\x6f\x3f" => "\xde\xf9", +"\x6f\x41" => "\xde\xf3", +"\x6f\x45" => "\xb4\xc3", +"\x6f\x4f" => "\x8f\xc8\xd4", +"\x6f\x51" => "\x8f\xc8\xd5", +"\x6f\x52" => "\x8f\xc8\xd6", +"\x6f\x53" => "\x8f\xc8\xd7", +"\x6f\x54" => "\xb7\xe9", +"\x6f\x57" => "\x8f\xc8\xd8", +"\x6f\x58" => "\xdf\xaf", +"\x6f\x59" => "\x8f\xc8\xd9", +"\x6f\x5a" => "\x8f\xc8\xda", +"\x6f\x5b" => "\xdf\xaa", +"\x6f\x5c" => "\xc0\xf8", +"\x6f\x5d" => "\x8f\xc8\xdb", +"\x6f\x5e" => "\x8f\xc8\xdc", +"\x6f\x5f" => "\xb3\xe3", +"\x6f\x61" => "\x8f\xc8\xdd", +"\x6f\x62" => "\x8f\xc8\xde", +"\x6f\x64" => "\xbd\xe1", +"\x6f\x66" => "\xdf\xb3", +"\x6f\x68" => "\x8f\xc8\xdf", +"\x6f\x6c" => "\x8f\xc8\xe0", +"\x6f\x6d" => "\xdf\xac", +"\x6f\x6e" => "\xc4\xac", +"\x6f\x6f" => "\xdf\xa9", +"\x6f\x70" => "\xc4\xd9", +"\x6f\x74" => "\xdf\xcc", +"\x6f\x78" => "\xdf\xa6", +"\x6f\x7a" => "\xdf\xa5", +"\x6f\x7c" => "\xdf\xae", +"\x6f\x7d" => "\x8f\xc8\xe1", +"\x6f\x7e" => "\x8f\xc8\xe2", +"\x6f\x80" => "\xdf\xa8", +"\x6f\x81" => "\xdf\xa7", +"\x6f\x82" => "\xdf\xad", +"\x6f\x83" => "\x8f\xc8\xe3", +"\x6f\x84" => "\xc0\xa1", +"\x6f\x86" => "\xdf\xa4", +"\x6f\x87" => "\x8f\xc8\xe4", +"\x6f\x88" => "\x8f\xc8\xe5", +"\x6f\x8b" => "\x8f\xc8\xe6", +"\x6f\x8c" => "\x8f\xc8\xe7", +"\x6f\x8d" => "\x8f\xc8\xe8", +"\x6f\x8e" => "\xdf\xb0", +"\x6f\x90" => "\x8f\xc8\xe9", +"\x6f\x91" => "\xdf\xb1", +"\x6f\x92" => "\x8f\xc8\xea", +"\x6f\x93" => "\x8f\xc8\xeb", +"\x6f\x94" => "\x8f\xc8\xec", +"\x6f\x96" => "\x8f\xc8\xed", +"\x6f\x97" => "\xb4\xc2", +"\x6f\x9a" => "\x8f\xc8\xee", +"\x6f\x9f" => "\x8f\xc8\xef", +"\x6f\xa0" => "\x8f\xc8\xf0", +"\x6f\xa1" => "\xdf\xb6", +"\x6f\xa3" => "\xdf\xb5", +"\x6f\xa4" => "\xdf\xb7", +"\x6f\xa5" => "\x8f\xc8\xf1", +"\x6f\xa6" => "\x8f\xc8\xf2", +"\x6f\xa7" => "\x8f\xc8\xf3", +"\x6f\xa8" => "\x8f\xc8\xf4", +"\x6f\xaa" => "\xdf\xba", +"\x6f\xae" => "\x8f\xc8\xf5", +"\x6f\xaf" => "\x8f\xc8\xf6", +"\x6f\xb0" => "\x8f\xc8\xf7", +"\x6f\xb1" => "\xc5\xc3", +"\x6f\xb3" => "\xdf\xb4", +"\x6f\xb5" => "\x8f\xc8\xf8", +"\x6f\xb6" => "\x8f\xc8\xf9", +"\x6f\xb9" => "\xdf\xb8", +"\x6f\xbc" => "\x8f\xc8\xfa", +"\x6f\xc0" => "\xb7\xe3", +"\x6f\xc1" => "\xc2\xf9", +"\x6f\xc2" => "\xdf\xb2", +"\x6f\xc3" => "\xc7\xbb", +"\x6f\xc5" => "\x8f\xc8\xfb", +"\x6f\xc6" => "\xdf\xb9", +"\x6f\xc7" => "\x8f\xc8\xfc", +"\x6f\xc8" => "\x8f\xc8\xfd", +"\x6f\xca" => "\x8f\xc8\xfe", +"\x6f\xd4" => "\xdf\xbe", +"\x6f\xd5" => "\xdf\xbc", +"\x6f\xd8" => "\xdf\xbf", +"\x6f\xda" => "\x8f\xc9\xa1", +"\x6f\xdb" => "\xdf\xc2", +"\x6f\xde" => "\x8f\xc9\xa2", +"\x6f\xdf" => "\xdf\xbb", +"\x6f\xe0" => "\xb9\xea", +"\x6f\xe1" => "\xc7\xa8", +"\x6f\xe4" => "\xde\xb9", +"\x6f\xe8" => "\x8f\xc9\xa3", +"\x6f\xe9" => "\x8f\xc9\xa4", +"\x6f\xeb" => "\xcd\xf4", +"\x6f\xec" => "\xdf\xbd", +"\x6f\xee" => "\xdf\xc1", +"\x6f\xef" => "\xc2\xf5", +"\x6f\xf0" => "\x8f\xc9\xa5", +"\x6f\xf1" => "\xdf\xc0", +"\x6f\xf3" => "\xdf\xab", +"\x6f\xf5" => "\x8f\xc9\xa6", +"\x6f\xf6" => "\xef\xe9", +"\x6f\xf9" => "\x8f\xc9\xa7", +"\x6f\xfa" => "\xdf\xc5", +"\x6f\xfc" => "\x8f\xc9\xa8", +"\x6f\xfd" => "\x8f\xc9\xa9", +"\x6f\xfe" => "\xdf\xc9", +"\x70\x00" => "\x8f\xc9\xaa", +"\x70\x01" => "\xdf\xc7", +"\x70\x05" => "\x8f\xc9\xab", +"\x70\x06" => "\x8f\xc9\xac", +"\x70\x07" => "\x8f\xc9\xad", +"\x70\x09" => "\xdf\xc3", +"\x70\x0b" => "\xdf\xc4", +"\x70\x0d" => "\x8f\xc9\xae", +"\x70\x0f" => "\xdf\xc8", +"\x70\x11" => "\xdf\xc6", +"\x70\x15" => "\xc9\xce", +"\x70\x17" => "\x8f\xc9\xaf", +"\x70\x18" => "\xdf\xce", +"\x70\x1a" => "\xdf\xcb", +"\x70\x1b" => "\xdf\xca", +"\x70\x1d" => "\xdf\xcd", +"\x70\x1e" => "\xc6\xd4", +"\x70\x1f" => "\xdf\xcf", +"\x70\x20" => "\x8f\xc9\xb0", +"\x70\x23" => "\x8f\xc9\xb1", +"\x70\x26" => "\xc3\xf5", +"\x70\x27" => "\xc2\xed", +"\x70\x2c" => "\xc0\xa5", +"\x70\x2f" => "\x8f\xc9\xb2", +"\x70\x30" => "\xdf\xd0", +"\x70\x32" => "\xdf\xd2", +"\x70\x34" => "\x8f\xc9\xb3", +"\x70\x37" => "\x8f\xc9\xb4", +"\x70\x39" => "\x8f\xc9\xb5", +"\x70\x3c" => "\x8f\xc9\xb6", +"\x70\x3e" => "\xdf\xd1", +"\x70\x43" => "\x8f\xc9\xb7", +"\x70\x44" => "\x8f\xc9\xb8", +"\x70\x48" => "\x8f\xc9\xb9", +"\x70\x49" => "\x8f\xc9\xba", +"\x70\x4a" => "\x8f\xc9\xbb", +"\x70\x4b" => "\x8f\xc9\xbc", +"\x70\x4c" => "\xde\xf5", +"\x70\x4e" => "\x8f\xc9\xc1", +"\x70\x51" => "\xdf\xd3", +"\x70\x54" => "\x8f\xc9\xbd", +"\x70\x55" => "\x8f\xc9\xbe", +"\x70\x58" => "\xc6\xe7", +"\x70\x5d" => "\x8f\xc9\xbf", +"\x70\x5e" => "\x8f\xc9\xc0", +"\x70\x63" => "\xdf\xd4", +"\x70\x64" => "\x8f\xc9\xc2", +"\x70\x65" => "\x8f\xc9\xc3", +"\x70\x6b" => "\xb2\xd0", +"\x70\x6c" => "\x8f\xc9\xc4", +"\x70\x6e" => "\x8f\xc9\xc5", +"\x70\x6f" => "\xc5\xf4", +"\x70\x70" => "\xb3\xa5", +"\x70\x75" => "\x8f\xc9\xc6", +"\x70\x76" => "\x8f\xc9\xc7", +"\x70\x78" => "\xb5\xe4", +"\x70\x7c" => "\xbc\xde", +"\x70\x7d" => "\xba\xd2", +"\x70\x7e" => "\x8f\xc9\xc8", +"\x70\x81" => "\x8f\xc9\xc9", +"\x70\x85" => "\x8f\xc9\xca", +"\x70\x86" => "\x8f\xc9\xcb", +"\x70\x89" => "\xcf\xa7", +"\x70\x8a" => "\xbf\xe6", +"\x70\x8e" => "\xb1\xea", +"\x70\x92" => "\xdf\xd6", +"\x70\x94" => "\x8f\xc9\xcc", +"\x70\x95" => "\x8f\xc9\xcd", +"\x70\x96" => "\x8f\xc9\xce", +"\x70\x97" => "\x8f\xc9\xcf", +"\x70\x98" => "\x8f\xc9\xd0", +"\x70\x99" => "\xdf\xd5", +"\x70\x9b" => "\x8f\xc9\xd1", +"\x70\xa4" => "\x8f\xc9\xd2", +"\x70\xab" => "\x8f\xc9\xd3", +"\x70\xac" => "\xdf\xd9", +"\x70\xad" => "\xc3\xba", +"\x70\xae" => "\xdf\xdc", +"\x70\xaf" => "\xdf\xd7", +"\x70\xb0" => "\x8f\xc9\xd4", +"\x70\xb1" => "\x8f\xc9\xd5", +"\x70\xb3" => "\xdf\xdb", +"\x70\xb4" => "\x8f\xc9\xd6", +"\x70\xb7" => "\x8f\xc9\xd7", +"\x70\xb8" => "\xdf\xda", +"\x70\xb9" => "\xc5\xc0", +"\x70\xba" => "\xb0\xd9", +"\x70\xc8" => "\xce\xf5", +"\x70\xca" => "\x8f\xc9\xd8", +"\x70\xcb" => "\xdf\xde", +"\x70\xcf" => "\xb1\xa8", +"\x70\xd1" => "\x8f\xc9\xd9", +"\x70\xd3" => "\x8f\xc9\xda", +"\x70\xd4" => "\x8f\xc9\xdb", +"\x70\xd5" => "\x8f\xc9\xdc", +"\x70\xd6" => "\x8f\xc9\xdd", +"\x70\xd8" => "\x8f\xc9\xde", +"\x70\xd9" => "\xdf\xe0", +"\x70\xdc" => "\x8f\xc9\xdf", +"\x70\xdd" => "\xdf\xdf", +"\x70\xdf" => "\xdf\xdd", +"\x70\xe4" => "\x8f\xc9\xe0", +"\x70\xf1" => "\xdf\xd8", +"\x70\xf9" => "\xcb\xa3", +"\x70\xfa" => "\x8f\xc9\xe1", +"\x70\xfd" => "\xdf\xe2", +"\x71\x03" => "\x8f\xc9\xe2", +"\x71\x04" => "\x8f\xc9\xe3", +"\x71\x05" => "\x8f\xc9\xe4", +"\x71\x06" => "\x8f\xc9\xe5", +"\x71\x07" => "\x8f\xc9\xe6", +"\x71\x09" => "\xdf\xe1", +"\x71\x0b" => "\x8f\xc9\xe7", +"\x71\x0c" => "\x8f\xc9\xe8", +"\x71\x0f" => "\x8f\xc9\xe9", +"\x71\x14" => "\xb1\xeb", +"\x71\x19" => "\xdf\xe4", +"\x71\x1a" => "\xca\xb2", +"\x71\x1c" => "\xdf\xe3", +"\x71\x1e" => "\x8f\xc9\xea", +"\x71\x20" => "\x8f\xc9\xeb", +"\x71\x21" => "\xcc\xb5", +"\x71\x26" => "\xbe\xc7", +"\x71\x2b" => "\x8f\xc9\xec", +"\x71\x2d" => "\x8f\xc9\xed", +"\x71\x2f" => "\x8f\xc9\xee", +"\x71\x30" => "\x8f\xc9\xef", +"\x71\x31" => "\x8f\xc9\xf0", +"\x71\x36" => "\xc1\xb3", +"\x71\x38" => "\x8f\xc9\xf1", +"\x71\x3c" => "\xbe\xc6", +"\x71\x41" => "\x8f\xc9\xf2", +"\x71\x45" => "\x8f\xc9\xf3", +"\x71\x46" => "\x8f\xc9\xf4", +"\x71\x47" => "\x8f\xc9\xf5", +"\x71\x49" => "\xce\xfb", +"\x71\x4a" => "\x8f\xc9\xf6", +"\x71\x4b" => "\x8f\xc9\xf7", +"\x71\x4c" => "\xdf\xea", +"\x71\x4e" => "\xc0\xf9", +"\x71\x50" => "\x8f\xc9\xf8", +"\x71\x52" => "\x8f\xc9\xf9", +"\x71\x55" => "\xdf\xe6", +"\x71\x56" => "\xdf\xeb", +"\x71\x57" => "\x8f\xc9\xfa", +"\x71\x59" => "\xb1\xec", +"\x71\x5a" => "\x8f\xc9\xfb", +"\x71\x5c" => "\x8f\xc9\xfc", +"\x71\x5e" => "\x8f\xc9\xfd", +"\x71\x60" => "\x8f\xc9\xfe", +"\x71\x62" => "\xdf\xe9", +"\x71\x64" => "\xc7\xe1", +"\x71\x65" => "\xdf\xe5", +"\x71\x66" => "\xdf\xe8", +"\x71\x67" => "\xbe\xc8", +"\x71\x68" => "\x8f\xca\xa1", +"\x71\x69" => "\xc8\xd1", +"\x71\x6c" => "\xdf\xec", +"\x71\x6e" => "\xbc\xd1", +"\x71\x79" => "\x8f\xca\xa2", +"\x71\x7d" => "\xc0\xfa", +"\x71\x80" => "\x8f\xca\xa3", +"\x71\x84" => "\xdf\xef", +"\x71\x85" => "\x8f\xca\xa4", +"\x71\x87" => "\x8f\xca\xa5", +"\x71\x88" => "\xdf\xe7", +"\x71\x8a" => "\xb7\xa7", +"\x71\x8c" => "\x8f\xca\xa6", +"\x71\x8f" => "\xdf\xed", +"\x71\x92" => "\x8f\xca\xa7", +"\x71\x94" => "\xcd\xd0", +"\x71\x95" => "\xdf\xf0", +"\x71\x99" => "\xf4\xa6", +"\x71\x9a" => "\x8f\xca\xa8", +"\x71\x9b" => "\x8f\xca\xa9", +"\x71\x9f" => "\xbd\xcf", +"\x71\xa0" => "\x8f\xca\xaa", +"\x71\xa2" => "\x8f\xca\xab", +"\x71\xa8" => "\xdf\xf1", +"\x71\xac" => "\xdf\xf2", +"\x71\xaf" => "\x8f\xca\xac", +"\x71\xb0" => "\x8f\xca\xad", +"\x71\xb1" => "\xc7\xae", +"\x71\xb2" => "\x8f\xca\xae", +"\x71\xb3" => "\x8f\xca\xaf", +"\x71\xb9" => "\xdf\xf4", +"\x71\xba" => "\x8f\xca\xb0", +"\x71\xbe" => "\xdf\xf5", +"\x71\xbf" => "\x8f\xca\xb1", +"\x71\xc0" => "\x8f\xca\xb2", +"\x71\xc1" => "\x8f\xca\xb3", +"\x71\xc3" => "\xc7\xb3", +"\x71\xc4" => "\x8f\xca\xb4", +"\x71\xc8" => "\xc5\xf5", +"\x71\xc9" => "\xdf\xf7", +"\x71\xcb" => "\x8f\xca\xb5", +"\x71\xcc" => "\x8f\xca\xb6", +"\x71\xce" => "\xdf\xf9", +"\x71\xd0" => "\xce\xd5", +"\x71\xd2" => "\xdf\xf6", +"\x71\xd3" => "\x8f\xca\xb7", +"\x71\xd4" => "\xdf\xf8", +"\x71\xd5" => "\xb1\xed", +"\x71\xd6" => "\x8f\xca\xb8", +"\x71\xd7" => "\xdf\xf3", +"\x71\xd9" => "\x8f\xca\xb9", +"\x71\xda" => "\x8f\xca\xba", +"\x71\xdc" => "\x8f\xca\xbb", +"\x71\xdf" => "\xd3\xdb", +"\x71\xe0" => "\xdf\xfa", +"\x71\xe5" => "\xc1\xe7", +"\x71\xe6" => "\xbb\xb8", +"\x71\xe7" => "\xdf\xfc", +"\x71\xec" => "\xdf\xfb", +"\x71\xed" => "\xbf\xa4", +"\x71\xee" => "\xd2\xd9", +"\x71\xf5" => "\xdf\xfd", +"\x71\xf8" => "\x8f\xca\xbc", +"\x71\xf9" => "\xe0\xa1", +"\x71\xfb" => "\xdf\xee", +"\x71\xfc" => "\xdf\xfe", +"\x71\xfe" => "\x8f\xca\xbd", +"\x71\xff" => "\xe0\xa2", +"\x72\x00" => "\x8f\xca\xbe", +"\x72\x06" => "\xc7\xfa", +"\x72\x07" => "\x8f\xca\xbf", +"\x72\x08" => "\x8f\xca\xc0", +"\x72\x09" => "\x8f\xca\xc1", +"\x72\x0d" => "\xe0\xa3", +"\x72\x10" => "\xe0\xa4", +"\x72\x13" => "\x8f\xca\xc2", +"\x72\x17" => "\x8f\xca\xc3", +"\x72\x1a" => "\x8f\xca\xc4", +"\x72\x1b" => "\xe0\xa5", +"\x72\x1d" => "\x8f\xca\xc5", +"\x72\x1f" => "\x8f\xca\xc6", +"\x72\x24" => "\x8f\xca\xc7", +"\x72\x28" => "\xe0\xa6", +"\x72\x2a" => "\xc4\xde", +"\x72\x2b" => "\x8f\xca\xc8", +"\x72\x2c" => "\xe0\xa8", +"\x72\x2d" => "\xe0\xa7", +"\x72\x2f" => "\x8f\xca\xc9", +"\x72\x30" => "\xe0\xa9", +"\x72\x32" => "\xe0\xaa", +"\x72\x34" => "\x8f\xca\xca", +"\x72\x35" => "\xbc\xdf", +"\x72\x36" => "\xc9\xe3", +"\x72\x38" => "\x8f\xca\xcb", +"\x72\x39" => "\x8f\xca\xcc", +"\x72\x3a" => "\xcc\xec", +"\x72\x3b" => "\xe0\xab", +"\x72\x3c" => "\xe0\xac", +"\x72\x3d" => "\xc1\xd6", +"\x72\x3e" => "\xbc\xa4", +"\x72\x3f" => "\xe0\xad", +"\x72\x40" => "\xe0\xae", +"\x72\x41" => "\x8f\xca\xcd", +"\x72\x42" => "\x8f\xca\xce", +"\x72\x43" => "\x8f\xca\xcf", +"\x72\x45" => "\x8f\xca\xd0", +"\x72\x46" => "\xe0\xaf", +"\x72\x47" => "\xca\xd2", +"\x72\x48" => "\xc8\xc7", +"\x72\x4b" => "\xe0\xb0", +"\x72\x4c" => "\xc7\xd7", +"\x72\x4e" => "\x8f\xca\xd1", +"\x72\x4f" => "\x8f\xca\xd2", +"\x72\x50" => "\x8f\xca\xd3", +"\x72\x52" => "\xc4\xad", +"\x72\x53" => "\x8f\xca\xd4", +"\x72\x55" => "\x8f\xca\xd5", +"\x72\x56" => "\x8f\xca\xd6", +"\x72\x58" => "\xe0\xb1", +"\x72\x59" => "\xb2\xe7", +"\x72\x5a" => "\x8f\xca\xd7", +"\x72\x5b" => "\xb5\xed", +"\x72\x5c" => "\x8f\xca\xd8", +"\x72\x5d" => "\xcc\xc6", +"\x72\x5e" => "\x8f\xca\xd9", +"\x72\x5f" => "\xcc\xb6", +"\x72\x60" => "\x8f\xca\xda", +"\x72\x61" => "\xb2\xb4", +"\x72\x62" => "\xcf\xb4", +"\x72\x63" => "\x8f\xca\xdb", +"\x72\x67" => "\xcb\xd2", +"\x72\x68" => "\x8f\xca\xdc", +"\x72\x69" => "\xca\xaa", +"\x72\x6b" => "\x8f\xca\xdd", +"\x72\x6e" => "\x8f\xca\xde", +"\x72\x6f" => "\x8f\xca\xdf", +"\x72\x71" => "\x8f\xca\xe0", +"\x72\x72" => "\xc0\xb7", +"\x72\x74" => "\xe0\xb2", +"\x72\x77" => "\x8f\xca\xe1", +"\x72\x78" => "\x8f\xca\xe2", +"\x72\x79" => "\xc6\xc3", +"\x72\x7b" => "\x8f\xca\xe3", +"\x72\x7c" => "\x8f\xca\xe4", +"\x72\x7d" => "\xb8\xa3", +"\x72\x7e" => "\xe0\xb3", +"\x72\x7f" => "\x8f\xca\xe5", +"\x72\x80" => "\xba\xd4", +"\x72\x81" => "\xe0\xb5", +"\x72\x82" => "\xe0\xb4", +"\x72\x84" => "\x8f\xca\xe6", +"\x72\x87" => "\xe0\xb6", +"\x72\x89" => "\x8f\xca\xe7", +"\x72\x8d" => "\x8f\xca\xe8", +"\x72\x8e" => "\x8f\xca\xe9", +"\x72\x92" => "\xe0\xb7", +"\x72\x93" => "\x8f\xca\xea", +"\x72\x96" => "\xe0\xb8", +"\x72\x9b" => "\x8f\xca\xeb", +"\x72\xa0" => "\xb5\xbe", +"\x72\xa2" => "\xe0\xb9", +"\x72\xa7" => "\xe0\xba", +"\x72\xa8" => "\x8f\xca\xec", +"\x72\xac" => "\xb8\xa4", +"\x72\xad" => "\x8f\xca\xed", +"\x72\xae" => "\x8f\xca\xee", +"\x72\xaf" => "\xc8\xc8", +"\x72\xb1" => "\x8f\xca\xef", +"\x72\xb2" => "\xe0\xbc", +"\x72\xb4" => "\x8f\xca\xf0", +"\x72\xb6" => "\xbe\xf5", +"\x72\xb9" => "\xe0\xbb", +"\x72\xbe" => "\x8f\xca\xf1", +"\x72\xc1" => "\x8f\xca\xf2", +"\x72\xc2" => "\xb6\xb8", +"\x72\xc3" => "\xe0\xbd", +"\x72\xc4" => "\xe0\xbf", +"\x72\xc6" => "\xe0\xbe", +"\x72\xc7" => "\x8f\xca\xf3", +"\x72\xc9" => "\x8f\xca\xf4", +"\x72\xcc" => "\x8f\xca\xf5", +"\x72\xce" => "\xe0\xc0", +"\x72\xd0" => "\xb8\xd1", +"\x72\xd2" => "\xe0\xc1", +"\x72\xd5" => "\x8f\xca\xf6", +"\x72\xd6" => "\x8f\xca\xf7", +"\x72\xd7" => "\xb6\xe9", +"\x72\xd8" => "\x8f\xca\xf8", +"\x72\xd9" => "\xc1\xc0", +"\x72\xdb" => "\xb9\xfd", +"\x72\xdf" => "\x8f\xca\xf9", +"\x72\xe0" => "\xe0\xc3", +"\x72\xe1" => "\xe0\xc4", +"\x72\xe2" => "\xe0\xc2", +"\x72\xe5" => "\x8f\xca\xfa", +"\x72\xe9" => "\xbc\xed", +"\x72\xec" => "\xc6\xc8", +"\x72\xed" => "\xb6\xb9", +"\x72\xf3" => "\x8f\xca\xfb", +"\x72\xf4" => "\x8f\xca\xfc", +"\x72\xf7" => "\xe0\xc6", +"\x72\xf8" => "\xc3\xac", +"\x72\xf9" => "\xe0\xc5", +"\x72\xfa" => "\x8f\xca\xfd", +"\x72\xfb" => "\x8f\xca\xfe", +"\x72\xfc" => "\xcf\xb5", +"\x72\xfd" => "\xc7\xe2", +"\x72\xfe" => "\x8f\xcb\xa1", +"\x73\x02" => "\x8f\xcb\xa2", +"\x73\x04" => "\x8f\xcb\xa3", +"\x73\x05" => "\x8f\xcb\xa4", +"\x73\x07" => "\x8f\xcb\xa5", +"\x73\x0a" => "\xe0\xc9", +"\x73\x0b" => "\x8f\xcb\xa6", +"\x73\x0d" => "\x8f\xcb\xa7", +"\x73\x12" => "\x8f\xcb\xa8", +"\x73\x13" => "\x8f\xcb\xa9", +"\x73\x16" => "\xe0\xcb", +"\x73\x17" => "\xe0\xc8", +"\x73\x18" => "\x8f\xcb\xaa", +"\x73\x19" => "\x8f\xcb\xab", +"\x73\x1b" => "\xcc\xd4", +"\x73\x1c" => "\xe0\xca", +"\x73\x1d" => "\xe0\xcc", +"\x73\x1e" => "\x8f\xcb\xac", +"\x73\x1f" => "\xce\xc4", +"\x73\x22" => "\x8f\xcb\xad", +"\x73\x24" => "\x8f\xcb\xae", +"\x73\x25" => "\xe0\xd0", +"\x73\x27" => "\x8f\xcb\xaf", +"\x73\x28" => "\x8f\xcb\xb0", +"\x73\x29" => "\xe0\xcf", +"\x73\x2a" => "\xc3\xf6", +"\x73\x2b" => "\xc7\xad", +"\x73\x2c" => "\x8f\xcb\xb1", +"\x73\x2e" => "\xb8\xa5", +"\x73\x2f" => "\xe0\xce", +"\x73\x31" => "\x8f\xcb\xb2", +"\x73\x32" => "\x8f\xcb\xb3", +"\x73\x34" => "\xe0\xcd", +"\x73\x35" => "\x8f\xcb\xb4", +"\x73\x36" => "\xcd\xb1", +"\x73\x37" => "\xcd\xb2", +"\x73\x3a" => "\x8f\xcb\xb5", +"\x73\x3b" => "\x8f\xcb\xb6", +"\x73\x3d" => "\x8f\xcb\xb7", +"\x73\x3e" => "\xe0\xd1", +"\x73\x3f" => "\xb1\xee", +"\x73\x43" => "\x8f\xcb\xb8", +"\x73\x44" => "\xb9\xf6", +"\x73\x45" => "\xbb\xe2", +"\x73\x4d" => "\x8f\xcb\xb9", +"\x73\x4e" => "\xe0\xd2", +"\x73\x4f" => "\xe0\xd3", +"\x73\x50" => "\x8f\xcb\xba", +"\x73\x52" => "\x8f\xcb\xbb", +"\x73\x56" => "\x8f\xcb\xbc", +"\x73\x57" => "\xe0\xd5", +"\x73\x58" => "\x8f\xcb\xbd", +"\x73\x5d" => "\x8f\xcb\xbe", +"\x73\x5e" => "\x8f\xcb\xbf", +"\x73\x5f" => "\x8f\xcb\xc0", +"\x73\x60" => "\x8f\xcb\xc1", +"\x73\x63" => "\xbd\xc3", +"\x73\x66" => "\x8f\xcb\xc2", +"\x73\x67" => "\x8f\xcb\xc3", +"\x73\x68" => "\xe0\xd7", +"\x73\x69" => "\x8f\xcb\xc4", +"\x73\x6a" => "\xe0\xd6", +"\x73\x6b" => "\x8f\xcb\xc5", +"\x73\x6c" => "\x8f\xcb\xc6", +"\x73\x6e" => "\x8f\xcb\xc7", +"\x73\x6f" => "\x8f\xcb\xc8", +"\x73\x70" => "\xe0\xd8", +"\x73\x71" => "\x8f\xcb\xc9", +"\x73\x72" => "\xb3\xcd", +"\x73\x75" => "\xe0\xda", +"\x73\x77" => "\x8f\xcb\xca", +"\x73\x78" => "\xe0\xd9", +"\x73\x79" => "\x8f\xcb\xcb", +"\x73\x7a" => "\xe0\xdc", +"\x73\x7b" => "\xe0\xdb", +"\x73\x7c" => "\x8f\xcb\xcc", +"\x73\x80" => "\x8f\xcb\xcd", +"\x73\x81" => "\x8f\xcb\xce", +"\x73\x83" => "\x8f\xcb\xcf", +"\x73\x84" => "\xb8\xbc", +"\x73\x85" => "\x8f\xcb\xd0", +"\x73\x86" => "\x8f\xcb\xd1", +"\x73\x87" => "\xce\xa8", +"\x73\x89" => "\xb6\xcc", +"\x73\x8b" => "\xb2\xa6", +"\x73\x8e" => "\x8f\xcb\xd2", +"\x73\x90" => "\x8f\xcb\xd3", +"\x73\x93" => "\x8f\xcb\xd4", +"\x73\x95" => "\x8f\xcb\xd5", +"\x73\x96" => "\xb6\xea", +"\x73\x97" => "\x8f\xcb\xd6", +"\x73\x98" => "\x8f\xcb\xd7", +"\x73\x9c" => "\x8f\xcb\xd8", +"\x73\x9e" => "\x8f\xcb\xd9", +"\x73\x9f" => "\x8f\xcb\xda", +"\x73\xa0" => "\x8f\xcb\xdb", +"\x73\xa2" => "\x8f\xcb\xdc", +"\x73\xa5" => "\x8f\xcb\xdd", +"\x73\xa6" => "\x8f\xcb\xde", +"\x73\xa9" => "\xb4\xe1", +"\x73\xaa" => "\x8f\xcb\xdf", +"\x73\xab" => "\x8f\xcb\xe0", +"\x73\xad" => "\x8f\xcb\xe1", +"\x73\xb2" => "\xce\xe8", +"\x73\xb3" => "\xe0\xde", +"\x73\xb5" => "\x8f\xcb\xe2", +"\x73\xb7" => "\x8f\xcb\xe3", +"\x73\xb9" => "\x8f\xcb\xe4", +"\x73\xbb" => "\xe0\xe0", +"\x73\xbc" => "\x8f\xcb\xe5", +"\x73\xbd" => "\x8f\xcb\xe6", +"\x73\xbf" => "\x8f\xcb\xe7", +"\x73\xc0" => "\xe0\xe1", +"\x73\xc2" => "\xb2\xd1", +"\x73\xc5" => "\x8f\xcb\xe8", +"\x73\xc6" => "\x8f\xcb\xe9", +"\x73\xc8" => "\xe0\xdd", +"\x73\xc9" => "\x8f\xcb\xea", +"\x73\xca" => "\xbb\xb9", +"\x73\xcb" => "\x8f\xcb\xeb", +"\x73\xcc" => "\x8f\xcb\xec", +"\x73\xcd" => "\xc4\xc1", +"\x73\xce" => "\xe0\xdf", +"\x73\xcf" => "\x8f\xcb\xed", +"\x73\xd2" => "\x8f\xcb\xee", +"\x73\xd3" => "\x8f\xcb\xef", +"\x73\xd6" => "\x8f\xcb\xf0", +"\x73\xd9" => "\x8f\xcb\xf1", +"\x73\xdd" => "\x8f\xcb\xf2", +"\x73\xde" => "\xe0\xe4", +"\x73\xe0" => "\xbc\xee", +"\x73\xe1" => "\x8f\xcb\xf3", +"\x73\xe3" => "\x8f\xcb\xf4", +"\x73\xe5" => "\xe0\xe2", +"\x73\xe6" => "\x8f\xcb\xf5", +"\x73\xe7" => "\x8f\xcb\xf6", +"\x73\xe9" => "\x8f\xcb\xf7", +"\x73\xea" => "\xb7\xbe", +"\x73\xed" => "\xc8\xc9", +"\x73\xee" => "\xe0\xe3", +"\x73\xf1" => "\xe0\xfe", +"\x73\xf4" => "\x8f\xcb\xf8", +"\x73\xf5" => "\x8f\xcb\xf9", +"\x73\xf7" => "\x8f\xcb\xfa", +"\x73\xf8" => "\xe0\xe9", +"\x73\xf9" => "\x8f\xcb\xfb", +"\x73\xfa" => "\x8f\xcb\xfc", +"\x73\xfb" => "\x8f\xcb\xfd", +"\x73\xfd" => "\x8f\xcb\xfe", +"\x73\xfe" => "\xb8\xbd", +"\x73\xff" => "\x8f\xcc\xa1", +"\x74\x00" => "\x8f\xcc\xa2", +"\x74\x01" => "\x8f\xcc\xa3", +"\x74\x03" => "\xb5\xe5", +"\x74\x04" => "\x8f\xcc\xa4", +"\x74\x05" => "\xe0\xe6", +"\x74\x06" => "\xcd\xfd", +"\x74\x07" => "\x8f\xcc\xa5", +"\x74\x09" => "\xce\xb0", +"\x74\x0a" => "\x8f\xcc\xa6", +"\x74\x11" => "\x8f\xcc\xa7", +"\x74\x1a" => "\x8f\xcc\xa8", +"\x74\x1b" => "\x8f\xcc\xa9", +"\x74\x22" => "\xc2\xf6", +"\x74\x24" => "\x8f\xcc\xaa", +"\x74\x25" => "\xe0\xe8", +"\x74\x26" => "\x8f\xcc\xab", +"\x74\x28" => "\x8f\xcc\xac", +"\x74\x29" => "\x8f\xcc\xad", +"\x74\x2a" => "\x8f\xcc\xae", +"\x74\x2b" => "\x8f\xcc\xaf", +"\x74\x2c" => "\x8f\xcc\xb0", +"\x74\x2d" => "\x8f\xcc\xb1", +"\x74\x2e" => "\x8f\xcc\xb2", +"\x74\x2f" => "\x8f\xcc\xb3", +"\x74\x30" => "\x8f\xcc\xb4", +"\x74\x31" => "\x8f\xcc\xb5", +"\x74\x32" => "\xe0\xea", +"\x74\x33" => "\xce\xd6", +"\x74\x34" => "\xb6\xd7", +"\x74\x35" => "\xc8\xfc", +"\x74\x36" => "\xc7\xca", +"\x74\x39" => "\x8f\xcc\xb6", +"\x74\x3a" => "\xe0\xeb", +"\x74\x3f" => "\xe0\xed", +"\x74\x40" => "\x8f\xcc\xb7", +"\x74\x41" => "\xe0\xf0", +"\x74\x43" => "\x8f\xcc\xb8", +"\x74\x44" => "\x8f\xcc\xb9", +"\x74\x46" => "\x8f\xcc\xba", +"\x74\x47" => "\x8f\xcc\xbb", +"\x74\x4b" => "\x8f\xcc\xbc", +"\x74\x4d" => "\x8f\xcc\xbd", +"\x74\x51" => "\x8f\xcc\xbe", +"\x74\x52" => "\x8f\xcc\xbf", +"\x74\x55" => "\xe0\xec", +"\x74\x57" => "\x8f\xcc\xc0", +"\x74\x59" => "\xe0\xef", +"\x74\x5a" => "\xb8\xea", +"\x74\x5b" => "\xb1\xcd", +"\x74\x5c" => "\xe0\xf1", +"\x74\x5d" => "\x8f\xcc\xc1", +"\x74\x5e" => "\xbf\xf0", +"\x74\x5f" => "\xe0\xee", +"\x74\x60" => "\xce\xdc", +"\x74\x62" => "\x8f\xcc\xc2", +"\x74\x63" => "\xe0\xf4", +"\x74\x64" => "\xf4\xa4", +"\x74\x66" => "\x8f\xcc\xc3", +"\x74\x67" => "\x8f\xcc\xc4", +"\x74\x68" => "\x8f\xcc\xc5", +"\x74\x69" => "\xe0\xf2", +"\x74\x6a" => "\xe0\xf5", +"\x74\x6b" => "\x8f\xcc\xc6", +"\x74\x6d" => "\x8f\xcc\xc7", +"\x74\x6e" => "\x8f\xcc\xc8", +"\x74\x6f" => "\xe0\xe7", +"\x74\x70" => "\xe0\xf3", +"\x74\x71" => "\x8f\xcc\xc9", +"\x74\x72" => "\x8f\xcc\xca", +"\x74\x73" => "\xba\xbc", +"\x74\x76" => "\xe0\xf6", +"\x74\x7e" => "\xe0\xf7", +"\x74\x80" => "\x8f\xcc\xcb", +"\x74\x81" => "\x8f\xcc\xcc", +"\x74\x83" => "\xcd\xfe", +"\x74\x85" => "\x8f\xcc\xcd", +"\x74\x86" => "\x8f\xcc\xce", +"\x74\x87" => "\x8f\xcc\xcf", +"\x74\x89" => "\x8f\xcc\xd0", +"\x74\x8b" => "\xe0\xf8", +"\x74\x8f" => "\x8f\xcc\xd1", +"\x74\x90" => "\x8f\xcc\xd2", +"\x74\x91" => "\x8f\xcc\xd3", +"\x74\x92" => "\x8f\xcc\xd4", +"\x74\x98" => "\x8f\xcc\xd5", +"\x74\x99" => "\x8f\xcc\xd6", +"\x74\x9a" => "\x8f\xcc\xd7", +"\x74\x9c" => "\x8f\xcc\xd8", +"\x74\x9e" => "\xe0\xf9", +"\x74\x9f" => "\x8f\xcc\xd9", +"\x74\xa0" => "\x8f\xcc\xda", +"\x74\xa1" => "\x8f\xcc\xdb", +"\x74\xa2" => "\xe0\xe5", +"\x74\xa3" => "\x8f\xcc\xdc", +"\x74\xa6" => "\x8f\xcc\xdd", +"\x74\xa7" => "\xe0\xfa", +"\x74\xa8" => "\x8f\xcc\xde", +"\x74\xa9" => "\x8f\xcc\xdf", +"\x74\xaa" => "\x8f\xcc\xe0", +"\x74\xab" => "\x8f\xcc\xe1", +"\x74\xae" => "\x8f\xcc\xe2", +"\x74\xaf" => "\x8f\xcc\xe3", +"\x74\xb0" => "\xb4\xc4", +"\x74\xb1" => "\x8f\xcc\xe4", +"\x74\xb2" => "\x8f\xcc\xe5", +"\x74\xb5" => "\x8f\xcc\xe6", +"\x74\xb9" => "\x8f\xcc\xe7", +"\x74\xbb" => "\x8f\xcc\xe8", +"\x74\xbd" => "\xbc\xa5", +"\x74\xbf" => "\x8f\xcc\xe9", +"\x74\xc8" => "\x8f\xcc\xea", +"\x74\xc9" => "\x8f\xcc\xeb", +"\x74\xca" => "\xe0\xfb", +"\x74\xcc" => "\x8f\xcc\xec", +"\x74\xcf" => "\xe0\xfc", +"\x74\xd0" => "\x8f\xcc\xed", +"\x74\xd3" => "\x8f\xcc\xee", +"\x74\xd4" => "\xe0\xfd", +"\x74\xd8" => "\x8f\xcc\xef", +"\x74\xda" => "\x8f\xcc\xf0", +"\x74\xdb" => "\x8f\xcc\xf1", +"\x74\xdc" => "\xb1\xbb", +"\x74\xde" => "\x8f\xcc\xf2", +"\x74\xdf" => "\x8f\xcc\xf3", +"\x74\xe0" => "\xe1\xa1", +"\x74\xe2" => "\xc9\xbb", +"\x74\xe3" => "\xe1\xa2", +"\x74\xe4" => "\x8f\xcc\xf4", +"\x74\xe6" => "\xb4\xa4", +"\x74\xe7" => "\xe1\xa3", +"\x74\xe8" => "\x8f\xcc\xf5", +"\x74\xe9" => "\xe1\xa4", +"\x74\xea" => "\x8f\xcc\xf6", +"\x74\xeb" => "\x8f\xcc\xf7", +"\x74\xee" => "\xe1\xa5", +"\x74\xef" => "\x8f\xcc\xf8", +"\x74\xf0" => "\xe1\xa7", +"\x74\xf1" => "\xe1\xa8", +"\x74\xf2" => "\xe1\xa6", +"\x74\xf4" => "\x8f\xcc\xf9", +"\x74\xf6" => "\xc9\xd3", +"\x74\xf7" => "\xe1\xaa", +"\x74\xf8" => "\xe1\xa9", +"\x74\xfa" => "\x8f\xcc\xfa", +"\x74\xfb" => "\x8f\xcc\xfb", +"\x74\xfc" => "\x8f\xcc\xfc", +"\x74\xff" => "\x8f\xcc\xfd", +"\x75\x03" => "\xe1\xac", +"\x75\x04" => "\xe1\xab", +"\x75\x05" => "\xe1\xad", +"\x75\x06" => "\x8f\xcc\xfe", +"\x75\x0c" => "\xe1\xae", +"\x75\x0d" => "\xe1\xb0", +"\x75\x0e" => "\xe1\xaf", +"\x75\x11" => "\xb9\xf9", +"\x75\x12" => "\x8f\xcd\xa1", +"\x75\x13" => "\xe1\xb2", +"\x75\x15" => "\xe1\xb1", +"\x75\x16" => "\x8f\xcd\xa2", +"\x75\x17" => "\x8f\xcd\xa3", +"\x75\x18" => "\xb4\xc5", +"\x75\x1a" => "\xbf\xd3", +"\x75\x1c" => "\xc5\xbc", +"\x75\x1e" => "\xe1\xb3", +"\x75\x1f" => "\xc0\xb8", +"\x75\x20" => "\x8f\xcd\xa4", +"\x75\x21" => "\x8f\xcd\xa5", +"\x75\x23" => "\xbb\xba", +"\x75\x24" => "\x8f\xcd\xa6", +"\x75\x25" => "\xb1\xf9", +"\x75\x26" => "\xe1\xb4", +"\x75\x27" => "\x8f\xcd\xa7", +"\x75\x28" => "\xcd\xd1", +"\x75\x29" => "\x8f\xcd\xa8", +"\x75\x2a" => "\x8f\xcd\xa9", +"\x75\x2b" => "\xca\xe3", +"\x75\x2c" => "\xe1\xb5", +"\x75\x2f" => "\x8f\xcd\xaa", +"\x75\x30" => "\xc5\xc4", +"\x75\x31" => "\xcd\xb3", +"\x75\x32" => "\xb9\xc3", +"\x75\x33" => "\xbf\xbd", +"\x75\x36" => "\x8f\xcd\xab", +"\x75\x37" => "\xc3\xcb", +"\x75\x38" => "\xd2\xb4", +"\x75\x39" => "\x8f\xcd\xac", +"\x75\x3a" => "\xc4\xae", +"\x75\x3b" => "\xb2\xe8", +"\x75\x3c" => "\xe1\xb6", +"\x75\x3d" => "\x8f\xcd\xad", +"\x75\x3e" => "\x8f\xcd\xae", +"\x75\x3f" => "\x8f\xcd\xaf", +"\x75\x40" => "\x8f\xcd\xb0", +"\x75\x43" => "\x8f\xcd\xb1", +"\x75\x44" => "\xe1\xb7", +"\x75\x46" => "\xe1\xbc", +"\x75\x47" => "\x8f\xcd\xb2", +"\x75\x48" => "\x8f\xcd\xb3", +"\x75\x49" => "\xe1\xba", +"\x75\x4a" => "\xe1\xb9", +"\x75\x4b" => "\xda\xc2", +"\x75\x4c" => "\xb3\xa6", +"\x75\x4d" => "\xe1\xb8", +"\x75\x4e" => "\x8f\xcd\xb4", +"\x75\x4f" => "\xb0\xda", +"\x75\x50" => "\x8f\xcd\xb5", +"\x75\x51" => "\xc8\xaa", +"\x75\x52" => "\x8f\xcd\xb6", +"\x75\x54" => "\xc8\xca", +"\x75\x57" => "\x8f\xcd\xb7", +"\x75\x59" => "\xce\xb1", +"\x75\x5a" => "\xe1\xbd", +"\x75\x5b" => "\xe1\xbb", +"\x75\x5c" => "\xc3\xdc", +"\x75\x5d" => "\xc0\xa6", +"\x75\x5e" => "\x8f\xcd\xb8", +"\x75\x5f" => "\x8f\xcd\xb9", +"\x75\x60" => "\xc8\xab", +"\x75\x61" => "\x8f\xcd\xba", +"\x75\x62" => "\xc9\xad", +"\x75\x64" => "\xe1\xbf", +"\x75\x65" => "\xce\xac", +"\x75\x66" => "\xb7\xcd", +"\x75\x67" => "\xe1\xc0", +"\x75\x69" => "\xe1\xbe", +"\x75\x6a" => "\xc8\xd6", +"\x75\x6b" => "\xe1\xc1", +"\x75\x6d" => "\xe1\xc2", +"\x75\x6f" => "\x8f\xcd\xbb", +"\x75\x70" => "\xb0\xdb", +"\x75\x71" => "\x8f\xcd\xbc", +"\x75\x73" => "\xbe\xf6", +"\x75\x74" => "\xe1\xc7", +"\x75\x76" => "\xe1\xc4", +"\x75\x77" => "\xc6\xed", +"\x75\x78" => "\xe1\xc3", +"\x75\x79" => "\x8f\xcd\xbd", +"\x75\x7a" => "\x8f\xcd\xbe", +"\x75\x7b" => "\x8f\xcd\xbf", +"\x75\x7c" => "\x8f\xcd\xc0", +"\x75\x7d" => "\x8f\xcd\xc1", +"\x75\x7e" => "\x8f\xcd\xc2", +"\x75\x7f" => "\xb5\xa6", +"\x75\x81" => "\x8f\xcd\xc3", +"\x75\x82" => "\xe1\xca", +"\x75\x85" => "\x8f\xcd\xc4", +"\x75\x86" => "\xe1\xc5", +"\x75\x87" => "\xe1\xc6", +"\x75\x89" => "\xe1\xc9", +"\x75\x8a" => "\xe1\xc8", +"\x75\x8b" => "\xc9\xa5", +"\x75\x8e" => "\xc1\xc2", +"\x75\x8f" => "\xc1\xc1", +"\x75\x90" => "\x8f\xcd\xc5", +"\x75\x91" => "\xb5\xbf", +"\x75\x92" => "\x8f\xcd\xc6", +"\x75\x93" => "\x8f\xcd\xc7", +"\x75\x94" => "\xe1\xcb", +"\x75\x95" => "\x8f\xcd\xc8", +"\x75\x99" => "\x8f\xcd\xc9", +"\x75\x9a" => "\xe1\xcc", +"\x75\x9c" => "\x8f\xcd\xca", +"\x75\x9d" => "\xe1\xcd", +"\x75\xa2" => "\x8f\xcd\xcb", +"\x75\xa3" => "\xe1\xcf", +"\x75\xa4" => "\x8f\xcd\xcc", +"\x75\xa5" => "\xe1\xce", +"\x75\xab" => "\xb1\xd6", +"\x75\xb1" => "\xe1\xd7", +"\x75\xb2" => "\xc8\xe8", +"\x75\xb3" => "\xe1\xd1", +"\x75\xb4" => "\x8f\xcd\xcd", +"\x75\xb5" => "\xe1\xd3", +"\x75\xb8" => "\xe1\xd5", +"\x75\xb9" => "\xbf\xbe", +"\x75\xba" => "\x8f\xcd\xce", +"\x75\xbc" => "\xe1\xd6", +"\x75\xbd" => "\xe1\xd4", +"\x75\xbe" => "\xbc\xc0", +"\x75\xbf" => "\x8f\xcd\xcf", +"\x75\xc0" => "\x8f\xcd\xd0", +"\x75\xc1" => "\x8f\xcd\xd1", +"\x75\xc2" => "\xe1\xd0", +"\x75\xc3" => "\xe1\xd2", +"\x75\xc4" => "\x8f\xcd\xd2", +"\x75\xc5" => "\xc9\xc2", +"\x75\xc6" => "\x8f\xcd\xd3", +"\x75\xc7" => "\xbe\xc9", +"\x75\xca" => "\xe1\xd9", +"\x75\xcc" => "\x8f\xcd\xd4", +"\x75\xcd" => "\xe1\xd8", +"\x75\xce" => "\x8f\xcd\xd5", +"\x75\xcf" => "\x8f\xcd\xd6", +"\x75\xd2" => "\xe1\xda", +"\x75\xd4" => "\xbc\xa6", +"\x75\xd5" => "\xba\xaf", +"\x75\xd7" => "\x8f\xcd\xd7", +"\x75\xd8" => "\xc5\xf7", +"\x75\xd9" => "\xe1\xdb", +"\x75\xdb" => "\xc4\xcb", +"\x75\xdc" => "\x8f\xcd\xd8", +"\x75\xde" => "\xe1\xdd", +"\x75\xdf" => "\x8f\xcd\xd9", +"\x75\xe0" => "\x8f\xcd\xda", +"\x75\xe1" => "\x8f\xcd\xdb", +"\x75\xe2" => "\xce\xa1", +"\x75\xe3" => "\xe1\xdc", +"\x75\xe4" => "\x8f\xcd\xdc", +"\x75\xe7" => "\x8f\xcd\xdd", +"\x75\xe9" => "\xc1\xe9", +"\x75\xec" => "\x8f\xcd\xde", +"\x75\xee" => "\x8f\xcd\xdf", +"\x75\xef" => "\x8f\xcd\xe0", +"\x75\xf0" => "\xe1\xe2", +"\x75\xf1" => "\x8f\xcd\xe1", +"\x75\xf2" => "\xe1\xe4", +"\x75\xf3" => "\xe1\xe5", +"\x75\xf4" => "\xc3\xd4", +"\x75\xf9" => "\x8f\xcd\xe2", +"\x75\xfa" => "\xe1\xe3", +"\x75\xfc" => "\xe1\xe0", +"\x75\xfe" => "\xe1\xde", +"\x75\xff" => "\xe1\xdf", +"\x76\x00" => "\x8f\xcd\xe3", +"\x76\x01" => "\xe1\xe1", +"\x76\x02" => "\x8f\xcd\xe4", +"\x76\x03" => "\x8f\xcd\xe5", +"\x76\x04" => "\x8f\xcd\xe6", +"\x76\x07" => "\x8f\xcd\xe7", +"\x76\x08" => "\x8f\xcd\xe8", +"\x76\x09" => "\xe1\xe8", +"\x76\x0a" => "\x8f\xcd\xe9", +"\x76\x0b" => "\xe1\xe6", +"\x76\x0c" => "\x8f\xcd\xea", +"\x76\x0d" => "\xe1\xe7", +"\x76\x0f" => "\x8f\xcd\xeb", +"\x76\x12" => "\x8f\xcd\xec", +"\x76\x13" => "\x8f\xcd\xed", +"\x76\x15" => "\x8f\xcd\xee", +"\x76\x16" => "\x8f\xcd\xef", +"\x76\x19" => "\x8f\xcd\xf0", +"\x76\x1b" => "\x8f\xcd\xf1", +"\x76\x1c" => "\x8f\xcd\xf2", +"\x76\x1d" => "\x8f\xcd\xf3", +"\x76\x1e" => "\x8f\xcd\xf4", +"\x76\x1f" => "\xe1\xe9", +"\x76\x20" => "\xe1\xeb", +"\x76\x21" => "\xe1\xec", +"\x76\x22" => "\xe1\xed", +"\x76\x23" => "\x8f\xcd\xf5", +"\x76\x24" => "\xe1\xee", +"\x76\x25" => "\x8f\xcd\xf6", +"\x76\x26" => "\x8f\xcd\xf7", +"\x76\x27" => "\xe1\xea", +"\x76\x29" => "\x8f\xcd\xf8", +"\x76\x2d" => "\x8f\xcd\xf9", +"\x76\x30" => "\xe1\xf0", +"\x76\x32" => "\x8f\xcd\xfa", +"\x76\x33" => "\x8f\xcd\xfb", +"\x76\x34" => "\xe1\xef", +"\x76\x35" => "\x8f\xcd\xfc", +"\x76\x38" => "\x8f\xcd\xfd", +"\x76\x39" => "\x8f\xcd\xfe", +"\x76\x3a" => "\x8f\xce\xa1", +"\x76\x3b" => "\xe1\xf1", +"\x76\x3c" => "\x8f\xce\xa2", +"\x76\x40" => "\x8f\xce\xa4", +"\x76\x41" => "\x8f\xce\xa5", +"\x76\x42" => "\xce\xc5", +"\x76\x43" => "\x8f\xce\xa6", +"\x76\x44" => "\x8f\xce\xa7", +"\x76\x45" => "\x8f\xce\xa8", +"\x76\x46" => "\xe1\xf4", +"\x76\x47" => "\xe1\xf2", +"\x76\x48" => "\xe1\xf3", +"\x76\x49" => "\x8f\xce\xa9", +"\x76\x4a" => "\x8f\xce\xa3", +"\x76\x4b" => "\x8f\xce\xaa", +"\x76\x4c" => "\xb4\xe2", +"\x76\x52" => "\xcc\xfe", +"\x76\x55" => "\x8f\xce\xab", +"\x76\x56" => "\xca\xca", +"\x76\x58" => "\xe1\xf6", +"\x76\x59" => "\x8f\xce\xac", +"\x76\x5c" => "\xe1\xf5", +"\x76\x5f" => "\x8f\xce\xad", +"\x76\x61" => "\xe1\xf7", +"\x76\x62" => "\xe1\xf8", +"\x76\x64" => "\x8f\xce\xae", +"\x76\x65" => "\x8f\xce\xaf", +"\x76\x67" => "\xe1\xfc", +"\x76\x68" => "\xe1\xf9", +"\x76\x69" => "\xe1\xfa", +"\x76\x6a" => "\xe1\xfb", +"\x76\x6c" => "\xe1\xfd", +"\x76\x6d" => "\x8f\xce\xb0", +"\x76\x6e" => "\x8f\xce\xb1", +"\x76\x6f" => "\x8f\xce\xb2", +"\x76\x70" => "\xe1\xfe", +"\x76\x71" => "\x8f\xce\xb3", +"\x76\x72" => "\xe2\xa1", +"\x76\x74" => "\x8f\xce\xb4", +"\x76\x76" => "\xe2\xa2", +"\x76\x78" => "\xe2\xa3", +"\x76\x7a" => "\xc8\xaf", +"\x76\x7b" => "\xc5\xd0", +"\x76\x7c" => "\xe2\xa4", +"\x76\x7d" => "\xc7\xf2", +"\x76\x7e" => "\xc9\xb4", +"\x76\x80" => "\xe2\xa5", +"\x76\x81" => "\x8f\xce\xb5", +"\x76\x83" => "\xe2\xa6", +"\x76\x84" => "\xc5\xaa", +"\x76\x85" => "\x8f\xce\xb6", +"\x76\x86" => "\xb3\xa7", +"\x76\x87" => "\xb9\xc4", +"\x76\x88" => "\xe2\xa7", +"\x76\x8b" => "\xe2\xa8", +"\x76\x8c" => "\x8f\xce\xb7", +"\x76\x8d" => "\x8f\xce\xb8", +"\x76\x8e" => "\xe2\xa9", +"\x76\x90" => "\xbb\xa9", +"\x76\x93" => "\xe2\xab", +"\x76\x95" => "\x8f\xce\xb9", +"\x76\x96" => "\xe2\xaa", +"\x76\x99" => "\xe2\xac", +"\x76\x9a" => "\xe2\xad", +"\x76\x9b" => "\x8f\xce\xba", +"\x76\x9c" => "\x8f\xce\xbb", +"\x76\x9d" => "\x8f\xce\xbc", +"\x76\x9f" => "\x8f\xce\xbd", +"\x76\xa0" => "\x8f\xce\xbe", +"\x76\xa2" => "\x8f\xce\xbf", +"\x76\xa3" => "\x8f\xce\xc0", +"\x76\xa4" => "\x8f\xce\xc1", +"\x76\xa5" => "\x8f\xce\xc2", +"\x76\xa6" => "\x8f\xce\xc3", +"\x76\xa7" => "\x8f\xce\xc4", +"\x76\xa8" => "\x8f\xce\xc5", +"\x76\xaa" => "\x8f\xce\xc6", +"\x76\xad" => "\x8f\xce\xc7", +"\x76\xae" => "\xc8\xe9", +"\x76\xb0" => "\xe2\xae", +"\x76\xb4" => "\xe2\xaf", +"\x76\xb7" => "\xf3\xe9", +"\x76\xb8" => "\xe2\xb0", +"\x76\xb9" => "\xe2\xb1", +"\x76\xba" => "\xe2\xb2", +"\x76\xbd" => "\x8f\xce\xc8", +"\x76\xbf" => "\xbb\xae", +"\x76\xc1" => "\x8f\xce\xc9", +"\x76\xc2" => "\xe2\xb3", +"\x76\xc3" => "\xc7\xd6", +"\x76\xc5" => "\x8f\xce\xca", +"\x76\xc6" => "\xcb\xdf", +"\x76\xc8" => "\xb1\xce", +"\x76\xc9" => "\x8f\xce\xcb", +"\x76\xca" => "\xb1\xd7", +"\x76\xcb" => "\x8f\xce\xcc", +"\x76\xcc" => "\x8f\xce\xcd", +"\x76\xcd" => "\xe2\xb4", +"\x76\xce" => "\x8f\xce\xce", +"\x76\xd2" => "\xe2\xb6", +"\x76\xd4" => "\x8f\xce\xcf", +"\x76\xd6" => "\xe2\xb5", +"\x76\xd7" => "\xc5\xf0", +"\x76\xd9" => "\x8f\xce\xd0", +"\x76\xdb" => "\xc0\xb9", +"\x76\xdc" => "\xdd\xb9", +"\x76\xde" => "\xe2\xb7", +"\x76\xdf" => "\xcc\xc1", +"\x76\xe0" => "\x8f\xce\xd1", +"\x76\xe1" => "\xe2\xb8", +"\x76\xe3" => "\xb4\xc6", +"\x76\xe4" => "\xc8\xd7", +"\x76\xe5" => "\xe2\xb9", +"\x76\xe6" => "\x8f\xce\xd2", +"\x76\xe7" => "\xe2\xba", +"\x76\xe8" => "\x8f\xce\xd3", +"\x76\xea" => "\xe2\xbb", +"\x76\xec" => "\x8f\xce\xd4", +"\x76\xee" => "\xcc\xdc", +"\x76\xf0" => "\x8f\xce\xd5", +"\x76\xf1" => "\x8f\xce\xd6", +"\x76\xf2" => "\xcc\xd5", +"\x76\xf4" => "\xc4\xbe", +"\x76\xf6" => "\x8f\xce\xd7", +"\x76\xf8" => "\xc1\xea", +"\x76\xf9" => "\x8f\xce\xd8", +"\x76\xfb" => "\xe2\xbd", +"\x76\xfc" => "\x8f\xce\xd9", +"\x76\xfe" => "\xbd\xe2", +"\x77\x00" => "\x8f\xce\xda", +"\x77\x01" => "\xbe\xca", +"\x77\x04" => "\xe2\xc0", +"\x77\x06" => "\x8f\xce\xdb", +"\x77\x07" => "\xe2\xbf", +"\x77\x08" => "\xe2\xbe", +"\x77\x09" => "\xc8\xfd", +"\x77\x0a" => "\x8f\xce\xdc", +"\x77\x0b" => "\xb4\xc7", +"\x77\x0c" => "\xb8\xa9", +"\x77\x0e" => "\x8f\xce\xdd", +"\x77\x12" => "\x8f\xce\xde", +"\x77\x14" => "\x8f\xce\xdf", +"\x77\x15" => "\x8f\xce\xe0", +"\x77\x17" => "\x8f\xce\xe1", +"\x77\x19" => "\x8f\xce\xe2", +"\x77\x1a" => "\x8f\xce\xe3", +"\x77\x1b" => "\xe2\xc6", +"\x77\x1c" => "\x8f\xce\xe4", +"\x77\x1e" => "\xe2\xc3", +"\x77\x1f" => "\xbf\xbf", +"\x77\x20" => "\xcc\xb2", +"\x77\x22" => "\x8f\xce\xe5", +"\x77\x24" => "\xe2\xc2", +"\x77\x25" => "\xe2\xc4", +"\x77\x26" => "\xe2\xc5", +"\x77\x28" => "\x8f\xce\xe6", +"\x77\x29" => "\xe2\xc1", +"\x77\x2d" => "\x8f\xce\xe7", +"\x77\x2e" => "\x8f\xce\xe8", +"\x77\x2f" => "\x8f\xce\xe9", +"\x77\x34" => "\x8f\xce\xea", +"\x77\x35" => "\x8f\xce\xeb", +"\x77\x36" => "\x8f\xce\xec", +"\x77\x37" => "\xe2\xc7", +"\x77\x38" => "\xe2\xc8", +"\x77\x39" => "\x8f\xce\xed", +"\x77\x3a" => "\xc4\xaf", +"\x77\x3c" => "\xb4\xe3", +"\x77\x3d" => "\x8f\xce\xee", +"\x77\x3e" => "\x8f\xce\xef", +"\x77\x40" => "\xc3\xe5", +"\x77\x42" => "\x8f\xce\xf0", +"\x77\x45" => "\x8f\xce\xf1", +"\x77\x46" => "\x8f\xce\xf2", +"\x77\x47" => "\xe2\xc9", +"\x77\x4a" => "\x8f\xce\xf3", +"\x77\x4d" => "\x8f\xce\xf4", +"\x77\x4e" => "\x8f\xce\xf5", +"\x77\x4f" => "\x8f\xce\xf6", +"\x77\x52" => "\x8f\xce\xf7", +"\x77\x56" => "\x8f\xce\xf8", +"\x77\x57" => "\x8f\xce\xf9", +"\x77\x5a" => "\xe2\xca", +"\x77\x5b" => "\xe2\xcd", +"\x77\x5c" => "\x8f\xce\xfa", +"\x77\x5e" => "\x8f\xce\xfb", +"\x77\x5f" => "\x8f\xce\xfc", +"\x77\x60" => "\x8f\xce\xfd", +"\x77\x61" => "\xbf\xe7", +"\x77\x62" => "\x8f\xce\xfe", +"\x77\x63" => "\xc6\xc4", +"\x77\x64" => "\x8f\xcf\xa1", +"\x77\x65" => "\xe2\xce", +"\x77\x66" => "\xcb\xd3", +"\x77\x67" => "\x8f\xcf\xa2", +"\x77\x68" => "\xe2\xcb", +"\x77\x6a" => "\x8f\xcf\xa3", +"\x77\x6b" => "\xe2\xcc", +"\x77\x6c" => "\x8f\xcf\xa4", +"\x77\x70" => "\x8f\xcf\xa5", +"\x77\x72" => "\x8f\xcf\xa6", +"\x77\x73" => "\x8f\xcf\xa7", +"\x77\x74" => "\x8f\xcf\xa8", +"\x77\x79" => "\xe2\xd1", +"\x77\x7a" => "\x8f\xcf\xa9", +"\x77\x7d" => "\x8f\xcf\xaa", +"\x77\x7e" => "\xe2\xd0", +"\x77\x7f" => "\xe2\xcf", +"\x77\x80" => "\x8f\xcf\xab", +"\x77\x84" => "\x8f\xcf\xac", +"\x77\x8b" => "\xe2\xd3", +"\x77\x8c" => "\x8f\xcf\xad", +"\x77\x8d" => "\x8f\xcf\xae", +"\x77\x8e" => "\xe2\xd2", +"\x77\x91" => "\xe2\xd4", +"\x77\x94" => "\x8f\xcf\xaf", +"\x77\x95" => "\x8f\xcf\xb0", +"\x77\x96" => "\x8f\xcf\xb1", +"\x77\x9a" => "\x8f\xcf\xb2", +"\x77\x9e" => "\xe2\xd6", +"\x77\x9f" => "\x8f\xcf\xb3", +"\x77\xa0" => "\xe2\xd5", +"\x77\xa2" => "\x8f\xcf\xb4", +"\x77\xa5" => "\xca\xcd", +"\x77\xa7" => "\x8f\xcf\xb5", +"\x77\xaa" => "\x8f\xcf\xb6", +"\x77\xac" => "\xbd\xd6", +"\x77\xad" => "\xce\xc6", +"\x77\xae" => "\x8f\xcf\xb7", +"\x77\xaf" => "\x8f\xcf\xb8", +"\x77\xb0" => "\xe2\xd7", +"\x77\xb1" => "\x8f\xcf\xb9", +"\x77\xb3" => "\xc6\xb7", +"\x77\xb5" => "\x8f\xcf\xba", +"\x77\xb6" => "\xe2\xd8", +"\x77\xb9" => "\xe2\xd9", +"\x77\xbb" => "\xe2\xdd", +"\x77\xbc" => "\xe2\xdb", +"\x77\xbd" => "\xe2\xdc", +"\x77\xbe" => "\x8f\xcf\xbb", +"\x77\xbf" => "\xe2\xda", +"\x77\xc3" => "\x8f\xcf\xbc", +"\x77\xc7" => "\xe2\xde", +"\x77\xc9" => "\x8f\xcf\xbd", +"\x77\xcd" => "\xe2\xdf", +"\x77\xd1" => "\x8f\xcf\xbe", +"\x77\xd2" => "\x8f\xcf\xbf", +"\x77\xd5" => "\x8f\xcf\xc0", +"\x77\xd7" => "\xe2\xe0", +"\x77\xd9" => "\x8f\xcf\xc1", +"\x77\xda" => "\xe2\xe1", +"\x77\xdb" => "\xcc\xb7", +"\x77\xdc" => "\xe2\xe2", +"\x77\xde" => "\x8f\xcf\xc2", +"\x77\xdf" => "\x8f\xcf\xc3", +"\x77\xe0" => "\x8f\xcf\xc4", +"\x77\xe2" => "\xcc\xf0", +"\x77\xe3" => "\xe2\xe3", +"\x77\xe4" => "\x8f\xcf\xc5", +"\x77\xe5" => "\xc3\xce", +"\x77\xe6" => "\x8f\xcf\xc6", +"\x77\xe7" => "\xc7\xea", +"\x77\xe9" => "\xb6\xeb", +"\x77\xea" => "\x8f\xcf\xc7", +"\x77\xec" => "\x8f\xcf\xc8", +"\x77\xed" => "\xc3\xbb", +"\x77\xee" => "\xe2\xe4", +"\x77\xef" => "\xb6\xba", +"\x77\xf0" => "\x8f\xcf\xc9", +"\x77\xf1" => "\x8f\xcf\xca", +"\x77\xf3" => "\xc0\xd0", +"\x77\xf4" => "\x8f\xcf\xcb", +"\x77\xf8" => "\x8f\xcf\xcc", +"\x77\xfb" => "\x8f\xcf\xcd", +"\x77\xfc" => "\xe2\xe5", +"\x78\x02" => "\xba\xbd", +"\x78\x05" => "\x8f\xcf\xce", +"\x78\x06" => "\x8f\xcf\xcf", +"\x78\x09" => "\x8f\xcf\xd0", +"\x78\x0c" => "\xe2\xe6", +"\x78\x0d" => "\x8f\xcf\xd1", +"\x78\x0e" => "\x8f\xcf\xd2", +"\x78\x11" => "\x8f\xcf\xd3", +"\x78\x12" => "\xe2\xe7", +"\x78\x14" => "\xb8\xa6", +"\x78\x15" => "\xba\xd5", +"\x78\x1d" => "\x8f\xcf\xd4", +"\x78\x20" => "\xe2\xe9", +"\x78\x21" => "\x8f\xcf\xd5", +"\x78\x22" => "\x8f\xcf\xd6", +"\x78\x23" => "\x8f\xcf\xd7", +"\x78\x25" => "\xc5\xd6", +"\x78\x26" => "\xba\xd6", +"\x78\x27" => "\xb5\xce", +"\x78\x2d" => "\x8f\xcf\xd8", +"\x78\x2e" => "\x8f\xcf\xd9", +"\x78\x30" => "\x8f\xcf\xda", +"\x78\x32" => "\xcb\xa4", +"\x78\x34" => "\xc7\xcb", +"\x78\x35" => "\x8f\xcf\xdb", +"\x78\x37" => "\x8f\xcf\xdc", +"\x78\x3a" => "\xc5\xd7", +"\x78\x3f" => "\xb9\xdc", +"\x78\x43" => "\x8f\xcf\xdd", +"\x78\x44" => "\x8f\xcf\xde", +"\x78\x45" => "\xe2\xeb", +"\x78\x47" => "\x8f\xcf\xdf", +"\x78\x48" => "\x8f\xcf\xe0", +"\x78\x4c" => "\x8f\xcf\xe1", +"\x78\x4e" => "\x8f\xcf\xe2", +"\x78\x52" => "\x8f\xcf\xe3", +"\x78\x5c" => "\x8f\xcf\xe4", +"\x78\x5d" => "\xbe\xcb", +"\x78\x5e" => "\x8f\xcf\xe5", +"\x78\x60" => "\x8f\xcf\xe6", +"\x78\x61" => "\x8f\xcf\xe7", +"\x78\x63" => "\x8f\xcf\xe8", +"\x78\x64" => "\x8f\xcf\xe9", +"\x78\x68" => "\x8f\xcf\xea", +"\x78\x6a" => "\x8f\xcf\xeb", +"\x78\x6b" => "\xce\xb2", +"\x78\x6c" => "\xb9\xc5", +"\x78\x6e" => "\x8f\xcf\xec", +"\x78\x6f" => "\xb8\xa7", +"\x78\x72" => "\xc8\xa3", +"\x78\x74" => "\xe2\xed", +"\x78\x7a" => "\x8f\xcf\xed", +"\x78\x7c" => "\xe2\xef", +"\x78\x7e" => "\x8f\xcf\xee", +"\x78\x81" => "\xb8\xeb", +"\x78\x86" => "\xe2\xee", +"\x78\x87" => "\xc4\xf6", +"\x78\x8a" => "\x8f\xcf\xef", +"\x78\x8c" => "\xe2\xf1", +"\x78\x8d" => "\xb3\xb7", +"\x78\x8e" => "\xe2\xec", +"\x78\x8f" => "\x8f\xcf\xf0", +"\x78\x91" => "\xc8\xea", +"\x78\x93" => "\xb1\xb0", +"\x78\x94" => "\x8f\xcf\xf1", +"\x78\x95" => "\xba\xec", +"\x78\x97" => "\xcf\xd2", +"\x78\x98" => "\x8f\xcf\xf2", +"\x78\x9a" => "\xe2\xf0", +"\x78\x9d" => "\x8f\xcf\xf4", +"\x78\x9e" => "\x8f\xcf\xf5", +"\x78\x9f" => "\x8f\xcf\xf6", +"\x78\xa1" => "\x8f\xcf\xf3", +"\x78\xa3" => "\xe2\xf2", +"\x78\xa4" => "\x8f\xcf\xf7", +"\x78\xa7" => "\xca\xcb", +"\x78\xa8" => "\x8f\xcf\xf8", +"\x78\xa9" => "\xc0\xd9", +"\x78\xaa" => "\xe2\xf4", +"\x78\xac" => "\x8f\xcf\xf9", +"\x78\xad" => "\x8f\xcf\xfa", +"\x78\xaf" => "\xe2\xf5", +"\x78\xb0" => "\x8f\xcf\xfb", +"\x78\xb1" => "\x8f\xcf\xfc", +"\x78\xb2" => "\x8f\xcf\xfd", +"\x78\xb3" => "\x8f\xcf\xfe", +"\x78\xb5" => "\xe2\xf3", +"\x78\xba" => "\xb3\xce", +"\x78\xbb" => "\x8f\xd0\xa1", +"\x78\xbc" => "\xe2\xfb", +"\x78\xbd" => "\x8f\xd0\xa2", +"\x78\xbe" => "\xe2\xfa", +"\x78\xbf" => "\x8f\xd0\xa3", +"\x78\xc1" => "\xbc\xa7", +"\x78\xc5" => "\xe2\xfc", +"\x78\xc6" => "\xe2\xf7", +"\x78\xc7" => "\x8f\xd0\xa4", +"\x78\xc8" => "\x8f\xd0\xa5", +"\x78\xc9" => "\x8f\xd0\xa6", +"\x78\xca" => "\xe2\xfd", +"\x78\xcb" => "\xe2\xf8", +"\x78\xcc" => "\x8f\xd0\xa7", +"\x78\xce" => "\x8f\xd0\xa8", +"\x78\xd0" => "\xc8\xd8", +"\x78\xd1" => "\xe2\xf6", +"\x78\xd2" => "\x8f\xd0\xa9", +"\x78\xd3" => "\x8f\xd0\xaa", +"\x78\xd4" => "\xe2\xf9", +"\x78\xd5" => "\x8f\xd0\xab", +"\x78\xd6" => "\x8f\xd0\xac", +"\x78\xda" => "\xe3\xa2", +"\x78\xdb" => "\x8f\xd0\xae", +"\x78\xdf" => "\x8f\xd0\xaf", +"\x78\xe0" => "\x8f\xd0\xb0", +"\x78\xe1" => "\x8f\xd0\xb1", +"\x78\xe4" => "\x8f\xd0\xad", +"\x78\xe6" => "\x8f\xd0\xb2", +"\x78\xe7" => "\xe3\xa1", +"\x78\xe8" => "\xcb\xe1", +"\x78\xea" => "\x8f\xd0\xb3", +"\x78\xec" => "\xe2\xfe", +"\x78\xef" => "\xb0\xeb", +"\x78\xf2" => "\x8f\xd0\xb4", +"\x78\xf3" => "\x8f\xd0\xb5", +"\x78\xf4" => "\xe3\xa4", +"\x78\xf6" => "\x8f\xd0\xb7", +"\x78\xf7" => "\x8f\xd0\xb8", +"\x78\xfa" => "\x8f\xd0\xb9", +"\x78\xfb" => "\x8f\xd0\xba", +"\x78\xfd" => "\xe3\xa3", +"\x78\xff" => "\x8f\xd0\xbb", +"\x79\x00" => "\x8f\xd0\xb6", +"\x79\x01" => "\xbe\xcc", +"\x79\x06" => "\x8f\xd0\xbc", +"\x79\x07" => "\xe3\xa5", +"\x79\x0c" => "\x8f\xd0\xbd", +"\x79\x0e" => "\xc1\xc3", +"\x79\x10" => "\x8f\xd0\xbe", +"\x79\x11" => "\xe3\xa7", +"\x79\x12" => "\xe3\xa6", +"\x79\x19" => "\xe3\xa8", +"\x79\x1a" => "\x8f\xd0\xbf", +"\x79\x1c" => "\x8f\xd0\xc0", +"\x79\x1e" => "\x8f\xd0\xc1", +"\x79\x1f" => "\x8f\xd0\xc2", +"\x79\x20" => "\x8f\xd0\xc3", +"\x79\x25" => "\x8f\xd0\xc4", +"\x79\x26" => "\xe2\xe8", +"\x79\x27" => "\x8f\xd0\xc5", +"\x79\x29" => "\x8f\xd0\xc6", +"\x79\x2a" => "\xe2\xea", +"\x79\x2b" => "\xe3\xaa", +"\x79\x2c" => "\xe3\xa9", +"\x79\x2d" => "\x8f\xd0\xc7", +"\x79\x31" => "\x8f\xd0\xc8", +"\x79\x34" => "\x8f\xd0\xc9", +"\x79\x35" => "\x8f\xd0\xca", +"\x79\x3a" => "\xbc\xa8", +"\x79\x3b" => "\x8f\xd0\xcb", +"\x79\x3c" => "\xce\xe9", +"\x79\x3d" => "\x8f\xd0\xcc", +"\x79\x3e" => "\xbc\xd2", +"\x79\x3f" => "\x8f\xd0\xcd", +"\x79\x40" => "\xe3\xab", +"\x79\x41" => "\xb7\xb7", +"\x79\x44" => "\x8f\xd0\xce", +"\x79\x45" => "\x8f\xd0\xcf", +"\x79\x46" => "\x8f\xd0\xd0", +"\x79\x47" => "\xb5\xc0", +"\x79\x48" => "\xb5\xa7", +"\x79\x49" => "\xbb\xe3", +"\x79\x4a" => "\x8f\xd0\xd1", +"\x79\x4b" => "\x8f\xd0\xd2", +"\x79\x4f" => "\x8f\xd0\xd3", +"\x79\x50" => "\xcd\xb4", +"\x79\x51" => "\x8f\xd0\xd4", +"\x79\x53" => "\xe3\xb1", +"\x79\x54" => "\x8f\xd0\xd5", +"\x79\x55" => "\xe3\xb0", +"\x79\x56" => "\xc1\xc4", +"\x79\x57" => "\xe3\xad", +"\x79\x58" => "\x8f\xd0\xd6", +"\x79\x5a" => "\xe3\xaf", +"\x79\x5b" => "\x8f\xd0\xd7", +"\x79\x5c" => "\x8f\xd0\xd8", +"\x79\x5d" => "\xbd\xcb", +"\x79\x5e" => "\xbf\xc0", +"\x79\x5f" => "\xe3\xae", +"\x79\x60" => "\xe3\xac", +"\x79\x62" => "\xc7\xaa", +"\x79\x65" => "\xbe\xcd", +"\x79\x67" => "\x8f\xd0\xd9", +"\x79\x68" => "\xc9\xbc", +"\x79\x69" => "\x8f\xd0\xda", +"\x79\x6b" => "\x8f\xd0\xdb", +"\x79\x6d" => "\xba\xd7", +"\x79\x72" => "\x8f\xd0\xdc", +"\x79\x77" => "\xc5\xf8", +"\x79\x79" => "\x8f\xd0\xdd", +"\x79\x7a" => "\xe3\xb2", +"\x79\x7b" => "\x8f\xd0\xde", +"\x79\x7c" => "\x8f\xd0\xdf", +"\x79\x7e" => "\x8f\xd0\xe0", +"\x79\x7f" => "\xe3\xb3", +"\x79\x80" => "\xe3\xc9", +"\x79\x81" => "\xb6\xd8", +"\x79\x84" => "\xcf\xbd", +"\x79\x85" => "\xc1\xb5", +"\x79\x8a" => "\xe3\xb4", +"\x79\x8b" => "\x8f\xd0\xe1", +"\x79\x8c" => "\x8f\xd0\xe2", +"\x79\x8d" => "\xb2\xd2", +"\x79\x8e" => "\xc4\xf7", +"\x79\x8f" => "\xca\xa1", +"\x79\x91" => "\x8f\xd0\xe3", +"\x79\x93" => "\x8f\xd0\xe4", +"\x79\x94" => "\x8f\xd0\xe5", +"\x79\x95" => "\x8f\xd0\xe6", +"\x79\x96" => "\x8f\xd0\xe7", +"\x79\x98" => "\x8f\xd0\xe8", +"\x79\x9b" => "\x8f\xd0\xe9", +"\x79\x9c" => "\x8f\xd0\xea", +"\x79\x9d" => "\xe3\xb5", +"\x79\xa1" => "\x8f\xd0\xeb", +"\x79\xa6" => "\xb5\xfa", +"\x79\xa7" => "\xe3\xb6", +"\x79\xa8" => "\x8f\xd0\xec", +"\x79\xa9" => "\x8f\xd0\xed", +"\x79\xaa" => "\xe3\xb8", +"\x79\xab" => "\x8f\xd0\xee", +"\x79\xae" => "\xe3\xb9", +"\x79\xaf" => "\x8f\xd0\xef", +"\x79\xb0" => "\xc7\xa9", +"\x79\xb1" => "\x8f\xd0\xf0", +"\x79\xb3" => "\xe3\xba", +"\x79\xb4" => "\x8f\xd0\xf1", +"\x79\xb8" => "\x8f\xd0\xf2", +"\x79\xb9" => "\xe3\xbb", +"\x79\xba" => "\xe3\xbc", +"\x79\xbb" => "\x8f\xd0\xf3", +"\x79\xbd" => "\xb6\xd9", +"\x79\xbe" => "\xb2\xd3", +"\x79\xbf" => "\xc6\xc5", +"\x79\xc0" => "\xbd\xa8", +"\x79\xc1" => "\xbb\xe4", +"\x79\xc2" => "\x8f\xd0\xf4", +"\x79\xc4" => "\x8f\xd0\xf5", +"\x79\xc7" => "\x8f\xd0\xf6", +"\x79\xc8" => "\x8f\xd0\xf7", +"\x79\xc9" => "\xe3\xbd", +"\x79\xca" => "\x8f\xd0\xf8", +"\x79\xcb" => "\xbd\xa9", +"\x79\xcf" => "\x8f\xd0\xf9", +"\x79\xd1" => "\xb2\xca", +"\x79\xd2" => "\xc9\xc3", +"\x79\xd4" => "\x8f\xd0\xfa", +"\x79\xd5" => "\xe3\xbe", +"\x79\xd6" => "\x8f\xd0\xfb", +"\x79\xd8" => "\xc8\xeb", +"\x79\xda" => "\x8f\xd0\xfc", +"\x79\xdd" => "\x8f\xd0\xfd", +"\x79\xde" => "\x8f\xd0\xfe", +"\x79\xdf" => "\xc1\xc5", +"\x79\xe0" => "\x8f\xd1\xa1", +"\x79\xe1" => "\xe3\xc1", +"\x79\xe2" => "\x8f\xd1\xa2", +"\x79\xe3" => "\xe3\xc2", +"\x79\xe4" => "\xc7\xe9", +"\x79\xe5" => "\x8f\xd1\xa3", +"\x79\xe6" => "\xbf\xc1", +"\x79\xe7" => "\xe3\xbf", +"\x79\xe9" => "\xc3\xe1", +"\x79\xea" => "\x8f\xd1\xa4", +"\x79\xeb" => "\x8f\xd1\xa5", +"\x79\xec" => "\xe3\xc0", +"\x79\xed" => "\x8f\xd1\xa6", +"\x79\xf0" => "\xbe\xce", +"\x79\xf1" => "\x8f\xd1\xa7", +"\x79\xf8" => "\x8f\xd1\xa8", +"\x79\xfb" => "\xb0\xdc", +"\x79\xfc" => "\x8f\xd1\xa9", +"\x7a\x00" => "\xb5\xa9", +"\x7a\x02" => "\x8f\xd1\xaa", +"\x7a\x03" => "\x8f\xd1\xab", +"\x7a\x07" => "\x8f\xd1\xac", +"\x7a\x08" => "\xe3\xc3", +"\x7a\x09" => "\x8f\xd1\xad", +"\x7a\x0a" => "\x8f\xd1\xae", +"\x7a\x0b" => "\xc4\xf8", +"\x7a\x0c" => "\x8f\xd1\xaf", +"\x7a\x0d" => "\xe3\xc4", +"\x7a\x0e" => "\xc0\xc7", +"\x7a\x11" => "\x8f\xd1\xb0", +"\x7a\x14" => "\xcc\xad", +"\x7a\x15" => "\x8f\xd1\xb1", +"\x7a\x17" => "\xc9\xa3", +"\x7a\x18" => "\xe3\xc5", +"\x7a\x19" => "\xe3\xc6", +"\x7a\x1a" => "\xc3\xd5", +"\x7a\x1b" => "\x8f\xd1\xb2", +"\x7a\x1c" => "\xce\xc7", +"\x7a\x1e" => "\x8f\xd1\xb3", +"\x7a\x1f" => "\xe3\xc8", +"\x7a\x20" => "\xe3\xc7", +"\x7a\x21" => "\x8f\xd1\xb4", +"\x7a\x27" => "\x8f\xd1\xb5", +"\x7a\x2b" => "\x8f\xd1\xb6", +"\x7a\x2d" => "\x8f\xd1\xb7", +"\x7a\x2e" => "\xbc\xef", +"\x7a\x2f" => "\x8f\xd1\xb8", +"\x7a\x30" => "\x8f\xd1\xb9", +"\x7a\x31" => "\xe3\xca", +"\x7a\x32" => "\xb0\xf0", +"\x7a\x34" => "\x8f\xd1\xba", +"\x7a\x35" => "\x8f\xd1\xbb", +"\x7a\x37" => "\xe3\xcd", +"\x7a\x38" => "\x8f\xd1\xbc", +"\x7a\x39" => "\x8f\xd1\xbd", +"\x7a\x3a" => "\x8f\xd1\xbe", +"\x7a\x3b" => "\xe3\xcb", +"\x7a\x3c" => "\xb2\xd4", +"\x7a\x3d" => "\xb7\xce", +"\x7a\x3e" => "\xe3\xcc", +"\x7a\x3f" => "\xb9\xc6", +"\x7a\x40" => "\xb9\xf2", +"\x7a\x42" => "\xca\xe6", +"\x7a\x43" => "\xe3\xce", +"\x7a\x44" => "\x8f\xd1\xbf", +"\x7a\x45" => "\x8f\xd1\xc0", +"\x7a\x46" => "\xcb\xd4", +"\x7a\x47" => "\x8f\xd1\xc1", +"\x7a\x48" => "\x8f\xd1\xc2", +"\x7a\x49" => "\xe3\xd0", +"\x7a\x4c" => "\x8f\xd1\xc3", +"\x7a\x4d" => "\xc0\xd1", +"\x7a\x4e" => "\xb1\xcf", +"\x7a\x4f" => "\xb2\xba", +"\x7a\x50" => "\xb0\xac", +"\x7a\x55" => "\x8f\xd1\xc4", +"\x7a\x56" => "\x8f\xd1\xc5", +"\x7a\x57" => "\xe3\xcf", +"\x7a\x59" => "\x8f\xd1\xc6", +"\x7a\x5c" => "\x8f\xd1\xc7", +"\x7a\x5d" => "\x8f\xd1\xc8", +"\x7a\x5f" => "\x8f\xd1\xc9", +"\x7a\x60" => "\x8f\xd1\xca", +"\x7a\x61" => "\xe3\xd1", +"\x7a\x62" => "\xe3\xd2", +"\x7a\x63" => "\xbe\xf7", +"\x7a\x65" => "\x8f\xd1\xcb", +"\x7a\x67" => "\x8f\xd1\xcc", +"\x7a\x69" => "\xe3\xd3", +"\x7a\x6a" => "\x8f\xd1\xcd", +"\x7a\x6b" => "\xb3\xcf", +"\x7a\x6d" => "\x8f\xd1\xce", +"\x7a\x70" => "\xe3\xd5", +"\x7a\x74" => "\xb7\xea", +"\x7a\x75" => "\x8f\xd1\xcf", +"\x7a\x76" => "\xb5\xe6", +"\x7a\x78" => "\x8f\xd1\xd0", +"\x7a\x79" => "\xe3\xd6", +"\x7a\x7a" => "\xb6\xf5", +"\x7a\x7d" => "\xe3\xd7", +"\x7a\x7e" => "\x8f\xd1\xd1", +"\x7a\x7f" => "\xc0\xfc", +"\x7a\x80" => "\x8f\xd1\xd2", +"\x7a\x81" => "\xc6\xcd", +"\x7a\x82" => "\x8f\xd1\xd3", +"\x7a\x83" => "\xc0\xe0", +"\x7a\x84" => "\xba\xf5", +"\x7a\x85" => "\x8f\xd1\xd4", +"\x7a\x86" => "\x8f\xd1\xd5", +"\x7a\x88" => "\xe3\xd8", +"\x7a\x8a" => "\x8f\xd1\xd6", +"\x7a\x8b" => "\x8f\xd1\xd7", +"\x7a\x90" => "\x8f\xd1\xd8", +"\x7a\x91" => "\x8f\xd1\xd9", +"\x7a\x92" => "\xc3\xe2", +"\x7a\x93" => "\xc1\xeb", +"\x7a\x94" => "\x8f\xd1\xda", +"\x7a\x95" => "\xe3\xda", +"\x7a\x96" => "\xe3\xdc", +"\x7a\x97" => "\xe3\xd9", +"\x7a\x98" => "\xe3\xdb", +"\x7a\x9e" => "\x8f\xd1\xdb", +"\x7a\x9f" => "\xb7\xa2", +"\x7a\xa0" => "\x8f\xd1\xdc", +"\x7a\xa3" => "\x8f\xd1\xdd", +"\x7a\xa9" => "\xe3\xdd", +"\x7a\xaa" => "\xb7\xa6", +"\x7a\xac" => "\x8f\xd1\xde", +"\x7a\xae" => "\xb5\xe7", +"\x7a\xaf" => "\xcd\xd2", +"\x7a\xb0" => "\xe3\xdf", +"\x7a\xb3" => "\x8f\xd1\xdf", +"\x7a\xb5" => "\x8f\xd1\xe0", +"\x7a\xb6" => "\xe3\xe0", +"\x7a\xb9" => "\x8f\xd1\xe1", +"\x7a\xba" => "\xb1\xae", +"\x7a\xbb" => "\x8f\xd1\xe2", +"\x7a\xbc" => "\x8f\xd1\xe3", +"\x7a\xbf" => "\xe3\xe3", +"\x7a\xc3" => "\xb3\xf6", +"\x7a\xc4" => "\xe3\xe2", +"\x7a\xc5" => "\xe3\xe1", +"\x7a\xc6" => "\x8f\xd1\xe4", +"\x7a\xc7" => "\xe3\xe5", +"\x7a\xc8" => "\xe3\xde", +"\x7a\xc9" => "\x8f\xd1\xe5", +"\x7a\xca" => "\xe3\xe6", +"\x7a\xcb" => "\xce\xa9", +"\x7a\xcc" => "\x8f\xd1\xe6", +"\x7a\xcd" => "\xe3\xe7", +"\x7a\xce" => "\x8f\xd1\xe7", +"\x7a\xcf" => "\xe3\xe8", +"\x7a\xd1" => "\x8f\xd1\xe8", +"\x7a\xd2" => "\xd4\xf4", +"\x7a\xd3" => "\xe3\xea", +"\x7a\xd5" => "\xe3\xe9", +"\x7a\xd9" => "\xe3\xeb", +"\x7a\xda" => "\xe3\xec", +"\x7a\xdb" => "\x8f\xd1\xe9", +"\x7a\xdc" => "\xce\xb5", +"\x7a\xdd" => "\xe3\xed", +"\x7a\xdf" => "\xf0\xef", +"\x7a\xe0" => "\xbe\xcf", +"\x7a\xe1" => "\xe3\xee", +"\x7a\xe2" => "\xe3\xef", +"\x7a\xe3" => "\xbd\xd7", +"\x7a\xe5" => "\xc6\xb8", +"\x7a\xe6" => "\xe3\xf0", +"\x7a\xe8" => "\x8f\xd1\xea", +"\x7a\xe9" => "\x8f\xd1\xeb", +"\x7a\xea" => "\xc3\xa8", +"\x7a\xeb" => "\x8f\xd1\xec", +"\x7a\xec" => "\x8f\xd1\xed", +"\x7a\xed" => "\xe3\xf1", +"\x7a\xef" => "\xc3\xbc", +"\x7a\xf0" => "\xe3\xf2", +"\x7a\xf1" => "\x8f\xd1\xee", +"\x7a\xf4" => "\x8f\xd1\xef", +"\x7a\xf6" => "\xb6\xa5", +"\x7a\xf8" => "\xd1\xbf", +"\x7a\xf9" => "\xc3\xdd", +"\x7a\xfa" => "\xbc\xb3", +"\x7a\xfb" => "\x8f\xd1\xf0", +"\x7a\xfd" => "\x8f\xd1\xf1", +"\x7a\xfe" => "\x8f\xd1\xf2", +"\x7a\xff" => "\xb4\xc8", +"\x7b\x02" => "\xe3\xf3", +"\x7b\x04" => "\xe4\xa2", +"\x7b\x06" => "\xe3\xf6", +"\x7b\x07" => "\x8f\xd1\xf3", +"\x7b\x08" => "\xb5\xe8", +"\x7b\x0a" => "\xe3\xf5", +"\x7b\x0b" => "\xe4\xa4", +"\x7b\x0f" => "\xe3\xf4", +"\x7b\x11" => "\xbe\xd0", +"\x7b\x14" => "\x8f\xd1\xf4", +"\x7b\x18" => "\xe3\xf8", +"\x7b\x19" => "\xe3\xf9", +"\x7b\x1b" => "\xc5\xab", +"\x7b\x1e" => "\xe3\xfa", +"\x7b\x1f" => "\x8f\xd1\xf5", +"\x7b\x20" => "\xb3\xde", +"\x7b\x23" => "\x8f\xd1\xf6", +"\x7b\x25" => "\xbf\xda", +"\x7b\x26" => "\xc9\xe4", +"\x7b\x27" => "\x8f\xd1\xf7", +"\x7b\x28" => "\xe3\xfc", +"\x7b\x29" => "\x8f\xd1\xf8", +"\x7b\x2a" => "\x8f\xd1\xf9", +"\x7b\x2b" => "\x8f\xd1\xfa", +"\x7b\x2c" => "\xc2\xe8", +"\x7b\x2d" => "\x8f\xd1\xfb", +"\x7b\x2e" => "\x8f\xd1\xfc", +"\x7b\x2f" => "\x8f\xd1\xfd", +"\x7b\x30" => "\x8f\xd1\xfe", +"\x7b\x31" => "\x8f\xd2\xa1", +"\x7b\x33" => "\xe3\xf7", +"\x7b\x34" => "\x8f\xd2\xa2", +"\x7b\x35" => "\xe3\xfb", +"\x7b\x36" => "\xe3\xfd", +"\x7b\x39" => "\xba\xfb", +"\x7b\x3d" => "\x8f\xd2\xa3", +"\x7b\x3f" => "\x8f\xd2\xa4", +"\x7b\x40" => "\x8f\xd2\xa5", +"\x7b\x41" => "\x8f\xd2\xa6", +"\x7b\x45" => "\xe4\xa6", +"\x7b\x46" => "\xc9\xae", +"\x7b\x47" => "\x8f\xd2\xa7", +"\x7b\x48" => "\xc8\xa6", +"\x7b\x49" => "\xc5\xf9", +"\x7b\x4b" => "\xb6\xda", +"\x7b\x4c" => "\xe4\xa5", +"\x7b\x4d" => "\xe4\xa3", +"\x7b\x4e" => "\x8f\xd2\xa8", +"\x7b\x4f" => "\xc8\xb5", +"\x7b\x50" => "\xe3\xfe", +"\x7b\x51" => "\xc3\xde", +"\x7b\x52" => "\xc5\xfb", +"\x7b\x54" => "\xc5\xfa", +"\x7b\x55" => "\x8f\xd2\xa9", +"\x7b\x56" => "\xba\xf6", +"\x7b\x5d" => "\xe4\xb8", +"\x7b\x60" => "\x8f\xd2\xaa", +"\x7b\x64" => "\x8f\xd2\xab", +"\x7b\x65" => "\xe4\xa8", +"\x7b\x66" => "\x8f\xd2\xac", +"\x7b\x67" => "\xe4\xaa", +"\x7b\x69" => "\x8f\xd2\xad", +"\x7b\x6a" => "\x8f\xd2\xae", +"\x7b\x6c" => "\xe4\xad", +"\x7b\x6d" => "\x8f\xd2\xaf", +"\x7b\x6e" => "\xe4\xae", +"\x7b\x6f" => "\x8f\xd2\xb0", +"\x7b\x70" => "\xe4\xab", +"\x7b\x71" => "\xe4\xac", +"\x7b\x72" => "\x8f\xd2\xb1", +"\x7b\x73" => "\x8f\xd2\xb2", +"\x7b\x74" => "\xe4\xa9", +"\x7b\x75" => "\xe4\xa7", +"\x7b\x77" => "\x8f\xd2\xb3", +"\x7b\x7a" => "\xe4\xa1", +"\x7b\x84" => "\x8f\xd2\xb4", +"\x7b\x86" => "\xca\xcf", +"\x7b\x87" => "\xb2\xd5", +"\x7b\x89" => "\x8f\xd2\xb5", +"\x7b\x8b" => "\xe4\xb5", +"\x7b\x8d" => "\xe4\xb2", +"\x7b\x8e" => "\x8f\xd2\xb6", +"\x7b\x8f" => "\xe4\xb7", +"\x7b\x90" => "\x8f\xd2\xb7", +"\x7b\x91" => "\x8f\xd2\xb8", +"\x7b\x92" => "\xe4\xb6", +"\x7b\x94" => "\xc7\xf3", +"\x7b\x95" => "\xcc\xa7", +"\x7b\x96" => "\x8f\xd2\xb9", +"\x7b\x97" => "\xbb\xbb", +"\x7b\x98" => "\xe4\xb0", +"\x7b\x99" => "\xe4\xb9", +"\x7b\x9a" => "\xe4\xb4", +"\x7b\x9b" => "\x8f\xd2\xba", +"\x7b\x9c" => "\xe4\xb3", +"\x7b\x9d" => "\xe4\xaf", +"\x7b\x9e" => "\x8f\xd2\xbb", +"\x7b\x9f" => "\xe4\xb1", +"\x7b\xa0" => "\x8f\xd2\xbc", +"\x7b\xa1" => "\xb4\xc9", +"\x7b\xa5" => "\x8f\xd2\xbd", +"\x7b\xaa" => "\xc3\xbd", +"\x7b\xac" => "\x8f\xd2\xbe", +"\x7b\xad" => "\xc0\xfd", +"\x7b\xaf" => "\x8f\xd2\xbf", +"\x7b\xb0" => "\x8f\xd2\xc0", +"\x7b\xb1" => "\xc8\xa2", +"\x7b\xb2" => "\x8f\xd2\xc1", +"\x7b\xb4" => "\xe4\xbe", +"\x7b\xb5" => "\x8f\xd2\xc2", +"\x7b\xb6" => "\x8f\xd2\xc3", +"\x7b\xb8" => "\xc8\xa4", +"\x7b\xba" => "\x8f\xd2\xc4", +"\x7b\xbb" => "\x8f\xd2\xc5", +"\x7b\xbc" => "\x8f\xd2\xc6", +"\x7b\xbd" => "\x8f\xd2\xc7", +"\x7b\xc0" => "\xc0\xe1", +"\x7b\xc1" => "\xe4\xbb", +"\x7b\xc2" => "\x8f\xd2\xc8", +"\x7b\xc4" => "\xc8\xcf", +"\x7b\xc5" => "\x8f\xd2\xc9", +"\x7b\xc6" => "\xe4\xbf", +"\x7b\xc7" => "\xca\xd3", +"\x7b\xc8" => "\x8f\xd2\xca", +"\x7b\xc9" => "\xc3\xdb", +"\x7b\xca" => "\x8f\xd2\xcb", +"\x7b\xcb" => "\xe4\xba", +"\x7b\xcc" => "\xe4\xbc", +"\x7b\xcf" => "\xe4\xbd", +"\x7b\xd4" => "\x8f\xd2\xcc", +"\x7b\xd6" => "\x8f\xd2\xcd", +"\x7b\xd7" => "\x8f\xd2\xce", +"\x7b\xd9" => "\x8f\xd2\xcf", +"\x7b\xda" => "\x8f\xd2\xd0", +"\x7b\xdb" => "\x8f\xd2\xd1", +"\x7b\xdd" => "\xe4\xc0", +"\x7b\xe0" => "\xbc\xc4", +"\x7b\xe4" => "\xc6\xc6", +"\x7b\xe5" => "\xe4\xc5", +"\x7b\xe6" => "\xe4\xc4", +"\x7b\xe8" => "\x8f\xd2\xd2", +"\x7b\xe9" => "\xe4\xc1", +"\x7b\xea" => "\x8f\xd2\xd3", +"\x7b\xed" => "\xcf\xb6", +"\x7b\xf2" => "\x8f\xd2\xd4", +"\x7b\xf3" => "\xe4\xca", +"\x7b\xf4" => "\x8f\xd2\xd5", +"\x7b\xf5" => "\x8f\xd2\xd6", +"\x7b\xf6" => "\xe4\xce", +"\x7b\xf7" => "\xe4\xcb", +"\x7b\xf8" => "\x8f\xd2\xd7", +"\x7b\xf9" => "\x8f\xd2\xd8", +"\x7b\xfa" => "\x8f\xd2\xd9", +"\x7b\xfc" => "\x8f\xd2\xda", +"\x7b\xfe" => "\x8f\xd2\xdb", +"\x7c\x00" => "\xe4\xc7", +"\x7c\x01" => "\x8f\xd2\xdc", +"\x7c\x02" => "\x8f\xd2\xdd", +"\x7c\x03" => "\x8f\xd2\xde", +"\x7c\x04" => "\x8f\xd2\xdf", +"\x7c\x06" => "\x8f\xd2\xe0", +"\x7c\x07" => "\xe4\xc8", +"\x7c\x09" => "\x8f\xd2\xe1", +"\x7c\x0b" => "\x8f\xd2\xe2", +"\x7c\x0c" => "\x8f\xd2\xe3", +"\x7c\x0d" => "\xe4\xcd", +"\x7c\x0e" => "\x8f\xd2\xe4", +"\x7c\x0f" => "\x8f\xd2\xe5", +"\x7c\x11" => "\xe4\xc2", +"\x7c\x12" => "\xd2\xd5", +"\x7c\x13" => "\xe4\xc9", +"\x7c\x14" => "\xe4\xc3", +"\x7c\x17" => "\xe4\xcc", +"\x7c\x19" => "\x8f\xd2\xe6", +"\x7c\x1b" => "\x8f\xd2\xe7", +"\x7c\x1f" => "\xe4\xd2", +"\x7c\x20" => "\x8f\xd2\xe8", +"\x7c\x21" => "\xb4\xca", +"\x7c\x23" => "\xe4\xcf", +"\x7c\x25" => "\x8f\xd2\xe9", +"\x7c\x26" => "\x8f\xd2\xea", +"\x7c\x27" => "\xe4\xd0", +"\x7c\x28" => "\x8f\xd2\xeb", +"\x7c\x2a" => "\xe4\xd1", +"\x7c\x2b" => "\xe4\xd4", +"\x7c\x2c" => "\x8f\xd2\xec", +"\x7c\x31" => "\x8f\xd2\xed", +"\x7c\x33" => "\x8f\xd2\xee", +"\x7c\x34" => "\x8f\xd2\xef", +"\x7c\x36" => "\x8f\xd2\xf0", +"\x7c\x37" => "\xe4\xd3", +"\x7c\x38" => "\xc8\xf6", +"\x7c\x39" => "\x8f\xd2\xf1", +"\x7c\x3a" => "\x8f\xd2\xf2", +"\x7c\x3d" => "\xe4\xd5", +"\x7c\x3e" => "\xce\xfc", +"\x7c\x3f" => "\xca\xed", +"\x7c\x40" => "\xe4\xda", +"\x7c\x43" => "\xe4\xd7", +"\x7c\x46" => "\x8f\xd2\xf3", +"\x7c\x4a" => "\x8f\xd2\xf4", +"\x7c\x4c" => "\xe4\xd6", +"\x7c\x4d" => "\xc0\xd2", +"\x7c\x4f" => "\xe4\xd9", +"\x7c\x50" => "\xe4\xdb", +"\x7c\x51" => "\x8f\xd2\xf6", +"\x7c\x52" => "\x8f\xd2\xf7", +"\x7c\x53" => "\x8f\xd2\xf8", +"\x7c\x54" => "\xe4\xd8", +"\x7c\x55" => "\x8f\xd2\xf5", +"\x7c\x56" => "\xe4\xdf", +"\x7c\x58" => "\xe4\xdc", +"\x7c\x59" => "\x8f\xd2\xf9", +"\x7c\x5a" => "\x8f\xd2\xfa", +"\x7c\x5b" => "\x8f\xd2\xfb", +"\x7c\x5c" => "\x8f\xd2\xfc", +"\x7c\x5d" => "\x8f\xd2\xfd", +"\x7c\x5e" => "\x8f\xd2\xfe", +"\x7c\x5f" => "\xe4\xdd", +"\x7c\x60" => "\xe4\xc6", +"\x7c\x61" => "\x8f\xd3\xa1", +"\x7c\x63" => "\x8f\xd3\xa2", +"\x7c\x64" => "\xe4\xde", +"\x7c\x65" => "\xe4\xe0", +"\x7c\x67" => "\x8f\xd3\xa3", +"\x7c\x69" => "\x8f\xd3\xa4", +"\x7c\x6c" => "\xe4\xe1", +"\x7c\x6d" => "\x8f\xd3\xa5", +"\x7c\x6e" => "\x8f\xd3\xa6", +"\x7c\x70" => "\x8f\xd3\xa7", +"\x7c\x72" => "\x8f\xd3\xa8", +"\x7c\x73" => "\xca\xc6", +"\x7c\x75" => "\xe4\xe2", +"\x7c\x79" => "\x8f\xd3\xa9", +"\x7c\x7c" => "\x8f\xd3\xaa", +"\x7c\x7d" => "\x8f\xd3\xab", +"\x7c\x7e" => "\xcc\xe2", +"\x7c\x81" => "\xb6\xce", +"\x7c\x82" => "\xb7\xa9", +"\x7c\x83" => "\xe4\xe3", +"\x7c\x86" => "\x8f\xd3\xac", +"\x7c\x87" => "\x8f\xd3\xad", +"\x7c\x89" => "\xca\xb4", +"\x7c\x8b" => "\xbf\xe8", +"\x7c\x8d" => "\xcc\xb0", +"\x7c\x8f" => "\x8f\xd3\xae", +"\x7c\x90" => "\xe4\xe4", +"\x7c\x92" => "\xce\xb3", +"\x7c\x94" => "\x8f\xd3\xaf", +"\x7c\x95" => "\xc7\xf4", +"\x7c\x97" => "\xc1\xc6", +"\x7c\x98" => "\xc7\xb4", +"\x7c\x9b" => "\xbd\xcd", +"\x7c\x9e" => "\x8f\xd3\xb0", +"\x7c\x9f" => "\xb0\xc0", +"\x7c\xa0" => "\x8f\xd3\xb1", +"\x7c\xa1" => "\xe4\xe9", +"\x7c\xa2" => "\xe4\xe7", +"\x7c\xa4" => "\xe4\xe5", +"\x7c\xa5" => "\xb4\xa1", +"\x7c\xa6" => "\x8f\xd3\xb2", +"\x7c\xa7" => "\xbe\xd1", +"\x7c\xa8" => "\xe4\xea", +"\x7c\xab" => "\xe4\xe8", +"\x7c\xad" => "\xe4\xe6", +"\x7c\xae" => "\xe4\xee", +"\x7c\xb0" => "\x8f\xd3\xb3", +"\x7c\xb1" => "\xe4\xed", +"\x7c\xb2" => "\xe4\xec", +"\x7c\xb3" => "\xe4\xeb", +"\x7c\xb6" => "\x8f\xd3\xb4", +"\x7c\xb7" => "\x8f\xd3\xb5", +"\x7c\xb9" => "\xe4\xef", +"\x7c\xba" => "\x8f\xd3\xb6", +"\x7c\xbb" => "\x8f\xd3\xb7", +"\x7c\xbc" => "\x8f\xd3\xb8", +"\x7c\xbd" => "\xe4\xf0", +"\x7c\xbe" => "\xc0\xba", +"\x7c\xbf" => "\x8f\xd3\xb9", +"\x7c\xc0" => "\xe4\xf1", +"\x7c\xc2" => "\xe4\xf3", +"\x7c\xc4" => "\x8f\xd3\xba", +"\x7c\xc5" => "\xe4\xf2", +"\x7c\xc7" => "\x8f\xd3\xbb", +"\x7c\xc8" => "\x8f\xd3\xbc", +"\x7c\xc9" => "\x8f\xd3\xbd", +"\x7c\xca" => "\xb8\xd2", +"\x7c\xcd" => "\x8f\xd3\xbe", +"\x7c\xce" => "\xc1\xb8", +"\x7c\xcf" => "\x8f\xd3\xbf", +"\x7c\xd2" => "\xe4\xf5", +"\x7c\xd3" => "\x8f\xd3\xc0", +"\x7c\xd4" => "\x8f\xd3\xc1", +"\x7c\xd5" => "\x8f\xd3\xc2", +"\x7c\xd6" => "\xc5\xfc", +"\x7c\xd7" => "\x8f\xd3\xc3", +"\x7c\xd8" => "\xe4\xf4", +"\x7c\xd9" => "\x8f\xd3\xc4", +"\x7c\xda" => "\x8f\xd3\xc5", +"\x7c\xdc" => "\xe4\xf6", +"\x7c\xdd" => "\x8f\xd3\xc6", +"\x7c\xde" => "\xca\xb5", +"\x7c\xdf" => "\xc1\xec", +"\x7c\xe0" => "\xb9\xc7", +"\x7c\xe2" => "\xe4\xf7", +"\x7c\xe6" => "\x8f\xd3\xc7", +"\x7c\xe7" => "\xce\xc8", +"\x7c\xe9" => "\x8f\xd3\xc8", +"\x7c\xeb" => "\x8f\xd3\xc9", +"\x7c\xef" => "\xe4\xf9", +"\x7c\xf2" => "\xe4\xfa", +"\x7c\xf4" => "\xe4\xfb", +"\x7c\xf5" => "\x8f\xd3\xca", +"\x7c\xf6" => "\xe4\xfc", +"\x7c\xf8" => "\xbb\xe5", +"\x7c\xfa" => "\xe4\xfd", +"\x7c\xfb" => "\xb7\xcf", +"\x7c\xfe" => "\xb5\xea", +"\x7d\x00" => "\xb5\xaa", +"\x7d\x02" => "\xe5\xa1", +"\x7d\x03" => "\x8f\xd3\xcb", +"\x7d\x04" => "\xcc\xf3", +"\x7d\x05" => "\xb9\xc8", +"\x7d\x06" => "\xe4\xfe", +"\x7d\x07" => "\x8f\xd3\xcc", +"\x7d\x08" => "\x8f\xd3\xcd", +"\x7d\x09" => "\x8f\xd3\xce", +"\x7d\x0a" => "\xe5\xa4", +"\x7d\x0b" => "\xcc\xe6", +"\x7d\x0d" => "\xc7\xbc", +"\x7d\x0f" => "\x8f\xd3\xcf", +"\x7d\x10" => "\xc9\xb3", +"\x7d\x11" => "\x8f\xd3\xd0", +"\x7d\x12" => "\x8f\xd3\xd1", +"\x7d\x13" => "\x8f\xd3\xd2", +"\x7d\x14" => "\xbd\xe3", +"\x7d\x15" => "\xe5\xa3", +"\x7d\x16" => "\x8f\xd3\xd3", +"\x7d\x17" => "\xbc\xd3", +"\x7d\x18" => "\xb9\xc9", +"\x7d\x19" => "\xbb\xe6", +"\x7d\x1a" => "\xb5\xe9", +"\x7d\x1b" => "\xca\xb6", +"\x7d\x1c" => "\xe5\xa2", +"\x7d\x1d" => "\x8f\xd3\xd4", +"\x7d\x1e" => "\x8f\xd3\xd5", +"\x7d\x20" => "\xc1\xc7", +"\x7d\x21" => "\xcb\xc2", +"\x7d\x22" => "\xba\xf7", +"\x7d\x23" => "\x8f\xd3\xd6", +"\x7d\x26" => "\x8f\xd3\xd7", +"\x7d\x2a" => "\x8f\xd3\xd8", +"\x7d\x2b" => "\xbb\xe7", +"\x7d\x2c" => "\xc4\xdd", +"\x7d\x2d" => "\x8f\xd3\xd9", +"\x7d\x2e" => "\xe5\xa7", +"\x7d\x2f" => "\xce\xdf", +"\x7d\x30" => "\xba\xd9", +"\x7d\x31" => "\x8f\xd3\xda", +"\x7d\x32" => "\xe5\xa8", +"\x7d\x33" => "\xbf\xc2", +"\x7d\x35" => "\xe5\xaa", +"\x7d\x39" => "\xbe\xd2", +"\x7d\x3a" => "\xba\xb0", +"\x7d\x3c" => "\x8f\xd3\xdb", +"\x7d\x3d" => "\x8f\xd3\xdc", +"\x7d\x3e" => "\x8f\xd3\xdd", +"\x7d\x3f" => "\xe5\xa9", +"\x7d\x40" => "\x8f\xd3\xde", +"\x7d\x41" => "\x8f\xd3\xdf", +"\x7d\x42" => "\xbd\xaa", +"\x7d\x43" => "\xb8\xbe", +"\x7d\x44" => "\xc1\xc8", +"\x7d\x45" => "\xe5\xa5", +"\x7d\x46" => "\xe5\xab", +"\x7d\x47" => "\x8f\xd3\xe0", +"\x7d\x48" => "\x8f\xd3\xe1", +"\x7d\x4b" => "\xe5\xa6", +"\x7d\x4c" => "\xb7\xd0", +"\x7d\x4d" => "\x8f\xd3\xe2", +"\x7d\x4e" => "\xe5\xae", +"\x7d\x4f" => "\xe5\xb2", +"\x7d\x50" => "\xb7\xeb", +"\x7d\x51" => "\x8f\xd3\xe3", +"\x7d\x53" => "\x8f\xd3\xe4", +"\x7d\x56" => "\xe5\xad", +"\x7d\x57" => "\x8f\xd3\xe5", +"\x7d\x59" => "\x8f\xd3\xe6", +"\x7d\x5a" => "\x8f\xd3\xe7", +"\x7d\x5b" => "\xe5\xb6", +"\x7d\x5c" => "\x8f\xd3\xe8", +"\x7d\x5d" => "\x8f\xd3\xe9", +"\x7d\x5e" => "\xb9\xca", +"\x7d\x61" => "\xcd\xed", +"\x7d\x62" => "\xb0\xbc", +"\x7d\x63" => "\xe5\xb3", +"\x7d\x65" => "\x8f\xd3\xea", +"\x7d\x66" => "\xb5\xeb", +"\x7d\x67" => "\x8f\xd3\xeb", +"\x7d\x68" => "\xe5\xb0", +"\x7d\x6a" => "\x8f\xd3\xec", +"\x7d\x6e" => "\xe5\xb1", +"\x7d\x70" => "\x8f\xd3\xed", +"\x7d\x71" => "\xc5\xfd", +"\x7d\x72" => "\xe5\xaf", +"\x7d\x73" => "\xe5\xac", +"\x7d\x75" => "\xb3\xa8", +"\x7d\x76" => "\xc0\xe4", +"\x7d\x78" => "\x8f\xd3\xee", +"\x7d\x79" => "\xb8\xa8", +"\x7d\x7a" => "\x8f\xd3\xef", +"\x7d\x7b" => "\x8f\xd3\xf0", +"\x7d\x7d" => "\xe5\xb8", +"\x7d\x7f" => "\x8f\xd3\xf1", +"\x7d\x81" => "\x8f\xd3\xf2", +"\x7d\x82" => "\x8f\xd3\xf3", +"\x7d\x83" => "\x8f\xd3\xf4", +"\x7d\x85" => "\x8f\xd3\xf5", +"\x7d\x86" => "\x8f\xd3\xf6", +"\x7d\x88" => "\x8f\xd3\xf7", +"\x7d\x89" => "\xe5\xb5", +"\x7d\x8b" => "\x8f\xd3\xf8", +"\x7d\x8c" => "\x8f\xd3\xf9", +"\x7d\x8d" => "\x8f\xd3\xfa", +"\x7d\x8f" => "\xe5\xb7", +"\x7d\x91" => "\x8f\xd3\xfb", +"\x7d\x93" => "\xe5\xb4", +"\x7d\x96" => "\x8f\xd3\xfc", +"\x7d\x97" => "\x8f\xd3\xfd", +"\x7d\x99" => "\xb7\xd1", +"\x7d\x9a" => "\xc2\xb3", +"\x7d\x9b" => "\xe5\xb9", +"\x7d\x9c" => "\xc1\xee", +"\x7d\x9d" => "\x8f\xd3\xfe", +"\x7d\x9e" => "\x8f\xd4\xa1", +"\x7d\x9f" => "\xe5\xc6", +"\x7d\xa2" => "\xe5\xc2", +"\x7d\xa3" => "\xe5\xbc", +"\x7d\xa6" => "\x8f\xd4\xa2", +"\x7d\xa7" => "\x8f\xd4\xa3", +"\x7d\xaa" => "\x8f\xd4\xa4", +"\x7d\xab" => "\xe5\xc0", +"\x7d\xac" => "\xbc\xfa", +"\x7d\xad" => "\xb0\xdd", +"\x7d\xae" => "\xe5\xbb", +"\x7d\xaf" => "\xe5\xc3", +"\x7d\xb0" => "\xe5\xc7", +"\x7d\xb1" => "\xb9\xcb", +"\x7d\xb2" => "\xcc\xd6", +"\x7d\xb3" => "\x8f\xd4\xa5", +"\x7d\xb4" => "\xc4\xd6", +"\x7d\xb5" => "\xe5\xbd", +"\x7d\xb6" => "\x8f\xd4\xa6", +"\x7d\xb7" => "\x8f\xd4\xa7", +"\x7d\xb8" => "\xe5\xc5", +"\x7d\xb9" => "\x8f\xd4\xa8", +"\x7d\xba" => "\xe5\xba", +"\x7d\xbb" => "\xc3\xbe", +"\x7d\xbd" => "\xe5\xbf", +"\x7d\xbe" => "\xb0\xbd", +"\x7d\xbf" => "\xcc\xca", +"\x7d\xc2" => "\x8f\xd4\xa9", +"\x7d\xc3" => "\x8f\xd4\xaa", +"\x7d\xc4" => "\x8f\xd4\xab", +"\x7d\xc5" => "\x8f\xd4\xac", +"\x7d\xc6" => "\x8f\xd4\xad", +"\x7d\xc7" => "\xe5\xbe", +"\x7d\xca" => "\xb6\xdb", +"\x7d\xcb" => "\xc8\xec", +"\x7d\xcc" => "\x8f\xd4\xae", +"\x7d\xcd" => "\x8f\xd4\xaf", +"\x7d\xce" => "\x8f\xd4\xb0", +"\x7d\xcf" => "\xc1\xed", +"\x7d\xd1" => "\xce\xd0", +"\x7d\xd2" => "\xbd\xef", +"\x7d\xd5" => "\xe5\xee", +"\x7d\xd7" => "\x8f\xd4\xb1", +"\x7d\xd8" => "\xe5\xc8", +"\x7d\xd9" => "\x8f\xd4\xb2", +"\x7d\xda" => "\xc0\xfe", +"\x7d\xdc" => "\xe5\xc4", +"\x7d\xdd" => "\xe5\xc9", +"\x7d\xde" => "\xe5\xcb", +"\x7d\xe0" => "\xc4\xf9", +"\x7d\xe1" => "\xe5\xce", +"\x7d\xe2" => "\x8f\xd4\xb4", +"\x7d\xe4" => "\xe5\xca", +"\x7d\xe5" => "\x8f\xd4\xb5", +"\x7d\xe6" => "\x8f\xd4\xb6", +"\x7d\xe8" => "\xca\xd4", +"\x7d\xe9" => "\xb4\xcb", +"\x7d\xea" => "\x8f\xd4\xb7", +"\x7d\xeb" => "\x8f\xd4\xb8", +"\x7d\xec" => "\xcc\xcb", +"\x7d\xed" => "\x8f\xd4\xb9", +"\x7d\xef" => "\xb0\xde", +"\x7d\xf1" => "\x8f\xd4\xba", +"\x7d\xf2" => "\xe5\xcd", +"\x7d\xf4" => "\xce\xfd", +"\x7d\xf5" => "\x8f\xd4\xbb", +"\x7d\xf6" => "\x8f\xd4\xbc", +"\x7d\xf9" => "\x8f\xd4\xbd", +"\x7d\xfa" => "\x8f\xd4\xbe", +"\x7d\xfb" => "\xe5\xcc", +"\x7e\x00" => "\x8f\xd4\xb3", +"\x7e\x01" => "\xb1\xef", +"\x7e\x04" => "\xc6\xec", +"\x7e\x05" => "\xe5\xcf", +"\x7e\x08" => "\x8f\xd4\xbf", +"\x7e\x09" => "\xe5\xd6", +"\x7e\x0a" => "\xe5\xd0", +"\x7e\x0b" => "\xe5\xd7", +"\x7e\x10" => "\x8f\xd4\xc0", +"\x7e\x11" => "\x8f\xd4\xc1", +"\x7e\x12" => "\xe5\xd3", +"\x7e\x15" => "\x8f\xd4\xc2", +"\x7e\x17" => "\x8f\xd4\xc3", +"\x7e\x1b" => "\xc7\xfb", +"\x7e\x1c" => "\x8f\xd4\xc4", +"\x7e\x1d" => "\x8f\xd4\xc5", +"\x7e\x1e" => "\xbc\xca", +"\x7e\x1f" => "\xe5\xd5", +"\x7e\x20" => "\x8f\xd4\xc6", +"\x7e\x21" => "\xe5\xd2", +"\x7e\x22" => "\xe5\xd8", +"\x7e\x23" => "\xe5\xd1", +"\x7e\x26" => "\xbd\xc4", +"\x7e\x27" => "\x8f\xd4\xc7", +"\x7e\x28" => "\x8f\xd4\xc8", +"\x7e\x2b" => "\xcb\xa5", +"\x7e\x2c" => "\x8f\xd4\xc9", +"\x7e\x2d" => "\x8f\xd4\xca", +"\x7e\x2e" => "\xbd\xcc", +"\x7e\x2f" => "\x8f\xd4\xcb", +"\x7e\x31" => "\xe5\xd4", +"\x7e\x32" => "\xe5\xe0", +"\x7e\x33" => "\x8f\xd4\xcc", +"\x7e\x35" => "\xe5\xdc", +"\x7e\x36" => "\x8f\xd4\xcd", +"\x7e\x37" => "\xe5\xdf", +"\x7e\x39" => "\xe5\xdd", +"\x7e\x3a" => "\xe5\xe1", +"\x7e\x3b" => "\xe5\xdb", +"\x7e\x3d" => "\xe5\xc1", +"\x7e\x3e" => "\xc0\xd3", +"\x7e\x3f" => "\x8f\xd4\xce", +"\x7e\x41" => "\xc8\xcb", +"\x7e\x43" => "\xe5\xde", +"\x7e\x44" => "\x8f\xd4\xcf", +"\x7e\x45" => "\x8f\xd4\xd0", +"\x7e\x46" => "\xe5\xd9", +"\x7e\x47" => "\x8f\xd4\xd1", +"\x7e\x4a" => "\xc1\xa1", +"\x7e\x4b" => "\xb7\xd2", +"\x7e\x4d" => "\xbd\xab", +"\x7e\x4e" => "\x8f\xd4\xd2", +"\x7e\x50" => "\x8f\xd4\xd3", +"\x7e\x52" => "\x8f\xd4\xd4", +"\x7e\x54" => "\xbf\xa5", +"\x7e\x55" => "\xc1\xb6", +"\x7e\x56" => "\xe5\xe4", +"\x7e\x58" => "\x8f\xd4\xd5", +"\x7e\x59" => "\xe5\xe6", +"\x7e\x5a" => "\xe5\xe7", +"\x7e\x5d" => "\xe5\xe3", +"\x7e\x5e" => "\xe5\xe5", +"\x7e\x5f" => "\x8f\xd4\xd6", +"\x7e\x61" => "\x8f\xd4\xd7", +"\x7e\x62" => "\x8f\xd4\xd8", +"\x7e\x65" => "\x8f\xd4\xd9", +"\x7e\x66" => "\xe5\xda", +"\x7e\x67" => "\xe5\xe2", +"\x7e\x69" => "\xe5\xea", +"\x7e\x6a" => "\xe5\xe9", +"\x7e\x6b" => "\x8f\xd4\xda", +"\x7e\x6d" => "\xcb\xfa", +"\x7e\x6e" => "\x8f\xd4\xdb", +"\x7e\x6f" => "\x8f\xd4\xdc", +"\x7e\x70" => "\xb7\xab", +"\x7e\x73" => "\x8f\xd4\xdd", +"\x7e\x78" => "\x8f\xd4\xde", +"\x7e\x79" => "\xe5\xe8", +"\x7e\x7b" => "\xe5\xec", +"\x7e\x7c" => "\xe5\xeb", +"\x7e\x7d" => "\xe5\xef", +"\x7e\x7e" => "\x8f\xd4\xdf", +"\x7e\x7f" => "\xe5\xf1", +"\x7e\x81" => "\x8f\xd4\xe0", +"\x7e\x82" => "\xbb\xbc", +"\x7e\x83" => "\xe5\xed", +"\x7e\x86" => "\x8f\xd4\xe1", +"\x7e\x87" => "\x8f\xd4\xe2", +"\x7e\x88" => "\xe5\xf2", +"\x7e\x89" => "\xe5\xf3", +"\x7e\x8a" => "\x8f\xd4\xe3", +"\x7e\x8c" => "\xe5\xf4", +"\x7e\x8d" => "\x8f\xd4\xe4", +"\x7e\x8e" => "\xe5\xfa", +"\x7e\x8f" => "\xc5\xbb", +"\x7e\x90" => "\xe5\xf6", +"\x7e\x91" => "\x8f\xd4\xe5", +"\x7e\x92" => "\xe5\xf5", +"\x7e\x93" => "\xe5\xf7", +"\x7e\x94" => "\xe5\xf8", +"\x7e\x95" => "\x8f\xd4\xe6", +"\x7e\x96" => "\xe5\xf9", +"\x7e\x98" => "\x8f\xd4\xe7", +"\x7e\x9a" => "\x8f\xd4\xe8", +"\x7e\x9b" => "\xe5\xfb", +"\x7e\x9c" => "\xe5\xfc", +"\x7e\x9d" => "\x8f\xd4\xe9", +"\x7e\x9e" => "\x8f\xd4\xea", +"\x7f\x36" => "\xb4\xcc", +"\x7f\x38" => "\xe5\xfd", +"\x7f\x3a" => "\xe5\xfe", +"\x7f\x3b" => "\x8f\xd4\xec", +"\x7f\x3c" => "\x8f\xd4\xeb", +"\x7f\x3d" => "\x8f\xd4\xed", +"\x7f\x3e" => "\x8f\xd4\xee", +"\x7f\x3f" => "\x8f\xd4\xef", +"\x7f\x43" => "\x8f\xd4\xf0", +"\x7f\x44" => "\x8f\xd4\xf1", +"\x7f\x45" => "\xe6\xa1", +"\x7f\x47" => "\x8f\xd4\xf2", +"\x7f\x4c" => "\xe6\xa2", +"\x7f\x4d" => "\xe6\xa3", +"\x7f\x4e" => "\xe6\xa4", +"\x7f\x4f" => "\x8f\xd4\xf3", +"\x7f\x50" => "\xe6\xa5", +"\x7f\x51" => "\xe6\xa6", +"\x7f\x52" => "\x8f\xd4\xf4", +"\x7f\x53" => "\x8f\xd4\xf5", +"\x7f\x54" => "\xe6\xa8", +"\x7f\x55" => "\xe6\xa7", +"\x7f\x58" => "\xe6\xa9", +"\x7f\x5b" => "\x8f\xd4\xf6", +"\x7f\x5c" => "\x8f\xd4\xf7", +"\x7f\x5d" => "\x8f\xd4\xf8", +"\x7f\x5f" => "\xe6\xaa", +"\x7f\x60" => "\xe6\xab", +"\x7f\x61" => "\x8f\xd4\xf9", +"\x7f\x63" => "\x8f\xd4\xfa", +"\x7f\x64" => "\x8f\xd4\xfb", +"\x7f\x65" => "\x8f\xd4\xfc", +"\x7f\x66" => "\x8f\xd4\xfd", +"\x7f\x67" => "\xe6\xae", +"\x7f\x68" => "\xe6\xac", +"\x7f\x69" => "\xe6\xad", +"\x7f\x6a" => "\xba\xe1", +"\x7f\x6b" => "\xb7\xd3", +"\x7f\x6d" => "\x8f\xd4\xfe", +"\x7f\x6e" => "\xc3\xd6", +"\x7f\x70" => "\xc8\xb3", +"\x7f\x71" => "\x8f\xd5\xa1", +"\x7f\x72" => "\xbd\xf0", +"\x7f\x75" => "\xc7\xcd", +"\x7f\x77" => "\xc8\xed", +"\x7f\x78" => "\xe6\xaf", +"\x7f\x79" => "\xd8\xed", +"\x7f\x7d" => "\x8f\xd5\xa2", +"\x7f\x7e" => "\x8f\xd5\xa3", +"\x7f\x7f" => "\x8f\xd5\xa4", +"\x7f\x80" => "\x8f\xd5\xa5", +"\x7f\x82" => "\xe6\xb0", +"\x7f\x83" => "\xe6\xb2", +"\x7f\x85" => "\xcd\xe5", +"\x7f\x86" => "\xe6\xb1", +"\x7f\x87" => "\xe6\xb4", +"\x7f\x88" => "\xe6\xb3", +"\x7f\x8a" => "\xcd\xd3", +"\x7f\x8b" => "\x8f\xd5\xa6", +"\x7f\x8c" => "\xe6\xb5", +"\x7f\x8d" => "\x8f\xd5\xa7", +"\x7f\x8e" => "\xc8\xfe", +"\x7f\x8f" => "\x8f\xd5\xa8", +"\x7f\x90" => "\x8f\xd5\xa9", +"\x7f\x91" => "\x8f\xd5\xaa", +"\x7f\x94" => "\xe6\xb6", +"\x7f\x96" => "\x8f\xd5\xab", +"\x7f\x97" => "\x8f\xd5\xac", +"\x7f\x9a" => "\xe6\xb9", +"\x7f\x9c" => "\x8f\xd5\xad", +"\x7f\x9d" => "\xe6\xb8", +"\x7f\x9e" => "\xe6\xb7", +"\x7f\xa1" => "\x8f\xd5\xae", +"\x7f\xa2" => "\x8f\xd5\xaf", +"\x7f\xa3" => "\xe6\xba", +"\x7f\xa4" => "\xb7\xb2", +"\x7f\xa6" => "\x8f\xd5\xb0", +"\x7f\xa8" => "\xc1\xa2", +"\x7f\xa9" => "\xb5\xc1", +"\x7f\xaa" => "\x8f\xd5\xb1", +"\x7f\xad" => "\x8f\xd5\xb2", +"\x7f\xae" => "\xe6\xbe", +"\x7f\xaf" => "\xe6\xbb", +"\x7f\xb2" => "\xe6\xbc", +"\x7f\xb4" => "\x8f\xd5\xb3", +"\x7f\xb6" => "\xe6\xbf", +"\x7f\xb8" => "\xe6\xc0", +"\x7f\xb9" => "\xe6\xbd", +"\x7f\xbc" => "\x8f\xd5\xb4", +"\x7f\xbd" => "\xb1\xa9", +"\x7f\xbf" => "\x8f\xd5\xb5", +"\x7f\xc0" => "\x8f\xd5\xb6", +"\x7f\xc1" => "\xb2\xa7", +"\x7f\xc3" => "\x8f\xd5\xb7", +"\x7f\xc5" => "\xe6\xc2", +"\x7f\xc6" => "\xe6\xc3", +"\x7f\xc8" => "\x8f\xd5\xb8", +"\x7f\xca" => "\xe6\xc4", +"\x7f\xcc" => "\xcd\xe2", +"\x7f\xce" => "\x8f\xd5\xb9", +"\x7f\xcf" => "\x8f\xd5\xba", +"\x7f\xd2" => "\xbd\xac", +"\x7f\xd4" => "\xe6\xc6", +"\x7f\xd5" => "\xe6\xc5", +"\x7f\xdb" => "\x8f\xd5\xbb", +"\x7f\xdf" => "\x8f\xd5\xbc", +"\x7f\xe0" => "\xbf\xe9", +"\x7f\xe1" => "\xe6\xc7", +"\x7f\xe3" => "\x8f\xd5\xbd", +"\x7f\xe5" => "\x8f\xd5\xbe", +"\x7f\xe6" => "\xe6\xc8", +"\x7f\xe8" => "\x8f\xd5\xbf", +"\x7f\xe9" => "\xe6\xc9", +"\x7f\xeb" => "\xb4\xe5", +"\x7f\xec" => "\x8f\xd5\xc0", +"\x7f\xee" => "\x8f\xd5\xc1", +"\x7f\xef" => "\x8f\xd5\xc2", +"\x7f\xf0" => "\xb4\xcd", +"\x7f\xf2" => "\x8f\xd5\xc3", +"\x7f\xf3" => "\xe6\xca", +"\x7f\xf9" => "\xe6\xcb", +"\x7f\xfa" => "\x8f\xd5\xc4", +"\x7f\xfb" => "\xcb\xdd", +"\x7f\xfc" => "\xcd\xe3", +"\x7f\xfd" => "\x8f\xd5\xc5", +"\x7f\xfe" => "\x8f\xd5\xc6", +"\x7f\xff" => "\x8f\xd5\xc7", +"\x80\x00" => "\xcd\xd4", +"\x80\x01" => "\xcf\xb7", +"\x80\x03" => "\xb9\xcd", +"\x80\x04" => "\xe6\xce", +"\x80\x05" => "\xbc\xd4", +"\x80\x06" => "\xe6\xcd", +"\x80\x07" => "\x8f\xd5\xc8", +"\x80\x08" => "\x8f\xd5\xc9", +"\x80\x0a" => "\x8f\xd5\xca", +"\x80\x0b" => "\xe6\xcf", +"\x80\x0c" => "\xbc\xa9", +"\x80\x0d" => "\x8f\xd5\xcb", +"\x80\x0e" => "\x8f\xd5\xcc", +"\x80\x0f" => "\x8f\xd5\xcd", +"\x80\x10" => "\xc2\xd1", +"\x80\x11" => "\x8f\xd5\xce", +"\x80\x12" => "\xe6\xd0", +"\x80\x13" => "\x8f\xd5\xcf", +"\x80\x14" => "\x8f\xd5\xd0", +"\x80\x15" => "\xb9\xcc", +"\x80\x16" => "\x8f\xd5\xd1", +"\x80\x17" => "\xcc\xd7", +"\x80\x18" => "\xe6\xd1", +"\x80\x19" => "\xe6\xd2", +"\x80\x1c" => "\xe6\xd3", +"\x80\x1d" => "\x8f\xd5\xd2", +"\x80\x1e" => "\x8f\xd5\xd3", +"\x80\x1f" => "\x8f\xd5\xd4", +"\x80\x20" => "\x8f\xd5\xd5", +"\x80\x21" => "\xe6\xd4", +"\x80\x24" => "\x8f\xd5\xd6", +"\x80\x26" => "\x8f\xd5\xd7", +"\x80\x28" => "\xe6\xd5", +"\x80\x2c" => "\x8f\xd5\xd8", +"\x80\x2e" => "\x8f\xd5\xd9", +"\x80\x30" => "\x8f\xd5\xda", +"\x80\x33" => "\xbc\xaa", +"\x80\x34" => "\x8f\xd5\xdb", +"\x80\x35" => "\x8f\xd5\xdc", +"\x80\x36" => "\xcc\xed", +"\x80\x37" => "\x8f\xd5\xdd", +"\x80\x39" => "\x8f\xd5\xde", +"\x80\x3a" => "\x8f\xd5\xdf", +"\x80\x3b" => "\xe6\xd7", +"\x80\x3c" => "\x8f\xd5\xe0", +"\x80\x3d" => "\xc3\xbf", +"\x80\x3e" => "\x8f\xd5\xe1", +"\x80\x3f" => "\xe6\xd6", +"\x80\x40" => "\x8f\xd5\xe2", +"\x80\x44" => "\x8f\xd5\xe3", +"\x80\x46" => "\xe6\xd9", +"\x80\x4a" => "\xe6\xd8", +"\x80\x52" => "\xe6\xda", +"\x80\x56" => "\xc0\xbb", +"\x80\x58" => "\xe6\xdb", +"\x80\x5a" => "\xe6\xdc", +"\x80\x5e" => "\xca\xb9", +"\x80\x5f" => "\xe6\xdd", +"\x80\x60" => "\x8f\xd5\xe4", +"\x80\x61" => "\xc1\xef", +"\x80\x62" => "\xe6\xde", +"\x80\x64" => "\x8f\xd5\xe5", +"\x80\x66" => "\x8f\xd5\xe6", +"\x80\x68" => "\xe6\xdf", +"\x80\x6d" => "\x8f\xd5\xe7", +"\x80\x6f" => "\xce\xfe", +"\x80\x70" => "\xe6\xe2", +"\x80\x71" => "\x8f\xd5\xe8", +"\x80\x72" => "\xe6\xe1", +"\x80\x73" => "\xe6\xe0", +"\x80\x74" => "\xc4\xb0", +"\x80\x75" => "\x8f\xd5\xe9", +"\x80\x76" => "\xe6\xe3", +"\x80\x77" => "\xbf\xa6", +"\x80\x79" => "\xe6\xe4", +"\x80\x7d" => "\xe6\xe5", +"\x80\x7e" => "\xcf\xb8", +"\x80\x7f" => "\xe6\xe6", +"\x80\x81" => "\x8f\xd5\xea", +"\x80\x84" => "\xe6\xe7", +"\x80\x85" => "\xe6\xe9", +"\x80\x86" => "\xe6\xe8", +"\x80\x87" => "\xc8\xa5", +"\x80\x88" => "\x8f\xd5\xeb", +"\x80\x89" => "\xc6\xf9", +"\x80\x8b" => "\xcf\xbe", +"\x80\x8c" => "\xc8\xa9", +"\x80\x8e" => "\x8f\xd5\xec", +"\x80\x93" => "\xe6\xeb", +"\x80\x96" => "\xbe\xd3", +"\x80\x98" => "\xc9\xaa", +"\x80\x9a" => "\xe6\xec", +"\x80\x9b" => "\xe6\xea", +"\x80\x9c" => "\x8f\xd5\xed", +"\x80\x9d" => "\xb4\xce", +"\x80\x9e" => "\x8f\xd5\xee", +"\x80\xa1" => "\xb8\xd4", +"\x80\xa2" => "\xbb\xe8", +"\x80\xa5" => "\xc8\xee", +"\x80\xa6" => "\x8f\xd5\xef", +"\x80\xa7" => "\x8f\xd5\xf0", +"\x80\xa9" => "\xb8\xaa", +"\x80\xaa" => "\xcb\xc3", +"\x80\xab" => "\x8f\xd5\xf1", +"\x80\xac" => "\xe6\xef", +"\x80\xad" => "\xe6\xed", +"\x80\xaf" => "\xb9\xce", +"\x80\xb1" => "\xb9\xcf", +"\x80\xb2" => "\xb0\xe9", +"\x80\xb4" => "\xba\xe8", +"\x80\xb8" => "\x8f\xd5\xf2", +"\x80\xb9" => "\x8f\xd5\xf3", +"\x80\xba" => "\xc7\xd9", +"\x80\xc3" => "\xb0\xdf", +"\x80\xc4" => "\xe6\xf4", +"\x80\xc6" => "\xc3\xc0", +"\x80\xc8" => "\x8f\xd5\xf4", +"\x80\xcc" => "\xc7\xd8", +"\x80\xcd" => "\x8f\xd5\xf5", +"\x80\xce" => "\xc2\xdb", +"\x80\xcf" => "\x8f\xd5\xf6", +"\x80\xd2" => "\x8f\xd5\xf7", +"\x80\xd4" => "\x8f\xd5\xf8", +"\x80\xd5" => "\x8f\xd5\xf9", +"\x80\xd6" => "\xe6\xf6", +"\x80\xd7" => "\x8f\xd5\xfa", +"\x80\xd8" => "\x8f\xd5\xfb", +"\x80\xd9" => "\xe6\xf2", +"\x80\xda" => "\xe6\xf5", +"\x80\xdb" => "\xe6\xf0", +"\x80\xdd" => "\xe6\xf3", +"\x80\xde" => "\xcb\xa6", +"\x80\xe0" => "\x8f\xd5\xfc", +"\x80\xe1" => "\xb8\xd5", +"\x80\xe4" => "\xb0\xfd", +"\x80\xe5" => "\xe6\xf1", +"\x80\xed" => "\x8f\xd5\xfd", +"\x80\xee" => "\x8f\xd5\xfe", +"\x80\xef" => "\xe6\xf8", +"\x80\xf0" => "\x8f\xd6\xa1", +"\x80\xf1" => "\xe6\xf9", +"\x80\xf2" => "\x8f\xd6\xa2", +"\x80\xf3" => "\x8f\xd6\xa3", +"\x80\xf4" => "\xc6\xb9", +"\x80\xf6" => "\x8f\xd6\xa4", +"\x80\xf8" => "\xb6\xbb", +"\x80\xf9" => "\x8f\xd6\xa5", +"\x80\xfa" => "\x8f\xd6\xa6", +"\x80\xfc" => "\xe7\xa6", +"\x80\xfd" => "\xc7\xbd", +"\x80\xfe" => "\x8f\xd6\xa7", +"\x81\x02" => "\xbb\xe9", +"\x81\x03" => "\x8f\xd6\xa8", +"\x81\x05" => "\xb6\xbc", +"\x81\x06" => "\xc0\xc8", +"\x81\x07" => "\xcf\xc6", +"\x81\x08" => "\xcc\xae", +"\x81\x09" => "\xe6\xf7", +"\x81\x0a" => "\xc0\xd4", +"\x81\x0b" => "\x8f\xd6\xa9", +"\x81\x16" => "\x8f\xd6\xaa", +"\x81\x17" => "\x8f\xd6\xab", +"\x81\x18" => "\x8f\xd6\xac", +"\x81\x1a" => "\xb5\xd3", +"\x81\x1b" => "\xe6\xfa", +"\x81\x1c" => "\x8f\xd6\xad", +"\x81\x1e" => "\x8f\xd6\xae", +"\x81\x20" => "\x8f\xd6\xaf", +"\x81\x23" => "\xe6\xfc", +"\x81\x24" => "\x8f\xd6\xb0", +"\x81\x27" => "\x8f\xd6\xb1", +"\x81\x29" => "\xe6\xfb", +"\x81\x2c" => "\x8f\xd6\xb2", +"\x81\x2f" => "\xe6\xfd", +"\x81\x30" => "\x8f\xd6\xb3", +"\x81\x31" => "\xc3\xa6", +"\x81\x33" => "\xc7\xbe", +"\x81\x35" => "\x8f\xd6\xb4", +"\x81\x39" => "\xc4\xb1", +"\x81\x3a" => "\x8f\xd6\xb5", +"\x81\x3c" => "\x8f\xd6\xb6", +"\x81\x3e" => "\xe7\xa3", +"\x81\x45" => "\x8f\xd6\xb7", +"\x81\x46" => "\xe7\xa2", +"\x81\x47" => "\x8f\xd6\xb8", +"\x81\x4a" => "\x8f\xd6\xb9", +"\x81\x4b" => "\xe6\xfe", +"\x81\x4c" => "\x8f\xd6\xba", +"\x81\x4e" => "\xbf\xd5", +"\x81\x50" => "\xc9\xe5", +"\x81\x51" => "\xe7\xa5", +"\x81\x52" => "\x8f\xd6\xbb", +"\x81\x53" => "\xe7\xa4", +"\x81\x54" => "\xb9\xd0", +"\x81\x55" => "\xcf\xd3", +"\x81\x57" => "\x8f\xd6\xbc", +"\x81\x5f" => "\xe7\xb5", +"\x81\x60" => "\x8f\xd6\xbd", +"\x81\x61" => "\x8f\xd6\xbe", +"\x81\x65" => "\xe7\xa9", +"\x81\x66" => "\xe7\xaa", +"\x81\x67" => "\x8f\xd6\xbf", +"\x81\x68" => "\x8f\xd6\xc0", +"\x81\x69" => "\x8f\xd6\xc1", +"\x81\x6b" => "\xbc\xf0", +"\x81\x6d" => "\x8f\xd6\xc2", +"\x81\x6e" => "\xe7\xa8", +"\x81\x6f" => "\x8f\xd6\xc3", +"\x81\x70" => "\xb9\xf8", +"\x81\x71" => "\xe7\xa7", +"\x81\x74" => "\xe7\xab", +"\x81\x77" => "\x8f\xd6\xc4", +"\x81\x78" => "\xc4\xb2", +"\x81\x79" => "\xca\xa2", +"\x81\x7a" => "\xc1\xa3", +"\x81\x7f" => "\xc2\xdc", +"\x81\x80" => "\xe7\xaf", +"\x81\x81" => "\x8f\xd6\xc5", +"\x81\x82" => "\xe7\xb0", +"\x81\x83" => "\xe7\xac", +"\x81\x84" => "\x8f\xd6\xc7", +"\x81\x85" => "\x8f\xd6\xc8", +"\x81\x86" => "\x8f\xd6\xc9", +"\x81\x88" => "\xe7\xad", +"\x81\x8a" => "\xe7\xae", +"\x81\x8b" => "\x8f\xd6\xca", +"\x81\x8e" => "\x8f\xd6\xcb", +"\x81\x8f" => "\xb9\xd1", +"\x81\x90" => "\x8f\xd6\xc6", +"\x81\x93" => "\xe7\xb6", +"\x81\x95" => "\xe7\xb2", +"\x81\x96" => "\x8f\xd6\xcc", +"\x81\x98" => "\x8f\xd6\xcd", +"\x81\x9a" => "\xc9\xe6", +"\x81\x9b" => "\x8f\xd6\xce", +"\x81\x9c" => "\xcb\xec", +"\x81\x9d" => "\xc9\xa8", +"\x81\x9e" => "\x8f\xd6\xcf", +"\x81\xa0" => "\xe7\xb1", +"\x81\xa2" => "\x8f\xd6\xd0", +"\x81\xa3" => "\xe7\xb4", +"\x81\xa4" => "\xe7\xb3", +"\x81\xa8" => "\xcb\xc4", +"\x81\xa9" => "\xe7\xb7", +"\x81\xae" => "\x8f\xd6\xd1", +"\x81\xb0" => "\xe7\xb8", +"\x81\xb2" => "\x8f\xd6\xd2", +"\x81\xb3" => "\xc1\xb7", +"\x81\xb4" => "\x8f\xd6\xd3", +"\x81\xb5" => "\xe7\xb9", +"\x81\xb8" => "\xe7\xbb", +"\x81\xba" => "\xe7\xbf", +"\x81\xbb" => "\x8f\xd6\xd4", +"\x81\xbd" => "\xe7\xbc", +"\x81\xbe" => "\xe7\xba", +"\x81\xbf" => "\xc7\xbf", +"\x81\xc0" => "\xe7\xbd", +"\x81\xc2" => "\xe7\xbe", +"\x81\xc3" => "\x8f\xd6\xd6", +"\x81\xc5" => "\x8f\xd6\xd7", +"\x81\xc6" => "\xb2\xb2", +"\x81\xc8" => "\xe7\xc5", +"\x81\xc9" => "\xe7\xc0", +"\x81\xca" => "\x8f\xd6\xd8", +"\x81\xcb" => "\x8f\xd6\xd5", +"\x81\xcd" => "\xe7\xc1", +"\x81\xce" => "\x8f\xd6\xd9", +"\x81\xcf" => "\x8f\xd6\xda", +"\x81\xd1" => "\xe7\xc2", +"\x81\xd3" => "\xc2\xa1", +"\x81\xd5" => "\x8f\xd6\xdb", +"\x81\xd7" => "\x8f\xd6\xdc", +"\x81\xd8" => "\xe7\xc4", +"\x81\xd9" => "\xe7\xc3", +"\x81\xda" => "\xe7\xc6", +"\x81\xdb" => "\x8f\xd6\xdd", +"\x81\xdd" => "\x8f\xd6\xde", +"\x81\xde" => "\x8f\xd6\xdf", +"\x81\xdf" => "\xe7\xc7", +"\x81\xe0" => "\xe7\xc8", +"\x81\xe1" => "\x8f\xd6\xe0", +"\x81\xe3" => "\xbf\xc3", +"\x81\xe4" => "\x8f\xd6\xe1", +"\x81\xe5" => "\xb2\xe9", +"\x81\xe7" => "\xe7\xc9", +"\x81\xe8" => "\xce\xd7", +"\x81\xea" => "\xbc\xab", +"\x81\xeb" => "\x8f\xd6\xe2", +"\x81\xec" => "\x8f\xd6\xe3", +"\x81\xed" => "\xbd\xad", +"\x81\xf0" => "\x8f\xd6\xe4", +"\x81\xf1" => "\x8f\xd6\xe5", +"\x81\xf2" => "\x8f\xd6\xe6", +"\x81\xf3" => "\xbb\xea", +"\x81\xf4" => "\xc3\xd7", +"\x81\xf5" => "\x8f\xd6\xe7", +"\x81\xf6" => "\x8f\xd6\xe8", +"\x81\xf8" => "\x8f\xd6\xe9", +"\x81\xf9" => "\x8f\xd6\xea", +"\x81\xfa" => "\xe7\xca", +"\x81\xfb" => "\xe7\xcb", +"\x81\xfc" => "\xb1\xb1", +"\x81\xfd" => "\x8f\xd6\xeb", +"\x81\xfe" => "\xe7\xcc", +"\x81\xff" => "\x8f\xd6\xec", +"\x82\x00" => "\x8f\xd6\xed", +"\x82\x01" => "\xe7\xcd", +"\x82\x02" => "\xe7\xce", +"\x82\x03" => "\x8f\xd6\xee", +"\x82\x05" => "\xe7\xcf", +"\x82\x07" => "\xe7\xd0", +"\x82\x08" => "\xb6\xbd", +"\x82\x09" => "\xda\xaa", +"\x82\x0a" => "\xe7\xd1", +"\x82\x0c" => "\xc0\xe5", +"\x82\x0d" => "\xe7\xd2", +"\x82\x0e" => "\xbc\xcb", +"\x82\x0f" => "\x8f\xd6\xef", +"\x82\x10" => "\xe7\xd3", +"\x82\x12" => "\xd0\xb0", +"\x82\x13" => "\x8f\xd6\xf0", +"\x82\x14" => "\x8f\xd6\xf1", +"\x82\x16" => "\xe7\xd4", +"\x82\x17" => "\xca\xde", +"\x82\x18" => "\xb4\xdc", +"\x82\x19" => "\x8f\xd6\xf2", +"\x82\x1a" => "\x8f\xd6\xf3", +"\x82\x1b" => "\xc1\xa4", +"\x82\x1c" => "\xbd\xd8", +"\x82\x1d" => "\x8f\xd6\xf4", +"\x82\x1e" => "\xc9\xf1", +"\x82\x1f" => "\xbd\xae", +"\x82\x21" => "\x8f\xd6\xf5", +"\x82\x22" => "\x8f\xd6\xf6", +"\x82\x28" => "\x8f\xd6\xf7", +"\x82\x29" => "\xe7\xd5", +"\x82\x2a" => "\xb9\xd2", +"\x82\x2b" => "\xe7\xd6", +"\x82\x2c" => "\xc8\xcc", +"\x82\x2e" => "\xe7\xe4", +"\x82\x32" => "\x8f\xd6\xf8", +"\x82\x33" => "\xe7\xd8", +"\x82\x34" => "\x8f\xd6\xf9", +"\x82\x35" => "\xc2\xc9", +"\x82\x36" => "\xc7\xf5", +"\x82\x37" => "\xb8\xbf", +"\x82\x38" => "\xe7\xd7", +"\x82\x39" => "\xc1\xa5", +"\x82\x3a" => "\x8f\xd6\xfa", +"\x82\x40" => "\xe7\xd9", +"\x82\x43" => "\x8f\xd6\xfb", +"\x82\x44" => "\x8f\xd6\xfc", +"\x82\x45" => "\x8f\xd6\xfd", +"\x82\x46" => "\x8f\xd6\xfe", +"\x82\x47" => "\xc4\xfa", +"\x82\x4b" => "\x8f\xd7\xa1", +"\x82\x4e" => "\x8f\xd7\xa2", +"\x82\x4f" => "\x8f\xd7\xa3", +"\x82\x51" => "\x8f\xd7\xa4", +"\x82\x56" => "\x8f\xd7\xa5", +"\x82\x58" => "\xe7\xdb", +"\x82\x59" => "\xe7\xda", +"\x82\x5a" => "\xe7\xdd", +"\x82\x5c" => "\x8f\xd7\xa6", +"\x82\x5d" => "\xe7\xdc", +"\x82\x5f" => "\xe7\xde", +"\x82\x60" => "\x8f\xd7\xa7", +"\x82\x62" => "\xe7\xe0", +"\x82\x63" => "\x8f\xd7\xa8", +"\x82\x64" => "\xe7\xdf", +"\x82\x66" => "\xb4\xcf", +"\x82\x67" => "\x8f\xd7\xa9", +"\x82\x68" => "\xe7\xe1", +"\x82\x6a" => "\xe7\xe2", +"\x82\x6b" => "\xe7\xe3", +"\x82\x6d" => "\x8f\xd7\xaa", +"\x82\x6e" => "\xba\xb1", +"\x82\x6f" => "\xce\xc9", +"\x82\x71" => "\xe7\xe5", +"\x82\x72" => "\xbf\xa7", +"\x82\x74" => "\x8f\xd7\xab", +"\x82\x76" => "\xb1\xf0", +"\x82\x77" => "\xe7\xe6", +"\x82\x78" => "\xe7\xe7", +"\x82\x7b" => "\x8f\xd7\xac", +"\x82\x7d" => "\x8f\xd7\xad", +"\x82\x7e" => "\xe7\xe8", +"\x82\x7f" => "\x8f\xd7\xae", +"\x82\x80" => "\x8f\xd7\xaf", +"\x82\x81" => "\x8f\xd7\xb0", +"\x82\x83" => "\x8f\xd7\xb1", +"\x82\x84" => "\x8f\xd7\xb2", +"\x82\x87" => "\x8f\xd7\xb3", +"\x82\x89" => "\x8f\xd7\xb4", +"\x82\x8a" => "\x8f\xd7\xb5", +"\x82\x8b" => "\xb0\xf2", +"\x82\x8d" => "\xe7\xe9", +"\x82\x8e" => "\x8f\xd7\xb6", +"\x82\x91" => "\x8f\xd7\xb7", +"\x82\x92" => "\xe7\xea", +"\x82\x94" => "\x8f\xd7\xb8", +"\x82\x96" => "\x8f\xd7\xb9", +"\x82\x98" => "\x8f\xd7\xba", +"\x82\x99" => "\xc9\xe7", +"\x82\x9a" => "\x8f\xd7\xbb", +"\x82\x9b" => "\x8f\xd7\xbc", +"\x82\x9d" => "\xbc\xc7", +"\x82\x9f" => "\xe7\xec", +"\x82\xa0" => "\x8f\xd7\xbd", +"\x82\xa1" => "\x8f\xd7\xbe", +"\x82\xa3" => "\x8f\xd7\xbf", +"\x82\xa4" => "\x8f\xd7\xc0", +"\x82\xa5" => "\xb3\xa9", +"\x82\xa6" => "\xb0\xb2", +"\x82\xa7" => "\x8f\xd7\xc1", +"\x82\xa8" => "\x8f\xd7\xc2", +"\x82\xa9" => "\x8f\xd7\xc3", +"\x82\xaa" => "\x8f\xd7\xc4", +"\x82\xab" => "\xe7\xeb", +"\x82\xac" => "\xe7\xee", +"\x82\xad" => "\xc7\xce", +"\x82\xae" => "\x8f\xd7\xc5", +"\x82\xaf" => "\xbf\xc4", +"\x82\xb0" => "\x8f\xd7\xc6", +"\x82\xb1" => "\xb2\xd6", +"\x82\xb2" => "\x8f\xd7\xc7", +"\x82\xb3" => "\xcb\xa7", +"\x82\xb4" => "\x8f\xd7\xc8", +"\x82\xb7" => "\x8f\xd7\xc9", +"\x82\xb8" => "\xb7\xdd", +"\x82\xb9" => "\xb6\xdc", +"\x82\xba" => "\x8f\xd7\xca", +"\x82\xbb" => "\xe7\xed", +"\x82\xbc" => "\x8f\xd7\xcb", +"\x82\xbd" => "\xb2\xea", +"\x82\xbe" => "\x8f\xd7\xcc", +"\x82\xbf" => "\x8f\xd7\xcd", +"\x82\xc5" => "\xb4\xa3", +"\x82\xc6" => "\x8f\xd7\xce", +"\x82\xd0" => "\x8f\xd7\xcf", +"\x82\xd1" => "\xb1\xf1", +"\x82\xd2" => "\xe7\xf2", +"\x82\xd3" => "\xce\xea", +"\x82\xd4" => "\xc2\xdd", +"\x82\xd5" => "\x8f\xd7\xd0", +"\x82\xd7" => "\xc9\xc4", +"\x82\xd9" => "\xe7\xfe", +"\x82\xda" => "\x8f\xd7\xd1", +"\x82\xdb" => "\xb2\xd7", +"\x82\xdc" => "\xe7\xfc", +"\x82\xde" => "\xe7\xfa", +"\x82\xdf" => "\xe7\xf1", +"\x82\xe0" => "\x8f\xd7\xd2", +"\x82\xe1" => "\xe7\xef", +"\x82\xe2" => "\x8f\xd7\xd3", +"\x82\xe3" => "\xe7\xf0", +"\x82\xe4" => "\x8f\xd7\xd4", +"\x82\xe5" => "\xbc\xe3", +"\x82\xe6" => "\xb6\xec", +"\x82\xe7" => "\xc3\xf7", +"\x82\xe8" => "\x8f\xd7\xd5", +"\x82\xea" => "\x8f\xd7\xd6", +"\x82\xeb" => "\xc6\xd1", +"\x82\xed" => "\x8f\xd7\xd7", +"\x82\xef" => "\x8f\xd7\xd8", +"\x82\xf1" => "\xb1\xd1", +"\x82\xf3" => "\xe7\xf4", +"\x82\xf4" => "\xe7\xf3", +"\x82\xf6" => "\x8f\xd7\xd9", +"\x82\xf7" => "\x8f\xd7\xda", +"\x82\xf9" => "\xe7\xf9", +"\x82\xfa" => "\xe7\xf5", +"\x82\xfb" => "\xe7\xf8", +"\x82\xfd" => "\x8f\xd7\xdb", +"\x82\xfe" => "\x8f\xd7\xdc", +"\x83\x00" => "\x8f\xd7\xdd", +"\x83\x01" => "\x8f\xd7\xde", +"\x83\x02" => "\xcc\xd0", +"\x83\x03" => "\xe7\xf7", +"\x83\x04" => "\xb2\xd8", +"\x83\x05" => "\xb3\xfd", +"\x83\x06" => "\xe7\xfb", +"\x83\x07" => "\x8f\xd7\xdf", +"\x83\x08" => "\x8f\xd7\xe0", +"\x83\x09" => "\xe7\xfd", +"\x83\x0a" => "\x8f\xd7\xe1", +"\x83\x0b" => "\x8f\xd7\xe2", +"\x83\x0e" => "\xb7\xd4", +"\x83\x16" => "\xe8\xa3", +"\x83\x17" => "\xe8\xac", +"\x83\x18" => "\xe8\xad", +"\x83\x1b" => "\x8f\xd7\xe4", +"\x83\x1c" => "\xb0\xab", +"\x83\x1d" => "\x8f\xd7\xe5", +"\x83\x1e" => "\x8f\xd7\xe6", +"\x83\x1f" => "\x8f\xd7\xe7", +"\x83\x21" => "\x8f\xd7\xe8", +"\x83\x22" => "\x8f\xd7\xe9", +"\x83\x23" => "\xe8\xb4", +"\x83\x28" => "\xb0\xf1", +"\x83\x2b" => "\xe8\xab", +"\x83\x2c" => "\x8f\xd7\xea", +"\x83\x2d" => "\x8f\xd7\xeb", +"\x83\x2e" => "\x8f\xd7\xec", +"\x83\x2f" => "\xe8\xaa", +"\x83\x30" => "\x8f\xd7\xed", +"\x83\x31" => "\xe8\xa5", +"\x83\x32" => "\xe8\xa4", +"\x83\x33" => "\x8f\xd7\xee", +"\x83\x34" => "\xe8\xa2", +"\x83\x35" => "\xe8\xa1", +"\x83\x36" => "\xc3\xe3", +"\x83\x37" => "\x8f\xd7\xef", +"\x83\x38" => "\xc2\xfb", +"\x83\x39" => "\xe8\xa7", +"\x83\x3a" => "\x8f\xd7\xf0", +"\x83\x3c" => "\x8f\xd7\xf1", +"\x83\x3d" => "\x8f\xd7\xf2", +"\x83\x40" => "\xe8\xa6", +"\x83\x42" => "\x8f\xd7\xf3", +"\x83\x43" => "\x8f\xd7\xf4", +"\x83\x44" => "\x8f\xd7\xf5", +"\x83\x45" => "\xe8\xa9", +"\x83\x47" => "\x8f\xd7\xf6", +"\x83\x49" => "\xc1\xf0", +"\x83\x4a" => "\xb7\xd5", +"\x83\x4d" => "\x8f\xd7\xf7", +"\x83\x4e" => "\x8f\xd7\xf8", +"\x83\x4f" => "\xb1\xc1", +"\x83\x50" => "\xe8\xa8", +"\x83\x51" => "\x8f\xd7\xf9", +"\x83\x52" => "\xb9\xd3", +"\x83\x53" => "\x8f\xd8\xbe", +"\x83\x54" => "\x8f\xd7\xe3", +"\x83\x55" => "\x8f\xd7\xfa", +"\x83\x56" => "\x8f\xd7\xfb", +"\x83\x57" => "\x8f\xd7\xfc", +"\x83\x58" => "\xc1\xf1", +"\x83\x70" => "\x8f\xd7\xfd", +"\x83\x73" => "\xe8\xba", +"\x83\x75" => "\xe8\xbb", +"\x83\x77" => "\xb2\xd9", +"\x83\x78" => "\x8f\xd7\xfe", +"\x83\x7b" => "\xb2\xae", +"\x83\x7c" => "\xe8\xb8", +"\x83\x7d" => "\x8f\xd8\xa1", +"\x83\x7f" => "\x8f\xd8\xa2", +"\x83\x80" => "\x8f\xd8\xa3", +"\x83\x82" => "\x8f\xd8\xa4", +"\x83\x84" => "\x8f\xd8\xa5", +"\x83\x85" => "\xe8\xae", +"\x83\x86" => "\x8f\xd8\xa6", +"\x83\x87" => "\xe8\xb6", +"\x83\x89" => "\xe8\xbd", +"\x83\x8a" => "\xe8\xb7", +"\x83\x8d" => "\x8f\xd8\xa7", +"\x83\x8e" => "\xe8\xb5", +"\x83\x92" => "\x8f\xd8\xa8", +"\x83\x93" => "\xe7\xf6", +"\x83\x94" => "\x8f\xd8\xa9", +"\x83\x95" => "\x8f\xd8\xaa", +"\x83\x96" => "\xe8\xb3", +"\x83\x98" => "\x8f\xd8\xab", +"\x83\x99" => "\x8f\xd8\xac", +"\x83\x9a" => "\xe8\xaf", +"\x83\x9b" => "\x8f\xd8\xad", +"\x83\x9c" => "\x8f\xd8\xae", +"\x83\x9d" => "\x8f\xd8\xaf", +"\x83\x9e" => "\xb4\xd0", +"\x83\x9f" => "\xe8\xb1", +"\x83\xa0" => "\xe8\xbc", +"\x83\xa2" => "\xe8\xb2", +"\x83\xa6" => "\x8f\xd8\xb0", +"\x83\xa7" => "\x8f\xd8\xb1", +"\x83\xa8" => "\xe8\xbe", +"\x83\xa9" => "\x8f\xd8\xb2", +"\x83\xaa" => "\xe8\xb0", +"\x83\xab" => "\xc7\xfc", +"\x83\xac" => "\x8f\xd8\xb3", +"\x83\xad" => "\x8f\xd8\xcc", +"\x83\xb1" => "\xcd\xe9", +"\x83\xb5" => "\xe8\xb9", +"\x83\xbd" => "\xe8\xcf", +"\x83\xbe" => "\x8f\xd8\xb4", +"\x83\xbf" => "\x8f\xd8\xb5", +"\x83\xc0" => "\x8f\xd8\xb6", +"\x83\xc1" => "\xe8\xc7", +"\x83\xc5" => "\xbf\xfb", +"\x83\xc7" => "\x8f\xd8\xb7", +"\x83\xc9" => "\x8f\xd8\xb8", +"\x83\xca" => "\xb5\xc6", +"\x83\xcc" => "\xb6\xdd", +"\x83\xce" => "\xe8\xc2", +"\x83\xcf" => "\x8f\xd8\xb9", +"\x83\xd0" => "\x8f\xd8\xba", +"\x83\xd1" => "\x8f\xd8\xbb", +"\x83\xd3" => "\xb2\xdb", +"\x83\xd4" => "\x8f\xd8\xbc", +"\x83\xd6" => "\xbe\xd4", +"\x83\xd8" => "\xe8\xc5", +"\x83\xdc" => "\xba\xda", +"\x83\xdd" => "\x8f\xd8\xbd", +"\x83\xdf" => "\xc5\xd1", +"\x83\xe0" => "\xe8\xca", +"\x83\xe8" => "\x8f\xd8\xbf", +"\x83\xe9" => "\xca\xee", +"\x83\xea" => "\x8f\xd8\xc0", +"\x83\xeb" => "\xe8\xc1", +"\x83\xef" => "\xb2\xda", +"\x83\xf0" => "\xb8\xd6", +"\x83\xf1" => "\xc9\xa9", +"\x83\xf2" => "\xe8\xcb", +"\x83\xf4" => "\xe8\xbf", +"\x83\xf6" => "\x8f\xd8\xc1", +"\x83\xf7" => "\xe8\xc8", +"\x83\xf8" => "\x8f\xd8\xc2", +"\x83\xf9" => "\x8f\xd8\xc3", +"\x83\xfb" => "\xe8\xd2", +"\x83\xfc" => "\x8f\xd8\xc4", +"\x83\xfd" => "\xe8\xc3", +"\x84\x01" => "\x8f\xd8\xc5", +"\x84\x03" => "\xe8\xc4", +"\x84\x04" => "\xc6\xba", +"\x84\x06" => "\x8f\xd8\xc6", +"\x84\x07" => "\xe8\xc9", +"\x84\x0a" => "\x8f\xd8\xc7", +"\x84\x0b" => "\xe8\xc6", +"\x84\x0c" => "\xcb\xa8", +"\x84\x0d" => "\xe8\xcc", +"\x84\x0e" => "\xb0\xe0", +"\x84\x0f" => "\x8f\xd8\xc8", +"\x84\x11" => "\x8f\xd8\xc9", +"\x84\x13" => "\xe8\xc0", +"\x84\x15" => "\x8f\xd8\xca", +"\x84\x19" => "\x8f\xd8\xcb", +"\x84\x20" => "\xe8\xce", +"\x84\x22" => "\xe8\xcd", +"\x84\x29" => "\xc7\xeb", +"\x84\x2a" => "\xe8\xd4", +"\x84\x2c" => "\xe8\xdf", +"\x84\x2f" => "\x8f\xd8\xcd", +"\x84\x31" => "\xb3\xfe", +"\x84\x35" => "\xe8\xe2", +"\x84\x38" => "\xe8\xd0", +"\x84\x39" => "\x8f\xd8\xce", +"\x84\x3c" => "\xe8\xd5", +"\x84\x3d" => "\xcd\xee", +"\x84\x45" => "\x8f\xd8\xcf", +"\x84\x46" => "\xe8\xde", +"\x84\x47" => "\x8f\xd8\xd0", +"\x84\x48" => "\x8f\xd8\xd1", +"\x84\x49" => "\xcd\xd5", +"\x84\x4a" => "\x8f\xd8\xd2", +"\x84\x4d" => "\x8f\xd8\xd3", +"\x84\x4e" => "\xce\xaa", +"\x84\x4f" => "\x8f\xd8\xd4", +"\x84\x51" => "\x8f\xd8\xd5", +"\x84\x52" => "\x8f\xd8\xd6", +"\x84\x56" => "\x8f\xd8\xd7", +"\x84\x57" => "\xc3\xf8", +"\x84\x58" => "\x8f\xd8\xd8", +"\x84\x59" => "\x8f\xd8\xd9", +"\x84\x5a" => "\x8f\xd8\xda", +"\x84\x5b" => "\xb3\xeb", +"\x84\x5c" => "\x8f\xd8\xdb", +"\x84\x60" => "\x8f\xd8\xdc", +"\x84\x61" => "\xc9\xf2", +"\x84\x62" => "\xe8\xe4", +"\x84\x63" => "\xc6\xa1", +"\x84\x64" => "\x8f\xd8\xdd", +"\x84\x65" => "\x8f\xd8\xde", +"\x84\x66" => "\xb0\xb1", +"\x84\x67" => "\x8f\xd8\xdf", +"\x84\x69" => "\xe8\xdd", +"\x84\x6a" => "\x8f\xd8\xe0", +"\x84\x6b" => "\xe8\xd9", +"\x84\x6c" => "\xc1\xf2", +"\x84\x6d" => "\xe8\xd3", +"\x84\x6e" => "\xe8\xdb", +"\x84\x6f" => "\xe8\xe0", +"\x84\x70" => "\x8f\xd8\xe1", +"\x84\x71" => "\xc7\xac", +"\x84\x73" => "\x8f\xd8\xe2", +"\x84\x74" => "\x8f\xd8\xe3", +"\x84\x75" => "\xb0\xaa", +"\x84\x76" => "\x8f\xd8\xe4", +"\x84\x77" => "\xe8\xd8", +"\x84\x78" => "\x8f\xd8\xe5", +"\x84\x79" => "\xe8\xe1", +"\x84\x7a" => "\xc9\xf8", +"\x84\x7c" => "\x8f\xd8\xe6", +"\x84\x7d" => "\x8f\xd8\xe7", +"\x84\x81" => "\x8f\xd8\xe8", +"\x84\x82" => "\xe8\xdc", +"\x84\x84" => "\xe8\xd7", +"\x84\x85" => "\x8f\xd8\xe9", +"\x84\x8b" => "\xbe\xd5", +"\x84\x90" => "\xbd\xaf", +"\x84\x92" => "\x8f\xd8\xea", +"\x84\x93" => "\x8f\xd8\xeb", +"\x84\x94" => "\xbc\xac", +"\x84\x95" => "\x8f\xd8\xec", +"\x84\x99" => "\xcc\xd8", +"\x84\x9c" => "\xc9\xc7", +"\x84\x9e" => "\x8f\xd8\xed", +"\x84\x9f" => "\xe8\xe7", +"\x84\xa1" => "\xe8\xf0", +"\x84\xa6" => "\x8f\xd8\xee", +"\x84\xa8" => "\x8f\xd8\xef", +"\x84\xa9" => "\x8f\xd8\xf0", +"\x84\xaa" => "\x8f\xd8\xf1", +"\x84\xad" => "\xe8\xda", +"\x84\xaf" => "\x8f\xd8\xf2", +"\x84\xb1" => "\x8f\xd8\xf3", +"\x84\xb2" => "\xb3\xf7", +"\x84\xb4" => "\x8f\xd8\xf4", +"\x84\xb8" => "\xbe\xf8", +"\x84\xb9" => "\xe8\xe5", +"\x84\xba" => "\x8f\xd8\xf5", +"\x84\xbb" => "\xe8\xea", +"\x84\xbc" => "\xc1\xf3", +"\x84\xbd" => "\x8f\xd8\xf6", +"\x84\xbe" => "\x8f\xd8\xf7", +"\x84\xbf" => "\xe8\xe6", +"\x84\xc0" => "\x8f\xd8\xf8", +"\x84\xc1" => "\xe8\xed", +"\x84\xc2" => "\x8f\xd8\xf9", +"\x84\xc4" => "\xc3\xdf", +"\x84\xc6" => "\xe8\xee", +"\x84\xc7" => "\x8f\xd8\xfa", +"\x84\xc8" => "\x8f\xd8\xfb", +"\x84\xc9" => "\xcd\xd6", +"\x84\xca" => "\xe8\xe3", +"\x84\xcb" => "\xb3\xb8", +"\x84\xcc" => "\x8f\xd8\xfc", +"\x84\xcd" => "\xe8\xe9", +"\x84\xcf" => "\x8f\xd8\xfd", +"\x84\xd0" => "\xe8\xec", +"\x84\xd1" => "\xcc\xac", +"\x84\xd3" => "\x8f\xd8\xfe", +"\x84\xd6" => "\xe8\xef", +"\x84\xd9" => "\xe8\xe8", +"\x84\xda" => "\xe8\xeb", +"\x84\xdc" => "\x8f\xd9\xa1", +"\x84\xe7" => "\x8f\xd9\xa2", +"\x84\xea" => "\x8f\xd9\xa3", +"\x84\xec" => "\xcb\xa9", +"\x84\xee" => "\xcf\xa1", +"\x84\xef" => "\x8f\xd9\xa4", +"\x84\xf0" => "\x8f\xd9\xa5", +"\x84\xf1" => "\x8f\xd9\xa6", +"\x84\xf2" => "\x8f\xd9\xa7", +"\x84\xf4" => "\xe8\xf3", +"\x84\xf7" => "\x8f\xd9\xa8", +"\x84\xfa" => "\x8f\xd9\xaa", +"\x84\xfb" => "\x8f\xd9\xab", +"\x84\xfc" => "\xe8\xfa", +"\x84\xfd" => "\x8f\xd9\xac", +"\x84\xff" => "\xe8\xf2", +"\x85\x00" => "\xbc\xc3", +"\x85\x02" => "\x8f\xd9\xad", +"\x85\x03" => "\x8f\xd9\xae", +"\x85\x06" => "\xe8\xd1", +"\x85\x07" => "\x8f\xd9\xaf", +"\x85\x0c" => "\x8f\xd9\xb0", +"\x85\x0e" => "\x8f\xd9\xb1", +"\x85\x10" => "\x8f\xd9\xb2", +"\x85\x11" => "\xca\xce", +"\x85\x13" => "\xcc\xa2", +"\x85\x14" => "\xe8\xf9", +"\x85\x15" => "\xe8\xf8", +"\x85\x17" => "\xe8\xf4", +"\x85\x18" => "\xe8\xf5", +"\x85\x1a" => "\xb1\xb6", +"\x85\x1c" => "\x8f\xd9\xb3", +"\x85\x1e" => "\x8f\xd9\xb4", +"\x85\x1f" => "\xe8\xf7", +"\x85\x21" => "\xe8\xf1", +"\x85\x22" => "\x8f\xd9\xb5", +"\x85\x23" => "\x8f\xd9\xb6", +"\x85\x24" => "\x8f\xd9\xb7", +"\x85\x25" => "\x8f\xd9\xb8", +"\x85\x26" => "\xc4\xd5", +"\x85\x27" => "\x8f\xd9\xb9", +"\x85\x2a" => "\x8f\xd9\xba", +"\x85\x2b" => "\x8f\xd9\xbb", +"\x85\x2c" => "\xe8\xf6", +"\x85\x2d" => "\xb0\xfe", +"\x85\x2f" => "\x8f\xd9\xbc", +"\x85\x32" => "\x8f\xd9\xa9", +"\x85\x33" => "\x8f\xd9\xbd", +"\x85\x34" => "\x8f\xd9\xbe", +"\x85\x35" => "\xc2\xa2", +"\x85\x36" => "\x8f\xd9\xbf", +"\x85\x3d" => "\xca\xc3", +"\x85\x3f" => "\x8f\xd9\xc0", +"\x85\x40" => "\xe8\xfb", +"\x85\x41" => "\xe9\xa1", +"\x85\x43" => "\xc8\xd9", +"\x85\x46" => "\x8f\xd9\xc1", +"\x85\x48" => "\xe8\xfe", +"\x85\x49" => "\xbe\xd6", +"\x85\x4a" => "\xbc\xc9", +"\x85\x4b" => "\xe9\xa3", +"\x85\x4e" => "\xb6\xbe", +"\x85\x4f" => "\x8f\xd9\xc2", +"\x85\x50" => "\x8f\xd9\xc3", +"\x85\x51" => "\x8f\xd9\xc4", +"\x85\x52" => "\x8f\xd9\xc5", +"\x85\x53" => "\x8f\xd9\xc6", +"\x85\x55" => "\xe9\xa4", +"\x85\x56" => "\x8f\xd9\xc7", +"\x85\x57" => "\xc9\xf9", +"\x85\x58" => "\xe8\xfd", +"\x85\x59" => "\x8f\xd9\xc8", +"\x85\x5a" => "\xe8\xd6", +"\x85\x5c" => "\x8f\xd9\xc9", +"\x85\x5d" => "\x8f\xd9\xca", +"\x85\x5e" => "\x8f\xd9\xcb", +"\x85\x5f" => "\x8f\xd9\xcc", +"\x85\x60" => "\x8f\xd9\xcd", +"\x85\x61" => "\x8f\xd9\xce", +"\x85\x62" => "\x8f\xd9\xcf", +"\x85\x63" => "\xe8\xfc", +"\x85\x64" => "\x8f\xd9\xd0", +"\x85\x68" => "\xcf\xcf", +"\x85\x69" => "\xc6\xa2", +"\x85\x6a" => "\xc9\xf3", +"\x85\x6b" => "\x8f\xd9\xd1", +"\x85\x6d" => "\xe9\xab", +"\x85\x6f" => "\x8f\xd9\xd2", +"\x85\x77" => "\xe9\xb1", +"\x85\x79" => "\x8f\xd9\xd3", +"\x85\x7a" => "\x8f\xd9\xd4", +"\x85\x7b" => "\x8f\xd9\xd5", +"\x85\x7d" => "\x8f\xd9\xd6", +"\x85\x7e" => "\xe9\xb2", +"\x85\x7f" => "\x8f\xd9\xd7", +"\x85\x80" => "\xe9\xa5", +"\x85\x81" => "\x8f\xd9\xd8", +"\x85\x84" => "\xc7\xf6", +"\x85\x85" => "\x8f\xd9\xd9", +"\x85\x86" => "\x8f\xd9\xda", +"\x85\x87" => "\xe9\xaf", +"\x85\x88" => "\xe9\xa7", +"\x85\x89" => "\x8f\xd9\xdb", +"\x85\x8a" => "\xe9\xa9", +"\x85\x8b" => "\x8f\xd9\xdc", +"\x85\x8c" => "\x8f\xd9\xdd", +"\x85\x8f" => "\x8f\xd9\xde", +"\x85\x90" => "\xe9\xb3", +"\x85\x91" => "\xe9\xa8", +"\x85\x93" => "\x8f\xd9\xdf", +"\x85\x94" => "\xe9\xac", +"\x85\x97" => "\xb1\xf2", +"\x85\x98" => "\x8f\xd9\xe0", +"\x85\x99" => "\xc6\xe5", +"\x85\x9b" => "\xe9\xad", +"\x85\x9c" => "\xe9\xb0", +"\x85\x9d" => "\x8f\xd9\xe1", +"\x85\x9f" => "\x8f\xd9\xe2", +"\x85\xa0" => "\x8f\xd9\xe3", +"\x85\xa2" => "\x8f\xd9\xe4", +"\x85\xa4" => "\xe9\xa6", +"\x85\xa5" => "\x8f\xd9\xe5", +"\x85\xa6" => "\xc1\xa6", +"\x85\xa7" => "\x8f\xd9\xe6", +"\x85\xa8" => "\xe9\xaa", +"\x85\xa9" => "\xbb\xa7", +"\x85\xaa" => "\xbf\xc5", +"\x85\xab" => "\xb7\xb0", +"\x85\xac" => "\xcc\xf4", +"\x85\xad" => "\x8f\xd9\xf4", +"\x85\xae" => "\xcc\xf9", +"\x85\xaf" => "\xbd\xf2", +"\x85\xb4" => "\x8f\xd9\xe7", +"\x85\xb6" => "\x8f\xd9\xe8", +"\x85\xb7" => "\x8f\xd9\xe9", +"\x85\xb8" => "\x8f\xd9\xea", +"\x85\xb9" => "\xe9\xb7", +"\x85\xba" => "\xe9\xb5", +"\x85\xbc" => "\x8f\xd9\xeb", +"\x85\xbd" => "\x8f\xd9\xec", +"\x85\xbe" => "\x8f\xd9\xed", +"\x85\xbf" => "\x8f\xd9\xee", +"\x85\xc1" => "\xcf\xce", +"\x85\xc2" => "\x8f\xd9\xef", +"\x85\xc7" => "\x8f\xd9\xf0", +"\x85\xc9" => "\xe9\xb4", +"\x85\xca" => "\x8f\xd9\xf1", +"\x85\xcb" => "\x8f\xd9\xf2", +"\x85\xcd" => "\xcd\xf5", +"\x85\xce" => "\x8f\xd9\xf3", +"\x85\xcf" => "\xe9\xb6", +"\x85\xd0" => "\xe9\xb8", +"\x85\xd5" => "\xe9\xb9", +"\x85\xd8" => "\x8f\xd9\xf5", +"\x85\xda" => "\x8f\xd9\xf6", +"\x85\xdc" => "\xe9\xbc", +"\x85\xdd" => "\xe9\xba", +"\x85\xdf" => "\x8f\xd9\xf7", +"\x85\xe0" => "\x8f\xd9\xf8", +"\x85\xe4" => "\xc6\xa3", +"\x85\xe5" => "\xe9\xbb", +"\x85\xe6" => "\x8f\xd9\xf9", +"\x85\xe8" => "\x8f\xd9\xfa", +"\x85\xe9" => "\xc8\xcd", +"\x85\xea" => "\xe9\xae", +"\x85\xed" => "\x8f\xd9\xfb", +"\x85\xf3" => "\x8f\xd9\xfc", +"\x85\xf6" => "\x8f\xd9\xfd", +"\x85\xf7" => "\xbd\xf3", +"\x85\xf9" => "\xe9\xbd", +"\x85\xfa" => "\xe9\xc2", +"\x85\xfb" => "\xc1\xf4", +"\x85\xfc" => "\x8f\xd9\xfe", +"\x85\xfe" => "\xe9\xc1", +"\x85\xff" => "\x8f\xda\xa1", +"\x86\x00" => "\x8f\xda\xa2", +"\x86\x02" => "\xe9\xa2", +"\x86\x04" => "\x8f\xda\xa3", +"\x86\x05" => "\x8f\xda\xa4", +"\x86\x06" => "\xe9\xc3", +"\x86\x07" => "\xc1\xc9", +"\x86\x0a" => "\xe9\xbe", +"\x86\x0b" => "\xe9\xc0", +"\x86\x0d" => "\x8f\xda\xa5", +"\x86\x0e" => "\x8f\xda\xa6", +"\x86\x10" => "\x8f\xda\xa7", +"\x86\x11" => "\x8f\xda\xa8", +"\x86\x12" => "\x8f\xda\xa9", +"\x86\x13" => "\xe9\xbf", +"\x86\x16" => "\xdd\xb1", +"\x86\x17" => "\xdd\xa2", +"\x86\x18" => "\x8f\xda\xaa", +"\x86\x19" => "\x8f\xda\xab", +"\x86\x1a" => "\xe9\xc5", +"\x86\x1b" => "\x8f\xda\xac", +"\x86\x1e" => "\x8f\xda\xad", +"\x86\x21" => "\x8f\xda\xae", +"\x86\x22" => "\xe9\xc4", +"\x86\x27" => "\x8f\xda\xaf", +"\x86\x29" => "\x8f\xda\xb0", +"\x86\x2d" => "\xcd\xf6", +"\x86\x2f" => "\xe2\xbc", +"\x86\x30" => "\xe9\xc6", +"\x86\x36" => "\x8f\xda\xb1", +"\x86\x38" => "\x8f\xda\xb2", +"\x86\x3a" => "\x8f\xda\xb3", +"\x86\x3c" => "\x8f\xda\xb4", +"\x86\x3d" => "\x8f\xda\xb5", +"\x86\x3f" => "\xe9\xc7", +"\x86\x40" => "\x8f\xda\xb6", +"\x86\x41" => "\x8f\xb8\xe6", +"\x86\x42" => "\x8f\xda\xb7", +"\x86\x46" => "\x8f\xda\xb8", +"\x86\x4d" => "\xe9\xc8", +"\x86\x4e" => "\xb8\xd7", +"\x86\x50" => "\xb5\xd4", +"\x86\x52" => "\x8f\xda\xb9", +"\x86\x53" => "\x8f\xda\xba", +"\x86\x54" => "\xe9\xca", +"\x86\x55" => "\xd1\xdd", +"\x86\x56" => "\x8f\xda\xbb", +"\x86\x57" => "\x8f\xda\xbc", +"\x86\x58" => "\x8f\xda\xbd", +"\x86\x59" => "\x8f\xda\xbe", +"\x86\x5a" => "\xb5\xf5", +"\x86\x5c" => "\xce\xba", +"\x86\x5d" => "\x8f\xda\xbf", +"\x86\x5e" => "\xb6\xf3", +"\x86\x5f" => "\xe9\xcb", +"\x86\x60" => "\x8f\xda\xc0", +"\x86\x61" => "\x8f\xda\xc1", +"\x86\x62" => "\x8f\xda\xc2", +"\x86\x63" => "\x8f\xda\xc3", +"\x86\x64" => "\x8f\xda\xc4", +"\x86\x67" => "\xe9\xcc", +"\x86\x69" => "\x8f\xda\xc5", +"\x86\x6b" => "\xc3\xee", +"\x86\x6c" => "\x8f\xda\xc6", +"\x86\x6f" => "\x8f\xda\xc7", +"\x86\x71" => "\xe9\xcd", +"\x86\x75" => "\x8f\xda\xc8", +"\x86\x76" => "\x8f\xda\xc9", +"\x86\x77" => "\x8f\xda\xca", +"\x86\x79" => "\xc6\xfa", +"\x86\x7a" => "\x8f\xda\xcb", +"\x86\x7b" => "\xb0\xba", +"\x86\x88" => "\x8f\xda\xed", +"\x86\x8a" => "\xb2\xe3", +"\x86\x8b" => "\xe9\xd2", +"\x86\x8c" => "\xe9\xd3", +"\x86\x8d" => "\x8f\xda\xcc", +"\x86\x91" => "\x8f\xda\xcd", +"\x86\x93" => "\xe9\xce", +"\x86\x95" => "\xbb\xbd", +"\x86\x96" => "\x8f\xda\xce", +"\x86\x98" => "\x8f\xda\xcf", +"\x86\x9a" => "\x8f\xda\xd0", +"\x86\x9c" => "\x8f\xda\xd1", +"\x86\xa1" => "\x8f\xda\xd2", +"\x86\xa3" => "\xe9\xcf", +"\x86\xa4" => "\xc7\xc2", +"\x86\xa6" => "\x8f\xda\xd3", +"\x86\xa7" => "\x8f\xda\xd4", +"\x86\xa8" => "\x8f\xda\xd5", +"\x86\xa9" => "\xe9\xd0", +"\x86\xaa" => "\xe9\xd1", +"\x86\xab" => "\xe9\xdb", +"\x86\xad" => "\x8f\xda\xd6", +"\x86\xaf" => "\xe9\xd5", +"\x86\xb0" => "\xe9\xd8", +"\x86\xb1" => "\x8f\xda\xd7", +"\x86\xb3" => "\x8f\xda\xd8", +"\x86\xb4" => "\x8f\xda\xd9", +"\x86\xb5" => "\x8f\xda\xda", +"\x86\xb6" => "\xe9\xd4", +"\x86\xb7" => "\x8f\xda\xdb", +"\x86\xb8" => "\x8f\xda\xdc", +"\x86\xb9" => "\x8f\xda\xdd", +"\x86\xbf" => "\x8f\xda\xde", +"\x86\xc0" => "\x8f\xda\xdf", +"\x86\xc1" => "\x8f\xda\xe0", +"\x86\xc3" => "\x8f\xda\xe1", +"\x86\xc4" => "\xe9\xd6", +"\x86\xc5" => "\x8f\xda\xe2", +"\x86\xc6" => "\xe9\xd7", +"\x86\xc7" => "\xbc\xd8", +"\x86\xc9" => "\xe9\xd9", +"\x86\xcb" => "\xc3\xc1", +"\x86\xcd" => "\xb7\xd6", +"\x86\xce" => "\xb3\xc2", +"\x86\xd1" => "\x8f\xda\xe3", +"\x86\xd2" => "\x8f\xda\xe4", +"\x86\xd4" => "\xe9\xdc", +"\x86\xd5" => "\x8f\xda\xe5", +"\x86\xd7" => "\x8f\xda\xe6", +"\x86\xd9" => "\xb3\xbf", +"\x86\xda" => "\x8f\xda\xe7", +"\x86\xdb" => "\xe9\xe1", +"\x86\xdc" => "\x8f\xda\xe8", +"\x86\xde" => "\xe9\xdd", +"\x86\xdf" => "\xe9\xe0", +"\x86\xe0" => "\x8f\xda\xe9", +"\x86\xe3" => "\x8f\xda\xea", +"\x86\xe4" => "\xc8\xba", +"\x86\xe5" => "\x8f\xda\xeb", +"\x86\xe7" => "\x8f\xda\xec", +"\x86\xe9" => "\xe9\xde", +"\x86\xec" => "\xe9\xdf", +"\x86\xed" => "\xc9\xc8", +"\x86\xee" => "\xc8\xda", +"\x86\xef" => "\xe9\xe2", +"\x86\xf8" => "\xc2\xfd", +"\x86\xf9" => "\xe9\xec", +"\x86\xfa" => "\x8f\xda\xee", +"\x86\xfb" => "\xe9\xe8", +"\x86\xfc" => "\x8f\xda\xef", +"\x86\xfd" => "\x8f\xda\xf0", +"\x86\xfe" => "\xb2\xeb", +"\x87\x00" => "\xe9\xe6", +"\x87\x02" => "\xcb\xaa", +"\x87\x03" => "\xe9\xe7", +"\x87\x04" => "\x8f\xda\xf1", +"\x87\x05" => "\x8f\xda\xf2", +"\x87\x06" => "\xe9\xe4", +"\x87\x07" => "\x8f\xda\xf3", +"\x87\x08" => "\xe9\xe5", +"\x87\x09" => "\xe9\xea", +"\x87\x0a" => "\xe9\xed", +"\x87\x0b" => "\x8f\xda\xf4", +"\x87\x0d" => "\xe9\xeb", +"\x87\x0e" => "\x8f\xda\xf5", +"\x87\x0f" => "\x8f\xda\xf6", +"\x87\x10" => "\x8f\xda\xf7", +"\x87\x11" => "\xe9\xe9", +"\x87\x12" => "\xe9\xe3", +"\x87\x13" => "\x8f\xda\xf8", +"\x87\x14" => "\x8f\xda\xf9", +"\x87\x18" => "\xc3\xd8", +"\x87\x19" => "\x8f\xda\xfa", +"\x87\x1a" => "\xe9\xf4", +"\x87\x1c" => "\xcc\xaa", +"\x87\x1e" => "\x8f\xda\xfb", +"\x87\x1f" => "\x8f\xda\xfc", +"\x87\x21" => "\x8f\xda\xfd", +"\x87\x23" => "\x8f\xda\xfe", +"\x87\x25" => "\xe9\xf2", +"\x87\x28" => "\x8f\xdb\xa1", +"\x87\x29" => "\xe9\xf3", +"\x87\x2e" => "\x8f\xdb\xa2", +"\x87\x2f" => "\x8f\xdb\xa3", +"\x87\x31" => "\x8f\xdb\xa4", +"\x87\x32" => "\x8f\xdb\xa5", +"\x87\x34" => "\xe9\xee", +"\x87\x37" => "\xe9\xf0", +"\x87\x39" => "\x8f\xdb\xa6", +"\x87\x3a" => "\x8f\xdb\xa7", +"\x87\x3b" => "\xe9\xf1", +"\x87\x3c" => "\x8f\xdb\xa8", +"\x87\x3d" => "\x8f\xdb\xa9", +"\x87\x3e" => "\x8f\xdb\xaa", +"\x87\x3f" => "\xe9\xef", +"\x87\x40" => "\x8f\xdb\xab", +"\x87\x43" => "\x8f\xdb\xac", +"\x87\x45" => "\x8f\xdb\xad", +"\x87\x49" => "\xc0\xe6", +"\x87\x4b" => "\xcf\xb9", +"\x87\x4c" => "\xe9\xf8", +"\x87\x4d" => "\x8f\xdb\xae", +"\x87\x4e" => "\xe9\xf9", +"\x87\x53" => "\xea\xa1", +"\x87\x55" => "\xbf\xaa", +"\x87\x57" => "\xe9\xfb", +"\x87\x58" => "\x8f\xdb\xaf", +"\x87\x59" => "\xe9\xfe", +"\x87\x5d" => "\x8f\xdb\xb0", +"\x87\x5f" => "\xe9\xf6", +"\x87\x60" => "\xe9\xf5", +"\x87\x61" => "\x8f\xdb\xb1", +"\x87\x63" => "\xea\xa2", +"\x87\x64" => "\x8f\xdb\xb2", +"\x87\x65" => "\x8f\xdb\xb3", +"\x87\x66" => "\xb2\xdc", +"\x87\x68" => "\xe9\xfc", +"\x87\x6a" => "\xea\xa3", +"\x87\x6e" => "\xe9\xfd", +"\x87\x6f" => "\x8f\xdb\xb4", +"\x87\x71" => "\x8f\xdb\xb5", +"\x87\x72" => "\x8f\xdb\xb6", +"\x87\x74" => "\xe9\xfa", +"\x87\x76" => "\xc4\xb3", +"\x87\x78" => "\xe9\xf7", +"\x87\x7b" => "\x8f\xdb\xb7", +"\x87\x7f" => "\xc7\xe8", +"\x87\x82" => "\xea\xa7", +"\x87\x83" => "\x8f\xdb\xb8", +"\x87\x84" => "\x8f\xdb\xb9", +"\x87\x85" => "\x8f\xdb\xba", +"\x87\x86" => "\x8f\xdb\xbb", +"\x87\x87" => "\x8f\xdb\xbc", +"\x87\x88" => "\x8f\xdb\xbd", +"\x87\x89" => "\x8f\xdb\xbe", +"\x87\x8b" => "\x8f\xdb\xbf", +"\x87\x8c" => "\x8f\xdb\xc0", +"\x87\x8d" => "\xcd\xbb", +"\x87\x90" => "\x8f\xdb\xc1", +"\x87\x93" => "\x8f\xdb\xc2", +"\x87\x95" => "\x8f\xdb\xc3", +"\x87\x97" => "\x8f\xdb\xc4", +"\x87\x98" => "\x8f\xdb\xc5", +"\x87\x99" => "\x8f\xdb\xc6", +"\x87\x9e" => "\x8f\xdb\xc7", +"\x87\x9f" => "\xea\xa6", +"\x87\xa0" => "\x8f\xdb\xc8", +"\x87\xa2" => "\xea\xa5", +"\x87\xa3" => "\x8f\xdb\xc9", +"\x87\xa7" => "\x8f\xdb\xca", +"\x87\xab" => "\xea\xae", +"\x87\xac" => "\x8f\xdb\xcb", +"\x87\xad" => "\x8f\xdb\xcc", +"\x87\xae" => "\x8f\xdb\xcd", +"\x87\xaf" => "\xea\xa8", +"\x87\xb1" => "\x8f\xdb\xce", +"\x87\xb3" => "\xea\xb0", +"\x87\xb5" => "\x8f\xdb\xcf", +"\x87\xba" => "\xcd\xe6", +"\x87\xbb" => "\xea\xb3", +"\x87\xbd" => "\xea\xaa", +"\x87\xbe" => "\x8f\xdb\xd0", +"\x87\xbf" => "\x8f\xdb\xd1", +"\x87\xc0" => "\xea\xab", +"\x87\xc1" => "\x8f\xdb\xd2", +"\x87\xc4" => "\xea\xaf", +"\x87\xc6" => "\xea\xb2", +"\x87\xc7" => "\xea\xb1", +"\x87\xc8" => "\x8f\xdb\xd3", +"\x87\xc9" => "\x8f\xdb\xd4", +"\x87\xca" => "\x8f\xdb\xd5", +"\x87\xcb" => "\xea\xa9", +"\x87\xce" => "\x8f\xdb\xd6", +"\x87\xd0" => "\xea\xac", +"\x87\xd2" => "\xea\xbd", +"\x87\xd5" => "\x8f\xdb\xd7", +"\x87\xd6" => "\x8f\xdb\xd8", +"\x87\xd9" => "\x8f\xdb\xd9", +"\x87\xda" => "\x8f\xdb\xda", +"\x87\xdc" => "\x8f\xdb\xdb", +"\x87\xdf" => "\x8f\xdb\xdc", +"\x87\xe0" => "\xea\xb6", +"\x87\xe2" => "\x8f\xdb\xdd", +"\x87\xe3" => "\x8f\xdb\xde", +"\x87\xe4" => "\x8f\xdb\xdf", +"\x87\xea" => "\x8f\xdb\xe0", +"\x87\xeb" => "\x8f\xdb\xe1", +"\x87\xed" => "\x8f\xdb\xe2", +"\x87\xef" => "\xea\xb4", +"\x87\xf1" => "\x8f\xdb\xe3", +"\x87\xf2" => "\xea\xb5", +"\x87\xf3" => "\x8f\xdb\xe4", +"\x87\xf6" => "\xea\xba", +"\x87\xf7" => "\xea\xbb", +"\x87\xf8" => "\x8f\xdb\xe5", +"\x87\xf9" => "\xb3\xaa", +"\x87\xfa" => "\x8f\xdb\xe6", +"\x87\xfb" => "\xb5\xc2", +"\x87\xfe" => "\xea\xb9", +"\x87\xff" => "\x8f\xdb\xe7", +"\x88\x01" => "\x8f\xdb\xe8", +"\x88\x03" => "\x8f\xdb\xe9", +"\x88\x05" => "\xea\xa4", +"\x88\x06" => "\x8f\xdb\xea", +"\x88\x09" => "\x8f\xdb\xeb", +"\x88\x0a" => "\x8f\xdb\xec", +"\x88\x0b" => "\x8f\xdb\xed", +"\x88\x0d" => "\xea\xb8", +"\x88\x0e" => "\xea\xbc", +"\x88\x0f" => "\xea\xb7", +"\x88\x10" => "\x8f\xdb\xee", +"\x88\x11" => "\xea\xbe", +"\x88\x12" => "\x8f\xdb\xf0", +"\x88\x13" => "\x8f\xdb\xf1", +"\x88\x14" => "\x8f\xdb\xf2", +"\x88\x15" => "\xea\xc0", +"\x88\x16" => "\xea\xbf", +"\x88\x18" => "\x8f\xdb\xf3", +"\x88\x19" => "\x8f\xdb\xef", +"\x88\x1a" => "\x8f\xdb\xf4", +"\x88\x1b" => "\x8f\xdb\xf5", +"\x88\x1c" => "\x8f\xdb\xf6", +"\x88\x1e" => "\x8f\xdb\xf7", +"\x88\x1f" => "\x8f\xdb\xf8", +"\x88\x21" => "\xea\xc2", +"\x88\x22" => "\xea\xc1", +"\x88\x23" => "\xe9\xda", +"\x88\x27" => "\xea\xc6", +"\x88\x28" => "\x8f\xdb\xf9", +"\x88\x2d" => "\x8f\xdb\xfa", +"\x88\x2e" => "\x8f\xdb\xfb", +"\x88\x30" => "\x8f\xdb\xfc", +"\x88\x31" => "\xea\xc3", +"\x88\x32" => "\x8f\xdb\xfd", +"\x88\x35" => "\x8f\xdb\xfe", +"\x88\x36" => "\xea\xc4", +"\x88\x39" => "\xea\xc5", +"\x88\x3a" => "\x8f\xdc\xa1", +"\x88\x3b" => "\xea\xc7", +"\x88\x3c" => "\x8f\xdc\xa2", +"\x88\x40" => "\xb7\xec", +"\x88\x41" => "\x8f\xdc\xa3", +"\x88\x42" => "\xea\xc9", +"\x88\x43" => "\x8f\xdc\xa4", +"\x88\x44" => "\xea\xc8", +"\x88\x45" => "\x8f\xdc\xa5", +"\x88\x46" => "\xbd\xb0", +"\x88\x48" => "\x8f\xdc\xa6", +"\x88\x49" => "\x8f\xdc\xa7", +"\x88\x4a" => "\x8f\xdc\xa8", +"\x88\x4b" => "\x8f\xdc\xa9", +"\x88\x4c" => "\xb9\xd4", +"\x88\x4d" => "\xde\xa7", +"\x88\x4e" => "\x8f\xdc\xaa", +"\x88\x51" => "\x8f\xdc\xab", +"\x88\x52" => "\xea\xca", +"\x88\x53" => "\xbd\xd1", +"\x88\x55" => "\x8f\xdc\xac", +"\x88\x56" => "\x8f\xdc\xad", +"\x88\x57" => "\xb3\xb9", +"\x88\x58" => "\x8f\xdc\xae", +"\x88\x59" => "\xea\xcb", +"\x88\x5a" => "\x8f\xdc\xaf", +"\x88\x5b" => "\xb1\xd2", +"\x88\x5c" => "\x8f\xdc\xb0", +"\x88\x5d" => "\xbe\xd7", +"\x88\x5e" => "\xea\xcc", +"\x88\x5f" => "\x8f\xdc\xb1", +"\x88\x60" => "\x8f\xdc\xb2", +"\x88\x61" => "\xb9\xd5", +"\x88\x62" => "\xea\xcd", +"\x88\x63" => "\xb0\xe1", +"\x88\x64" => "\x8f\xdc\xb3", +"\x88\x68" => "\xc9\xbd", +"\x88\x69" => "\x8f\xdc\xb4", +"\x88\x6b" => "\xea\xce", +"\x88\x70" => "\xbf\xea", +"\x88\x71" => "\x8f\xdc\xb5", +"\x88\x72" => "\xea\xd5", +"\x88\x75" => "\xea\xd2", +"\x88\x77" => "\xc3\xef", +"\x88\x79" => "\x8f\xdc\xb6", +"\x88\x7b" => "\x8f\xdc\xb7", +"\x88\x7d" => "\xea\xd3", +"\x88\x7e" => "\xea\xd0", +"\x88\x7f" => "\xb6\xde", +"\x88\x80" => "\x8f\xdc\xb8", +"\x88\x81" => "\xea\xcf", +"\x88\x82" => "\xea\xd6", +"\x88\x88" => "\xb7\xb6", +"\x88\x8b" => "\xc2\xde", +"\x88\x8d" => "\xea\xdc", +"\x88\x92" => "\xea\xd8", +"\x88\x96" => "\xc2\xb5", +"\x88\x97" => "\xea\xd7", +"\x88\x98" => "\x8f\xdc\xb9", +"\x88\x99" => "\xea\xda", +"\x88\x9a" => "\x8f\xdc\xba", +"\x88\x9b" => "\x8f\xdc\xbb", +"\x88\x9c" => "\x8f\xdc\xbc", +"\x88\x9e" => "\xea\xd1", +"\x88\x9f" => "\x8f\xdc\xbd", +"\x88\xa0" => "\x8f\xdc\xbe", +"\x88\xa2" => "\xea\xdb", +"\x88\xa4" => "\xea\xdd", +"\x88\xa8" => "\x8f\xdc\xbf", +"\x88\xaa" => "\x8f\xdc\xc0", +"\x88\xab" => "\xc8\xef", +"\x88\xae" => "\xea\xd9", +"\x88\xb0" => "\xea\xde", +"\x88\xb1" => "\xea\xe0", +"\x88\xb4" => "\xb8\xd3", +"\x88\xb5" => "\xea\xd4", +"\x88\xb7" => "\xb0\xc1", +"\x88\xba" => "\x8f\xdc\xc1", +"\x88\xbd" => "\x8f\xdc\xc2", +"\x88\xbe" => "\x8f\xdc\xc3", +"\x88\xbf" => "\xea\xdf", +"\x88\xc0" => "\x8f\xdc\xc4", +"\x88\xc1" => "\xba\xdb", +"\x88\xc2" => "\xce\xf6", +"\x88\xc3" => "\xea\xe1", +"\x88\xc4" => "\xea\xe2", +"\x88\xc5" => "\xc1\xf5", +"\x88\xca" => "\x8f\xdc\xc5", +"\x88\xcb" => "\x8f\xdc\xc6", +"\x88\xcc" => "\x8f\xdc\xc7", +"\x88\xcd" => "\x8f\xdc\xc8", +"\x88\xce" => "\x8f\xdc\xc9", +"\x88\xcf" => "\xce\xa2", +"\x88\xd1" => "\x8f\xdc\xca", +"\x88\xd2" => "\x8f\xdc\xcb", +"\x88\xd3" => "\x8f\xdc\xcc", +"\x88\xd4" => "\xea\xe3", +"\x88\xd5" => "\xcd\xb5", +"\x88\xd8" => "\xea\xe4", +"\x88\xd9" => "\xea\xe5", +"\x88\xdb" => "\x8f\xdc\xcd", +"\x88\xdc" => "\xca\xe4", +"\x88\xdd" => "\xea\xe6", +"\x88\xde" => "\x8f\xdc\xce", +"\x88\xdf" => "\xba\xc0", +"\x88\xe1" => "\xce\xa3", +"\x88\xe7" => "\x8f\xdc\xcf", +"\x88\xe8" => "\xea\xeb", +"\x88\xef" => "\x8f\xdc\xd0", +"\x88\xf0" => "\x8f\xdc\xd1", +"\x88\xf1" => "\x8f\xdc\xd2", +"\x88\xf2" => "\xea\xec", +"\x88\xf3" => "\xbe\xd8", +"\x88\xf4" => "\xea\xea", +"\x88\xf5" => "\x8f\xdc\xd3", +"\x88\xf7" => "\x8f\xdc\xd4", +"\x88\xf8" => "\xcd\xe7", +"\x88\xf9" => "\xea\xe7", +"\x88\xfc" => "\xea\xe9", +"\x88\xfd" => "\xc0\xbd", +"\x88\xfe" => "\xbf\xfe", +"\x89\x01" => "\x8f\xdc\xd5", +"\x89\x02" => "\xea\xe8", +"\x89\x04" => "\xea\xed", +"\x89\x06" => "\x8f\xdc\xd6", +"\x89\x07" => "\xca\xa3", +"\x89\x0a" => "\xea\xef", +"\x89\x0c" => "\xea\xee", +"\x89\x0d" => "\x8f\xdc\xd7", +"\x89\x0e" => "\x8f\xdc\xd8", +"\x89\x0f" => "\x8f\xdc\xd9", +"\x89\x10" => "\xb3\xec", +"\x89\x12" => "\xcb\xab", +"\x89\x13" => "\xea\xf0", +"\x89\x15" => "\x8f\xdc\xda", +"\x89\x16" => "\x8f\xdc\xdb", +"\x89\x18" => "\x8f\xdc\xdc", +"\x89\x19" => "\x8f\xdc\xdd", +"\x89\x1a" => "\x8f\xdc\xde", +"\x89\x1c" => "\x8f\xdc\xdf", +"\x89\x1d" => "\xea\xfc", +"\x89\x1e" => "\xea\xf2", +"\x89\x20" => "\x8f\xdc\xe0", +"\x89\x25" => "\xea\xf3", +"\x89\x26" => "\x8f\xdc\xe1", +"\x89\x27" => "\x8f\xdc\xe2", +"\x89\x28" => "\x8f\xdc\xe3", +"\x89\x2a" => "\xea\xf4", +"\x89\x2b" => "\xea\xf5", +"\x89\x30" => "\x8f\xdc\xe4", +"\x89\x31" => "\x8f\xdc\xe5", +"\x89\x32" => "\x8f\xdc\xe6", +"\x89\x35" => "\x8f\xdc\xe7", +"\x89\x36" => "\xea\xf9", +"\x89\x38" => "\xea\xfa", +"\x89\x39" => "\x8f\xdc\xe8", +"\x89\x3a" => "\x8f\xdc\xe9", +"\x89\x3b" => "\xea\xf8", +"\x89\x3e" => "\x8f\xdc\xea", +"\x89\x40" => "\x8f\xdc\xeb", +"\x89\x41" => "\xea\xf6", +"\x89\x42" => "\x8f\xdc\xec", +"\x89\x43" => "\xea\xf1", +"\x89\x44" => "\xea\xf7", +"\x89\x45" => "\x8f\xdc\xed", +"\x89\x46" => "\x8f\xdc\xee", +"\x89\x49" => "\x8f\xdc\xef", +"\x89\x4c" => "\xea\xfb", +"\x89\x4d" => "\xf0\xb7", +"\x89\x4f" => "\x8f\xdc\xf0", +"\x89\x52" => "\x8f\xdc\xf1", +"\x89\x56" => "\xb2\xa8", +"\x89\x57" => "\x8f\xdc\xf2", +"\x89\x5a" => "\x8f\xdc\xf3", +"\x89\x5b" => "\x8f\xdc\xf4", +"\x89\x5c" => "\x8f\xdc\xf5", +"\x89\x5e" => "\xea\xfe", +"\x89\x5f" => "\xb6\xdf", +"\x89\x60" => "\xea\xfd", +"\x89\x61" => "\x8f\xdc\xf6", +"\x89\x62" => "\x8f\xdc\xf7", +"\x89\x63" => "\x8f\xdc\xf8", +"\x89\x64" => "\xeb\xa2", +"\x89\x66" => "\xeb\xa1", +"\x89\x6a" => "\xeb\xa4", +"\x89\x6b" => "\x8f\xdc\xf9", +"\x89\x6d" => "\xeb\xa3", +"\x89\x6e" => "\x8f\xdc\xfa", +"\x89\x6f" => "\xeb\xa5", +"\x89\x70" => "\x8f\xdc\xfb", +"\x89\x72" => "\xbd\xb1", +"\x89\x73" => "\x8f\xdc\xfc", +"\x89\x74" => "\xeb\xa6", +"\x89\x75" => "\x8f\xdc\xfd", +"\x89\x77" => "\xeb\xa7", +"\x89\x7a" => "\x8f\xdc\xfe", +"\x89\x7b" => "\x8f\xdd\xa1", +"\x89\x7c" => "\x8f\xdd\xa2", +"\x89\x7d" => "\x8f\xdd\xa3", +"\x89\x7e" => "\xeb\xa8", +"\x89\x7f" => "\xc0\xbe", +"\x89\x81" => "\xcd\xd7", +"\x89\x83" => "\xeb\xa9", +"\x89\x86" => "\xca\xa4", +"\x89\x87" => "\xc7\xc6", +"\x89\x88" => "\xeb\xaa", +"\x89\x89" => "\x8f\xdd\xa4", +"\x89\x8a" => "\xeb\xab", +"\x89\x8b" => "\xb8\xab", +"\x89\x8d" => "\x8f\xdd\xa5", +"\x89\x8f" => "\xb5\xac", +"\x89\x90" => "\x8f\xdd\xa6", +"\x89\x93" => "\xeb\xac", +"\x89\x94" => "\x8f\xdd\xa7", +"\x89\x95" => "\x8f\xdd\xa8", +"\x89\x96" => "\xbb\xeb", +"\x89\x97" => "\xc7\xc1", +"\x89\x98" => "\xeb\xad", +"\x89\x9a" => "\xb3\xd0", +"\x89\x9b" => "\x8f\xdd\xa9", +"\x89\x9c" => "\x8f\xdd\xaa", +"\x89\x9f" => "\x8f\xdd\xab", +"\x89\xa0" => "\x8f\xdd\xac", +"\x89\xa1" => "\xeb\xae", +"\x89\xa5" => "\x8f\xdd\xad", +"\x89\xa6" => "\xeb\xb0", +"\x89\xa7" => "\xcd\xf7", +"\x89\xa9" => "\xeb\xaf", +"\x89\xaa" => "\xbf\xc6", +"\x89\xac" => "\xeb\xb1", +"\x89\xaf" => "\xeb\xb2", +"\x89\xb0" => "\x8f\xdd\xae", +"\x89\xb2" => "\xeb\xb3", +"\x89\xb3" => "\xb4\xd1", +"\x89\xb4" => "\x8f\xdd\xaf", +"\x89\xb5" => "\x8f\xdd\xb0", +"\x89\xb6" => "\x8f\xdd\xb1", +"\x89\xb7" => "\x8f\xdd\xb2", +"\x89\xba" => "\xeb\xb4", +"\x89\xbc" => "\x8f\xdd\xb3", +"\x89\xbd" => "\xeb\xb5", +"\x89\xbf" => "\xeb\xb6", +"\x89\xc0" => "\xeb\xb7", +"\x89\xd2" => "\xb3\xd1", +"\x89\xd4" => "\x8f\xdd\xb4", +"\x89\xd5" => "\x8f\xdd\xb5", +"\x89\xd6" => "\x8f\xdd\xb6", +"\x89\xd7" => "\x8f\xdd\xb7", +"\x89\xd8" => "\x8f\xdd\xb8", +"\x89\xda" => "\xeb\xb8", +"\x89\xdc" => "\xeb\xb9", +"\x89\xdd" => "\xeb\xba", +"\x89\xe3" => "\xb2\xf2", +"\x89\xe5" => "\x8f\xdd\xb9", +"\x89\xe6" => "\xbf\xa8", +"\x89\xe7" => "\xeb\xbb", +"\x89\xe9" => "\x8f\xdd\xba", +"\x89\xeb" => "\x8f\xdd\xbb", +"\x89\xed" => "\x8f\xdd\xbc", +"\x89\xf1" => "\x8f\xdd\xbd", +"\x89\xf3" => "\x8f\xdd\xbe", +"\x89\xf4" => "\xeb\xbc", +"\x89\xf6" => "\x8f\xdd\xbf", +"\x89\xf8" => "\xeb\xbd", +"\x89\xf9" => "\x8f\xdd\xc0", +"\x89\xfd" => "\x8f\xdd\xc1", +"\x89\xff" => "\x8f\xdd\xc2", +"\x8a\x00" => "\xb8\xc0", +"\x8a\x02" => "\xc4\xfb", +"\x8a\x03" => "\xeb\xbe", +"\x8a\x04" => "\x8f\xdd\xc3", +"\x8a\x05" => "\x8f\xdd\xc4", +"\x8a\x07" => "\x8f\xdd\xc5", +"\x8a\x08" => "\xb7\xd7", +"\x8a\x0a" => "\xbf\xd6", +"\x8a\x0c" => "\xeb\xc1", +"\x8a\x0e" => "\xc6\xa4", +"\x8a\x0f" => "\x8f\xdd\xc6", +"\x8a\x10" => "\xeb\xc0", +"\x8a\x11" => "\x8f\xdd\xc7", +"\x8a\x12" => "\x8f\xdd\xc8", +"\x8a\x13" => "\xb7\xb1", +"\x8a\x14" => "\x8f\xdd\xc9", +"\x8a\x15" => "\x8f\xdd\xca", +"\x8a\x16" => "\xeb\xbf", +"\x8a\x17" => "\xc2\xf7", +"\x8a\x18" => "\xb5\xad", +"\x8a\x1b" => "\xeb\xc2", +"\x8a\x1d" => "\xeb\xc3", +"\x8a\x1e" => "\x8f\xdd\xcb", +"\x8a\x1f" => "\xbe\xd9", +"\x8a\x20" => "\x8f\xdd\xcc", +"\x8a\x22" => "\x8f\xdd\xcd", +"\x8a\x23" => "\xb7\xed", +"\x8a\x24" => "\x8f\xdd\xce", +"\x8a\x25" => "\xeb\xc4", +"\x8a\x26" => "\x8f\xdd\xcf", +"\x8a\x2a" => "\xcb\xac", +"\x8a\x2b" => "\x8f\xdd\xd0", +"\x8a\x2c" => "\x8f\xdd\xd1", +"\x8a\x2d" => "\xc0\xdf", +"\x8a\x2f" => "\x8f\xdd\xd2", +"\x8a\x31" => "\xb5\xf6", +"\x8a\x33" => "\xcc\xf5", +"\x8a\x34" => "\xc1\xca", +"\x8a\x35" => "\x8f\xdd\xd3", +"\x8a\x36" => "\xeb\xc5", +"\x8a\x37" => "\x8f\xdd\xd4", +"\x8a\x3a" => "\xbf\xc7", +"\x8a\x3b" => "\xc3\xf0", +"\x8a\x3c" => "\xbe\xda", +"\x8a\x3d" => "\x8f\xdd\xd5", +"\x8a\x3e" => "\x8f\xdd\xd6", +"\x8a\x40" => "\x8f\xdd\xd7", +"\x8a\x41" => "\xeb\xc6", +"\x8a\x43" => "\x8f\xdd\xd8", +"\x8a\x45" => "\x8f\xdd\xd9", +"\x8a\x46" => "\xeb\xc9", +"\x8a\x47" => "\x8f\xdd\xda", +"\x8a\x48" => "\xeb\xca", +"\x8a\x49" => "\x8f\xdd\xdb", +"\x8a\x4d" => "\x8f\xdd\xdc", +"\x8a\x4e" => "\x8f\xdd\xdd", +"\x8a\x50" => "\xba\xbe", +"\x8a\x51" => "\xc2\xc2", +"\x8a\x52" => "\xeb\xc8", +"\x8a\x53" => "\x8f\xdd\xde", +"\x8a\x54" => "\xbe\xdb", +"\x8a\x55" => "\xc9\xbe", +"\x8a\x56" => "\x8f\xdd\xdf", +"\x8a\x57" => "\x8f\xdd\xe0", +"\x8a\x58" => "\x8f\xdd\xe1", +"\x8a\x5b" => "\xeb\xc7", +"\x8a\x5c" => "\x8f\xdd\xe2", +"\x8a\x5d" => "\x8f\xdd\xe3", +"\x8a\x5e" => "\xbb\xec", +"\x8a\x60" => "\xb1\xd3", +"\x8a\x61" => "\x8f\xdd\xe4", +"\x8a\x62" => "\xeb\xce", +"\x8a\x63" => "\xb7\xd8", +"\x8a\x65" => "\x8f\xdd\xe5", +"\x8a\x66" => "\xbb\xee", +"\x8a\x67" => "\x8f\xdd\xe6", +"\x8a\x69" => "\xbb\xed", +"\x8a\x6b" => "\xcf\xcd", +"\x8a\x6c" => "\xeb\xcd", +"\x8a\x6d" => "\xeb\xcc", +"\x8a\x6e" => "\xc1\xa7", +"\x8a\x70" => "\xb5\xcd", +"\x8a\x71" => "\xcf\xc3", +"\x8a\x72" => "\xb3\xba", +"\x8a\x73" => "\xbe\xdc", +"\x8a\x75" => "\x8f\xdd\xe7", +"\x8a\x76" => "\x8f\xdd\xe8", +"\x8a\x77" => "\x8f\xdd\xe9", +"\x8a\x79" => "\x8f\xdd\xea", +"\x8a\x7a" => "\x8f\xdd\xeb", +"\x8a\x7b" => "\x8f\xdd\xec", +"\x8a\x7c" => "\xeb\xcb", +"\x8a\x7e" => "\x8f\xdd\xed", +"\x8a\x7f" => "\x8f\xdd\xee", +"\x8a\x80" => "\x8f\xdd\xef", +"\x8a\x82" => "\xeb\xd0", +"\x8a\x83" => "\x8f\xdd\xf0", +"\x8a\x84" => "\xeb\xd1", +"\x8a\x85" => "\xeb\xcf", +"\x8a\x86" => "\x8f\xdd\xf1", +"\x8a\x87" => "\xb8\xd8", +"\x8a\x89" => "\xcd\xc0", +"\x8a\x8b" => "\x8f\xdd\xf2", +"\x8a\x8c" => "\xbb\xef", +"\x8a\x8d" => "\xc7\xa7", +"\x8a\x8f" => "\x8f\xdd\xf3", +"\x8a\x90" => "\x8f\xdd\xf4", +"\x8a\x91" => "\xeb\xd4", +"\x8a\x92" => "\x8f\xdd\xf5", +"\x8a\x93" => "\xc0\xc0", +"\x8a\x95" => "\xc3\xc2", +"\x8a\x96" => "\x8f\xdd\xf6", +"\x8a\x97" => "\x8f\xdd\xf7", +"\x8a\x98" => "\xcd\xb6", +"\x8a\x99" => "\x8f\xdd\xf8", +"\x8a\x9a" => "\xeb\xd7", +"\x8a\x9e" => "\xb8\xec", +"\x8a\x9f" => "\x8f\xdd\xf9", +"\x8a\xa0" => "\xc0\xbf", +"\x8a\xa1" => "\xeb\xd3", +"\x8a\xa3" => "\xeb\xd8", +"\x8a\xa4" => "\xb8\xed", +"\x8a\xa5" => "\xeb\xd5", +"\x8a\xa6" => "\xeb\xd6", +"\x8a\xa7" => "\x8f\xdd\xfa", +"\x8a\xa8" => "\xeb\xd2", +"\x8a\xa9" => "\x8f\xdd\xfb", +"\x8a\xac" => "\xc0\xe2", +"\x8a\xad" => "\xc6\xc9", +"\x8a\xae" => "\x8f\xdd\xfc", +"\x8a\xaf" => "\x8f\xdd\xfd", +"\x8a\xb0" => "\xc3\xaf", +"\x8a\xb2" => "\xb2\xdd", +"\x8a\xb3" => "\x8f\xdd\xfe", +"\x8a\xb6" => "\x8f\xde\xa1", +"\x8a\xb7" => "\x8f\xde\xa2", +"\x8a\xb9" => "\xc8\xf0", +"\x8a\xbb" => "\x8f\xde\xa3", +"\x8a\xbc" => "\xb5\xc3", +"\x8a\xbe" => "\x8f\xde\xa4", +"\x8a\xbf" => "\xc4\xb4", +"\x8a\xc2" => "\xeb\xdb", +"\x8a\xc3" => "\x8f\xde\xa5", +"\x8a\xc4" => "\xeb\xd9", +"\x8a\xc6" => "\x8f\xde\xa6", +"\x8a\xc7" => "\xc3\xcc", +"\x8a\xc8" => "\x8f\xde\xa7", +"\x8a\xc9" => "\x8f\xde\xa8", +"\x8a\xca" => "\x8f\xde\xa9", +"\x8a\xcb" => "\xc0\xc1", +"\x8a\xcc" => "\xb4\xd2", +"\x8a\xcd" => "\xeb\xda", +"\x8a\xcf" => "\xbf\xdb", +"\x8a\xd1" => "\x8f\xde\xaa", +"\x8a\xd2" => "\xce\xca", +"\x8a\xd3" => "\x8f\xde\xab", +"\x8a\xd4" => "\x8f\xde\xac", +"\x8a\xd5" => "\x8f\xde\xad", +"\x8a\xd6" => "\xcf\xc0", +"\x8a\xd7" => "\x8f\xde\xae", +"\x8a\xda" => "\xeb\xdc", +"\x8a\xdb" => "\xeb\xe7", +"\x8a\xdc" => "\xc4\xb5", +"\x8a\xdd" => "\x8f\xde\xaf", +"\x8a\xde" => "\xeb\xe6", +"\x8a\xdf" => "\x8f\xde\xb0", +"\x8a\xe0" => "\xeb\xe3", +"\x8a\xe1" => "\xeb\xeb", +"\x8a\xe2" => "\xeb\xe4", +"\x8a\xe4" => "\xeb\xe0", +"\x8a\xe6" => "\xc4\xfc", +"\x8a\xe7" => "\xeb\xdf", +"\x8a\xeb" => "\xeb\xdd", +"\x8a\xec" => "\x8f\xde\xb1", +"\x8a\xed" => "\xcd\xa1", +"\x8a\xee" => "\xbb\xf0", +"\x8a\xf0" => "\x8f\xde\xb2", +"\x8a\xf1" => "\xeb\xe1", +"\x8a\xf3" => "\xeb\xde", +"\x8a\xf4" => "\x8f\xde\xb3", +"\x8a\xf5" => "\x8f\xde\xb4", +"\x8a\xf6" => "\x8f\xde\xb5", +"\x8a\xf7" => "\xeb\xe5", +"\x8a\xf8" => "\xbd\xf4", +"\x8a\xfa" => "\xb8\xc1", +"\x8a\xfc" => "\x8f\xde\xb6", +"\x8a\xfe" => "\xc2\xfa", +"\x8a\xff" => "\x8f\xde\xb7", +"\x8b\x00" => "\xcb\xc5", +"\x8b\x01" => "\xb1\xda", +"\x8b\x02" => "\xb0\xe2", +"\x8b\x04" => "\xc6\xa5", +"\x8b\x05" => "\x8f\xde\xb8", +"\x8b\x06" => "\x8f\xde\xb9", +"\x8b\x07" => "\xeb\xe9", +"\x8b\x0a" => "\x8f\xde\xbf", +"\x8b\x0b" => "\x8f\xde\xba", +"\x8b\x0c" => "\xeb\xe8", +"\x8b\x0e" => "\xc6\xe6", +"\x8b\x10" => "\xeb\xed", +"\x8b\x11" => "\x8f\xde\xbb", +"\x8b\x14" => "\xeb\xe2", +"\x8b\x16" => "\xeb\xec", +"\x8b\x17" => "\xeb\xee", +"\x8b\x19" => "\xb8\xac", +"\x8b\x1a" => "\xeb\xea", +"\x8b\x1b" => "\xb9\xd6", +"\x8b\x1c" => "\x8f\xde\xbc", +"\x8b\x1d" => "\xbc\xd5", +"\x8b\x1e" => "\x8f\xde\xbd", +"\x8b\x1f" => "\x8f\xde\xbe", +"\x8b\x20" => "\xeb\xef", +"\x8b\x21" => "\xcd\xd8", +"\x8b\x26" => "\xeb\xf2", +"\x8b\x28" => "\xeb\xf5", +"\x8b\x2b" => "\xeb\xf3", +"\x8b\x2c" => "\xc9\xb5", +"\x8b\x2d" => "\x8f\xde\xc0", +"\x8b\x30" => "\x8f\xde\xc1", +"\x8b\x33" => "\xeb\xf0", +"\x8b\x37" => "\x8f\xde\xc2", +"\x8b\x39" => "\xb6\xe0", +"\x8b\x3c" => "\x8f\xde\xc3", +"\x8b\x3e" => "\xeb\xf4", +"\x8b\x41" => "\xeb\xf6", +"\x8b\x42" => "\x8f\xde\xc4", +"\x8b\x43" => "\x8f\xde\xc5", +"\x8b\x44" => "\x8f\xde\xc6", +"\x8b\x45" => "\x8f\xde\xc7", +"\x8b\x46" => "\x8f\xde\xc8", +"\x8b\x48" => "\x8f\xde\xc9", +"\x8b\x49" => "\xeb\xfa", +"\x8b\x4c" => "\xeb\xf7", +"\x8b\x4d" => "\x8f\xde\xce", +"\x8b\x4e" => "\xeb\xf9", +"\x8b\x4f" => "\xeb\xf8", +"\x8b\x52" => "\x8f\xde\xca", +"\x8b\x53" => "\x8f\xde\xcb", +"\x8b\x54" => "\x8f\xde\xcc", +"\x8b\x56" => "\xeb\xfb", +"\x8b\x58" => "\xbc\xb1", +"\x8b\x59" => "\x8f\xde\xcd", +"\x8b\x5a" => "\xeb\xfd", +"\x8b\x5b" => "\xeb\xfc", +"\x8b\x5c" => "\xc9\xe8", +"\x8b\x5e" => "\x8f\xde\xcf", +"\x8b\x5f" => "\xec\xa1", +"\x8b\x63" => "\x8f\xde\xd0", +"\x8b\x66" => "\xb7\xd9", +"\x8b\x6b" => "\xeb\xfe", +"\x8b\x6c" => "\xec\xa2", +"\x8b\x6d" => "\x8f\xde\xd1", +"\x8b\x6f" => "\xec\xa3", +"\x8b\x70" => "\xb5\xc4", +"\x8b\x71" => "\xe6\xc1", +"\x8b\x72" => "\xbe\xf9", +"\x8b\x74" => "\xec\xa4", +"\x8b\x76" => "\x8f\xde\xd2", +"\x8b\x77" => "\xb8\xee", +"\x8b\x78" => "\x8f\xde\xd3", +"\x8b\x79" => "\x8f\xde\xd4", +"\x8b\x7c" => "\x8f\xde\xd5", +"\x8b\x7d" => "\xec\xa5", +"\x8b\x7e" => "\x8f\xde\xd6", +"\x8b\x80" => "\xec\xa6", +"\x8b\x81" => "\x8f\xde\xd7", +"\x8b\x83" => "\xbb\xbe", +"\x8b\x84" => "\x8f\xde\xd8", +"\x8b\x85" => "\x8f\xde\xd9", +"\x8b\x8a" => "\xda\xce", +"\x8b\x8b" => "\x8f\xde\xda", +"\x8b\x8c" => "\xec\xa7", +"\x8b\x8d" => "\x8f\xde\xdb", +"\x8b\x8e" => "\xec\xa8", +"\x8b\x8f" => "\x8f\xde\xdc", +"\x8b\x90" => "\xbd\xb2", +"\x8b\x92" => "\xec\xa9", +"\x8b\x93" => "\xec\xaa", +"\x8b\x94" => "\x8f\xde\xdd", +"\x8b\x95" => "\x8f\xde\xde", +"\x8b\x96" => "\xec\xab", +"\x8b\x99" => "\xec\xac", +"\x8b\x9a" => "\xec\xad", +"\x8b\x9c" => "\x8f\xde\xdf", +"\x8b\x9e" => "\x8f\xde\xe0", +"\x8b\x9f" => "\x8f\xde\xe1", +"\x8c\x37" => "\xc3\xab", +"\x8c\x38" => "\x8f\xde\xe2", +"\x8c\x39" => "\x8f\xde\xe3", +"\x8c\x3a" => "\xec\xae", +"\x8c\x3d" => "\x8f\xde\xe4", +"\x8c\x3e" => "\x8f\xde\xe5", +"\x8c\x3f" => "\xec\xb0", +"\x8c\x41" => "\xec\xaf", +"\x8c\x45" => "\x8f\xde\xe6", +"\x8c\x46" => "\xc6\xa6", +"\x8c\x47" => "\x8f\xde\xe7", +"\x8c\x48" => "\xec\xb1", +"\x8c\x49" => "\x8f\xde\xe8", +"\x8c\x4a" => "\xcb\xad", +"\x8c\x4b" => "\x8f\xde\xe9", +"\x8c\x4c" => "\xec\xb2", +"\x8c\x4e" => "\xec\xb3", +"\x8c\x4f" => "\x8f\xde\xea", +"\x8c\x50" => "\xec\xb4", +"\x8c\x51" => "\x8f\xde\xeb", +"\x8c\x53" => "\x8f\xde\xec", +"\x8c\x54" => "\x8f\xde\xed", +"\x8c\x55" => "\xec\xb5", +"\x8c\x57" => "\x8f\xde\xee", +"\x8c\x58" => "\x8f\xde\xef", +"\x8c\x59" => "\x8f\xde\xf2", +"\x8c\x5a" => "\xc6\xda", +"\x8c\x5b" => "\x8f\xde\xf0", +"\x8c\x5d" => "\x8f\xde\xf1", +"\x8c\x61" => "\xbe\xdd", +"\x8c\x62" => "\xec\xb6", +"\x8c\x63" => "\x8f\xde\xf3", +"\x8c\x64" => "\x8f\xde\xf4", +"\x8c\x66" => "\x8f\xde\xf5", +"\x8c\x68" => "\x8f\xde\xf6", +"\x8c\x69" => "\x8f\xde\xf7", +"\x8c\x6a" => "\xb9\xeb", +"\x8c\x6b" => "\xd0\xae", +"\x8c\x6c" => "\xec\xb7", +"\x8c\x6d" => "\x8f\xde\xf8", +"\x8c\x73" => "\x8f\xde\xf9", +"\x8c\x75" => "\x8f\xde\xfa", +"\x8c\x76" => "\x8f\xde\xfb", +"\x8c\x78" => "\xec\xb8", +"\x8c\x79" => "\xc9\xbf", +"\x8c\x7a" => "\xec\xb9", +"\x8c\x7b" => "\x8f\xde\xfc", +"\x8c\x7c" => "\xec\xc1", +"\x8c\x7e" => "\x8f\xde\xfd", +"\x8c\x82" => "\xec\xba", +"\x8c\x85" => "\xec\xbc", +"\x8c\x86" => "\x8f\xde\xfe", +"\x8c\x87" => "\x8f\xdf\xa1", +"\x8c\x89" => "\xec\xbb", +"\x8c\x8a" => "\xec\xbd", +"\x8c\x8b" => "\x8f\xdf\xa2", +"\x8c\x8c" => "\xcb\xc6", +"\x8c\x8d" => "\xec\xbe", +"\x8c\x8e" => "\xec\xbf", +"\x8c\x90" => "\x8f\xdf\xa3", +"\x8c\x92" => "\x8f\xdf\xa4", +"\x8c\x93" => "\x8f\xdf\xa5", +"\x8c\x94" => "\xec\xc0", +"\x8c\x98" => "\xec\xc2", +"\x8c\x99" => "\x8f\xdf\xa6", +"\x8c\x9b" => "\x8f\xdf\xa7", +"\x8c\x9c" => "\x8f\xdf\xa8", +"\x8c\x9d" => "\xb3\xad", +"\x8c\x9e" => "\xc4\xe7", +"\x8c\xa0" => "\xc9\xe9", +"\x8c\xa1" => "\xba\xe2", +"\x8c\xa2" => "\xb9\xd7", +"\x8c\xa4" => "\x8f\xdf\xa9", +"\x8c\xa7" => "\xc9\xcf", +"\x8c\xa8" => "\xb2\xdf", +"\x8c\xa9" => "\xc8\xce", +"\x8c\xaa" => "\xec\xc5", +"\x8c\xab" => "\xb4\xd3", +"\x8c\xac" => "\xc0\xd5", +"\x8c\xad" => "\xec\xc4", +"\x8c\xae" => "\xec\xc9", +"\x8c\xaf" => "\xc3\xf9", +"\x8c\xb0" => "\xcc\xe3", +"\x8c\xb2" => "\xec\xc7", +"\x8c\xb3" => "\xec\xc8", +"\x8c\xb4" => "\xb5\xae", +"\x8c\xb6" => "\xec\xca", +"\x8c\xb7" => "\xc7\xe3", +"\x8c\xb8" => "\xc2\xdf", +"\x8c\xb9" => "\x8f\xdf\xaa", +"\x8c\xba" => "\x8f\xdf\xab", +"\x8c\xbb" => "\xc8\xf1", +"\x8c\xbc" => "\xc5\xbd", +"\x8c\xbd" => "\xec\xc6", +"\x8c\xbf" => "\xcb\xc7", +"\x8c\xc0" => "\xb2\xec", +"\x8c\xc1" => "\xec\xcc", +"\x8c\xc2" => "\xcf\xa8", +"\x8c\xc3" => "\xc4\xc2", +"\x8c\xc4" => "\xcf\xc5", +"\x8c\xc5" => "\x8f\xdf\xac", +"\x8c\xc6" => "\x8f\xdf\xad", +"\x8c\xc7" => "\xbb\xf1", +"\x8c\xc8" => "\xec\xcb", +"\x8c\xc9" => "\x8f\xdf\xae", +"\x8c\xca" => "\xc2\xb1", +"\x8c\xcb" => "\x8f\xdf\xaf", +"\x8c\xcd" => "\xec\xdc", +"\x8c\xce" => "\xc1\xa8", +"\x8c\xcf" => "\x8f\xdf\xb0", +"\x8c\xd1" => "\xc6\xf8", +"\x8c\xd3" => "\xc9\xd0", +"\x8c\xd5" => "\x8f\xdf\xb2", +"\x8c\xd6" => "\x8f\xdf\xb1", +"\x8c\xd9" => "\x8f\xdf\xb3", +"\x8c\xda" => "\xec\xcf", +"\x8c\xdb" => "\xbb\xbf", +"\x8c\xdc" => "\xbb\xf2", +"\x8c\xdd" => "\x8f\xdf\xb4", +"\x8c\xde" => "\xbe\xde", +"\x8c\xe0" => "\xc7\xe5", +"\x8c\xe1" => "\x8f\xdf\xb5", +"\x8c\xe2" => "\xb8\xad", +"\x8c\xe3" => "\xec\xce", +"\x8c\xe4" => "\xec\xcd", +"\x8c\xe6" => "\xc9\xea", +"\x8c\xe8" => "\x8f\xdf\xb6", +"\x8c\xea" => "\xbc\xc1", +"\x8c\xec" => "\x8f\xdf\xb7", +"\x8c\xed" => "\xc5\xd2", +"\x8c\xef" => "\x8f\xdf\xb8", +"\x8c\xf0" => "\x8f\xdf\xb9", +"\x8c\xf2" => "\x8f\xdf\xba", +"\x8c\xf5" => "\x8f\xdf\xbb", +"\x8c\xf7" => "\x8f\xdf\xbc", +"\x8c\xf8" => "\x8f\xdf\xbd", +"\x8c\xfa" => "\xec\xd1", +"\x8c\xfb" => "\xec\xd2", +"\x8c\xfc" => "\xb9\xd8", +"\x8c\xfd" => "\xec\xd0", +"\x8c\xfe" => "\x8f\xdf\xbe", +"\x8c\xff" => "\x8f\xdf\xbf", +"\x8d\x01" => "\x8f\xdf\xc0", +"\x8d\x03" => "\x8f\xdf\xc1", +"\x8d\x04" => "\xec\xd3", +"\x8d\x05" => "\xec\xd4", +"\x8d\x07" => "\xec\xd6", +"\x8d\x08" => "\xc2\xa3", +"\x8d\x09" => "\x8f\xdf\xc2", +"\x8d\x0a" => "\xec\xd5", +"\x8d\x0b" => "\xb4\xe6", +"\x8d\x0d" => "\xec\xd8", +"\x8d\x0f" => "\xec\xd7", +"\x8d\x10" => "\xec\xd9", +"\x8d\x12" => "\x8f\xdf\xc3", +"\x8d\x13" => "\xec\xdb", +"\x8d\x14" => "\xec\xdd", +"\x8d\x16" => "\xec\xde", +"\x8d\x17" => "\x8f\xdf\xc4", +"\x8d\x1b" => "\x8f\xdf\xc5", +"\x8d\x64" => "\xc0\xd6", +"\x8d\x65" => "\x8f\xdf\xc6", +"\x8d\x66" => "\xbc\xcf", +"\x8d\x67" => "\xec\xdf", +"\x8d\x69" => "\x8f\xdf\xc7", +"\x8d\x6b" => "\xb3\xd2", +"\x8d\x6c" => "\x8f\xdf\xc8", +"\x8d\x6d" => "\xec\xe0", +"\x8d\x6e" => "\x8f\xdf\xc9", +"\x8d\x70" => "\xc1\xf6", +"\x8d\x71" => "\xec\xe1", +"\x8d\x73" => "\xec\xe2", +"\x8d\x74" => "\xc9\xeb", +"\x8d\x77" => "\xb5\xaf", +"\x8d\x7f" => "\x8f\xdf\xca", +"\x8d\x81" => "\xec\xe3", +"\x8d\x82" => "\x8f\xdf\xcb", +"\x8d\x84" => "\x8f\xdf\xcc", +"\x8d\x85" => "\xc4\xb6", +"\x8d\x88" => "\x8f\xdf\xcd", +"\x8d\x8a" => "\xb1\xdb", +"\x8d\x8d" => "\x8f\xdf\xce", +"\x8d\x90" => "\x8f\xdf\xcf", +"\x8d\x91" => "\x8f\xdf\xd0", +"\x8d\x95" => "\x8f\xdf\xd1", +"\x8d\x99" => "\xec\xe4", +"\x8d\x9e" => "\x8f\xdf\xd2", +"\x8d\x9f" => "\x8f\xdf\xd3", +"\x8d\xa0" => "\x8f\xdf\xd4", +"\x8d\xa3" => "\xbc\xf1", +"\x8d\xa6" => "\x8f\xdf\xd5", +"\x8d\xa8" => "\xbf\xf6", +"\x8d\xab" => "\x8f\xdf\xd6", +"\x8d\xac" => "\x8f\xdf\xd7", +"\x8d\xaf" => "\x8f\xdf\xd8", +"\x8d\xb2" => "\x8f\xdf\xd9", +"\x8d\xb3" => "\xc2\xad", +"\x8d\xb5" => "\x8f\xdf\xda", +"\x8d\xb7" => "\x8f\xdf\xdb", +"\x8d\xb9" => "\x8f\xdf\xdc", +"\x8d\xba" => "\xec\xe7", +"\x8d\xbb" => "\x8f\xdf\xdd", +"\x8d\xbc" => "\x8f\xdf\xef", +"\x8d\xbe" => "\xec\xe6", +"\x8d\xc0" => "\x8f\xdf\xde", +"\x8d\xc2" => "\xec\xe5", +"\x8d\xc5" => "\x8f\xdf\xdf", +"\x8d\xc6" => "\x8f\xdf\xe0", +"\x8d\xc7" => "\x8f\xdf\xe1", +"\x8d\xc8" => "\x8f\xdf\xe2", +"\x8d\xca" => "\x8f\xdf\xe3", +"\x8d\xcb" => "\xec\xed", +"\x8d\xcc" => "\xec\xeb", +"\x8d\xce" => "\x8f\xdf\xe4", +"\x8d\xcf" => "\xec\xe8", +"\x8d\xd1" => "\x8f\xdf\xe5", +"\x8d\xd4" => "\x8f\xdf\xe6", +"\x8d\xd5" => "\x8f\xdf\xe7", +"\x8d\xd6" => "\xec\xea", +"\x8d\xd7" => "\x8f\xdf\xe8", +"\x8d\xd9" => "\x8f\xdf\xe9", +"\x8d\xda" => "\xec\xe9", +"\x8d\xdb" => "\xec\xec", +"\x8d\xdd" => "\xb5\xf7", +"\x8d\xdf" => "\xec\xf0", +"\x8d\xe1" => "\xc0\xd7", +"\x8d\xe3" => "\xec\xf1", +"\x8d\xe4" => "\x8f\xdf\xea", +"\x8d\xe5" => "\x8f\xdf\xeb", +"\x8d\xe7" => "\x8f\xdf\xec", +"\x8d\xe8" => "\xb8\xd9", +"\x8d\xea" => "\xec\xee", +"\x8d\xeb" => "\xec\xef", +"\x8d\xec" => "\x8f\xdf\xed", +"\x8d\xef" => "\xcf\xa9", +"\x8d\xf0" => "\x8f\xdf\xee", +"\x8d\xf1" => "\x8f\xdf\xf0", +"\x8d\xf2" => "\x8f\xdf\xf1", +"\x8d\xf3" => "\xc4\xb7", +"\x8d\xf4" => "\x8f\xdf\xf2", +"\x8d\xf5" => "\xc1\xa9", +"\x8d\xfc" => "\xec\xf2", +"\x8d\xfd" => "\x8f\xdf\xf3", +"\x8d\xff" => "\xec\xf5", +"\x8e\x01" => "\x8f\xdf\xf4", +"\x8e\x04" => "\x8f\xdf\xf5", +"\x8e\x05" => "\x8f\xdf\xf6", +"\x8e\x06" => "\x8f\xdf\xf7", +"\x8e\x08" => "\xec\xf3", +"\x8e\x09" => "\xec\xf4", +"\x8e\x0a" => "\xcd\xd9", +"\x8e\x0b" => "\x8f\xdf\xf8", +"\x8e\x0f" => "\xc6\xa7", +"\x8e\x10" => "\xec\xf8", +"\x8e\x11" => "\x8f\xdf\xf9", +"\x8e\x14" => "\x8f\xdf\xfa", +"\x8e\x16" => "\x8f\xdf\xfb", +"\x8e\x1d" => "\xec\xf6", +"\x8e\x1e" => "\xec\xf7", +"\x8e\x1f" => "\xec\xf9", +"\x8e\x20" => "\x8f\xdf\xfc", +"\x8e\x21" => "\x8f\xdf\xfd", +"\x8e\x22" => "\x8f\xdf\xfe", +"\x8e\x23" => "\x8f\xe0\xa1", +"\x8e\x26" => "\x8f\xe0\xa2", +"\x8e\x27" => "\x8f\xe0\xa3", +"\x8e\x2a" => "\xed\xa9", +"\x8e\x30" => "\xec\xfc", +"\x8e\x31" => "\x8f\xe0\xa4", +"\x8e\x33" => "\x8f\xe0\xa5", +"\x8e\x34" => "\xec\xfd", +"\x8e\x35" => "\xec\xfb", +"\x8e\x36" => "\x8f\xe0\xa6", +"\x8e\x37" => "\x8f\xe0\xa7", +"\x8e\x38" => "\x8f\xe0\xa8", +"\x8e\x39" => "\x8f\xe0\xa9", +"\x8e\x3d" => "\x8f\xe0\xaa", +"\x8e\x40" => "\x8f\xe0\xab", +"\x8e\x41" => "\x8f\xe0\xac", +"\x8e\x42" => "\xec\xfa", +"\x8e\x44" => "\xc4\xfd", +"\x8e\x47" => "\xed\xa1", +"\x8e\x48" => "\xed\xa5", +"\x8e\x49" => "\xed\xa2", +"\x8e\x4a" => "\xec\xfe", +"\x8e\x4b" => "\x8f\xe0\xad", +"\x8e\x4c" => "\xed\xa3", +"\x8e\x4d" => "\x8f\xe0\xae", +"\x8e\x4e" => "\x8f\xe0\xaf", +"\x8e\x4f" => "\x8f\xe0\xb0", +"\x8e\x50" => "\xed\xa4", +"\x8e\x54" => "\x8f\xe0\xb1", +"\x8e\x55" => "\xed\xab", +"\x8e\x59" => "\xed\xa6", +"\x8e\x5b" => "\x8f\xe0\xb2", +"\x8e\x5c" => "\x8f\xe0\xb3", +"\x8e\x5d" => "\x8f\xe0\xb4", +"\x8e\x5e" => "\x8f\xe0\xb5", +"\x8e\x5f" => "\xc0\xd8", +"\x8e\x60" => "\xed\xa8", +"\x8e\x61" => "\x8f\xe0\xb6", +"\x8e\x62" => "\x8f\xe0\xb7", +"\x8e\x63" => "\xed\xaa", +"\x8e\x64" => "\xed\xa7", +"\x8e\x69" => "\x8f\xe0\xb8", +"\x8e\x6c" => "\x8f\xe0\xb9", +"\x8e\x6d" => "\x8f\xe0\xba", +"\x8e\x6f" => "\x8f\xe0\xbb", +"\x8e\x70" => "\x8f\xe0\xbc", +"\x8e\x71" => "\x8f\xe0\xbd", +"\x8e\x72" => "\xed\xad", +"\x8e\x74" => "\xbd\xb3", +"\x8e\x76" => "\xed\xac", +"\x8e\x79" => "\x8f\xe0\xbe", +"\x8e\x7a" => "\x8f\xe0\xbf", +"\x8e\x7b" => "\x8f\xe0\xc0", +"\x8e\x7c" => "\xed\xae", +"\x8e\x81" => "\xed\xaf", +"\x8e\x82" => "\x8f\xe0\xc1", +"\x8e\x83" => "\x8f\xe0\xc2", +"\x8e\x84" => "\xed\xb2", +"\x8e\x85" => "\xed\xb1", +"\x8e\x87" => "\xed\xb0", +"\x8e\x89" => "\x8f\xe0\xc3", +"\x8e\x8a" => "\xed\xb4", +"\x8e\x8b" => "\xed\xb3", +"\x8e\x8d" => "\xcc\xf6", +"\x8e\x90" => "\x8f\xe0\xc4", +"\x8e\x91" => "\xed\xb6", +"\x8e\x92" => "\x8f\xe0\xc5", +"\x8e\x93" => "\xed\xb5", +"\x8e\x94" => "\xed\xb7", +"\x8e\x95" => "\x8f\xe0\xc6", +"\x8e\x99" => "\xed\xb8", +"\x8e\x9a" => "\x8f\xe0\xc7", +"\x8e\x9b" => "\x8f\xe0\xc8", +"\x8e\x9d" => "\x8f\xe0\xc9", +"\x8e\x9e" => "\x8f\xe0\xca", +"\x8e\xa1" => "\xed\xba", +"\x8e\xa2" => "\x8f\xe0\xcb", +"\x8e\xa7" => "\x8f\xe0\xcc", +"\x8e\xa9" => "\x8f\xe0\xcd", +"\x8e\xaa" => "\xed\xb9", +"\x8e\xab" => "\xbf\xc8", +"\x8e\xac" => "\xed\xbb", +"\x8e\xad" => "\x8f\xe0\xce", +"\x8e\xae" => "\x8f\xe0\xcf", +"\x8e\xaf" => "\xb6\xed", +"\x8e\xb0" => "\xed\xbc", +"\x8e\xb1" => "\xed\xbe", +"\x8e\xb3" => "\x8f\xe0\xd0", +"\x8e\xb5" => "\x8f\xe0\xd1", +"\x8e\xba" => "\x8f\xe0\xd2", +"\x8e\xbb" => "\x8f\xe0\xd3", +"\x8e\xbe" => "\xed\xbf", +"\x8e\xc0" => "\x8f\xe0\xd4", +"\x8e\xc1" => "\x8f\xe0\xd5", +"\x8e\xc3" => "\x8f\xe0\xd6", +"\x8e\xc4" => "\x8f\xe0\xd7", +"\x8e\xc5" => "\xed\xc0", +"\x8e\xc6" => "\xed\xbd", +"\x8e\xc7" => "\x8f\xe0\xd8", +"\x8e\xc8" => "\xed\xc1", +"\x8e\xca" => "\xbc\xd6", +"\x8e\xcb" => "\xed\xc2", +"\x8e\xcc" => "\xb5\xb0", +"\x8e\xcd" => "\xb7\xb3", +"\x8e\xcf" => "\x8f\xe0\xd9", +"\x8e\xd1" => "\x8f\xe0\xda", +"\x8e\xd2" => "\xb8\xae", +"\x8e\xd4" => "\x8f\xe0\xdb", +"\x8e\xdb" => "\xed\xc3", +"\x8e\xdc" => "\x8f\xe0\xdc", +"\x8e\xdf" => "\xc6\xf0", +"\x8e\xe2" => "\xc5\xbe", +"\x8e\xe3" => "\xed\xc4", +"\x8e\xe8" => "\x8f\xe0\xdd", +"\x8e\xeb" => "\xed\xc7", +"\x8e\xed" => "\x8f\xe0\xe4", +"\x8e\xee" => "\x8f\xe0\xde", +"\x8e\xf0" => "\x8f\xe0\xdf", +"\x8e\xf1" => "\x8f\xe0\xe0", +"\x8e\xf7" => "\x8f\xe0\xe1", +"\x8e\xf8" => "\xbc\xb4", +"\x8e\xf9" => "\x8f\xe0\xe2", +"\x8e\xfa" => "\x8f\xe0\xe3", +"\x8e\xfb" => "\xed\xc6", +"\x8e\xfc" => "\xed\xc5", +"\x8e\xfd" => "\xb7\xda", +"\x8e\xfe" => "\xed\xc8", +"\x8f\x00" => "\x8f\xe0\xe5", +"\x8f\x02" => "\x8f\xe0\xe6", +"\x8f\x03" => "\xb3\xd3", +"\x8f\x05" => "\xed\xca", +"\x8f\x07" => "\x8f\xe0\xe7", +"\x8f\x08" => "\x8f\xe0\xe8", +"\x8f\x09" => "\xba\xdc", +"\x8f\x0a" => "\xed\xc9", +"\x8f\x0c" => "\xed\xd2", +"\x8f\x0f" => "\x8f\xe0\xe9", +"\x8f\x10" => "\x8f\xe0\xea", +"\x8f\x12" => "\xed\xcc", +"\x8f\x13" => "\xed\xce", +"\x8f\x14" => "\xca\xe5", +"\x8f\x15" => "\xed\xcb", +"\x8f\x16" => "\x8f\xe0\xeb", +"\x8f\x17" => "\x8f\xe0\xec", +"\x8f\x18" => "\x8f\xe0\xed", +"\x8f\x19" => "\xed\xcd", +"\x8f\x1b" => "\xed\xd1", +"\x8f\x1c" => "\xed\xcf", +"\x8f\x1d" => "\xb5\xb1", +"\x8f\x1e" => "\x8f\xe0\xee", +"\x8f\x1f" => "\xed\xd0", +"\x8f\x20" => "\x8f\xe0\xef", +"\x8f\x21" => "\x8f\xe0\xf0", +"\x8f\x23" => "\x8f\xe0\xf1", +"\x8f\x25" => "\x8f\xe0\xf2", +"\x8f\x26" => "\xed\xd3", +"\x8f\x27" => "\x8f\xe0\xf3", +"\x8f\x28" => "\x8f\xe0\xf4", +"\x8f\x29" => "\xc7\xda", +"\x8f\x2a" => "\xce\xd8", +"\x8f\x2c" => "\x8f\xe0\xf5", +"\x8f\x2d" => "\x8f\xe0\xf6", +"\x8f\x2e" => "\x8f\xe0\xf7", +"\x8f\x2f" => "\xbd\xb4", +"\x8f\x33" => "\xed\xd4", +"\x8f\x34" => "\x8f\xe0\xf8", +"\x8f\x35" => "\x8f\xe0\xf9", +"\x8f\x36" => "\x8f\xe0\xfa", +"\x8f\x37" => "\x8f\xe0\xfb", +"\x8f\x38" => "\xcd\xa2", +"\x8f\x39" => "\xed\xd6", +"\x8f\x3a" => "\x8f\xe0\xfc", +"\x8f\x3b" => "\xed\xd5", +"\x8f\x3e" => "\xed\xd9", +"\x8f\x3f" => "\xcd\xc1", +"\x8f\x40" => "\x8f\xe0\xfd", +"\x8f\x41" => "\x8f\xe0\xfe", +"\x8f\x42" => "\xed\xd8", +"\x8f\x43" => "\x8f\xe1\xa1", +"\x8f\x44" => "\xb3\xed", +"\x8f\x45" => "\xed\xd7", +"\x8f\x46" => "\xed\xdc", +"\x8f\x47" => "\x8f\xe1\xa2", +"\x8f\x49" => "\xed\xdb", +"\x8f\x4c" => "\xed\xda", +"\x8f\x4d" => "\xc5\xb2", +"\x8f\x4e" => "\xed\xdd", +"\x8f\x4f" => "\x8f\xe1\xa3", +"\x8f\x51" => "\x8f\xe1\xa4", +"\x8f\x52" => "\x8f\xe1\xa5", +"\x8f\x53" => "\x8f\xe1\xa6", +"\x8f\x54" => "\x8f\xe1\xa7", +"\x8f\x55" => "\x8f\xe1\xa8", +"\x8f\x57" => "\xed\xde", +"\x8f\x58" => "\x8f\xe1\xa9", +"\x8f\x5c" => "\xed\xdf", +"\x8f\x5d" => "\x8f\xe1\xaa", +"\x8f\x5e" => "\x8f\xe1\xab", +"\x8f\x5f" => "\xb9\xec", +"\x8f\x61" => "\xb7\xa5", +"\x8f\x62" => "\xed\xe0", +"\x8f\x63" => "\xed\xe1", +"\x8f\x64" => "\xed\xe2", +"\x8f\x65" => "\x8f\xe1\xac", +"\x8f\x9b" => "\xbf\xc9", +"\x8f\x9c" => "\xed\xe3", +"\x8f\x9d" => "\x8f\xe1\xad", +"\x8f\x9e" => "\xbc\xad", +"\x8f\x9f" => "\xed\xe4", +"\x8f\xa0" => "\x8f\xe1\xae", +"\x8f\xa1" => "\x8f\xe1\xaf", +"\x8f\xa3" => "\xed\xe5", +"\x8f\xa4" => "\x8f\xe1\xb0", +"\x8f\xa5" => "\x8f\xe1\xb1", +"\x8f\xa6" => "\x8f\xe1\xb2", +"\x8f\xa7" => "\xd2\xa1", +"\x8f\xa8" => "\xd1\xfe", +"\x8f\xad" => "\xed\xe6", +"\x8f\xae" => "\xe5\xf0", +"\x8f\xaf" => "\xed\xe7", +"\x8f\xb0" => "\xc3\xa4", +"\x8f\xb1" => "\xbf\xab", +"\x8f\xb2" => "\xc7\xc0", +"\x8f\xb5" => "\x8f\xe1\xb3", +"\x8f\xb6" => "\x8f\xe1\xb4", +"\x8f\xb7" => "\xed\xe8", +"\x8f\xb8" => "\x8f\xe1\xb5", +"\x8f\xba" => "\xca\xd5", +"\x8f\xbb" => "\xc4\xd4", +"\x8f\xbc" => "\xb9\xfe", +"\x8f\xbe" => "\x8f\xe1\xb6", +"\x8f\xbf" => "\xc3\xa9", +"\x8f\xc0" => "\x8f\xe1\xb7", +"\x8f\xc1" => "\x8f\xe1\xb8", +"\x8f\xc2" => "\xb1\xaa", +"\x8f\xc4" => "\xcb\xf8", +"\x8f\xc5" => "\xbf\xd7", +"\x8f\xc6" => "\x8f\xe1\xb9", +"\x8f\xca" => "\x8f\xe1\xba", +"\x8f\xcb" => "\x8f\xe1\xbb", +"\x8f\xcd" => "\x8f\xe1\xbc", +"\x8f\xce" => "\xb7\xde", +"\x8f\xd0" => "\x8f\xe1\xbd", +"\x8f\xd1" => "\xb6\xe1", +"\x8f\xd2" => "\x8f\xe1\xbe", +"\x8f\xd3" => "\x8f\xe1\xbf", +"\x8f\xd4" => "\xca\xd6", +"\x8f\xd5" => "\x8f\xe1\xc0", +"\x8f\xda" => "\xed\xe9", +"\x8f\xe0" => "\x8f\xe1\xc1", +"\x8f\xe2" => "\xed\xeb", +"\x8f\xe3" => "\x8f\xe1\xc2", +"\x8f\xe4" => "\x8f\xe1\xc3", +"\x8f\xe5" => "\xed\xea", +"\x8f\xe6" => "\xb2\xe0", +"\x8f\xe8" => "\x8f\xe1\xc4", +"\x8f\xe9" => "\xc6\xf6", +"\x8f\xea" => "\xed\xec", +"\x8f\xeb" => "\xc7\xf7", +"\x8f\xed" => "\xc5\xb3", +"\x8f\xee" => "\x8f\xe1\xc5", +"\x8f\xef" => "\xed\xed", +"\x8f\xf0" => "\xbd\xd2", +"\x8f\xf1" => "\x8f\xe1\xc6", +"\x8f\xf4" => "\xed\xef", +"\x8f\xf5" => "\x8f\xe1\xc7", +"\x8f\xf6" => "\x8f\xe1\xc8", +"\x8f\xf7" => "\xcc\xc2", +"\x8f\xf8" => "\xed\xfe", +"\x8f\xf9" => "\xed\xf1", +"\x8f\xfa" => "\xed\xf2", +"\x8f\xfb" => "\x8f\xe1\xc9", +"\x8f\xfd" => "\xc4\xc9", +"\x8f\xfe" => "\x8f\xe1\xca", +"\x90\x00" => "\xc2\xe0", +"\x90\x01" => "\xc1\xf7", +"\x90\x02" => "\x8f\xe1\xcb", +"\x90\x03" => "\xc6\xa8", +"\x90\x04" => "\x8f\xe1\xcc", +"\x90\x05" => "\xed\xf0", +"\x90\x06" => "\xb5\xd5", +"\x90\x08" => "\x8f\xe1\xcd", +"\x90\x0b" => "\xed\xf9", +"\x90\x0c" => "\x8f\xe1\xce", +"\x90\x0d" => "\xed\xf6", +"\x90\x0e" => "\xee\xa5", +"\x90\x0f" => "\xc6\xa9", +"\x90\x10" => "\xc3\xe0", +"\x90\x11" => "\xed\xf3", +"\x90\x13" => "\xc4\xfe", +"\x90\x14" => "\xc5\xd3", +"\x90\x15" => "\xed\xf4", +"\x90\x16" => "\xed\xf8", +"\x90\x17" => "\xbf\xe0", +"\x90\x18" => "\x8f\xe1\xcf", +"\x90\x19" => "\xc7\xe7", +"\x90\x1a" => "\xc4\xcc", +"\x90\x1b" => "\x8f\xe1\xd0", +"\x90\x1d" => "\xc0\xc2", +"\x90\x1e" => "\xed\xf7", +"\x90\x1f" => "\xc2\xae", +"\x90\x20" => "\xc2\xa4", +"\x90\x21" => "\xed\xf5", +"\x90\x22" => "\xb0\xa9", +"\x90\x23" => "\xcf\xa2", +"\x90\x27" => "\xed\xfa", +"\x90\x28" => "\x8f\xe1\xd1", +"\x90\x29" => "\x8f\xe1\xd2", +"\x90\x2a" => "\x8f\xe1\xd4", +"\x90\x2c" => "\x8f\xe1\xd5", +"\x90\x2d" => "\x8f\xe1\xd6", +"\x90\x2e" => "\xc2\xe1", +"\x90\x2f" => "\x8f\xe1\xd3", +"\x90\x31" => "\xbd\xb5", +"\x90\x32" => "\xbf\xca", +"\x90\x33" => "\x8f\xe1\xd7", +"\x90\x34" => "\x8f\xe1\xd8", +"\x90\x35" => "\xed\xfc", +"\x90\x36" => "\xed\xfb", +"\x90\x37" => "\x8f\xe1\xd9", +"\x90\x38" => "\xb0\xef", +"\x90\x39" => "\xed\xfd", +"\x90\x3c" => "\xc9\xaf", +"\x90\x3e" => "\xee\xa7", +"\x90\x3f" => "\x8f\xe1\xda", +"\x90\x41" => "\xc6\xdb", +"\x90\x42" => "\xbf\xeb", +"\x90\x43" => "\x8f\xe1\xdb", +"\x90\x44" => "\x8f\xe1\xdc", +"\x90\x45" => "\xc3\xd9", +"\x90\x47" => "\xb6\xf8", +"\x90\x49" => "\xee\xa6", +"\x90\x4a" => "\xcd\xb7", +"\x90\x4b" => "\xb1\xbf", +"\x90\x4c" => "\x8f\xe1\xdd", +"\x90\x4d" => "\xca\xd7", +"\x90\x4e" => "\xb2\xe1", +"\x90\x4f" => "\xee\xa1", +"\x90\x50" => "\xee\xa2", +"\x90\x51" => "\xee\xa3", +"\x90\x52" => "\xee\xa4", +"\x90\x53" => "\xc6\xbb", +"\x90\x54" => "\xc3\xa3", +"\x90\x55" => "\xb0\xe3", +"\x90\x56" => "\xee\xa8", +"\x90\x58" => "\xee\xa9", +"\x90\x59" => "\xf4\xa3", +"\x90\x5b" => "\x8f\xe1\xde", +"\x90\x5c" => "\xc2\xbd", +"\x90\x5d" => "\x8f\xe1\xdf", +"\x90\x5e" => "\xee\xaa", +"\x90\x60" => "\xb1\xf3", +"\x90\x61" => "\xc1\xcc", +"\x90\x62" => "\x8f\xe1\xe0", +"\x90\x63" => "\xb8\xaf", +"\x90\x65" => "\xcd\xda", +"\x90\x66" => "\x8f\xe1\xe1", +"\x90\x67" => "\x8f\xe1\xe2", +"\x90\x68" => "\xee\xab", +"\x90\x69" => "\xc5\xac", +"\x90\x6c" => "\x8f\xe1\xe3", +"\x90\x6d" => "\xc1\xf8", +"\x90\x6e" => "\xbc\xd7", +"\x90\x6f" => "\xee\xac", +"\x90\x70" => "\x8f\xe1\xe4", +"\x90\x72" => "\xee\xaf", +"\x90\x74" => "\x8f\xe1\xe5", +"\x90\x75" => "\xbd\xe5", +"\x90\x76" => "\xee\xad", +"\x90\x77" => "\xc1\xab", +"\x90\x78" => "\xc1\xaa", +"\x90\x79" => "\x8f\xe1\xe6", +"\x90\x7a" => "\xb0\xe4", +"\x90\x7c" => "\xce\xcb", +"\x90\x7d" => "\xee\xb1", +"\x90\x7f" => "\xc8\xf2", +"\x90\x80" => "\xee\xb3", +"\x90\x81" => "\xee\xb2", +"\x90\x82" => "\xee\xb0", +"\x90\x83" => "\xe3\xe4", +"\x90\x84" => "\xb4\xd4", +"\x90\x85" => "\x8f\xe1\xe7", +"\x90\x87" => "\xed\xee", +"\x90\x88" => "\x8f\xe1\xe8", +"\x90\x89" => "\xee\xb5", +"\x90\x8a" => "\xee\xb4", +"\x90\x8b" => "\x8f\xe1\xe9", +"\x90\x8c" => "\x8f\xe1\xea", +"\x90\x8e" => "\x8f\xe1\xeb", +"\x90\x8f" => "\xee\xb6", +"\x90\x90" => "\x8f\xe1\xec", +"\x90\x91" => "\xcd\xb8", +"\x90\x95" => "\x8f\xe1\xed", +"\x90\x97" => "\x8f\xe1\xee", +"\x90\x98" => "\x8f\xe1\xef", +"\x90\x99" => "\x8f\xe1\xf0", +"\x90\x9b" => "\x8f\xe1\xf1", +"\x90\xa0" => "\x8f\xe1\xf2", +"\x90\xa1" => "\x8f\xe1\xf3", +"\x90\xa2" => "\x8f\xe1\xf4", +"\x90\xa3" => "\xc6\xe1", +"\x90\xa5" => "\x8f\xe1\xf5", +"\x90\xa6" => "\xcb\xae", +"\x90\xa8" => "\xee\xb7", +"\x90\xaa" => "\xbc\xd9", +"\x90\xaf" => "\xee\xb8", +"\x90\xb0" => "\x8f\xe1\xf6", +"\x90\xb1" => "\xee\xb9", +"\x90\xb2" => "\x8f\xe1\xf7", +"\x90\xb3" => "\x8f\xe1\xf8", +"\x90\xb4" => "\x8f\xe1\xf9", +"\x90\xb5" => "\xee\xba", +"\x90\xb6" => "\x8f\xe1\xfa", +"\x90\xb8" => "\xc5\xa1", +"\x90\xbd" => "\x8f\xe1\xfb", +"\x90\xbe" => "\x8f\xe1\xfd", +"\x90\xc1" => "\xb0\xea", +"\x90\xc3" => "\x8f\xe1\xfe", +"\x90\xc4" => "\x8f\xe2\xa1", +"\x90\xc5" => "\x8f\xe2\xa2", +"\x90\xc7" => "\x8f\xe2\xa3", +"\x90\xc8" => "\x8f\xe2\xa4", +"\x90\xca" => "\xb9\xd9", +"\x90\xcc" => "\x8f\xe1\xfc", +"\x90\xce" => "\xcf\xba", +"\x90\xd2" => "\x8f\xe2\xad", +"\x90\xd5" => "\x8f\xe2\xa5", +"\x90\xd7" => "\x8f\xe2\xa6", +"\x90\xd8" => "\x8f\xe2\xa7", +"\x90\xd9" => "\x8f\xe2\xa8", +"\x90\xdb" => "\xee\xbe", +"\x90\xdc" => "\x8f\xe2\xa9", +"\x90\xdd" => "\x8f\xe2\xaa", +"\x90\xdf" => "\x8f\xe2\xab", +"\x90\xe1" => "\xb7\xb4", +"\x90\xe2" => "\xee\xbb", +"\x90\xe4" => "\xee\xbc", +"\x90\xe5" => "\x8f\xe2\xac", +"\x90\xe8" => "\xc9\xf4", +"\x90\xeb" => "\x8f\xe2\xaf", +"\x90\xed" => "\xb3\xd4", +"\x90\xef" => "\x8f\xe2\xb0", +"\x90\xf0" => "\x8f\xe2\xb1", +"\x90\xf4" => "\x8f\xe2\xb2", +"\x90\xf5" => "\xcd\xb9", +"\x90\xf6" => "\x8f\xe2\xae", +"\x90\xf7" => "\xb6\xbf", +"\x90\xfd" => "\xc5\xd4", +"\x90\xfe" => "\x8f\xe2\xb3", +"\x90\xff" => "\x8f\xe2\xb4", +"\x91\x00" => "\x8f\xe2\xb5", +"\x91\x02" => "\xee\xbf", +"\x91\x04" => "\x8f\xe2\xb6", +"\x91\x05" => "\x8f\xe2\xb7", +"\x91\x06" => "\x8f\xe2\xb8", +"\x91\x08" => "\x8f\xe2\xb9", +"\x91\x0d" => "\x8f\xe2\xba", +"\x91\x10" => "\x8f\xe2\xbb", +"\x91\x12" => "\xee\xc0", +"\x91\x14" => "\x8f\xe2\xbc", +"\x91\x16" => "\x8f\xe2\xbd", +"\x91\x17" => "\x8f\xe2\xbe", +"\x91\x18" => "\x8f\xe2\xbf", +"\x91\x19" => "\xee\xc1", +"\x91\x1a" => "\x8f\xe2\xc0", +"\x91\x1c" => "\x8f\xe2\xc1", +"\x91\x1e" => "\x8f\xe2\xc2", +"\x91\x20" => "\x8f\xe2\xc3", +"\x91\x22" => "\x8f\xe2\xc5", +"\x91\x23" => "\x8f\xe2\xc6", +"\x91\x25" => "\x8f\xe2\xc4", +"\x91\x27" => "\x8f\xe2\xc7", +"\x91\x29" => "\x8f\xe2\xc8", +"\x91\x2d" => "\xc5\xa2", +"\x91\x2e" => "\x8f\xe2\xc9", +"\x91\x2f" => "\x8f\xe2\xca", +"\x91\x30" => "\xee\xc3", +"\x91\x31" => "\x8f\xe2\xcb", +"\x91\x32" => "\xee\xc2", +"\x91\x34" => "\x8f\xe2\xcc", +"\x91\x36" => "\x8f\xe2\xcd", +"\x91\x37" => "\x8f\xe2\xce", +"\x91\x39" => "\x8f\xe2\xcf", +"\x91\x3a" => "\x8f\xe2\xd0", +"\x91\x3c" => "\x8f\xe2\xd1", +"\x91\x3d" => "\x8f\xe2\xd2", +"\x91\x43" => "\x8f\xe2\xd3", +"\x91\x47" => "\x8f\xe2\xd4", +"\x91\x48" => "\x8f\xe2\xd5", +"\x91\x49" => "\xc6\xd3", +"\x91\x4a" => "\xee\xc4", +"\x91\x4b" => "\xbd\xb6", +"\x91\x4c" => "\xbc\xe0", +"\x91\x4d" => "\xc7\xdb", +"\x91\x4e" => "\xc3\xf1", +"\x91\x4f" => "\x8f\xe2\xd6", +"\x91\x52" => "\xbc\xf2", +"\x91\x53" => "\x8f\xe2\xd7", +"\x91\x54" => "\xbf\xec", +"\x91\x56" => "\xee\xc5", +"\x91\x57" => "\x8f\xe2\xd8", +"\x91\x58" => "\xee\xc6", +"\x91\x59" => "\x8f\xe2\xd9", +"\x91\x5a" => "\x8f\xe2\xda", +"\x91\x5b" => "\x8f\xe2\xdb", +"\x91\x61" => "\x8f\xe2\xdc", +"\x91\x62" => "\xbf\xdd", +"\x91\x63" => "\xee\xc7", +"\x91\x64" => "\x8f\xe2\xdd", +"\x91\x65" => "\xee\xc8", +"\x91\x67" => "\x8f\xe2\xde", +"\x91\x69" => "\xee\xc9", +"\x91\x6a" => "\xcd\xef", +"\x91\x6c" => "\xbd\xb7", +"\x91\x6d" => "\x8f\xe2\xdf", +"\x91\x72" => "\xee\xcb", +"\x91\x73" => "\xee\xca", +"\x91\x74" => "\x8f\xe2\xe0", +"\x91\x75" => "\xb9\xda", +"\x91\x77" => "\xb9\xf3", +"\x91\x78" => "\xbb\xc0", +"\x91\x79" => "\x8f\xe2\xe1", +"\x91\x7a" => "\x8f\xe2\xe2", +"\x91\x7b" => "\x8f\xe2\xe3", +"\x91\x81" => "\x8f\xe2\xe4", +"\x91\x82" => "\xee\xce", +"\x91\x83" => "\x8f\xe2\xe5", +"\x91\x85" => "\x8f\xe2\xe6", +"\x91\x86" => "\x8f\xe2\xe7", +"\x91\x87" => "\xbd\xe6", +"\x91\x89" => "\xee\xcd", +"\x91\x8a" => "\x8f\xe2\xe8", +"\x91\x8b" => "\xee\xcc", +"\x91\x8d" => "\xc2\xe9", +"\x91\x8e" => "\x8f\xe2\xe9", +"\x91\x90" => "\xb8\xef", +"\x91\x91" => "\x8f\xe2\xea", +"\x91\x92" => "\xc0\xc3", +"\x91\x93" => "\x8f\xe2\xeb", +"\x91\x94" => "\x8f\xe2\xec", +"\x91\x95" => "\x8f\xe2\xed", +"\x91\x97" => "\xc8\xb0", +"\x91\x98" => "\x8f\xe2\xee", +"\x91\x9c" => "\xbd\xb9", +"\x91\x9e" => "\x8f\xe2\xef", +"\x91\xa1" => "\x8f\xe2\xf0", +"\x91\xa2" => "\xee\xcf", +"\x91\xa4" => "\xbe\xdf", +"\x91\xa6" => "\x8f\xe2\xf1", +"\x91\xa8" => "\x8f\xe2\xf2", +"\x91\xaa" => "\xee\xd2", +"\x91\xab" => "\xee\xd0", +"\x91\xac" => "\x8f\xe2\xf3", +"\x91\xad" => "\x8f\xe2\xf4", +"\x91\xae" => "\x8f\xe2\xf5", +"\x91\xaf" => "\xee\xd1", +"\x91\xb0" => "\x8f\xe2\xf6", +"\x91\xb1" => "\x8f\xe2\xf7", +"\x91\xb2" => "\x8f\xe2\xf8", +"\x91\xb3" => "\x8f\xe2\xf9", +"\x91\xb4" => "\xee\xd4", +"\x91\xb5" => "\xee\xd3", +"\x91\xb6" => "\x8f\xe2\xfa", +"\x91\xb8" => "\xbe\xfa", +"\x91\xba" => "\xee\xd5", +"\x91\xbb" => "\x8f\xe2\xfb", +"\x91\xbc" => "\x8f\xe2\xfc", +"\x91\xbd" => "\x8f\xe2\xfd", +"\x91\xbf" => "\x8f\xe2\xfe", +"\x91\xc0" => "\xee\xd6", +"\x91\xc1" => "\xee\xd7", +"\x91\xc2" => "\x8f\xe3\xa1", +"\x91\xc3" => "\x8f\xe3\xa2", +"\x91\xc5" => "\x8f\xe3\xa3", +"\x91\xc6" => "\xc8\xd0", +"\x91\xc7" => "\xba\xd3", +"\x91\xc8" => "\xbc\xe1", +"\x91\xc9" => "\xee\xd8", +"\x91\xcb" => "\xee\xd9", +"\x91\xcc" => "\xce\xa4", +"\x91\xcd" => "\xbd\xc5", +"\x91\xce" => "\xcc\xee", +"\x91\xcf" => "\xce\xcc", +"\x91\xd0" => "\xee\xda", +"\x91\xd1" => "\xb6\xe2", +"\x91\xd3" => "\x8f\xe3\xa4", +"\x91\xd4" => "\x8f\xe3\xa5", +"\x91\xd6" => "\xee\xdb", +"\x91\xd7" => "\x8f\xe3\xa6", +"\x91\xd8" => "\xc5\xa3", +"\x91\xd9" => "\x8f\xe3\xa7", +"\x91\xda" => "\x8f\xe3\xa8", +"\x91\xdb" => "\xee\xde", +"\x91\xdc" => "\xb3\xf8", +"\x91\xdd" => "\xbf\xcb", +"\x91\xde" => "\x8f\xe3\xa9", +"\x91\xdf" => "\xee\xdc", +"\x91\xe1" => "\xee\xdd", +"\x91\xe3" => "\xc4\xe0", +"\x91\xe4" => "\x8f\xe3\xaa", +"\x91\xe5" => "\x8f\xe3\xab", +"\x91\xe6" => "\xcb\xd5", +"\x91\xe7" => "\xb6\xfc", +"\x91\xe9" => "\x8f\xe3\xac", +"\x91\xea" => "\x8f\xe3\xad", +"\x91\xec" => "\x8f\xe3\xae", +"\x91\xed" => "\x8f\xe3\xaf", +"\x91\xee" => "\x8f\xe3\xb0", +"\x91\xef" => "\x8f\xe3\xb1", +"\x91\xf0" => "\x8f\xe3\xb2", +"\x91\xf1" => "\x8f\xe3\xb3", +"\x91\xf5" => "\xee\xe0", +"\x91\xf6" => "\xee\xe1", +"\x91\xf7" => "\x8f\xe3\xb4", +"\x91\xf9" => "\x8f\xe3\xb5", +"\x91\xfb" => "\x8f\xe3\xb6", +"\x91\xfc" => "\xee\xdf", +"\x91\xfd" => "\x8f\xe3\xb7", +"\x91\xff" => "\xee\xe3", +"\x92\x00" => "\x8f\xe3\xb8", +"\x92\x01" => "\x8f\xe3\xb9", +"\x92\x04" => "\x8f\xe3\xba", +"\x92\x05" => "\x8f\xe3\xbb", +"\x92\x06" => "\x8f\xe3\xbc", +"\x92\x07" => "\x8f\xe3\xbd", +"\x92\x09" => "\x8f\xe3\xbe", +"\x92\x0a" => "\x8f\xe3\xbf", +"\x92\x0c" => "\x8f\xe3\xc0", +"\x92\x0d" => "\xc6\xdf", +"\x92\x0e" => "\xb3\xc3", +"\x92\x10" => "\x8f\xe3\xc1", +"\x92\x11" => "\xee\xe7", +"\x92\x12" => "\x8f\xe3\xc2", +"\x92\x13" => "\x8f\xe3\xc3", +"\x92\x14" => "\xee\xe4", +"\x92\x15" => "\xee\xe6", +"\x92\x16" => "\x8f\xe3\xc4", +"\x92\x18" => "\x8f\xe3\xc5", +"\x92\x1c" => "\x8f\xe3\xc6", +"\x92\x1d" => "\x8f\xe3\xc7", +"\x92\x1e" => "\xee\xe2", +"\x92\x23" => "\x8f\xe3\xc8", +"\x92\x24" => "\x8f\xe3\xc9", +"\x92\x25" => "\x8f\xe3\xca", +"\x92\x26" => "\x8f\xe3\xcb", +"\x92\x28" => "\x8f\xe3\xcc", +"\x92\x29" => "\xef\xcf", +"\x92\x2c" => "\xee\xe5", +"\x92\x2e" => "\x8f\xe3\xcd", +"\x92\x2f" => "\x8f\xe3\xce", +"\x92\x30" => "\x8f\xe3\xcf", +"\x92\x33" => "\x8f\xe3\xd0", +"\x92\x34" => "\xce\xeb", +"\x92\x35" => "\x8f\xe3\xd1", +"\x92\x36" => "\x8f\xe3\xd2", +"\x92\x37" => "\xb8\xda", +"\x92\x38" => "\x8f\xe3\xd3", +"\x92\x39" => "\x8f\xe3\xd4", +"\x92\x3a" => "\x8f\xe3\xd5", +"\x92\x3c" => "\x8f\xe3\xd6", +"\x92\x3e" => "\x8f\xe3\xd7", +"\x92\x3f" => "\xee\xef", +"\x92\x40" => "\x8f\xe3\xd8", +"\x92\x42" => "\x8f\xe3\xd9", +"\x92\x43" => "\x8f\xe3\xda", +"\x92\x44" => "\xc5\xb4", +"\x92\x45" => "\xee\xea", +"\x92\x46" => "\x8f\xe3\xdb", +"\x92\x47" => "\x8f\xe3\xdc", +"\x92\x48" => "\xee\xed", +"\x92\x49" => "\xee\xeb", +"\x92\x4a" => "\x8f\xe3\xdd", +"\x92\x4b" => "\xee\xf0", +"\x92\x4d" => "\x8f\xe3\xde", +"\x92\x4e" => "\x8f\xe3\xdf", +"\x92\x4f" => "\x8f\xe3\xe0", +"\x92\x50" => "\xee\xf1", +"\x92\x51" => "\x8f\xe3\xe1", +"\x92\x57" => "\xee\xe9", +"\x92\x58" => "\x8f\xe3\xe2", +"\x92\x59" => "\x8f\xe3\xe3", +"\x92\x5a" => "\xee\xf6", +"\x92\x5b" => "\xb1\xf4", +"\x92\x5c" => "\x8f\xe3\xe4", +"\x92\x5d" => "\x8f\xe3\xe5", +"\x92\x5e" => "\xee\xe8", +"\x92\x60" => "\x8f\xe3\xe6", +"\x92\x61" => "\x8f\xe3\xe7", +"\x92\x62" => "\xc8\xad", +"\x92\x64" => "\xee\xec", +"\x92\x65" => "\x8f\xe3\xe8", +"\x92\x66" => "\xbe\xe0", +"\x92\x67" => "\x8f\xe3\xe9", +"\x92\x68" => "\x8f\xe3\xea", +"\x92\x69" => "\x8f\xe3\xeb", +"\x92\x6e" => "\x8f\xe3\xec", +"\x92\x6f" => "\x8f\xe3\xed", +"\x92\x70" => "\x8f\xe3\xee", +"\x92\x71" => "\xb9\xdb", +"\x92\x75" => "\x8f\xe3\xef", +"\x92\x76" => "\x8f\xe3\xf0", +"\x92\x77" => "\x8f\xe3\xf1", +"\x92\x78" => "\x8f\xe3\xf2", +"\x92\x79" => "\x8f\xe3\xf3", +"\x92\x7b" => "\x8f\xe3\xf4", +"\x92\x7c" => "\x8f\xe3\xf5", +"\x92\x7d" => "\x8f\xe3\xf6", +"\x92\x7e" => "\xcb\xc8", +"\x92\x7f" => "\x8f\xe3\xf7", +"\x92\x80" => "\xb6\xe4", +"\x92\x83" => "\xbd\xc6", +"\x92\x85" => "\xc6\xbc", +"\x92\x88" => "\x8f\xe3\xf8", +"\x92\x89" => "\x8f\xe3\xf9", +"\x92\x8a" => "\x8f\xe3\xfa", +"\x92\x8d" => "\x8f\xe3\xfb", +"\x92\x8e" => "\x8f\xe3\xfc", +"\x92\x91" => "\xc1\xad", +"\x92\x92" => "\x8f\xe3\xfd", +"\x92\x93" => "\xee\xf4", +"\x92\x95" => "\xee\xee", +"\x92\x96" => "\xee\xf3", +"\x92\x97" => "\x8f\xe3\xfe", +"\x92\x98" => "\xcc\xc3", +"\x92\x99" => "\x8f\xe4\xa1", +"\x92\x9a" => "\xc4\xb8", +"\x92\x9b" => "\xee\xf5", +"\x92\x9c" => "\xee\xf2", +"\x92\x9f" => "\x8f\xe4\xa2", +"\x92\xa0" => "\x8f\xe4\xa3", +"\x92\xa4" => "\x8f\xe4\xa4", +"\x92\xa5" => "\x8f\xe4\xa5", +"\x92\xa7" => "\x8f\xe4\xa6", +"\x92\xa8" => "\x8f\xe4\xa7", +"\x92\xab" => "\x8f\xe4\xa8", +"\x92\xad" => "\xc1\xac", +"\x92\xaf" => "\x8f\xe4\xa9", +"\x92\xb2" => "\x8f\xe4\xaa", +"\x92\xb6" => "\x8f\xe4\xab", +"\x92\xb7" => "\xee\xf9", +"\x92\xb8" => "\x8f\xe4\xac", +"\x92\xb9" => "\xee\xf8", +"\x92\xba" => "\x8f\xe4\xad", +"\x92\xbb" => "\x8f\xe4\xae", +"\x92\xbc" => "\x8f\xe4\xaf", +"\x92\xbd" => "\x8f\xe4\xb0", +"\x92\xbf" => "\x8f\xe4\xb1", +"\x92\xc0" => "\x8f\xe4\xb2", +"\x92\xc1" => "\x8f\xe4\xb3", +"\x92\xc2" => "\x8f\xe4\xb4", +"\x92\xc3" => "\x8f\xe4\xb5", +"\x92\xc5" => "\x8f\xe4\xb6", +"\x92\xc6" => "\x8f\xe4\xb7", +"\x92\xc7" => "\x8f\xe4\xb8", +"\x92\xc8" => "\x8f\xe4\xb9", +"\x92\xcb" => "\x8f\xe4\xba", +"\x92\xcc" => "\x8f\xe4\xbb", +"\x92\xcd" => "\x8f\xe4\xbc", +"\x92\xce" => "\x8f\xe4\xbd", +"\x92\xcf" => "\xee\xf7", +"\x92\xd0" => "\x8f\xe4\xbe", +"\x92\xd2" => "\xcb\xaf", +"\x92\xd3" => "\x8f\xe4\xbf", +"\x92\xd5" => "\x8f\xe4\xc0", +"\x92\xd7" => "\x8f\xe4\xc1", +"\x92\xd8" => "\x8f\xe4\xc2", +"\x92\xd9" => "\x8f\xe4\xc3", +"\x92\xdc" => "\x8f\xe4\xc4", +"\x92\xdd" => "\x8f\xe4\xc5", +"\x92\xdf" => "\x8f\xe4\xc6", +"\x92\xe0" => "\x8f\xe4\xc7", +"\x92\xe1" => "\x8f\xe4\xc8", +"\x92\xe3" => "\x8f\xe4\xc9", +"\x92\xe4" => "\xbd\xfb", +"\x92\xe5" => "\x8f\xe4\xca", +"\x92\xe7" => "\x8f\xe4\xcb", +"\x92\xe8" => "\x8f\xe4\xcc", +"\x92\xe9" => "\xee\xfa", +"\x92\xea" => "\xca\xdf", +"\x92\xec" => "\x8f\xe4\xcd", +"\x92\xed" => "\xb1\xd4", +"\x92\xee" => "\x8f\xe4\xce", +"\x92\xf0" => "\x8f\xe4\xcf", +"\x92\xf2" => "\xc9\xc6", +"\x92\xf3" => "\xc3\xf2", +"\x92\xf8" => "\xb5\xf8", +"\x92\xf9" => "\x8f\xe4\xd0", +"\x92\xfa" => "\xee\xfc", +"\x92\xfb" => "\x8f\xe4\xd1", +"\x92\xfc" => "\xb9\xdd", +"\x92\xff" => "\x8f\xe4\xd2", +"\x93\x00" => "\x8f\xe4\xd3", +"\x93\x02" => "\x8f\xe4\xd4", +"\x93\x06" => "\xbb\xac", +"\x93\x08" => "\x8f\xe4\xd5", +"\x93\x0d" => "\x8f\xe4\xd6", +"\x93\x0f" => "\xee\xfb", +"\x93\x10" => "\xbf\xed", +"\x93\x11" => "\x8f\xe4\xd7", +"\x93\x14" => "\x8f\xe4\xd8", +"\x93\x15" => "\x8f\xe4\xd9", +"\x93\x18" => "\xbf\xee", +"\x93\x19" => "\xef\xa1", +"\x93\x1a" => "\xef\xa3", +"\x93\x1c" => "\x8f\xe4\xda", +"\x93\x1d" => "\x8f\xe4\xdb", +"\x93\x1e" => "\x8f\xe4\xdc", +"\x93\x1f" => "\x8f\xe4\xdd", +"\x93\x20" => "\xbe\xfb", +"\x93\x21" => "\x8f\xe4\xde", +"\x93\x22" => "\xef\xa2", +"\x93\x23" => "\xef\xa4", +"\x93\x24" => "\x8f\xe4\xdf", +"\x93\x25" => "\x8f\xe4\xe0", +"\x93\x26" => "\xb6\xd3", +"\x93\x27" => "\x8f\xe4\xe1", +"\x93\x28" => "\xc9\xc5", +"\x93\x29" => "\x8f\xe4\xe2", +"\x93\x2a" => "\x8f\xe4\xe3", +"\x93\x2b" => "\xbc\xe2", +"\x93\x2c" => "\xcf\xa3", +"\x93\x2e" => "\xee\xfe", +"\x93\x2f" => "\xba\xf8", +"\x93\x32" => "\xcf\xbf", +"\x93\x33" => "\x8f\xe4\xe4", +"\x93\x34" => "\x8f\xe4\xe5", +"\x93\x35" => "\xef\xa6", +"\x93\x36" => "\x8f\xe4\xe6", +"\x93\x37" => "\x8f\xe4\xe7", +"\x93\x3a" => "\xef\xa5", +"\x93\x3b" => "\xef\xa7", +"\x93\x44" => "\xee\xfd", +"\x93\x47" => "\x8f\xe4\xe8", +"\x93\x48" => "\x8f\xe4\xe9", +"\x93\x49" => "\x8f\xe4\xea", +"\x93\x4b" => "\xc6\xe9", +"\x93\x4d" => "\xc5\xd5", +"\x93\x50" => "\x8f\xe4\xeb", +"\x93\x51" => "\x8f\xe4\xec", +"\x93\x52" => "\x8f\xe4\xed", +"\x93\x54" => "\xc4\xd7", +"\x93\x55" => "\x8f\xe4\xee", +"\x93\x56" => "\xef\xac", +"\x93\x57" => "\x8f\xe4\xef", +"\x93\x58" => "\x8f\xe4\xf0", +"\x93\x5a" => "\x8f\xe4\xf1", +"\x93\x5b" => "\xc3\xc3", +"\x93\x5c" => "\xef\xa8", +"\x93\x5e" => "\x8f\xe4\xf2", +"\x93\x60" => "\xef\xa9", +"\x93\x64" => "\x8f\xe4\xf3", +"\x93\x65" => "\x8f\xe4\xf4", +"\x93\x67" => "\x8f\xe4\xf5", +"\x93\x69" => "\x8f\xe4\xf6", +"\x93\x6a" => "\x8f\xe4\xf7", +"\x93\x6c" => "\xb7\xad", +"\x93\x6d" => "\x8f\xe4\xf8", +"\x93\x6e" => "\xef\xab", +"\x93\x6f" => "\x8f\xe4\xf9", +"\x93\x70" => "\x8f\xe4\xfa", +"\x93\x71" => "\x8f\xe4\xfb", +"\x93\x73" => "\x8f\xe4\xfc", +"\x93\x74" => "\x8f\xe4\xfd", +"\x93\x75" => "\xb8\xb0", +"\x93\x76" => "\x8f\xe4\xfe", +"\x93\x7a" => "\x8f\xe5\xa1", +"\x93\x7c" => "\xef\xaa", +"\x93\x7d" => "\x8f\xe5\xa2", +"\x93\x7e" => "\xbe\xe1", +"\x93\x7f" => "\x8f\xe5\xa3", +"\x93\x80" => "\x8f\xe5\xa4", +"\x93\x81" => "\x8f\xe5\xa5", +"\x93\x82" => "\x8f\xe5\xa6", +"\x93\x88" => "\x8f\xe5\xa7", +"\x93\x8a" => "\x8f\xe5\xa8", +"\x93\x8b" => "\x8f\xe5\xa9", +"\x93\x8c" => "\xb3\xf9", +"\x93\x8d" => "\x8f\xe5\xaa", +"\x93\x8f" => "\x8f\xe5\xab", +"\x93\x92" => "\x8f\xe5\xac", +"\x93\x94" => "\xef\xb0", +"\x93\x95" => "\x8f\xe5\xad", +"\x93\x96" => "\xba\xbf", +"\x93\x97" => "\xc1\xf9", +"\x93\x98" => "\x8f\xe5\xae", +"\x93\x9a" => "\xc4\xca", +"\x93\x9b" => "\x8f\xe5\xaf", +"\x93\x9e" => "\x8f\xe5\xb0", +"\x93\xa1" => "\x8f\xe5\xb1", +"\x93\xa3" => "\x8f\xe5\xb2", +"\x93\xa4" => "\x8f\xe5\xb3", +"\x93\xa6" => "\x8f\xe5\xb4", +"\x93\xa7" => "\xb3\xbb", +"\x93\xa8" => "\x8f\xe5\xb5", +"\x93\xa9" => "\x8f\xe5\xbb", +"\x93\xab" => "\x8f\xe5\xb6", +"\x93\xac" => "\xef\xae", +"\x93\xad" => "\xef\xaf", +"\x93\xae" => "\xc4\xc3", +"\x93\xb0" => "\xef\xad", +"\x93\xb4" => "\x8f\xe5\xb7", +"\x93\xb5" => "\x8f\xe5\xb8", +"\x93\xb6" => "\x8f\xe5\xb9", +"\x93\xb9" => "\xef\xb1", +"\x93\xba" => "\x8f\xe5\xba", +"\x93\xc1" => "\x8f\xe5\xbc", +"\x93\xc3" => "\xef\xb7", +"\x93\xc4" => "\x8f\xe5\xbd", +"\x93\xc5" => "\x8f\xe5\xbe", +"\x93\xc6" => "\x8f\xe5\xbf", +"\x93\xc7" => "\x8f\xe5\xc0", +"\x93\xc8" => "\xef\xba", +"\x93\xc9" => "\x8f\xe5\xc1", +"\x93\xca" => "\x8f\xe5\xc2", +"\x93\xcb" => "\x8f\xe5\xc3", +"\x93\xcc" => "\x8f\xe5\xc4", +"\x93\xcd" => "\x8f\xe5\xc5", +"\x93\xd0" => "\xef\xb9", +"\x93\xd1" => "\xc5\xad", +"\x93\xd3" => "\x8f\xe5\xc6", +"\x93\xd6" => "\xef\xb2", +"\x93\xd7" => "\xef\xb3", +"\x93\xd8" => "\xef\xb6", +"\x93\xd9" => "\x8f\xe5\xc7", +"\x93\xdc" => "\x8f\xe5\xc8", +"\x93\xdd" => "\xef\xb8", +"\x93\xde" => "\x8f\xe5\xc9", +"\x93\xdf" => "\x8f\xe5\xca", +"\x93\xe1" => "\xb6\xc0", +"\x93\xe2" => "\x8f\xe5\xcb", +"\x93\xe4" => "\xef\xbb", +"\x93\xe5" => "\xef\xb5", +"\x93\xe6" => "\x8f\xe5\xcc", +"\x93\xe7" => "\x8f\xe5\xcd", +"\x93\xe8" => "\xef\xb4", +"\x93\xf7" => "\x8f\xe5\xcf", +"\x93\xf8" => "\x8f\xe5\xd0", +"\x93\xf9" => "\x8f\xe5\xce", +"\x93\xfa" => "\x8f\xe5\xd1", +"\x93\xfb" => "\x8f\xe5\xd2", +"\x93\xfd" => "\x8f\xe5\xd3", +"\x94\x01" => "\x8f\xe5\xd4", +"\x94\x02" => "\x8f\xe5\xd5", +"\x94\x03" => "\xef\xbf", +"\x94\x04" => "\x8f\xe5\xd6", +"\x94\x07" => "\xef\xc0", +"\x94\x08" => "\x8f\xe5\xd7", +"\x94\x09" => "\x8f\xe5\xd8", +"\x94\x0d" => "\x8f\xe5\xd9", +"\x94\x0e" => "\x8f\xe5\xda", +"\x94\x0f" => "\x8f\xe5\xdb", +"\x94\x10" => "\xef\xc1", +"\x94\x13" => "\xef\xbe", +"\x94\x14" => "\xef\xbd", +"\x94\x15" => "\x8f\xe5\xdc", +"\x94\x16" => "\x8f\xe5\xdd", +"\x94\x17" => "\x8f\xe5\xde", +"\x94\x18" => "\xbe\xe2", +"\x94\x19" => "\xc6\xaa", +"\x94\x1a" => "\xef\xbc", +"\x94\x1f" => "\x8f\xe5\xdf", +"\x94\x21" => "\xef\xc5", +"\x94\x2b" => "\xef\xc3", +"\x94\x2e" => "\x8f\xe5\xe0", +"\x94\x2f" => "\x8f\xe5\xe1", +"\x94\x31" => "\x8f\xe5\xe2", +"\x94\x32" => "\x8f\xe5\xe3", +"\x94\x33" => "\x8f\xe5\xe4", +"\x94\x34" => "\x8f\xe5\xe5", +"\x94\x35" => "\xef\xc4", +"\x94\x36" => "\xef\xc2", +"\x94\x38" => "\xc2\xf8", +"\x94\x3a" => "\xef\xc6", +"\x94\x3b" => "\x8f\xe5\xe6", +"\x94\x3d" => "\x8f\xe5\xe8", +"\x94\x3f" => "\x8f\xe5\xe7", +"\x94\x41" => "\xef\xc7", +"\x94\x43" => "\x8f\xe5\xe9", +"\x94\x44" => "\xef\xc9", +"\x94\x45" => "\x8f\xe5\xea", +"\x94\x48" => "\x8f\xe5\xeb", +"\x94\x4a" => "\x8f\xe5\xec", +"\x94\x4c" => "\x8f\xe5\xed", +"\x94\x51" => "\xb4\xd5", +"\x94\x52" => "\xef\xc8", +"\x94\x53" => "\xcc\xfa", +"\x94\x55" => "\x8f\xe5\xee", +"\x94\x59" => "\x8f\xe5\xef", +"\x94\x5a" => "\xef\xd4", +"\x94\x5b" => "\xef\xca", +"\x94\x5c" => "\x8f\xe5\xf0", +"\x94\x5e" => "\xef\xcd", +"\x94\x5f" => "\x8f\xe5\xf1", +"\x94\x60" => "\xef\xcb", +"\x94\x61" => "\x8f\xe5\xf2", +"\x94\x62" => "\xef\xcc", +"\x94\x63" => "\x8f\xe5\xf3", +"\x94\x68" => "\x8f\xe5\xf4", +"\x94\x6a" => "\xef\xce", +"\x94\x6b" => "\x8f\xe5\xf5", +"\x94\x6d" => "\x8f\xe5\xf6", +"\x94\x6e" => "\x8f\xe5\xf7", +"\x94\x6f" => "\x8f\xe5\xf8", +"\x94\x70" => "\xef\xd0", +"\x94\x71" => "\x8f\xe5\xf9", +"\x94\x72" => "\x8f\xe5\xfa", +"\x94\x75" => "\xef\xd1", +"\x94\x77" => "\xef\xd2", +"\x94\x7c" => "\xef\xd5", +"\x94\x7d" => "\xef\xd3", +"\x94\x7e" => "\xef\xd6", +"\x94\x7f" => "\xef\xd8", +"\x94\x81" => "\xef\xd7", +"\x94\x83" => "\x8f\xe5\xfc", +"\x94\x84" => "\x8f\xe5\xfb", +"\x95\x77" => "\xc4\xb9", +"\x95\x78" => "\x8f\xe5\xfd", +"\x95\x79" => "\x8f\xe5\xfe", +"\x95\x7e" => "\x8f\xe6\xa1", +"\x95\x80" => "\xcc\xe7", +"\x95\x82" => "\xef\xd9", +"\x95\x83" => "\xc1\xae", +"\x95\x84" => "\x8f\xe6\xa2", +"\x95\x87" => "\xef\xda", +"\x95\x88" => "\x8f\xe6\xa3", +"\x95\x89" => "\xca\xc4", +"\x95\x8a" => "\xef\xdb", +"\x95\x8b" => "\xb3\xab", +"\x95\x8c" => "\x8f\xe6\xa4", +"\x95\x8d" => "\x8f\xe6\xa5", +"\x95\x8e" => "\x8f\xe6\xa6", +"\x95\x8f" => "\xb1\xbc", +"\x95\x91" => "\xb4\xd7", +"\x95\x93" => "\xb4\xd6", +"\x95\x94" => "\xef\xdc", +"\x95\x96" => "\xef\xdd", +"\x95\x98" => "\xef\xde", +"\x95\x99" => "\xef\xdf", +"\x95\x9d" => "\x8f\xe6\xa7", +"\x95\x9e" => "\x8f\xe6\xa8", +"\x95\x9f" => "\x8f\xe6\xa9", +"\x95\xa0" => "\xef\xe0", +"\x95\xa1" => "\x8f\xe6\xaa", +"\x95\xa2" => "\xb4\xd8", +"\x95\xa3" => "\xb3\xd5", +"\x95\xa4" => "\xb9\xde", +"\x95\xa5" => "\xc8\xb6", +"\x95\xa6" => "\x8f\xe6\xab", +"\x95\xa7" => "\xef\xe2", +"\x95\xa8" => "\xef\xe1", +"\x95\xa9" => "\x8f\xe6\xac", +"\x95\xab" => "\x8f\xe6\xad", +"\x95\xac" => "\x8f\xe6\xae", +"\x95\xad" => "\xef\xe3", +"\x95\xb2" => "\xb1\xdc", +"\x95\xb4" => "\x8f\xe6\xaf", +"\x95\xb6" => "\x8f\xe6\xb0", +"\x95\xb9" => "\xef\xe6", +"\x95\xba" => "\x8f\xe6\xb1", +"\x95\xbb" => "\xef\xe5", +"\x95\xbc" => "\xef\xe4", +"\x95\xbd" => "\x8f\xe6\xb2", +"\x95\xbe" => "\xef\xe7", +"\x95\xbf" => "\x8f\xe6\xb3", +"\x95\xc3" => "\xef\xea", +"\x95\xc6" => "\x8f\xe6\xb4", +"\x95\xc7" => "\xb0\xc7", +"\x95\xc8" => "\x8f\xe6\xb5", +"\x95\xc9" => "\x8f\xe6\xb6", +"\x95\xca" => "\xef\xe8", +"\x95\xcb" => "\x8f\xe6\xb7", +"\x95\xcc" => "\xef\xec", +"\x95\xcd" => "\xef\xeb", +"\x95\xd0" => "\x8f\xe6\xb8", +"\x95\xd1" => "\x8f\xe6\xb9", +"\x95\xd2" => "\x8f\xe6\xba", +"\x95\xd3" => "\x8f\xe6\xbb", +"\x95\xd4" => "\xef\xee", +"\x95\xd5" => "\xef\xed", +"\x95\xd6" => "\xef\xef", +"\x95\xd8" => "\xc6\xae", +"\x95\xd9" => "\x8f\xe6\xbc", +"\x95\xda" => "\x8f\xe6\xbd", +"\x95\xdc" => "\xef\xf0", +"\x95\xdd" => "\x8f\xe6\xbe", +"\x95\xde" => "\x8f\xe6\xbf", +"\x95\xdf" => "\x8f\xe6\xc0", +"\x95\xe0" => "\x8f\xe6\xc1", +"\x95\xe1" => "\xef\xf1", +"\x95\xe2" => "\xef\xf3", +"\x95\xe4" => "\x8f\xe6\xc2", +"\x95\xe5" => "\xef\xf2", +"\x95\xe6" => "\x8f\xe6\xc3", +"\x96\x1c" => "\xc9\xec", +"\x96\x1d" => "\x8f\xe6\xc4", +"\x96\x1e" => "\x8f\xe6\xc5", +"\x96\x21" => "\xef\xf4", +"\x96\x22" => "\x8f\xe6\xc6", +"\x96\x24" => "\x8f\xe6\xc7", +"\x96\x25" => "\x8f\xe6\xc8", +"\x96\x26" => "\x8f\xe6\xc9", +"\x96\x28" => "\xef\xf5", +"\x96\x2a" => "\xba\xe5", +"\x96\x2c" => "\x8f\xe6\xca", +"\x96\x2e" => "\xef\xf6", +"\x96\x2f" => "\xef\xf7", +"\x96\x31" => "\x8f\xe6\xcb", +"\x96\x32" => "\xcb\xc9", +"\x96\x33" => "\x8f\xe6\xcc", +"\x96\x37" => "\x8f\xe6\xcd", +"\x96\x38" => "\x8f\xe6\xce", +"\x96\x39" => "\x8f\xe6\xcf", +"\x96\x3a" => "\x8f\xe6\xd0", +"\x96\x3b" => "\xc1\xcb", +"\x96\x3c" => "\x8f\xe6\xd1", +"\x96\x3d" => "\x8f\xe6\xd2", +"\x96\x3f" => "\xb0\xa4", +"\x96\x40" => "\xc2\xcb", +"\x96\x41" => "\x8f\xe6\xd3", +"\x96\x42" => "\xef\xf8", +"\x96\x44" => "\xc9\xed", +"\x96\x4b" => "\xef\xfb", +"\x96\x4c" => "\xef\xf9", +"\x96\x4d" => "\xb9\xdf", +"\x96\x4f" => "\xef\xfa", +"\x96\x50" => "\xb8\xc2", +"\x96\x52" => "\x8f\xe6\xd4", +"\x96\x54" => "\x8f\xe6\xd5", +"\x96\x56" => "\x8f\xe6\xd6", +"\x96\x57" => "\x8f\xe6\xd7", +"\x96\x58" => "\x8f\xe6\xd8", +"\x96\x5b" => "\xca\xc5", +"\x96\x5c" => "\xef\xfd", +"\x96\x5d" => "\xf0\xa1", +"\x96\x5e" => "\xef\xfe", +"\x96\x5f" => "\xf0\xa2", +"\x96\x61" => "\x8f\xe6\xd9", +"\x96\x62" => "\xb1\xa1", +"\x96\x63" => "\xbf\xd8", +"\x96\x64" => "\xbd\xfc", +"\x96\x65" => "\xb4\xd9", +"\x96\x66" => "\xf0\xa3", +"\x96\x6a" => "\xc7\xe6", +"\x96\x6c" => "\xf0\xa5", +"\x96\x6e" => "\x8f\xe6\xda", +"\x96\x70" => "\xb1\xa2", +"\x96\x72" => "\xf0\xa4", +"\x96\x73" => "\xc4\xc4", +"\x96\x74" => "\x8f\xe6\xdb", +"\x96\x75" => "\xce\xcd", +"\x96\x76" => "\xc6\xab", +"\x96\x77" => "\xef\xfc", +"\x96\x78" => "\xce\xa6", +"\x96\x7a" => "\xb8\xb1", +"\x96\x7b" => "\x8f\xe6\xdc", +"\x96\x7c" => "\x8f\xe6\xdd", +"\x96\x7d" => "\xcd\xdb", +"\x96\x7e" => "\x8f\xe6\xde", +"\x96\x7f" => "\x8f\xe6\xdf", +"\x96\x81" => "\x8f\xe6\xe0", +"\x96\x82" => "\x8f\xe6\xe1", +"\x96\x83" => "\x8f\xe6\xe2", +"\x96\x84" => "\x8f\xe6\xe3", +"\x96\x85" => "\xb6\xf9", +"\x96\x86" => "\xce\xb4", +"\x96\x88" => "\xb7\xa8", +"\x96\x89" => "\x8f\xe6\xe4", +"\x96\x8a" => "\xc2\xe2", +"\x96\x8b" => "\xe7\xa1", +"\x96\x8d" => "\xf0\xa6", +"\x96\x8e" => "\xb3\xac", +"\x96\x8f" => "\xbf\xef", +"\x96\x91" => "\x8f\xe6\xe5", +"\x96\x94" => "\xb3\xd6", +"\x96\x95" => "\xf0\xa8", +"\x96\x96" => "\x8f\xe6\xe6", +"\x96\x97" => "\xf0\xa9", +"\x96\x98" => "\xf0\xa7", +"\x96\x99" => "\xb7\xe4", +"\x96\x9a" => "\x8f\xe6\xe7", +"\x96\x9b" => "\xba\xdd", +"\x96\x9c" => "\xbe\xe3", +"\x96\x9d" => "\x8f\xe6\xe8", +"\x96\x9f" => "\x8f\xe6\xe9", +"\x96\xa0" => "\xb1\xa3", +"\x96\xa3" => "\xce\xd9", +"\x96\xa4" => "\x8f\xe6\xea", +"\x96\xa5" => "\x8f\xe6\xeb", +"\x96\xa6" => "\x8f\xe6\xec", +"\x96\xa7" => "\xf0\xab", +"\x96\xa8" => "\xee\xae", +"\x96\xa9" => "\x8f\xe6\xed", +"\x96\xaa" => "\xf0\xaa", +"\x96\xae" => "\x8f\xe6\xee", +"\x96\xaf" => "\x8f\xe6\xef", +"\x96\xb0" => "\xf0\xae", +"\x96\xb1" => "\xf0\xac", +"\x96\xb2" => "\xf0\xad", +"\x96\xb3" => "\x8f\xe6\xf0", +"\x96\xb4" => "\xf0\xaf", +"\x96\xb6" => "\xf0\xb0", +"\x96\xb7" => "\xce\xec", +"\x96\xb8" => "\xf0\xb1", +"\x96\xb9" => "\xf0\xb2", +"\x96\xba" => "\x8f\xe6\xf1", +"\x96\xbb" => "\xc0\xc9", +"\x96\xbc" => "\xc8\xbb", +"\x96\xc0" => "\xbf\xfd", +"\x96\xc1" => "\xb4\xe7", +"\x96\xc4" => "\xcd\xba", +"\x96\xc5" => "\xb2\xed", +"\x96\xc6" => "\xbd\xb8", +"\x96\xc7" => "\xb8\xdb", +"\x96\xc9" => "\xf0\xb5", +"\x96\xca" => "\x8f\xe6\xf2", +"\x96\xcb" => "\xf0\xb4", +"\x96\xcc" => "\xbb\xf3", +"\x96\xcd" => "\xf0\xb6", +"\x96\xce" => "\xf0\xb3", +"\x96\xd1" => "\xbb\xa8", +"\x96\xd2" => "\x8f\xe6\xf3", +"\x96\xd5" => "\xf0\xba", +"\x96\xd6" => "\xea\xad", +"\x96\xd8" => "\x8f\xe6\xf5", +"\x96\xd9" => "\xd2\xd6", +"\x96\xda" => "\x8f\xe6\xf6", +"\x96\xdb" => "\xbf\xf7", +"\x96\xdc" => "\xf0\xb8", +"\x96\xdd" => "\x8f\xe6\xf7", +"\x96\xde" => "\x8f\xe6\xf8", +"\x96\xdf" => "\x8f\xe6\xf9", +"\x96\xe2" => "\xce\xa5", +"\x96\xe3" => "\xc6\xf1", +"\x96\xe8" => "\xb1\xab", +"\x96\xe9" => "\x8f\xe6\xfa", +"\x96\xea" => "\xc0\xe3", +"\x96\xeb" => "\xbc\xb6", +"\x96\xef" => "\x8f\xe6\xfb", +"\x96\xf0" => "\xca\xb7", +"\x96\xf1" => "\x8f\xe6\xfc", +"\x96\xf2" => "\xb1\xc0", +"\x96\xf6" => "\xce\xed", +"\x96\xf7" => "\xcd\xeb", +"\x96\xf9" => "\xf0\xbb", +"\x96\xfa" => "\x8f\xe6\xfd", +"\x96\xfb" => "\xc5\xc5", +"\x97\x00" => "\xbc\xfb", +"\x97\x02" => "\x8f\xe6\xfe", +"\x97\x03" => "\x8f\xe7\xa1", +"\x97\x04" => "\xf0\xbc", +"\x97\x05" => "\x8f\xe7\xa2", +"\x97\x06" => "\xf0\xbd", +"\x97\x07" => "\xbf\xcc", +"\x97\x08" => "\xf0\xbe", +"\x97\x09" => "\x8f\xe7\xa3", +"\x97\x0a" => "\xce\xee", +"\x97\x0d" => "\xf0\xb9", +"\x97\x0e" => "\xf0\xc0", +"\x97\x0f" => "\xf0\xc2", +"\x97\x11" => "\xf0\xc1", +"\x97\x13" => "\xf0\xbf", +"\x97\x16" => "\xf0\xc3", +"\x97\x19" => "\xf0\xc4", +"\x97\x1a" => "\x8f\xe7\xa4", +"\x97\x1b" => "\x8f\xe7\xa5", +"\x97\x1c" => "\xc1\xfa", +"\x97\x1d" => "\x8f\xe7\xa6", +"\x97\x1e" => "\xb2\xe2", +"\x97\x21" => "\x8f\xe7\xa7", +"\x97\x22" => "\x8f\xe7\xa8", +"\x97\x23" => "\x8f\xe7\xa9", +"\x97\x24" => "\xf0\xc5", +"\x97\x27" => "\xcc\xb8", +"\x97\x28" => "\x8f\xe7\xaa", +"\x97\x2a" => "\xf0\xc6", +"\x97\x30" => "\xf0\xc7", +"\x97\x31" => "\x8f\xe7\xab", +"\x97\x32" => "\xcf\xaa", +"\x97\x33" => "\x8f\xe7\xac", +"\x97\x38" => "\xdb\xb1", +"\x97\x39" => "\xf0\xc8", +"\x97\x3d" => "\xf0\xc9", +"\x97\x3e" => "\xf0\xca", +"\x97\x41" => "\x8f\xe7\xad", +"\x97\x42" => "\xf0\xce", +"\x97\x43" => "\x8f\xe7\xae", +"\x97\x44" => "\xf0\xcb", +"\x97\x46" => "\xf0\xcc", +"\x97\x48" => "\xf0\xcd", +"\x97\x49" => "\xf0\xcf", +"\x97\x4a" => "\x8f\xe7\xaf", +"\x97\x4e" => "\x8f\xe7\xb0", +"\x97\x4f" => "\x8f\xe7\xb1", +"\x97\x52" => "\xc0\xc4", +"\x97\x55" => "\x8f\xe7\xb2", +"\x97\x56" => "\xcc\xf7", +"\x97\x57" => "\x8f\xe7\xb3", +"\x97\x58" => "\x8f\xe7\xb4", +"\x97\x59" => "\xc0\xc5", +"\x97\x5a" => "\x8f\xe7\xb5", +"\x97\x5b" => "\x8f\xe7\xb6", +"\x97\x5c" => "\xf0\xd0", +"\x97\x5e" => "\xc8\xf3", +"\x97\x60" => "\xf0\xd1", +"\x97\x61" => "\xf3\xd3", +"\x97\x62" => "\xcc\xcc", +"\x97\x63" => "\x8f\xe7\xb7", +"\x97\x64" => "\xf0\xd2", +"\x97\x66" => "\xf0\xd3", +"\x97\x67" => "\x8f\xe7\xb8", +"\x97\x68" => "\xf0\xd4", +"\x97\x69" => "\xb3\xd7", +"\x97\x6a" => "\x8f\xe7\xb9", +"\x97\x6b" => "\xf0\xd6", +"\x97\x6d" => "\xbf\xd9", +"\x97\x6e" => "\x8f\xe7\xba", +"\x97\x71" => "\xf0\xd7", +"\x97\x73" => "\x8f\xe7\xbb", +"\x97\x74" => "\xb7\xa4", +"\x97\x76" => "\x8f\xe7\xbc", +"\x97\x77" => "\x8f\xe7\xbd", +"\x97\x78" => "\x8f\xe7\xbe", +"\x97\x79" => "\xf0\xd8", +"\x97\x7a" => "\xf0\xdc", +"\x97\x7b" => "\x8f\xe7\xbf", +"\x97\x7c" => "\xf0\xda", +"\x97\x7d" => "\x8f\xe7\xc0", +"\x97\x7f" => "\x8f\xe7\xc1", +"\x97\x80" => "\x8f\xe7\xc2", +"\x97\x81" => "\xf0\xdb", +"\x97\x84" => "\xb3\xf3", +"\x97\x85" => "\xf0\xd9", +"\x97\x86" => "\xf0\xdd", +"\x97\x89" => "\x8f\xe7\xc3", +"\x97\x8b" => "\xf0\xde", +"\x97\x8d" => "\xb0\xc8", +"\x97\x8f" => "\xf0\xdf", +"\x97\x90" => "\xf0\xe0", +"\x97\x95" => "\x8f\xe7\xc4", +"\x97\x96" => "\x8f\xe7\xc5", +"\x97\x97" => "\x8f\xe7\xc6", +"\x97\x98" => "\xbe\xe4", +"\x97\x99" => "\x8f\xe7\xc7", +"\x97\x9a" => "\x8f\xe7\xc8", +"\x97\x9c" => "\xf0\xe1", +"\x97\x9e" => "\x8f\xe7\xc9", +"\x97\x9f" => "\x8f\xe7\xca", +"\x97\xa0" => "\xb5\xc7", +"\x97\xa2" => "\x8f\xe7\xcb", +"\x97\xa3" => "\xf0\xe4", +"\x97\xa6" => "\xf0\xe3", +"\x97\xa8" => "\xf0\xe2", +"\x97\xab" => "\xeb\xf1", +"\x97\xac" => "\x8f\xe7\xcc", +"\x97\xad" => "\xca\xdc", +"\x97\xae" => "\x8f\xe7\xcd", +"\x97\xb1" => "\x8f\xe7\xce", +"\x97\xb2" => "\x8f\xe7\xcf", +"\x97\xb3" => "\xf0\xe5", +"\x97\xb4" => "\xf0\xe6", +"\x97\xb5" => "\x8f\xe7\xd0", +"\x97\xb6" => "\x8f\xe7\xd1", +"\x97\xb8" => "\x8f\xe7\xd2", +"\x97\xb9" => "\x8f\xe7\xd3", +"\x97\xba" => "\x8f\xe7\xd4", +"\x97\xbc" => "\x8f\xe7\xd5", +"\x97\xbe" => "\x8f\xe7\xd6", +"\x97\xbf" => "\x8f\xe7\xd7", +"\x97\xc1" => "\x8f\xe7\xd8", +"\x97\xc3" => "\xf0\xe7", +"\x97\xc4" => "\x8f\xe7\xd9", +"\x97\xc5" => "\x8f\xe7\xda", +"\x97\xc6" => "\xf0\xe8", +"\x97\xc7" => "\x8f\xe7\xdb", +"\x97\xc8" => "\xf0\xe9", +"\x97\xc9" => "\x8f\xe7\xdc", +"\x97\xca" => "\x8f\xe7\xdd", +"\x97\xcb" => "\xf0\xea", +"\x97\xcc" => "\x8f\xe7\xde", +"\x97\xcd" => "\x8f\xe7\xdf", +"\x97\xce" => "\x8f\xe7\xe0", +"\x97\xd0" => "\x8f\xe7\xe1", +"\x97\xd1" => "\x8f\xe7\xe2", +"\x97\xd3" => "\xb4\xda", +"\x97\xd4" => "\x8f\xe7\xe3", +"\x97\xd7" => "\x8f\xe7\xe4", +"\x97\xd8" => "\x8f\xe7\xe5", +"\x97\xd9" => "\x8f\xe7\xe6", +"\x97\xdb" => "\x8f\xe7\xea", +"\x97\xdc" => "\xf0\xeb", +"\x97\xdd" => "\x8f\xe7\xe7", +"\x97\xde" => "\x8f\xe7\xe8", +"\x97\xe0" => "\x8f\xe7\xe9", +"\x97\xe1" => "\x8f\xe7\xeb", +"\x97\xe4" => "\x8f\xe7\xec", +"\x97\xed" => "\xf0\xec", +"\x97\xee" => "\xc7\xa3", +"\x97\xef" => "\x8f\xe7\xed", +"\x97\xf1" => "\x8f\xe7\xee", +"\x97\xf2" => "\xf0\xee", +"\x97\xf3" => "\xb2\xbb", +"\x97\xf4" => "\x8f\xe7\xef", +"\x97\xf5" => "\xf0\xf1", +"\x97\xf6" => "\xf0\xf0", +"\x97\xf7" => "\x8f\xe7\xf0", +"\x97\xf8" => "\x8f\xe7\xf1", +"\x97\xfa" => "\x8f\xe7\xf2", +"\x97\xfb" => "\xb1\xa4", +"\x97\xff" => "\xb6\xc1", +"\x98\x01" => "\xca\xc7", +"\x98\x02" => "\xc4\xba", +"\x98\x03" => "\xba\xa2", +"\x98\x05" => "\xb9\xe0", +"\x98\x06" => "\xbd\xe7", +"\x98\x07" => "\x8f\xe7\xf3", +"\x98\x08" => "\xbf\xdc", +"\x98\x0a" => "\x8f\xe7\xf4", +"\x98\x0c" => "\xf0\xf3", +"\x98\x0d" => "\x8f\xe7\xf6", +"\x98\x0e" => "\x8f\xe7\xf7", +"\x98\x0f" => "\xf0\xf2", +"\x98\x10" => "\xcd\xc2", +"\x98\x11" => "\xb4\xe8", +"\x98\x12" => "\xc8\xd2", +"\x98\x13" => "\xc6\xdc", +"\x98\x14" => "\x8f\xe7\xf8", +"\x98\x16" => "\x8f\xe7\xf9", +"\x98\x17" => "\xbf\xfc", +"\x98\x18" => "\xce\xce", +"\x98\x19" => "\x8f\xe7\xf5", +"\x98\x1a" => "\xb7\xdb", +"\x98\x1c" => "\x8f\xe7\xfa", +"\x98\x1e" => "\x8f\xe7\xfb", +"\x98\x20" => "\x8f\xe7\xfc", +"\x98\x21" => "\xf0\xf6", +"\x98\x23" => "\x8f\xe7\xfd", +"\x98\x24" => "\xf0\xf5", +"\x98\x25" => "\x8f\xe8\xa8", +"\x98\x26" => "\x8f\xe7\xfe", +"\x98\x2b" => "\x8f\xe8\xa1", +"\x98\x2c" => "\xcb\xcb", +"\x98\x2d" => "\xc6\xac", +"\x98\x2e" => "\x8f\xe8\xa2", +"\x98\x2f" => "\x8f\xe8\xa3", +"\x98\x30" => "\x8f\xe8\xa4", +"\x98\x32" => "\x8f\xe8\xa5", +"\x98\x33" => "\x8f\xe8\xa6", +"\x98\x34" => "\xb1\xd0", +"\x98\x35" => "\x8f\xe8\xa7", +"\x98\x37" => "\xf0\xf7", +"\x98\x38" => "\xf0\xf4", +"\x98\x3b" => "\xc9\xd1", +"\x98\x3c" => "\xcd\xea", +"\x98\x3d" => "\xf0\xf8", +"\x98\x3e" => "\x8f\xe8\xa9", +"\x98\x44" => "\x8f\xe8\xaa", +"\x98\x46" => "\xf0\xf9", +"\x98\x47" => "\x8f\xe8\xab", +"\x98\x4a" => "\x8f\xe8\xac", +"\x98\x4b" => "\xf0\xfb", +"\x98\x4c" => "\xc2\xea", +"\x98\x4d" => "\xb3\xdb", +"\x98\x4e" => "\xb3\xdc", +"\x98\x4f" => "\xf0\xfa", +"\x98\x51" => "\x8f\xe8\xad", +"\x98\x52" => "\x8f\xe8\xae", +"\x98\x53" => "\x8f\xe8\xaf", +"\x98\x54" => "\xb4\xe9", +"\x98\x55" => "\xb8\xb2", +"\x98\x56" => "\x8f\xe8\xb0", +"\x98\x57" => "\x8f\xe8\xb1", +"\x98\x58" => "\xb4\xea", +"\x98\x59" => "\x8f\xe8\xb2", +"\x98\x5a" => "\x8f\xe8\xb3", +"\x98\x5b" => "\xc5\xbf", +"\x98\x5e" => "\xce\xe0", +"\x98\x62" => "\x8f\xe8\xb4", +"\x98\x63" => "\x8f\xe8\xb5", +"\x98\x65" => "\x8f\xe8\xb6", +"\x98\x66" => "\x8f\xe8\xb7", +"\x98\x67" => "\xb8\xdc", +"\x98\x6a" => "\x8f\xe8\xb8", +"\x98\x6b" => "\xf0\xfc", +"\x98\x6c" => "\x8f\xe8\xb9", +"\x98\x6f" => "\xf0\xfd", +"\x98\x70" => "\xf0\xfe", +"\x98\x71" => "\xf1\xa1", +"\x98\x73" => "\xf1\xa3", +"\x98\x74" => "\xf1\xa2", +"\x98\xa8" => "\xc9\xf7", +"\x98\xaa" => "\xf1\xa4", +"\x98\xab" => "\x8f\xe8\xba", +"\x98\xad" => "\x8f\xe8\xbb", +"\x98\xae" => "\x8f\xe8\xbc", +"\x98\xaf" => "\xf1\xa5", +"\x98\xb0" => "\x8f\xe8\xbd", +"\x98\xb1" => "\xf1\xa6", +"\x98\xb4" => "\x8f\xe8\xbe", +"\x98\xb6" => "\xf1\xa7", +"\x98\xb7" => "\x8f\xe8\xbf", +"\x98\xb8" => "\x8f\xe8\xc0", +"\x98\xba" => "\x8f\xe8\xc1", +"\x98\xbb" => "\x8f\xe8\xc2", +"\x98\xbf" => "\x8f\xe8\xc3", +"\x98\xc2" => "\x8f\xe8\xc4", +"\x98\xc3" => "\xf1\xa9", +"\x98\xc4" => "\xf1\xa8", +"\x98\xc5" => "\x8f\xe8\xc5", +"\x98\xc6" => "\xf1\xaa", +"\x98\xc8" => "\x8f\xe8\xc6", +"\x98\xcc" => "\x8f\xe8\xc7", +"\x98\xdb" => "\xc8\xf4", +"\x98\xdc" => "\xe6\xcc", +"\x98\xdf" => "\xbf\xa9", +"\x98\xe1" => "\x8f\xe8\xc8", +"\x98\xe2" => "\xb5\xb2", +"\x98\xe3" => "\x8f\xe8\xc9", +"\x98\xe5" => "\x8f\xe8\xca", +"\x98\xe6" => "\x8f\xe8\xcb", +"\x98\xe7" => "\x8f\xe8\xcc", +"\x98\xe9" => "\xf1\xab", +"\x98\xea" => "\x8f\xe8\xcd", +"\x98\xeb" => "\xf1\xac", +"\x98\xed" => "\xd2\xac", +"\x98\xee" => "\xdd\xbb", +"\x98\xef" => "\xc8\xd3", +"\x98\xf2" => "\xb0\xfb", +"\x98\xf3" => "\x8f\xe8\xce", +"\x98\xf4" => "\xb0\xbb", +"\x98\xf6" => "\x8f\xe8\xcf", +"\x98\xfc" => "\xbb\xf4", +"\x98\xfd" => "\xcb\xb0", +"\x98\xfe" => "\xbe\xfe", +"\x99\x02" => "\x8f\xe8\xd0", +"\x99\x03" => "\xf1\xad", +"\x99\x05" => "\xcc\xdf", +"\x99\x07" => "\x8f\xe8\xd1", +"\x99\x08" => "\x8f\xe8\xd2", +"\x99\x09" => "\xf1\xae", +"\x99\x0a" => "\xcd\xdc", +"\x99\x0c" => "\xb1\xc2", +"\x99\x10" => "\xbb\xc1", +"\x99\x11" => "\x8f\xe8\xd3", +"\x99\x12" => "\xf1\xaf", +"\x99\x13" => "\xb2\xee", +"\x99\x14" => "\xf1\xb0", +"\x99\x15" => "\x8f\xe8\xd4", +"\x99\x16" => "\x8f\xe8\xd5", +"\x99\x17" => "\x8f\xe8\xd6", +"\x99\x18" => "\xf1\xb1", +"\x99\x1a" => "\x8f\xe8\xd7", +"\x99\x1b" => "\x8f\xe8\xd8", +"\x99\x1c" => "\x8f\xe8\xd9", +"\x99\x1d" => "\xf1\xb3", +"\x99\x1e" => "\xf1\xb4", +"\x99\x1f" => "\x8f\xe8\xda", +"\x99\x20" => "\xf1\xb6", +"\x99\x21" => "\xf1\xb2", +"\x99\x22" => "\x8f\xe8\xdb", +"\x99\x24" => "\xf1\xb5", +"\x99\x26" => "\x8f\xe8\xdc", +"\x99\x27" => "\x8f\xe8\xdd", +"\x99\x28" => "\xb4\xdb", +"\x99\x2b" => "\x8f\xe8\xde", +"\x99\x2c" => "\xf1\xb7", +"\x99\x2e" => "\xf1\xb8", +"\x99\x31" => "\x8f\xe8\xdf", +"\x99\x32" => "\x8f\xe8\xe0", +"\x99\x33" => "\x8f\xe8\xe1", +"\x99\x34" => "\x8f\xe8\xe2", +"\x99\x35" => "\x8f\xe8\xe3", +"\x99\x39" => "\x8f\xe8\xe4", +"\x99\x3a" => "\x8f\xe8\xe5", +"\x99\x3b" => "\x8f\xe8\xe6", +"\x99\x3c" => "\x8f\xe8\xe7", +"\x99\x3d" => "\xf1\xb9", +"\x99\x3e" => "\xf1\xba", +"\x99\x40" => "\x8f\xe8\xe8", +"\x99\x41" => "\x8f\xe8\xe9", +"\x99\x42" => "\xf1\xbb", +"\x99\x45" => "\xf1\xbd", +"\x99\x46" => "\x8f\xe8\xea", +"\x99\x47" => "\x8f\xe8\xeb", +"\x99\x48" => "\x8f\xe8\xec", +"\x99\x49" => "\xf1\xbc", +"\x99\x4b" => "\xf1\xbf", +"\x99\x4c" => "\xf1\xc2", +"\x99\x4d" => "\x8f\xe8\xed", +"\x99\x4e" => "\x8f\xe8\xee", +"\x99\x50" => "\xf1\xbe", +"\x99\x51" => "\xf1\xc0", +"\x99\x52" => "\xf1\xc1", +"\x99\x54" => "\x8f\xe8\xef", +"\x99\x55" => "\xf1\xc3", +"\x99\x57" => "\xb6\xc2", +"\x99\x58" => "\x8f\xe8\xf0", +"\x99\x59" => "\x8f\xe8\xf1", +"\x99\x5b" => "\x8f\xe8\xf2", +"\x99\x5c" => "\x8f\xe8\xf3", +"\x99\x5e" => "\x8f\xe8\xf4", +"\x99\x5f" => "\x8f\xe8\xf5", +"\x99\x60" => "\x8f\xe8\xf6", +"\x99\x96" => "\xbc\xf3", +"\x99\x97" => "\xf1\xc4", +"\x99\x98" => "\xf1\xc5", +"\x99\x99" => "\xb9\xe1", +"\x99\x9b" => "\x8f\xe8\xf7", +"\x99\x9d" => "\x8f\xe8\xf8", +"\x99\x9f" => "\x8f\xe8\xf9", +"\x99\xa5" => "\xf1\xc6", +"\x99\xa6" => "\x8f\xe8\xfa", +"\x99\xa8" => "\xb3\xbe", +"\x99\xac" => "\xc7\xcf", +"\x99\xad" => "\xf1\xc7", +"\x99\xae" => "\xf1\xc8", +"\x99\xb0" => "\x8f\xe8\xfb", +"\x99\xb1" => "\x8f\xe8\xfc", +"\x99\xb2" => "\x8f\xe8\xfd", +"\x99\xb3" => "\xc3\xda", +"\x99\xb4" => "\xc6\xeb", +"\x99\xb5" => "\x8f\xe8\xfe", +"\x99\xb9" => "\x8f\xe9\xa1", +"\x99\xba" => "\x8f\xe9\xa2", +"\x99\xbc" => "\xf1\xc9", +"\x99\xbd" => "\x8f\xe9\xa3", +"\x99\xbf" => "\x8f\xe9\xa4", +"\x99\xc1" => "\xc7\xfd", +"\x99\xc3" => "\x8f\xe9\xa5", +"\x99\xc4" => "\xc2\xcc", +"\x99\xc5" => "\xb1\xd8", +"\x99\xc6" => "\xb6\xee", +"\x99\xc8" => "\xb6\xef", +"\x99\xc9" => "\x8f\xe9\xa6", +"\x99\xd0" => "\xc3\xf3", +"\x99\xd1" => "\xf1\xce", +"\x99\xd2" => "\xb6\xf0", +"\x99\xd3" => "\x8f\xe9\xa7", +"\x99\xd4" => "\x8f\xe9\xa8", +"\x99\xd5" => "\xb2\xef", +"\x99\xd8" => "\xf1\xcd", +"\x99\xd9" => "\x8f\xe9\xa9", +"\x99\xda" => "\x8f\xe9\xaa", +"\x99\xdb" => "\xf1\xcb", +"\x99\xdc" => "\x8f\xe9\xab", +"\x99\xdd" => "\xf1\xcc", +"\x99\xde" => "\x8f\xe9\xac", +"\x99\xdf" => "\xf1\xca", +"\x99\xe2" => "\xf1\xd8", +"\x99\xe7" => "\x8f\xe9\xad", +"\x99\xea" => "\x8f\xe9\xae", +"\x99\xeb" => "\x8f\xe9\xaf", +"\x99\xec" => "\x8f\xe9\xb0", +"\x99\xed" => "\xf1\xcf", +"\x99\xee" => "\xf1\xd0", +"\x99\xf0" => "\x8f\xe9\xb1", +"\x99\xf1" => "\xf1\xd1", +"\x99\xf2" => "\xf1\xd2", +"\x99\xf4" => "\x8f\xe9\xb2", +"\x99\xf5" => "\x8f\xe9\xb3", +"\x99\xf8" => "\xf1\xd4", +"\x99\xf9" => "\x8f\xe9\xb4", +"\x99\xfb" => "\xf1\xd3", +"\x99\xfd" => "\x8f\xe9\xb5", +"\x99\xfe" => "\x8f\xe9\xb6", +"\x99\xff" => "\xbd\xd9", +"\x9a\x01" => "\xf1\xd5", +"\x9a\x02" => "\x8f\xe9\xb7", +"\x9a\x03" => "\x8f\xe9\xb8", +"\x9a\x04" => "\x8f\xe9\xb9", +"\x9a\x05" => "\xf1\xd7", +"\x9a\x0b" => "\x8f\xe9\xba", +"\x9a\x0c" => "\x8f\xe9\xbb", +"\x9a\x0e" => "\xb5\xb3", +"\x9a\x0f" => "\xf1\xd6", +"\x9a\x10" => "\x8f\xe9\xbc", +"\x9a\x11" => "\x8f\xe9\xbd", +"\x9a\x12" => "\xc1\xfb", +"\x9a\x13" => "\xb8\xb3", +"\x9a\x16" => "\x8f\xe9\xbe", +"\x9a\x19" => "\xf1\xd9", +"\x9a\x1e" => "\x8f\xe9\xbf", +"\x9a\x20" => "\x8f\xe9\xc0", +"\x9a\x22" => "\x8f\xe9\xc1", +"\x9a\x23" => "\x8f\xe9\xc2", +"\x9a\x24" => "\x8f\xe9\xc3", +"\x9a\x27" => "\x8f\xe9\xc4", +"\x9a\x28" => "\xc2\xcd", +"\x9a\x2b" => "\xf1\xda", +"\x9a\x2d" => "\x8f\xe9\xc5", +"\x9a\x2e" => "\x8f\xe9\xc6", +"\x9a\x30" => "\xc6\xad", +"\x9a\x33" => "\x8f\xe9\xc7", +"\x9a\x35" => "\x8f\xe9\xc8", +"\x9a\x36" => "\x8f\xe9\xc9", +"\x9a\x37" => "\xf1\xdb", +"\x9a\x38" => "\x8f\xe9\xca", +"\x9a\x3e" => "\xf1\xe0", +"\x9a\x40" => "\xf1\xde", +"\x9a\x41" => "\x8f\xe9\xcc", +"\x9a\x42" => "\xf1\xdd", +"\x9a\x43" => "\xf1\xdf", +"\x9a\x44" => "\x8f\xe9\xcd", +"\x9a\x45" => "\xf1\xdc", +"\x9a\x47" => "\x8f\xe9\xcb", +"\x9a\x4a" => "\x8f\xe9\xce", +"\x9a\x4b" => "\x8f\xe9\xcf", +"\x9a\x4c" => "\x8f\xe9\xd0", +"\x9a\x4d" => "\xf1\xe2", +"\x9a\x4e" => "\x8f\xe9\xd1", +"\x9a\x51" => "\x8f\xe9\xd2", +"\x9a\x54" => "\x8f\xe9\xd3", +"\x9a\x55" => "\xf1\xe1", +"\x9a\x56" => "\x8f\xe9\xd4", +"\x9a\x57" => "\xf1\xe4", +"\x9a\x5a" => "\xb6\xc3", +"\x9a\x5b" => "\xf1\xe3", +"\x9a\x5d" => "\x8f\xe9\xd5", +"\x9a\x5f" => "\xf1\xe5", +"\x9a\x62" => "\xf1\xe6", +"\x9a\x64" => "\xf1\xe8", +"\x9a\x65" => "\xf1\xe7", +"\x9a\x69" => "\xf1\xe9", +"\x9a\x6a" => "\xf1\xeb", +"\x9a\x6b" => "\xf1\xea", +"\x9a\xa8" => "\xb9\xfc", +"\x9a\xaa" => "\x8f\xe9\xd6", +"\x9a\xac" => "\x8f\xe9\xd7", +"\x9a\xad" => "\xf1\xec", +"\x9a\xae" => "\x8f\xe9\xd8", +"\x9a\xaf" => "\x8f\xe9\xd9", +"\x9a\xb0" => "\xf1\xed", +"\x9a\xb2" => "\x8f\xe9\xda", +"\x9a\xb4" => "\x8f\xe9\xdb", +"\x9a\xb5" => "\x8f\xe9\xdc", +"\x9a\xb6" => "\x8f\xe9\xdd", +"\x9a\xb8" => "\xb3\xbc", +"\x9a\xb9" => "\x8f\xe9\xde", +"\x9a\xbb" => "\x8f\xe9\xdf", +"\x9a\xbc" => "\xf1\xee", +"\x9a\xbe" => "\x8f\xe9\xe0", +"\x9a\xbf" => "\x8f\xe9\xe1", +"\x9a\xc0" => "\xf1\xef", +"\x9a\xc1" => "\x8f\xe9\xe2", +"\x9a\xc3" => "\x8f\xe9\xe3", +"\x9a\xc4" => "\xbf\xf1", +"\x9a\xc6" => "\x8f\xe9\xe4", +"\x9a\xc8" => "\x8f\xe9\xe5", +"\x9a\xce" => "\x8f\xe9\xe6", +"\x9a\xcf" => "\xf1\xf0", +"\x9a\xd0" => "\x8f\xe9\xe7", +"\x9a\xd1" => "\xf1\xf1", +"\x9a\xd2" => "\x8f\xe9\xe8", +"\x9a\xd3" => "\xf1\xf2", +"\x9a\xd4" => "\xf1\xf3", +"\x9a\xd5" => "\x8f\xe9\xe9", +"\x9a\xd6" => "\x8f\xe9\xea", +"\x9a\xd7" => "\x8f\xe9\xeb", +"\x9a\xd8" => "\xb9\xe2", +"\x9a\xdb" => "\x8f\xe9\xec", +"\x9a\xdc" => "\x8f\xe9\xed", +"\x9a\xde" => "\xf1\xf4", +"\x9a\xdf" => "\xf1\xf5", +"\x9a\xe0" => "\x8f\xe9\xee", +"\x9a\xe2" => "\xf1\xf6", +"\x9a\xe3" => "\xf1\xf7", +"\x9a\xe4" => "\x8f\xe9\xef", +"\x9a\xe5" => "\x8f\xe9\xf0", +"\x9a\xe6" => "\xf1\xf8", +"\x9a\xe7" => "\x8f\xe9\xf1", +"\x9a\xe9" => "\x8f\xe9\xf2", +"\x9a\xea" => "\xc8\xb1", +"\x9a\xeb" => "\xf1\xfa", +"\x9a\xec" => "\x8f\xe9\xf3", +"\x9a\xed" => "\xc9\xa6", +"\x9a\xee" => "\xf1\xfb", +"\x9a\xef" => "\xf1\xf9", +"\x9a\xf1" => "\xf1\xfd", +"\x9a\xf2" => "\x8f\xe9\xf4", +"\x9a\xf3" => "\x8f\xe9\xf5", +"\x9a\xf4" => "\xf1\xfc", +"\x9a\xf5" => "\x8f\xe9\xf6", +"\x9a\xf7" => "\xf1\xfe", +"\x9a\xf9" => "\x8f\xe9\xf7", +"\x9a\xfa" => "\x8f\xe9\xf8", +"\x9a\xfb" => "\xf2\xa1", +"\x9a\xfd" => "\x8f\xe9\xf9", +"\x9a\xff" => "\x8f\xe9\xfa", +"\x9b\x00" => "\x8f\xe9\xfb", +"\x9b\x01" => "\x8f\xe9\xfc", +"\x9b\x02" => "\x8f\xe9\xfd", +"\x9b\x03" => "\x8f\xe9\xfe", +"\x9b\x04" => "\x8f\xea\xa1", +"\x9b\x05" => "\x8f\xea\xa2", +"\x9b\x06" => "\xf2\xa2", +"\x9b\x08" => "\x8f\xea\xa3", +"\x9b\x09" => "\x8f\xea\xa4", +"\x9b\x0b" => "\x8f\xea\xa5", +"\x9b\x0c" => "\x8f\xea\xa6", +"\x9b\x0d" => "\x8f\xea\xa7", +"\x9b\x0e" => "\x8f\xea\xa8", +"\x9b\x10" => "\x8f\xea\xa9", +"\x9b\x12" => "\x8f\xea\xaa", +"\x9b\x16" => "\x8f\xea\xab", +"\x9b\x18" => "\xf2\xa3", +"\x9b\x19" => "\x8f\xea\xac", +"\x9b\x1a" => "\xf2\xa4", +"\x9b\x1b" => "\x8f\xea\xad", +"\x9b\x1c" => "\x8f\xea\xae", +"\x9b\x1f" => "\xf2\xa5", +"\x9b\x20" => "\x8f\xea\xaf", +"\x9b\x22" => "\xf2\xa6", +"\x9b\x23" => "\xf2\xa7", +"\x9b\x25" => "\xf2\xa8", +"\x9b\x26" => "\x8f\xea\xb0", +"\x9b\x27" => "\xf2\xa9", +"\x9b\x28" => "\xf2\xaa", +"\x9b\x29" => "\xf2\xab", +"\x9b\x2a" => "\xf2\xac", +"\x9b\x2b" => "\x8f\xea\xb1", +"\x9b\x2d" => "\x8f\xea\xb2", +"\x9b\x2e" => "\xf2\xad", +"\x9b\x2f" => "\xf2\xae", +"\x9b\x31" => "\xdd\xb5", +"\x9b\x32" => "\xf2\xaf", +"\x9b\x33" => "\x8f\xea\xb3", +"\x9b\x34" => "\x8f\xea\xb4", +"\x9b\x35" => "\x8f\xea\xb5", +"\x9b\x37" => "\x8f\xea\xb6", +"\x9b\x39" => "\x8f\xea\xb7", +"\x9b\x3a" => "\x8f\xea\xb8", +"\x9b\x3b" => "\xe4\xf8", +"\x9b\x3c" => "\xb5\xb4", +"\x9b\x3d" => "\x8f\xea\xb9", +"\x9b\x41" => "\xb3\xa1", +"\x9b\x42" => "\xba\xb2", +"\x9b\x43" => "\xf2\xb1", +"\x9b\x44" => "\xf2\xb0", +"\x9b\x45" => "\xcc\xa5", +"\x9b\x48" => "\x8f\xea\xba", +"\x9b\x4b" => "\x8f\xea\xbb", +"\x9b\x4c" => "\x8f\xea\xbc", +"\x9b\x4d" => "\xf2\xb3", +"\x9b\x4e" => "\xf2\xb4", +"\x9b\x4f" => "\xf2\xb2", +"\x9b\x51" => "\xf2\xb5", +"\x9b\x54" => "\xcb\xe2", +"\x9b\x55" => "\x8f\xea\xbd", +"\x9b\x56" => "\x8f\xea\xbe", +"\x9b\x57" => "\x8f\xea\xbf", +"\x9b\x58" => "\xf2\xb6", +"\x9b\x5a" => "\xb5\xfb", +"\x9b\x5b" => "\x8f\xea\xc0", +"\x9b\x5e" => "\x8f\xea\xc1", +"\x9b\x61" => "\x8f\xea\xc2", +"\x9b\x63" => "\x8f\xea\xc3", +"\x9b\x65" => "\x8f\xea\xc4", +"\x9b\x66" => "\x8f\xea\xc5", +"\x9b\x68" => "\x8f\xea\xc6", +"\x9b\x6a" => "\x8f\xea\xc7", +"\x9b\x6b" => "\x8f\xea\xc8", +"\x9b\x6c" => "\x8f\xea\xc9", +"\x9b\x6d" => "\x8f\xea\xca", +"\x9b\x6e" => "\x8f\xea\xcb", +"\x9b\x6f" => "\xcf\xa5", +"\x9b\x73" => "\x8f\xea\xcc", +"\x9b\x74" => "\xf2\xb7", +"\x9b\x75" => "\x8f\xea\xcd", +"\x9b\x77" => "\x8f\xea\xce", +"\x9b\x78" => "\x8f\xea\xcf", +"\x9b\x79" => "\x8f\xea\xd0", +"\x9b\x7f" => "\x8f\xea\xd1", +"\x9b\x80" => "\x8f\xea\xd2", +"\x9b\x83" => "\xf2\xb9", +"\x9b\x84" => "\x8f\xea\xd3", +"\x9b\x85" => "\x8f\xea\xd4", +"\x9b\x86" => "\x8f\xea\xd5", +"\x9b\x87" => "\x8f\xea\xd6", +"\x9b\x89" => "\x8f\xea\xd7", +"\x9b\x8a" => "\x8f\xea\xd8", +"\x9b\x8b" => "\x8f\xea\xd9", +"\x9b\x8d" => "\x8f\xea\xda", +"\x9b\x8e" => "\xb0\xbe", +"\x9b\x8f" => "\x8f\xea\xdb", +"\x9b\x90" => "\x8f\xea\xdc", +"\x9b\x91" => "\xf2\xba", +"\x9b\x92" => "\xca\xab", +"\x9b\x93" => "\xf2\xb8", +"\x9b\x94" => "\x8f\xea\xdd", +"\x9b\x96" => "\xf2\xbb", +"\x9b\x97" => "\xf2\xbc", +"\x9b\x9a" => "\x8f\xea\xde", +"\x9b\x9d" => "\x8f\xea\xdf", +"\x9b\x9e" => "\x8f\xea\xe0", +"\x9b\x9f" => "\xf2\xbd", +"\x9b\xa0" => "\xf2\xbe", +"\x9b\xa6" => "\x8f\xea\xe1", +"\x9b\xa7" => "\x8f\xea\xe2", +"\x9b\xa8" => "\xf2\xbf", +"\x9b\xa9" => "\x8f\xea\xe3", +"\x9b\xaa" => "\xcb\xee", +"\x9b\xab" => "\xbb\xad", +"\x9b\xac" => "\x8f\xea\xe4", +"\x9b\xad" => "\xba\xfa", +"\x9b\xae" => "\xc1\xaf", +"\x9b\xb0" => "\x8f\xea\xe5", +"\x9b\xb1" => "\x8f\xea\xe6", +"\x9b\xb2" => "\x8f\xea\xe7", +"\x9b\xb4" => "\xf2\xc0", +"\x9b\xb7" => "\x8f\xea\xe8", +"\x9b\xb8" => "\x8f\xea\xe9", +"\x9b\xb9" => "\xf2\xc3", +"\x9b\xbb" => "\x8f\xea\xea", +"\x9b\xbc" => "\x8f\xea\xeb", +"\x9b\xbe" => "\x8f\xea\xec", +"\x9b\xbf" => "\x8f\xea\xed", +"\x9b\xc0" => "\xf2\xc1", +"\x9b\xc1" => "\x8f\xea\xee", +"\x9b\xc6" => "\xf2\xc4", +"\x9b\xc7" => "\x8f\xea\xef", +"\x9b\xc8" => "\x8f\xea\xf0", +"\x9b\xc9" => "\xb8\xf1", +"\x9b\xca" => "\xf2\xc2", +"\x9b\xce" => "\x8f\xea\xf1", +"\x9b\xcf" => "\xf2\xc5", +"\x9b\xd0" => "\x8f\xea\xf2", +"\x9b\xd1" => "\xf2\xc6", +"\x9b\xd2" => "\xf2\xc7", +"\x9b\xd4" => "\xf2\xcb", +"\x9b\xd6" => "\xbb\xaa", +"\x9b\xd7" => "\x8f\xea\xf3", +"\x9b\xd8" => "\x8f\xea\xf4", +"\x9b\xdb" => "\xc2\xe4", +"\x9b\xdd" => "\x8f\xea\xf5", +"\x9b\xdf" => "\x8f\xea\xf6", +"\x9b\xe1" => "\xf2\xcc", +"\x9b\xe2" => "\xf2\xc9", +"\x9b\xe3" => "\xf2\xc8", +"\x9b\xe4" => "\xf2\xca", +"\x9b\xe5" => "\x8f\xea\xf7", +"\x9b\xe7" => "\x8f\xea\xf8", +"\x9b\xe8" => "\xb7\xdf", +"\x9b\xea" => "\x8f\xea\xf9", +"\x9b\xeb" => "\x8f\xea\xfa", +"\x9b\xef" => "\x8f\xea\xfb", +"\x9b\xf0" => "\xf2\xd0", +"\x9b\xf1" => "\xf2\xcf", +"\x9b\xf2" => "\xf2\xce", +"\x9b\xf3" => "\x8f\xea\xfc", +"\x9b\xf5" => "\xb0\xb3", +"\x9b\xf7" => "\x8f\xea\xfd", +"\x9b\xf8" => "\x8f\xea\xfe", +"\x9b\xf9" => "\x8f\xeb\xa1", +"\x9b\xfa" => "\x8f\xeb\xa2", +"\x9b\xfd" => "\x8f\xeb\xa3", +"\x9b\xff" => "\x8f\xeb\xa4", +"\x9c\x00" => "\x8f\xeb\xa5", +"\x9c\x02" => "\x8f\xeb\xa6", +"\x9c\x04" => "\xf2\xda", +"\x9c\x06" => "\xf2\xd6", +"\x9c\x08" => "\xf2\xd7", +"\x9c\x09" => "\xf2\xd3", +"\x9c\x0a" => "\xf2\xd9", +"\x9c\x0b" => "\x8f\xeb\xa7", +"\x9c\x0c" => "\xf2\xd5", +"\x9c\x0d" => "\xb3\xe2", +"\x9c\x0f" => "\x8f\xeb\xa8", +"\x9c\x10" => "\xcf\xcc", +"\x9c\x11" => "\x8f\xeb\xa9", +"\x9c\x12" => "\xf2\xd8", +"\x9c\x13" => "\xf2\xd4", +"\x9c\x14" => "\xf2\xd2", +"\x9c\x15" => "\xf2\xd1", +"\x9c\x16" => "\x8f\xeb\xaa", +"\x9c\x18" => "\x8f\xeb\xab", +"\x9c\x19" => "\x8f\xeb\xac", +"\x9c\x1a" => "\x8f\xeb\xad", +"\x9c\x1b" => "\xf2\xdc", +"\x9c\x1c" => "\x8f\xeb\xae", +"\x9c\x1e" => "\x8f\xeb\xaf", +"\x9c\x21" => "\xf2\xdf", +"\x9c\x22" => "\x8f\xeb\xb0", +"\x9c\x23" => "\x8f\xeb\xb1", +"\x9c\x24" => "\xf2\xde", +"\x9c\x25" => "\xf2\xdd", +"\x9c\x26" => "\x8f\xeb\xb2", +"\x9c\x27" => "\x8f\xeb\xb3", +"\x9c\x28" => "\x8f\xeb\xb4", +"\x9c\x29" => "\x8f\xeb\xb5", +"\x9c\x2a" => "\x8f\xeb\xb6", +"\x9c\x2d" => "\xc9\xc9", +"\x9c\x2e" => "\xf2\xdb", +"\x9c\x2f" => "\xb0\xf3", +"\x9c\x30" => "\xf2\xe0", +"\x9c\x31" => "\x8f\xeb\xb7", +"\x9c\x32" => "\xf2\xe2", +"\x9c\x35" => "\x8f\xeb\xb8", +"\x9c\x36" => "\x8f\xeb\xb9", +"\x9c\x37" => "\x8f\xeb\xba", +"\x9c\x39" => "\xb3\xef", +"\x9c\x3a" => "\xf2\xcd", +"\x9c\x3b" => "\xb1\xb7", +"\x9c\x3d" => "\x8f\xeb\xbb", +"\x9c\x3e" => "\xf2\xe4", +"\x9c\x41" => "\x8f\xeb\xbc", +"\x9c\x43" => "\x8f\xeb\xbd", +"\x9c\x44" => "\x8f\xeb\xbe", +"\x9c\x45" => "\x8f\xeb\xbf", +"\x9c\x46" => "\xf2\xe3", +"\x9c\x47" => "\xf2\xe1", +"\x9c\x48" => "\xc3\xad", +"\x9c\x49" => "\x8f\xeb\xc0", +"\x9c\x4a" => "\x8f\xeb\xc1", +"\x9c\x4e" => "\x8f\xeb\xc2", +"\x9c\x4f" => "\x8f\xeb\xc3", +"\x9c\x50" => "\x8f\xeb\xc4", +"\x9c\x52" => "\xcb\xf0", +"\x9c\x53" => "\x8f\xeb\xc5", +"\x9c\x54" => "\x8f\xeb\xc6", +"\x9c\x56" => "\x8f\xeb\xc7", +"\x9c\x57" => "\xce\xda", +"\x9c\x58" => "\x8f\xeb\xc8", +"\x9c\x5a" => "\xf2\xe5", +"\x9c\x5b" => "\x8f\xeb\xc9", +"\x9c\x5c" => "\x8f\xeb\xd0", +"\x9c\x5d" => "\x8f\xeb\xca", +"\x9c\x5e" => "\x8f\xeb\xcb", +"\x9c\x5f" => "\x8f\xeb\xcc", +"\x9c\x60" => "\xf2\xe6", +"\x9c\x63" => "\x8f\xeb\xcd", +"\x9c\x67" => "\xf2\xe7", +"\x9c\x68" => "\x8f\xeb\xd2", +"\x9c\x69" => "\x8f\xeb\xce", +"\x9c\x6a" => "\x8f\xeb\xcf", +"\x9c\x6b" => "\x8f\xeb\xd1", +"\x9c\x6e" => "\x8f\xeb\xd3", +"\x9c\x70" => "\x8f\xeb\xd4", +"\x9c\x72" => "\x8f\xeb\xd5", +"\x9c\x75" => "\x8f\xeb\xd6", +"\x9c\x76" => "\xf2\xe8", +"\x9c\x77" => "\x8f\xeb\xd7", +"\x9c\x78" => "\xf2\xe9", +"\x9c\x7b" => "\x8f\xeb\xd8", +"\x9c\xe5" => "\xc4\xbb", +"\x9c\xe6" => "\x8f\xeb\xd9", +"\x9c\xe7" => "\xf2\xea", +"\x9c\xe9" => "\xc8\xb7", +"\x9c\xeb" => "\xf2\xef", +"\x9c\xec" => "\xf2\xeb", +"\x9c\xf0" => "\xf2\xec", +"\x9c\xf2" => "\x8f\xeb\xda", +"\x9c\xf3" => "\xcb\xb1", +"\x9c\xf4" => "\xcc\xc4", +"\x9c\xf6" => "\xc6\xd0", +"\x9c\xf7" => "\x8f\xeb\xdb", +"\x9c\xf9" => "\x8f\xeb\xdc", +"\x9d\x02" => "\x8f\xeb\xde", +"\x9d\x03" => "\xf2\xf0", +"\x9d\x06" => "\xf2\xf1", +"\x9d\x07" => "\xc6\xbe", +"\x9d\x08" => "\xf2\xee", +"\x9d\x09" => "\xf2\xed", +"\x9d\x0b" => "\x8f\xeb\xdd", +"\x9d\x0e" => "\xb2\xaa", +"\x9d\x11" => "\x8f\xeb\xdf", +"\x9d\x12" => "\xf2\xf9", +"\x9d\x15" => "\xf2\xf8", +"\x9d\x17" => "\x8f\xeb\xe0", +"\x9d\x18" => "\x8f\xeb\xe1", +"\x9d\x1b" => "\xb1\xf5", +"\x9d\x1c" => "\x8f\xeb\xe2", +"\x9d\x1d" => "\x8f\xeb\xe3", +"\x9d\x1e" => "\x8f\xeb\xe4", +"\x9d\x1f" => "\xf2\xf6", +"\x9d\x23" => "\xf2\xf5", +"\x9d\x26" => "\xf2\xf3", +"\x9d\x28" => "\xb3\xfb", +"\x9d\x2a" => "\xf2\xf2", +"\x9d\x2b" => "\xbc\xb2", +"\x9d\x2c" => "\xb2\xa9", +"\x9d\x2f" => "\x8f\xeb\xe5", +"\x9d\x30" => "\x8f\xeb\xe6", +"\x9d\x32" => "\x8f\xeb\xe7", +"\x9d\x33" => "\x8f\xeb\xe8", +"\x9d\x34" => "\x8f\xeb\xe9", +"\x9d\x3a" => "\x8f\xeb\xea", +"\x9d\x3b" => "\xb9\xe3", +"\x9d\x3c" => "\x8f\xeb\xeb", +"\x9d\x3d" => "\x8f\xeb\xed", +"\x9d\x3e" => "\xf2\xfc", +"\x9d\x3f" => "\xf2\xfb", +"\x9d\x41" => "\xf2\xfa", +"\x9d\x42" => "\x8f\xeb\xee", +"\x9d\x43" => "\x8f\xeb\xef", +"\x9d\x44" => "\xf2\xf7", +"\x9d\x45" => "\x8f\xeb\xec", +"\x9d\x46" => "\xf2\xfd", +"\x9d\x47" => "\x8f\xeb\xf0", +"\x9d\x48" => "\xf2\xfe", +"\x9d\x4a" => "\x8f\xeb\xf1", +"\x9d\x50" => "\xf3\xa5", +"\x9d\x51" => "\xf3\xa4", +"\x9d\x53" => "\x8f\xeb\xf2", +"\x9d\x54" => "\x8f\xeb\xf3", +"\x9d\x59" => "\xf3\xa6", +"\x9d\x5c" => "\xb1\xad", +"\x9d\x5d" => "\xf3\xa1", +"\x9d\x5e" => "\xf3\xa2", +"\x9d\x5f" => "\x8f\xeb\xf4", +"\x9d\x60" => "\xb9\xf4", +"\x9d\x61" => "\xcc\xb9", +"\x9d\x62" => "\x8f\xeb\xf6", +"\x9d\x63" => "\x8f\xeb\xf5", +"\x9d\x64" => "\xf3\xa3", +"\x9d\x65" => "\x8f\xeb\xf7", +"\x9d\x69" => "\x8f\xeb\xf8", +"\x9d\x6a" => "\x8f\xeb\xf9", +"\x9d\x6b" => "\x8f\xeb\xfa", +"\x9d\x6c" => "\xcb\xb2", +"\x9d\x6f" => "\xf3\xab", +"\x9d\x70" => "\x8f\xeb\xfb", +"\x9d\x72" => "\xf3\xa7", +"\x9d\x76" => "\x8f\xeb\xfc", +"\x9d\x77" => "\x8f\xeb\xfd", +"\x9d\x7a" => "\xf3\xac", +"\x9d\x7b" => "\x8f\xeb\xfe", +"\x9d\x7c" => "\x8f\xec\xa1", +"\x9d\x7e" => "\x8f\xec\xa2", +"\x9d\x83" => "\x8f\xec\xa3", +"\x9d\x84" => "\x8f\xec\xa4", +"\x9d\x86" => "\x8f\xec\xa5", +"\x9d\x87" => "\xf3\xa9", +"\x9d\x89" => "\xf3\xa8", +"\x9d\x8a" => "\x8f\xec\xa6", +"\x9d\x8d" => "\x8f\xec\xa7", +"\x9d\x8e" => "\x8f\xec\xa8", +"\x9d\x8f" => "\xb7\xdc", +"\x9d\x92" => "\x8f\xec\xa9", +"\x9d\x93" => "\x8f\xec\xaa", +"\x9d\x95" => "\x8f\xec\xab", +"\x9d\x96" => "\x8f\xec\xac", +"\x9d\x97" => "\x8f\xec\xad", +"\x9d\x98" => "\x8f\xec\xae", +"\x9d\x9a" => "\xf3\xad", +"\x9d\xa1" => "\x8f\xec\xaf", +"\x9d\xa4" => "\xf3\xae", +"\x9d\xa9" => "\xf3\xaf", +"\x9d\xaa" => "\x8f\xec\xb0", +"\x9d\xab" => "\xf3\xaa", +"\x9d\xac" => "\x8f\xec\xb1", +"\x9d\xae" => "\x8f\xec\xb2", +"\x9d\xaf" => "\xf2\xf4", +"\x9d\xb1" => "\x8f\xec\xb3", +"\x9d\xb2" => "\xf3\xb0", +"\x9d\xb4" => "\xc4\xe1", +"\x9d\xb5" => "\x8f\xec\xb4", +"\x9d\xb8" => "\xf3\xb4", +"\x9d\xb9" => "\x8f\xec\xb5", +"\x9d\xba" => "\xf3\xb5", +"\x9d\xbb" => "\xf3\xb3", +"\x9d\xbc" => "\x8f\xec\xb6", +"\x9d\xbf" => "\x8f\xec\xb7", +"\x9d\xc1" => "\xf3\xb2", +"\x9d\xc2" => "\xf3\xb8", +"\x9d\xc3" => "\x8f\xec\xb8", +"\x9d\xc4" => "\xf3\xb1", +"\x9d\xc6" => "\xf3\xb6", +"\x9d\xc7" => "\x8f\xec\xb9", +"\x9d\xc9" => "\x8f\xec\xba", +"\x9d\xca" => "\x8f\xec\xbb", +"\x9d\xcf" => "\xf3\xb7", +"\x9d\xd3" => "\xf3\xba", +"\x9d\xd4" => "\x8f\xec\xbc", +"\x9d\xd5" => "\x8f\xec\xbd", +"\x9d\xd6" => "\x8f\xec\xbe", +"\x9d\xd7" => "\x8f\xec\xbf", +"\x9d\xd9" => "\xf3\xb9", +"\x9d\xda" => "\x8f\xec\xc0", +"\x9d\xde" => "\x8f\xec\xc1", +"\x9d\xdf" => "\x8f\xec\xc2", +"\x9d\xe0" => "\x8f\xec\xc3", +"\x9d\xe5" => "\x8f\xec\xc4", +"\x9d\xe6" => "\xf3\xbc", +"\x9d\xe7" => "\x8f\xec\xc5", +"\x9d\xe9" => "\x8f\xec\xc6", +"\x9d\xeb" => "\x8f\xec\xc7", +"\x9d\xed" => "\xf3\xbd", +"\x9d\xee" => "\x8f\xec\xc8", +"\x9d\xef" => "\xf3\xbe", +"\x9d\xf0" => "\x8f\xec\xc9", +"\x9d\xf2" => "\xcf\xc9", +"\x9d\xf3" => "\x8f\xec\xca", +"\x9d\xf4" => "\x8f\xec\xcb", +"\x9d\xf8" => "\xf3\xbb", +"\x9d\xf9" => "\xc2\xeb", +"\x9d\xfa" => "\xba\xed", +"\x9d\xfd" => "\xf3\xbf", +"\x9d\xfe" => "\x8f\xec\xcc", +"\x9e\x02" => "\x8f\xec\xce", +"\x9e\x07" => "\x8f\xec\xcf", +"\x9e\x0a" => "\x8f\xec\xcd", +"\x9e\x0e" => "\x8f\xec\xd0", +"\x9e\x10" => "\x8f\xec\xd1", +"\x9e\x11" => "\x8f\xec\xd2", +"\x9e\x12" => "\x8f\xec\xd3", +"\x9e\x15" => "\x8f\xec\xd4", +"\x9e\x16" => "\x8f\xec\xd5", +"\x9e\x19" => "\x8f\xec\xd6", +"\x9e\x1a" => "\xf3\xc0", +"\x9e\x1b" => "\xf3\xc1", +"\x9e\x1c" => "\x8f\xec\xd7", +"\x9e\x1d" => "\x8f\xec\xd8", +"\x9e\x1e" => "\xf3\xc2", +"\x9e\x75" => "\xf3\xc3", +"\x9e\x78" => "\xb8\xb4", +"\x9e\x79" => "\xf3\xc4", +"\x9e\x7a" => "\x8f\xec\xd9", +"\x9e\x7b" => "\x8f\xec\xda", +"\x9e\x7c" => "\x8f\xec\xdb", +"\x9e\x7d" => "\xf3\xc5", +"\x9e\x7f" => "\xbc\xaf", +"\x9e\x80" => "\x8f\xec\xdc", +"\x9e\x81" => "\xf3\xc6", +"\x9e\x82" => "\x8f\xec\xdd", +"\x9e\x83" => "\x8f\xec\xde", +"\x9e\x84" => "\x8f\xec\xdf", +"\x9e\x85" => "\x8f\xec\xe0", +"\x9e\x87" => "\x8f\xec\xe1", +"\x9e\x88" => "\xf3\xc7", +"\x9e\x8b" => "\xf3\xc8", +"\x9e\x8c" => "\xf3\xc9", +"\x9e\x8e" => "\x8f\xec\xe2", +"\x9e\x8f" => "\x8f\xec\xe3", +"\x9e\x91" => "\xf3\xcc", +"\x9e\x92" => "\xf3\xca", +"\x9e\x93" => "\xcf\xbc", +"\x9e\x95" => "\xf3\xcb", +"\x9e\x96" => "\x8f\xec\xe4", +"\x9e\x97" => "\xce\xef", +"\x9e\x98" => "\x8f\xec\xe5", +"\x9e\x9b" => "\x8f\xec\xe6", +"\x9e\x9d" => "\xf3\xcd", +"\x9e\x9e" => "\x8f\xec\xe7", +"\x9e\x9f" => "\xce\xdb", +"\x9e\xa4" => "\x8f\xec\xe8", +"\x9e\xa5" => "\xf3\xce", +"\x9e\xa6" => "\xc7\xfe", +"\x9e\xa8" => "\x8f\xec\xe9", +"\x9e\xa9" => "\xf3\xcf", +"\x9e\xaa" => "\xf3\xd1", +"\x9e\xac" => "\x8f\xec\xea", +"\x9e\xad" => "\xf3\xd2", +"\x9e\xae" => "\x8f\xec\xeb", +"\x9e\xaf" => "\x8f\xec\xec", +"\x9e\xb0" => "\x8f\xec\xed", +"\x9e\xb3" => "\x8f\xec\xee", +"\x9e\xb4" => "\x8f\xec\xef", +"\x9e\xb5" => "\x8f\xec\xf0", +"\x9e\xb8" => "\xf3\xd0", +"\x9e\xb9" => "\xb9\xed", +"\x9e\xba" => "\xcc\xcd", +"\x9e\xbb" => "\xcb\xe3", +"\x9e\xbc" => "\xd6\xf7", +"\x9e\xbe" => "\xdd\xe0", +"\x9e\xbf" => "\xcb\xfb", +"\x9e\xc4" => "\xb2\xab", +"\x9e\xc6" => "\x8f\xec\xf1", +"\x9e\xc8" => "\x8f\xec\xf2", +"\x9e\xcb" => "\x8f\xec\xf3", +"\x9e\xcc" => "\xf3\xd4", +"\x9e\xcd" => "\xb5\xd0", +"\x9e\xce" => "\xf3\xd5", +"\x9e\xcf" => "\xf3\xd6", +"\x9e\xd0" => "\xf3\xd7", +"\x9e\xd2" => "\xb9\xf5", +"\x9e\xd4" => "\xf3\xd8", +"\x9e\xd5" => "\x8f\xec\xf4", +"\x9e\xd8" => "\xe0\xd4", +"\x9e\xd9" => "\xcc\xdb", +"\x9e\xdb" => "\xc2\xe3", +"\x9e\xdc" => "\xf3\xd9", +"\x9e\xdd" => "\xf3\xdb", +"\x9e\xde" => "\xf3\xda", +"\x9e\xdf" => "\x8f\xec\xf5", +"\x9e\xe0" => "\xf3\xdc", +"\x9e\xe4" => "\x8f\xec\xf6", +"\x9e\xe5" => "\xf3\xdd", +"\x9e\xe7" => "\x8f\xec\xf7", +"\x9e\xe8" => "\xf3\xde", +"\x9e\xec" => "\x8f\xec\xf8", +"\x9e\xed" => "\x8f\xec\xf9", +"\x9e\xee" => "\x8f\xec\xfa", +"\x9e\xef" => "\xf3\xdf", +"\x9e\xf0" => "\x8f\xec\xfb", +"\x9e\xf1" => "\x8f\xec\xfc", +"\x9e\xf2" => "\x8f\xec\xfd", +"\x9e\xf4" => "\xf3\xe0", +"\x9e\xf5" => "\x8f\xec\xfe", +"\x9e\xf6" => "\xf3\xe1", +"\x9e\xf7" => "\xf3\xe2", +"\x9e\xf8" => "\x8f\xed\xa1", +"\x9e\xf9" => "\xf3\xe3", +"\x9e\xfb" => "\xf3\xe4", +"\x9e\xfc" => "\xf3\xe5", +"\x9e\xfd" => "\xf3\xe6", +"\x9e\xff" => "\x8f\xed\xa2", +"\x9f\x02" => "\x8f\xed\xa3", +"\x9f\x03" => "\x8f\xed\xa4", +"\x9f\x07" => "\xf3\xe7", +"\x9f\x08" => "\xf3\xe8", +"\x9f\x09" => "\x8f\xed\xa5", +"\x9f\x0e" => "\xc5\xa4", +"\x9f\x0f" => "\x8f\xed\xa6", +"\x9f\x10" => "\x8f\xed\xa7", +"\x9f\x11" => "\x8f\xed\xa8", +"\x9f\x12" => "\x8f\xed\xa9", +"\x9f\x13" => "\xb8\xdd", +"\x9f\x14" => "\x8f\xed\xaa", +"\x9f\x15" => "\xf3\xea", +"\x9f\x16" => "\x8f\xed\xab", +"\x9f\x17" => "\x8f\xed\xac", +"\x9f\x19" => "\x8f\xed\xad", +"\x9f\x1a" => "\x8f\xed\xae", +"\x9f\x1b" => "\x8f\xed\xaf", +"\x9f\x1f" => "\x8f\xed\xb0", +"\x9f\x20" => "\xc1\xcd", +"\x9f\x21" => "\xf3\xeb", +"\x9f\x22" => "\x8f\xed\xb1", +"\x9f\x26" => "\x8f\xed\xb2", +"\x9f\x2a" => "\x8f\xed\xb3", +"\x9f\x2b" => "\x8f\xed\xb4", +"\x9f\x2c" => "\xf3\xec", +"\x9f\x2f" => "\x8f\xed\xb5", +"\x9f\x31" => "\x8f\xed\xb6", +"\x9f\x32" => "\x8f\xed\xb7", +"\x9f\x34" => "\x8f\xed\xb8", +"\x9f\x37" => "\x8f\xed\xb9", +"\x9f\x39" => "\x8f\xed\xba", +"\x9f\x3a" => "\x8f\xed\xbb", +"\x9f\x3b" => "\xc9\xa1", +"\x9f\x3c" => "\x8f\xed\xbc", +"\x9f\x3d" => "\x8f\xed\xbd", +"\x9f\x3e" => "\xf3\xed", +"\x9f\x3f" => "\x8f\xed\xbe", +"\x9f\x41" => "\x8f\xed\xbf", +"\x9f\x43" => "\x8f\xed\xc0", +"\x9f\x44" => "\x8f\xed\xc1", +"\x9f\x45" => "\x8f\xed\xc2", +"\x9f\x46" => "\x8f\xed\xc3", +"\x9f\x47" => "\x8f\xed\xc4", +"\x9f\x4a" => "\xf3\xee", +"\x9f\x4b" => "\xe3\xb7", +"\x9f\x4e" => "\xec\xda", +"\x9f\x4f" => "\xf0\xed", +"\x9f\x52" => "\xf3\xef", +"\x9f\x53" => "\x8f\xed\xc5", +"\x9f\x54" => "\xf3\xf0", +"\x9f\x55" => "\x8f\xed\xc6", +"\x9f\x56" => "\x8f\xed\xc7", +"\x9f\x57" => "\x8f\xed\xc8", +"\x9f\x58" => "\x8f\xed\xc9", +"\x9f\x5a" => "\x8f\xed\xca", +"\x9f\x5d" => "\x8f\xed\xcb", +"\x9f\x5e" => "\x8f\xed\xcc", +"\x9f\x5f" => "\xf3\xf2", +"\x9f\x60" => "\xf3\xf3", +"\x9f\x61" => "\xf3\xf4", +"\x9f\x62" => "\xce\xf0", +"\x9f\x63" => "\xf3\xf1", +"\x9f\x66" => "\xf3\xf5", +"\x9f\x67" => "\xf3\xf6", +"\x9f\x68" => "\x8f\xed\xcd", +"\x9f\x69" => "\x8f\xed\xce", +"\x9f\x6a" => "\xf3\xf8", +"\x9f\x6c" => "\xf3\xf7", +"\x9f\x6d" => "\x8f\xed\xcf", +"\x9f\x6e" => "\x8f\xed\xd0", +"\x9f\x6f" => "\x8f\xed\xd1", +"\x9f\x70" => "\x8f\xed\xd2", +"\x9f\x71" => "\x8f\xed\xd3", +"\x9f\x72" => "\xf3\xfa", +"\x9f\x73" => "\x8f\xed\xd4", +"\x9f\x75" => "\x8f\xed\xd5", +"\x9f\x76" => "\xf3\xfb", +"\x9f\x77" => "\xf3\xf9", +"\x9f\x7a" => "\x8f\xed\xd6", +"\x9f\x7d" => "\x8f\xed\xd7", +"\x9f\x8d" => "\xce\xb6", +"\x9f\x8f" => "\x8f\xed\xd8", +"\x9f\x90" => "\x8f\xed\xd9", +"\x9f\x91" => "\x8f\xed\xda", +"\x9f\x92" => "\x8f\xed\xdb", +"\x9f\x94" => "\x8f\xed\xdc", +"\x9f\x95" => "\xf3\xfc", +"\x9f\x96" => "\x8f\xed\xdd", +"\x9f\x97" => "\x8f\xed\xde", +"\x9f\x9c" => "\xf3\xfd", +"\x9f\x9d" => "\xe3\xd4", +"\x9f\x9e" => "\x8f\xed\xdf", +"\x9f\xa0" => "\xf3\xfe", +"\x9f\xa1" => "\x8f\xed\xe0", +"\x9f\xa2" => "\x8f\xed\xe1", +"\x9f\xa3" => "\x8f\xed\xe2", +"\x9f\xa5" => "\x8f\xed\xe3", +"\xff\x01" => "\xa1\xaa", +"\xff\x03" => "\xa1\xf4", +"\xff\x04" => "\xa1\xf0", +"\xff\x05" => "\xa1\xf3", +"\xff\x06" => "\xa1\xf5", +"\xff\x08" => "\xa1\xca", +"\xff\x09" => "\xa1\xcb", +"\xff\x0a" => "\xa1\xf6", +"\xff\x0b" => "\xa1\xdc", +"\xff\x0c" => "\xa1\xa4", +"\xff\x0e" => "\xa1\xa5", +"\xff\x0f" => "\xa1\xbf", +"\xff\x10" => "\xa3\xb0", +"\xff\x11" => "\xa3\xb1", +"\xff\x12" => "\xa3\xb2", +"\xff\x13" => "\xa3\xb3", +"\xff\x14" => "\xa3\xb4", +"\xff\x15" => "\xa3\xb5", +"\xff\x16" => "\xa3\xb6", +"\xff\x17" => "\xa3\xb7", +"\xff\x18" => "\xa3\xb8", +"\xff\x19" => "\xa3\xb9", +"\xff\x1a" => "\xa1\xa7", +"\xff\x1b" => "\xa1\xa8", +"\xff\x1c" => "\xa1\xe3", +"\xff\x1d" => "\xa1\xe1", +"\xff\x1e" => "\xa1\xe4", +"\xff\x1f" => "\xa1\xa9", +"\xff\x20" => "\xa1\xf7", +"\xff\x21" => "\xa3\xc1", +"\xff\x22" => "\xa3\xc2", +"\xff\x23" => "\xa3\xc3", +"\xff\x24" => "\xa3\xc4", +"\xff\x25" => "\xa3\xc5", +"\xff\x26" => "\xa3\xc6", +"\xff\x27" => "\xa3\xc7", +"\xff\x28" => "\xa3\xc8", +"\xff\x29" => "\xa3\xc9", +"\xff\x2a" => "\xa3\xca", +"\xff\x2b" => "\xa3\xcb", +"\xff\x2c" => "\xa3\xcc", +"\xff\x2d" => "\xa3\xcd", +"\xff\x2e" => "\xa3\xce", +"\xff\x2f" => "\xa3\xcf", +"\xff\x30" => "\xa3\xd0", +"\xff\x31" => "\xa3\xd1", +"\xff\x32" => "\xa3\xd2", +"\xff\x33" => "\xa3\xd3", +"\xff\x34" => "\xa3\xd4", +"\xff\x35" => "\xa3\xd5", +"\xff\x36" => "\xa3\xd6", +"\xff\x37" => "\xa3\xd7", +"\xff\x38" => "\xa3\xd8", +"\xff\x39" => "\xa3\xd9", +"\xff\x3a" => "\xa3\xda", +"\xff\x3b" => "\xa1\xce", +"\xff\x3d" => "\xa1\xcf", +"\xff\x3e" => "\xa1\xb0", +"\xff\x3f" => "\xa1\xb2", +"\xff\x40" => "\xa1\xae", +"\xff\x41" => "\xa3\xe1", +"\xff\x42" => "\xa3\xe2", +"\xff\x43" => "\xa3\xe3", +"\xff\x44" => "\xa3\xe4", +"\xff\x45" => "\xa3\xe5", +"\xff\x46" => "\xa3\xe6", +"\xff\x47" => "\xa3\xe7", +"\xff\x48" => "\xa3\xe8", +"\xff\x49" => "\xa3\xe9", +"\xff\x4a" => "\xa3\xea", +"\xff\x4b" => "\xa3\xeb", +"\xff\x4c" => "\xa3\xec", +"\xff\x4d" => "\xa3\xed", +"\xff\x4e" => "\xa3\xee", +"\xff\x4f" => "\xa3\xef", +"\xff\x50" => "\xa3\xf0", +"\xff\x51" => "\xa3\xf1", +"\xff\x52" => "\xa3\xf2", +"\xff\x53" => "\xa3\xf3", +"\xff\x54" => "\xa3\xf4", +"\xff\x55" => "\xa3\xf5", +"\xff\x56" => "\xa3\xf6", +"\xff\x57" => "\xa3\xf7", +"\xff\x58" => "\xa3\xf8", +"\xff\x59" => "\xa3\xf9", +"\xff\x5a" => "\xa3\xfa", +"\xff\x5b" => "\xa1\xd0", +"\xff\x5c" => "\xa1\xc3", +"\xff\x5d" => "\xa1\xd1", +"\xff\x61" => "\x8e\xa1", +"\xff\x62" => "\x8e\xa2", +"\xff\x63" => "\x8e\xa3", +"\xff\x64" => "\x8e\xa4", +"\xff\x65" => "\x8e\xa5", +"\xff\x66" => "\x8e\xa6", +"\xff\x67" => "\x8e\xa7", +"\xff\x68" => "\x8e\xa8", +"\xff\x69" => "\x8e\xa9", +"\xff\x6a" => "\x8e\xaa", +"\xff\x6b" => "\x8e\xab", +"\xff\x6c" => "\x8e\xac", +"\xff\x6d" => "\x8e\xad", +"\xff\x6e" => "\x8e\xae", +"\xff\x6f" => "\x8e\xaf", +"\xff\x70" => "\x8e\xb0", +"\xff\x71" => "\x8e\xb1", +"\xff\x72" => "\x8e\xb2", +"\xff\x73" => "\x8e\xb3", +"\xff\x74" => "\x8e\xb4", +"\xff\x75" => "\x8e\xb5", +"\xff\x76" => "\x8e\xb6", +"\xff\x77" => "\x8e\xb7", +"\xff\x78" => "\x8e\xb8", +"\xff\x79" => "\x8e\xb9", +"\xff\x7a" => "\x8e\xba", +"\xff\x7b" => "\x8e\xbb", +"\xff\x7c" => "\x8e\xbc", +"\xff\x7d" => "\x8e\xbd", +"\xff\x7e" => "\x8e\xbe", +"\xff\x7f" => "\x8e\xbf", +"\xff\x80" => "\x8e\xc0", +"\xff\x81" => "\x8e\xc1", +"\xff\x82" => "\x8e\xc2", +"\xff\x83" => "\x8e\xc3", +"\xff\x84" => "\x8e\xc4", +"\xff\x85" => "\x8e\xc5", +"\xff\x86" => "\x8e\xc6", +"\xff\x87" => "\x8e\xc7", +"\xff\x88" => "\x8e\xc8", +"\xff\x89" => "\x8e\xc9", +"\xff\x8a" => "\x8e\xca", +"\xff\x8b" => "\x8e\xcb", +"\xff\x8c" => "\x8e\xcc", +"\xff\x8d" => "\x8e\xcd", +"\xff\x8e" => "\x8e\xce", +"\xff\x8f" => "\x8e\xcf", +"\xff\x90" => "\x8e\xd0", +"\xff\x91" => "\x8e\xd1", +"\xff\x92" => "\x8e\xd2", +"\xff\x93" => "\x8e\xd3", +"\xff\x94" => "\x8e\xd4", +"\xff\x95" => "\x8e\xd5", +"\xff\x96" => "\x8e\xd6", +"\xff\x97" => "\x8e\xd7", +"\xff\x98" => "\x8e\xd8", +"\xff\x99" => "\x8e\xd9", +"\xff\x9a" => "\x8e\xda", +"\xff\x9b" => "\x8e\xdb", +"\xff\x9c" => "\x8e\xdc", +"\xff\x9d" => "\x8e\xdd", +"\xff\x9e" => "\x8e\xde", +"\xff\x9f" => "\x8e\xdf", +"\xff\xe3" => "\xa1\xb1", +"\xff\xe5" => "\xa1\xef", +); + +# fill the blank with ascii + +for my $c (0x00..0x7f){ + next if exists $_U2E{"\x00" . chr($c)}; + $_U2E{"\x00" . chr($c)} = chr($c); +} + +%_E2U = (); + +1; + + +=head1 NAME + +Jcode::Unicode::Constants -- UCS2-EUC conversion table + +=head1 SYNOPSIS + +NONE + +=head1 DESCRIPTION + +This module just contains a huge hash that converts UCS2 from/to EUC. + +=head1 SEE ALSO + +=item ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/ + +Unicode mapping data + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +Unicode conversion table here is based on files at +ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/, +Copyright (c) 1991-1994 Unicode, Inc. + +=cut diff --git a/cpan/dist/Jcode/Jcode/Unicode/NoXS.pm b/cpan/dist/Jcode/Jcode/Unicode/NoXS.pm new file mode 100644 index 00000000..f0f0b57e --- /dev/null +++ b/cpan/dist/Jcode/Jcode/Unicode/NoXS.pm @@ -0,0 +1,218 @@ +# +# $Id: NoXS.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +package Jcode::Unicode::NoXS; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: NoXS.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 0.61 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +use Jcode::Constants qw(:all); +use Jcode::Unicode::Constants; + +use vars qw(*_E2U *_U2E $PEDANTIC); + +$PEDANTIC = 0; + +# Quick and dirty import + +*_E2U = *Jcode::Unicode::Constants::_E2U; +*_U2E = *Jcode::Unicode::Constants::_U2E; + +sub _init_u2e{ + unless ($PEDANTIC){ + $_U2E{"\xff\x3c"} = "\xa1\xc0"; # ¡À + }else{ + delete $_U2E{"\xff\x3c"}; + $_U2E{"\x00\x5c"} = "\xa1\xc0"; #\ + $_U2E{"\x00\x7e"} = "\x8f\xa2\xb7"; # ~ + } +} + +sub _init_e2u{ + unless (%_E2U){ + %_E2U = + reverse %_U2E; + } + unless ($PEDANTIC){ + $_E2U{"\xa1\xc0"} = "\xff\x3c"; # ¡À + }else{ + delete $_E2U{"\xa1\xc0"}; + $_E2U{"\xa1\xc0"} = "\x00\x5c"; #\ + $_E2U{"\x8f\xa2\xb7"} = "\x00\x7e"; # ~ + } +} + + +# Yuck! but this is necessary because this module is 'require'd +# instead of being 'use'd (No package export done) subs below +# belong to Jcode, not Jcode::Unicode + +sub Jcode::ucs2_euc{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + _init_u2e(); + + $$r_str =~ s( + ([\x00-\xff][\x00-\xff]) + ) + { + exists $_U2E{$1} ? $_U2E{$1} : $CHARCODE{UNDEF_JIS}; + }geox; + + $$r_str; +} + +sub Jcode::euc_ucs2{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + _init_e2u(); + + # 3 bytes + $$r_str =~ s( + ($RE{EUC_0212}|$RE{EUC_C}|$RE{EUC_KANA}|[\x00-\xff]) + ) + { + exists $_E2U{$1} ? $_E2U{$1} : $CHARCODE{UNDEF_UNICODE}; + }geox; + + $$r_str; +} + +sub Jcode::euc_utf8{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + &Jcode::euc_ucs2($r_str); + &Jcode::ucs2_utf8($r_str); +} + +sub Jcode::utf8_euc{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + &Jcode::utf8_ucs2($r_str); + &Jcode::ucs2_euc($r_str); +} + +sub Jcode::ucs2_utf8{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my $result; + for my $uc (unpack("n*", $$r_str)) { + if ($uc < 0x80) { + # 1 byte representation + $result .= chr($uc); + } elsif ($uc < 0x800) { + # 2 byte representation + $result .= chr(0xC0 | ($uc >> 6)) . + chr(0x80 | ($uc & 0x3F)); + } else { + # 3 byte representation + $result .= chr(0xE0 | ($uc >> 12)) . + chr(0x80 | (($uc >> 6) & 0x3F)) . + chr(0x80 | ($uc & 0x3F)); + } + + } + $$r_str = $result; +} + +sub Jcode::utf8_ucs2{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my $result; + $$r_str =~ s/^[\200-\277]+//o; # can't start with 10xxxxxx + $$r_str =~ + s[ + ($RE{ASCII} | $RE{UTF8}) + ]{ + my $str = $1; + if (length($str) == 1){ + pack("n", unpack("C", $str)); + }elsif(length($str) == 2){ + my ($c1,$c2) = unpack("C2", $str); + pack("n", (($c1 & 0x1F)<<6)|($c2 & 0x3F)); + }else{ + my ($c1,$c2,$c3) = unpack("C3", $str); + pack("n", + (($c1 & 0x0F)<<12)|(($c2 & 0x3F)<<6)|($c3 & 0x3F)); + } + }egox; + $$r_str; +} + +1; +__END__ + +=head1 NAME + +Jcode::Unicode::NoXS - Non-XS version of Jcode::Unicode + +=head1 SYNOPSIS + +NONE + +=head1 DESCRIPTION + +This module is called by Jcode.pm on demand. This module is not intended for +direct use by users. This modules implements functions related to Unicode. +Following functions are defined here; + +=item Jcode::ucs2_euc(); + +=item Jcode::euc_ucs2(); + +=item Jcode::ucs2_utf8(); + +=item Jcode::utf8_ucs2(); + +=item Jcode::euc_utf8(); + +=item Jcode::utf8_euc(); + +=cut + +=head1 VARIABLES + +=item B<$Jcode::Unicode::PEDANTIC> + +When set to non-zero, x-to-unicode conversion becomes pedantic. +That is, '\' (chr(0x5c)) is converted to zenkaku backslash and +'~" (chr(0x7e)) to JIS-x0212 tilde. + +By Default, Jcode::Unicode leaves ascii ([0x00-0x7f]) as it is. + +=head1 MODULES + +=item Jcode::Unicode::Constants + +Jumbo hash that contains UCS2-EUC conversion table is there. + +=head1 BUGS + + * It's very slow to initialize, due to the size of the conversion + table it has to load. Once loaded, however, the perfomance is not + too bad (But still much slower than XS version). + * Besides that, that is Unicode, Inc. to Blame (Especially JIS0201.TXT). + +=head1 SEE ALSO + +=item http://www.unicode.org/ + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +Unicode conversion table used here are based uponon files at +ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/, +Copyright (c) 1991-1994 Unicode, Inc. + +=cut + diff --git a/cpan/dist/Jcode/MANIFEST b/cpan/dist/Jcode/MANIFEST new file mode 100644 index 00000000..e4c19586 --- /dev/null +++ b/cpan/dist/Jcode/MANIFEST @@ -0,0 +1,33 @@ +HISTORY +INSTALL +Jcode.pm +Jcode/Constants.pm +Jcode/H2Z.pm +Jcode/Tr.pm +Jcode/Unicode/Constants.pm +Jcode/Unicode/NoXS.pm +MANIFEST +Makefile.PL +README +Unicode/Makefile.PL +Unicode/Unicode.pm +Unicode/Unicode.xs +Unicode/_test.pl +Unicode/table.h +Unicode/uni.c +mac_install.pl +t/ambiguous.pl +t/benchmark.pl +t/convert.t +t/getcode.t +t/h2z.t +t/hankaku.euc +t/hiragana.euc +t/mime.t +t/new.t +t/table.euc +t/tr.t +t/unibench.pl +t/x0212.euc +t/zenkaku.euc +win_install.pl diff --git a/cpan/dist/Jcode/Makefile.PL b/cpan/dist/Jcode/Makefile.PL new file mode 100644 index 00000000..1120cafd --- /dev/null +++ b/cpan/dist/Jcode/Makefile.PL @@ -0,0 +1,16 @@ +#!/usr/local/bin/perl +# +# $Id: Makefile.PL,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +use ExtUtils::MakeMaker; + +WriteMakefile + ( + NAME => 'Jcode', + VERSION_FROM => 'Jcode.pm', + PREREQ_PM => { + 'MIME::Base64' => "2.1", + } + ); + diff --git a/cpan/dist/Jcode/README b/cpan/dist/Jcode/README new file mode 100644 index 00000000..d3af4746 --- /dev/null +++ b/cpan/dist/Jcode/README @@ -0,0 +1,20 @@ +# +# $Id: README,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +Jcode: +------ + +This is a Perl extension interface to convert Japanese text. + +To build the extensions, unpack this distribution somewhere, create +the Makefile by running 'perl Makefile.PL' and do a 'make', 'make +test', and if successful 'make install'. + +You will need perl version 5.004 or better to install these modules. +Further documentation is embedded in the individual modules. + +Copyright 1999 Dan Kogai. + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. diff --git a/cpan/dist/Jcode/Unicode/Makefile.PL b/cpan/dist/Jcode/Unicode/Makefile.PL new file mode 100644 index 00000000..29874bd0 --- /dev/null +++ b/cpan/dist/Jcode/Unicode/Makefile.PL @@ -0,0 +1,7 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Jcode::Unicode', + VERSION_FROM => 'Unicode.pm', + ); + diff --git a/cpan/dist/Jcode/Unicode/Unicode.pm b/cpan/dist/Jcode/Unicode/Unicode.pm new file mode 100644 index 00000000..3d84405e --- /dev/null +++ b/cpan/dist/Jcode/Unicode/Unicode.pm @@ -0,0 +1,143 @@ +# +# $Id: Unicode.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $ +# + +package Jcode::Unicode; + +use strict; +use vars qw($RCSID $VERSION @ISA @EXPORT $PEDANTIC); + +$RCSID = q$Id: Unicode.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; +require Exporter; +require DynaLoader; + +@ISA = qw(Exporter DynaLoader); + +$PEDANTIC ||= 0; + +bootstrap Jcode::Unicode $VERSION; + +sub _mkbuf{ + my $thingy = shift; + if (ref $thingy){ + return $thingy; + } + else{ + my $buf = $thingy; + return \$buf; + } +} + +# Merge these subs to Jcode + +sub Jcode::ucs2_euc{ + my ($thingy, $pedantic) = @_; $pedantic ||= 0; + my $r_str = _mkbuf($thingy); + return + $$r_str = Jcode::Unicode::ucs2_euc($$r_str, $pedantic); +} + +sub Jcode::euc_ucs2{ + my ($thingy, $pedantic) = @_; $pedantic ||= 0; + my $r_str = _mkbuf($thingy); + return + $$r_str = Jcode::Unicode::euc_ucs2($$r_str, $pedantic); +} + +sub Jcode::ucs2_utf8{ + my ($thingy, $pedantic) = @_; + my $r_str = _mkbuf($thingy); + return + $$r_str = Jcode::Unicode::ucs2_utf8($$r_str); +} + +sub Jcode::utf8_ucs2{ + my ($thingy) = @_; + my $r_str = _mkbuf($thingy); + return + $$r_str = Jcode::Unicode::utf8_ucs2($$r_str); +} + + +sub Jcode::euc_utf8{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + &Jcode::euc_ucs2($r_str); + &Jcode::ucs2_utf8($r_str); +} + +sub Jcode::utf8_euc{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + &Jcode::utf8_ucs2($r_str); + &Jcode::ucs2_euc($r_str); +} + +1; +__END__ + +=head1 NAME + +Jcode::Unicode - Aux. routines for Jcode + +=head1 SYNOPSIS + +NONE + +=head1 DESCRIPTION + +This module implements following subs as XS. Used via Jcode.pm. + +This module is called by Jcode.pm on demand. This module is not intended for +direct use by users. This modules implements functions related to Unicode. +Following functions are defined here; + +=item Jcode::ucs2_euc(); + +=item Jcode::euc_ucs2(); + +=item Jcode::ucs2_utf8(); + +=item Jcode::utf8_ucs2(); + +=item Jcode::euc_utf8(); + +=item Jcode::utf8_euc(); + +=cut + +=head1 VARIABLES + +=item B<$Jcode::Unicode::PEDANTIC> + +When set to non-zero, x-to-unicode conversion becomes pedantic. +That is, '\' (chr(0x5c)) is converted to zenkaku backslash and +'~" (chr(0x7e)) to JIS-x0212 tilde. + +By Default, Jcode::Unicode leaves ascii ([0x00-0x7f]) as it is. + +=cut + +=head1 BUGS + +If any, that is Unicode, Inc. to Blame (Especially JIS0201.TXT). + +=head1 SEE ALSO + +=item http://www.unicode.org/ + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +Unicode conversion table used here are based uponon files at +ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/, +Copyright (c) 1991-1994 Unicode, Inc. + +=cut diff --git a/cpan/dist/Jcode/Unicode/Unicode.xs b/cpan/dist/Jcode/Unicode/Unicode.xs new file mode 100644 index 00000000..97c49ae8 --- /dev/null +++ b/cpan/dist/Jcode/Unicode/Unicode.xs @@ -0,0 +1,86 @@ +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" + +static int +not_here(s) +char *s; +{ + croak("%s not implemented on this architecture", s); + return -1; +} + +#define PERL_XS 1 +#include "uni.c" + +MODULE = Jcode::Unicode PACKAGE = Jcode::Unicode + +PROTOTYPES: ENABLE + +char * +euc_ucs2(src, ...) + SV * src + PROTOTYPE: $;$ + CODE: + STRLEN srclen; + STRLEN dstlen; + char *s = SvROK(src) ? SvPV(SvRV(src), srclen) :SvPV(src, srclen); + int pedantic = 0; + if (items > 1) { pedantic = SvIV(ST(1)); }; + dstlen = srclen * 3 + 10; /* large enough? */ + ST(0) = sv_2mortal(newSV(dstlen)); + dstlen = _euc_ucs2(SvPVX(ST(0)), s, pedantic); + SvCUR_set(ST(0), dstlen); + SvPOK_only(ST(0)); + if (SvROK(src)) { sv_setsv(SvRV(src), ST(0)); } + +char * +ucs2_euc(src, ...) + SV * src + PROTOTYPE: $;$ + CODE: + STRLEN srclen; + STRLEN dstlen; + char *s = SvROK(src) ? SvPV(SvRV(src), srclen) :SvPV(src, srclen); + int pedantic = 0; + if (items > 1) { pedantic = SvIV(ST(1)); }; + dstlen = srclen * 3 + 10; /* large enough? */ + ST(0) = sv_2mortal(newSV(dstlen)); + dstlen = _ucs2_euc(SvPVX(ST(0)), s, srclen, pedantic); + SvCUR_set(ST(0), dstlen); + SvPOK_only(ST(0)); + if (SvROK(src)) { sv_setsv(SvRV(src), ST(0)); } + +char * +utf8_ucs2(src, ...) + SV * src + PROTOTYPE: $ + CODE: + STRLEN srclen; + STRLEN dstlen; + char *s = SvROK(src) ? SvPV(SvRV(src), srclen) :SvPV(src, srclen); + dstlen = srclen * 3 + 10; /* large enough? */ + ST(0) = sv_2mortal(newSV(dstlen)); + dstlen = _utf8_ucs2(SvPVX(ST(0)), s); + SvCUR_set(ST(0), dstlen); + SvPOK_only(ST(0)); + if (SvROK(src)) { sv_setsv(SvRV(src), ST(0)); } + +char * +ucs2_utf8(src, ...) + SV * src + PROTOTYPE: $ + CODE: + STRLEN srclen; + STRLEN dstlen; + char *s = SvROK(src) ? SvPV(SvRV(src), srclen) :SvPV(src, srclen); + dstlen = srclen * 3 + 10; /* large enough? */ + ST(0) = sv_2mortal(newSV(dstlen)); + dstlen = _ucs2_utf8(SvPVX(ST(0)), s, srclen); + SvCUR_set(ST(0), dstlen); + SvPOK_only(ST(0)); + if (SvROK(src)) { sv_setsv(SvRV(src), ST(0)); } + + + + diff --git a/cpan/dist/Jcode/Unicode/_test.pl b/cpan/dist/Jcode/Unicode/_test.pl new file mode 100644 index 00000000..7b8bb80d --- /dev/null +++ b/cpan/dist/Jcode/Unicode/_test.pl @@ -0,0 +1,16 @@ + +use ExtUtils::testlib; +use Jcode::Unicode; +use Getopt::Std; +getopts("p"); + +my $file = "../t/table.euc"; +my $euc, $ucs2, $utf8; +open F, $file or die $!; +read F, $euc, -s $file; + +print "1..2\n"; +print "Ok 1\n" if $ucs2 = Jcode::Unicode::euc_ucs2($euc, $opt_p); +print "Ok 2\n" if $euc eq Jcode::Unicode::ucs2_euc($ucs2, $opt_p); +print "Ok 3\n" if $utf8 = Jcode::Unicode::ucs2_utf8($ucs2); +print "Ok 4\n" if $ucs2 eq Jcode::Unicode::utf8_ucs2($utf8); diff --git a/cpan/dist/Jcode/Unicode/table.h b/cpan/dist/Jcode/Unicode/table.h new file mode 100644 index 00000000..eddf5955 --- /dev/null +++ b/cpan/dist/Jcode/Unicode/table.h @@ -0,0 +1,13033 @@ +/* + * $Id: table.h,v 1.1 2000/11/15 05:44:53 dankogai Exp $ + * (c) 1999 Dan Kogai <dankogai@dan.co.jp> + */ + +typedef unsigned char Octet; +typedef unsigned long Quad; + +typedef struct { + Quad ucs2, euc; +} Table_t; + +#define TABLE_SIZE 13012 + +Table_t E2U[TABLE_SIZE]; + +/* this guy is pedantic */ + +Table_t U2E[] = { + {0x5c, 0xa1c0}, /* \ */ + {0x7e, 0x8fa2b7}, /* ~ */ + {0xa1, 0x8fa2c2}, + {0xa2, 0xa1f1}, + {0xa3, 0xa1f2}, + {0xa4, 0x8fa2f0}, + {0xa5, 0x5c}, + {0xa6, 0x8fa2c3}, + {0xa7, 0xa1f8}, + {0xa8, 0xa1af}, + {0xa9, 0x8fa2ed}, + {0xaa, 0x8fa2ec}, + {0xac, 0xa2cc}, + {0xae, 0x8fa2ee}, + {0xaf, 0x8fa2b4}, + {0xb0, 0xa1eb}, + {0xb1, 0xa1de}, + {0xb4, 0xa1ad}, + {0xb6, 0xa2f9}, + {0xb8, 0x8fa2b1}, + {0xba, 0x8fa2eb}, + {0xbf, 0x8fa2c4}, + {0xc0, 0x8faaa2}, + {0xc1, 0x8faaa1}, + {0xc2, 0x8faaa4}, + {0xc3, 0x8faaaa}, + {0xc4, 0x8faaa3}, + {0xc5, 0x8faaa9}, + {0xc6, 0x8fa9a1}, + {0xc7, 0x8faaae}, + {0xc8, 0x8faab2}, + {0xc9, 0x8faab1}, + {0xca, 0x8faab4}, + {0xcb, 0x8faab3}, + {0xcc, 0x8faac0}, + {0xcd, 0x8faabf}, + {0xce, 0x8faac2}, + {0xcf, 0x8faac1}, + {0xd1, 0x8faad0}, + {0xd2, 0x8faad2}, + {0xd3, 0x8faad1}, + {0xd4, 0x8faad4}, + {0xd5, 0x8faad8}, + {0xd6, 0x8faad3}, + {0xd7, 0xa1df}, + {0xd8, 0x8fa9ac}, + {0xd9, 0x8faae3}, + {0xda, 0x8faae2}, + {0xdb, 0x8faae5}, + {0xdc, 0x8faae4}, + {0xdd, 0x8faaf2}, + {0xde, 0x8fa9b0}, + {0xdf, 0x8fa9ce}, + {0xe0, 0x8faba2}, + {0xe1, 0x8faba1}, + {0xe2, 0x8faba4}, + {0xe3, 0x8fabaa}, + {0xe4, 0x8faba3}, + {0xe5, 0x8faba9}, + {0xe6, 0x8fa9c1}, + {0xe7, 0x8fabae}, + {0xe8, 0x8fabb2}, + {0xe9, 0x8fabb1}, + {0xea, 0x8fabb4}, + {0xeb, 0x8fabb3}, + {0xec, 0x8fabc0}, + {0xed, 0x8fabbf}, + {0xee, 0x8fabc2}, + {0xef, 0x8fabc1}, + {0xf0, 0x8fa9c3}, + {0xf1, 0x8fabd0}, + {0xf2, 0x8fabd2}, + {0xf3, 0x8fabd1}, + {0xf4, 0x8fabd4}, + {0xf5, 0x8fabd8}, + {0xf6, 0x8fabd3}, + {0xf7, 0xa1e0}, + {0xf8, 0x8fa9cc}, + {0xf9, 0x8fabe3}, + {0xfa, 0x8fabe2}, + {0xfb, 0x8fabe5}, + {0xfc, 0x8fabe4}, + {0xfd, 0x8fabf2}, + {0xfe, 0x8fa9d0}, + {0xff, 0x8fabf3}, + {0x100, 0x8faaa7}, + {0x101, 0x8faba7}, + {0x102, 0x8faaa5}, + {0x103, 0x8faba5}, + {0x104, 0x8faaa8}, + {0x105, 0x8faba8}, + {0x106, 0x8faaab}, + {0x107, 0x8fabab}, + {0x108, 0x8faaac}, + {0x109, 0x8fabac}, + {0x10a, 0x8faaaf}, + {0x10b, 0x8fabaf}, + {0x10c, 0x8faaad}, + {0x10d, 0x8fabad}, + {0x10e, 0x8faab0}, + {0x10f, 0x8fabb0}, + {0x110, 0x8fa9a2}, + {0x111, 0x8fa9c2}, + {0x112, 0x8faab7}, + {0x113, 0x8fabb7}, + {0x116, 0x8faab6}, + {0x117, 0x8fabb6}, + {0x118, 0x8faab8}, + {0x119, 0x8fabb8}, + {0x11a, 0x8faab5}, + {0x11b, 0x8fabb5}, + {0x11c, 0x8faaba}, + {0x11d, 0x8fabba}, + {0x11e, 0x8faabb}, + {0x11f, 0x8fabbb}, + {0x120, 0x8faabd}, + {0x121, 0x8fabbd}, + {0x122, 0x8faabc}, + {0x124, 0x8faabe}, + {0x125, 0x8fabbe}, + {0x126, 0x8fa9a4}, + {0x127, 0x8fa9c4}, + {0x128, 0x8faac7}, + {0x129, 0x8fabc7}, + {0x12a, 0x8faac5}, + {0x12b, 0x8fabc5}, + {0x12e, 0x8faac6}, + {0x12f, 0x8fabc6}, + {0x130, 0x8faac4}, + {0x131, 0x8fa9c5}, + {0x132, 0x8fa9a6}, + {0x133, 0x8fa9c6}, + {0x134, 0x8faac8}, + {0x135, 0x8fabc8}, + {0x136, 0x8faac9}, + {0x137, 0x8fabc9}, + {0x138, 0x8fa9c7}, + {0x139, 0x8faaca}, + {0x13a, 0x8fabca}, + {0x13b, 0x8faacc}, + {0x13c, 0x8fabcc}, + {0x13d, 0x8faacb}, + {0x13e, 0x8fabcb}, + {0x13f, 0x8fa9a9}, + {0x140, 0x8fa9c9}, + {0x141, 0x8fa9a8}, + {0x142, 0x8fa9c8}, + {0x143, 0x8faacd}, + {0x144, 0x8fabcd}, + {0x145, 0x8faacf}, + {0x146, 0x8fabcf}, + {0x147, 0x8faace}, + {0x148, 0x8fabce}, + {0x149, 0x8fa9ca}, + {0x14a, 0x8fa9ab}, + {0x14b, 0x8fa9cb}, + {0x14c, 0x8faad7}, + {0x14d, 0x8fabd7}, + {0x150, 0x8faad6}, + {0x151, 0x8fabd6}, + {0x152, 0x8fa9ad}, + {0x153, 0x8fa9cd}, + {0x154, 0x8faad9}, + {0x155, 0x8fabd9}, + {0x156, 0x8faadb}, + {0x157, 0x8fabdb}, + {0x158, 0x8faada}, + {0x159, 0x8fabda}, + {0x15a, 0x8faadc}, + {0x15b, 0x8fabdc}, + {0x15c, 0x8faadd}, + {0x15d, 0x8fabdd}, + {0x15e, 0x8faadf}, + {0x15f, 0x8fabdf}, + {0x160, 0x8faade}, + {0x161, 0x8fabde}, + {0x162, 0x8faae1}, + {0x163, 0x8fabe1}, + {0x164, 0x8faae0}, + {0x165, 0x8fabe0}, + {0x166, 0x8fa9af}, + {0x167, 0x8fa9cf}, + {0x168, 0x8faaec}, + {0x169, 0x8fabec}, + {0x16a, 0x8faae9}, + {0x16b, 0x8fabe9}, + {0x16c, 0x8faae6}, + {0x16d, 0x8fabe6}, + {0x16e, 0x8faaeb}, + {0x16f, 0x8fabeb}, + {0x170, 0x8faae8}, + {0x171, 0x8fabe8}, + {0x172, 0x8faaea}, + {0x173, 0x8fabea}, + {0x174, 0x8faaf1}, + {0x175, 0x8fabf1}, + {0x176, 0x8faaf4}, + {0x177, 0x8fabf4}, + {0x178, 0x8faaf3}, + {0x179, 0x8faaf5}, + {0x17a, 0x8fabf5}, + {0x17b, 0x8faaf7}, + {0x17c, 0x8fabf7}, + {0x17d, 0x8faaf6}, + {0x17e, 0x8fabf6}, + {0x1cd, 0x8faaa6}, + {0x1ce, 0x8faba6}, + {0x1cf, 0x8faac3}, + {0x1d0, 0x8fabc3}, + {0x1d1, 0x8faad5}, + {0x1d2, 0x8fabd5}, + {0x1d3, 0x8faae7}, + {0x1d4, 0x8fabe7}, + {0x1d5, 0x8faaf0}, + {0x1d6, 0x8fabf0}, + {0x1d7, 0x8faaed}, + {0x1d8, 0x8fabed}, + {0x1d9, 0x8faaef}, + {0x1da, 0x8fabef}, + {0x1db, 0x8faaee}, + {0x1dc, 0x8fabee}, + {0x1f5, 0x8fabb9}, + {0x2c7, 0x8fa2b0}, + {0x2d8, 0x8fa2af}, + {0x2d9, 0x8fa2b2}, + {0x2da, 0x8fa2b6}, + {0x2db, 0x8fa2b5}, + {0x2dd, 0x8fa2b3}, + {0x384, 0x8fa2b8}, + {0x385, 0x8fa2b9}, + {0x386, 0x8fa6e1}, + {0x388, 0x8fa6e2}, + {0x389, 0x8fa6e3}, + {0x38a, 0x8fa6e4}, + {0x38c, 0x8fa6e7}, + {0x38e, 0x8fa6e9}, + {0x38f, 0x8fa6ec}, + {0x390, 0x8fa6f6}, + {0x391, 0xa6a1}, + {0x392, 0xa6a2}, + {0x393, 0xa6a3}, + {0x394, 0xa6a4}, + {0x395, 0xa6a5}, + {0x396, 0xa6a6}, + {0x397, 0xa6a7}, + {0x398, 0xa6a8}, + {0x399, 0xa6a9}, + {0x39a, 0xa6aa}, + {0x39b, 0xa6ab}, + {0x39c, 0xa6ac}, + {0x39d, 0xa6ad}, + {0x39e, 0xa6ae}, + {0x39f, 0xa6af}, + {0x3a0, 0xa6b0}, + {0x3a1, 0xa6b1}, + {0x3a3, 0xa6b2}, + {0x3a4, 0xa6b3}, + {0x3a5, 0xa6b4}, + {0x3a6, 0xa6b5}, + {0x3a7, 0xa6b6}, + {0x3a8, 0xa6b7}, + {0x3a9, 0xa6b8}, + {0x3aa, 0x8fa6e5}, + {0x3ab, 0x8fa6ea}, + {0x3ac, 0x8fa6f1}, + {0x3ad, 0x8fa6f2}, + {0x3ae, 0x8fa6f3}, + {0x3af, 0x8fa6f4}, + {0x3b0, 0x8fa6fb}, + {0x3b1, 0xa6c1}, + {0x3b2, 0xa6c2}, + {0x3b3, 0xa6c3}, + {0x3b4, 0xa6c4}, + {0x3b5, 0xa6c5}, + {0x3b6, 0xa6c6}, + {0x3b7, 0xa6c7}, + {0x3b8, 0xa6c8}, + {0x3b9, 0xa6c9}, + {0x3ba, 0xa6ca}, + {0x3bb, 0xa6cb}, + {0x3bc, 0xa6cc}, + {0x3bd, 0xa6cd}, + {0x3be, 0xa6ce}, + {0x3bf, 0xa6cf}, + {0x3c0, 0xa6d0}, + {0x3c1, 0xa6d1}, + {0x3c2, 0x8fa6f8}, + {0x3c3, 0xa6d2}, + {0x3c4, 0xa6d3}, + {0x3c5, 0xa6d4}, + {0x3c6, 0xa6d5}, + {0x3c7, 0xa6d6}, + {0x3c8, 0xa6d7}, + {0x3c9, 0xa6d8}, + {0x3ca, 0x8fa6f5}, + {0x3cb, 0x8fa6fa}, + {0x3cc, 0x8fa6f7}, + {0x3cd, 0x8fa6f9}, + {0x3ce, 0x8fa6fc}, + {0x401, 0xa7a7}, + {0x402, 0x8fa7c2}, + {0x403, 0x8fa7c3}, + {0x404, 0x8fa7c4}, + {0x405, 0x8fa7c5}, + {0x406, 0x8fa7c6}, + {0x407, 0x8fa7c7}, + {0x408, 0x8fa7c8}, + {0x409, 0x8fa7c9}, + {0x40a, 0x8fa7ca}, + {0x40b, 0x8fa7cb}, + {0x40c, 0x8fa7cc}, + {0x40e, 0x8fa7cd}, + {0x40f, 0x8fa7ce}, + {0x410, 0xa7a1}, + {0x411, 0xa7a2}, + {0x412, 0xa7a3}, + {0x413, 0xa7a4}, + {0x414, 0xa7a5}, + {0x415, 0xa7a6}, + {0x416, 0xa7a8}, + {0x417, 0xa7a9}, + {0x418, 0xa7aa}, + {0x419, 0xa7ab}, + {0x41a, 0xa7ac}, + {0x41b, 0xa7ad}, + {0x41c, 0xa7ae}, + {0x41d, 0xa7af}, + {0x41e, 0xa7b0}, + {0x41f, 0xa7b1}, + {0x420, 0xa7b2}, + {0x421, 0xa7b3}, + {0x422, 0xa7b4}, + {0x423, 0xa7b5}, + {0x424, 0xa7b6}, + {0x425, 0xa7b7}, + {0x426, 0xa7b8}, + {0x427, 0xa7b9}, + {0x428, 0xa7ba}, + {0x429, 0xa7bb}, + {0x42a, 0xa7bc}, + {0x42b, 0xa7bd}, + {0x42c, 0xa7be}, + {0x42d, 0xa7bf}, + {0x42e, 0xa7c0}, + {0x42f, 0xa7c1}, + {0x430, 0xa7d1}, + {0x431, 0xa7d2}, + {0x432, 0xa7d3}, + {0x433, 0xa7d4}, + {0x434, 0xa7d5}, + {0x435, 0xa7d6}, + {0x436, 0xa7d8}, + {0x437, 0xa7d9}, + {0x438, 0xa7da}, + {0x439, 0xa7db}, + {0x43a, 0xa7dc}, + {0x43b, 0xa7dd}, + {0x43c, 0xa7de}, + {0x43d, 0xa7df}, + {0x43e, 0xa7e0}, + {0x43f, 0xa7e1}, + {0x440, 0xa7e2}, + {0x441, 0xa7e3}, + {0x442, 0xa7e4}, + {0x443, 0xa7e5}, + {0x444, 0xa7e6}, + {0x445, 0xa7e7}, + {0x446, 0xa7e8}, + {0x447, 0xa7e9}, + {0x448, 0xa7ea}, + {0x449, 0xa7eb}, + {0x44a, 0xa7ec}, + {0x44b, 0xa7ed}, + {0x44c, 0xa7ee}, + {0x44d, 0xa7ef}, + {0x44e, 0xa7f0}, + {0x44f, 0xa7f1}, + {0x451, 0xa7d7}, + {0x452, 0x8fa7f2}, + {0x453, 0x8fa7f3}, + {0x454, 0x8fa7f4}, + {0x455, 0x8fa7f5}, + {0x456, 0x8fa7f6}, + {0x457, 0x8fa7f7}, + {0x458, 0x8fa7f8}, + {0x459, 0x8fa7f9}, + {0x45a, 0x8fa7fa}, + {0x45b, 0x8fa7fb}, + {0x45c, 0x8fa7fc}, + {0x45e, 0x8fa7fd}, + {0x45f, 0x8fa7fe}, + {0x2010, 0xa1be}, + {0x2015, 0xa1bd}, + {0x2016, 0xa1c2}, + {0x2018, 0xa1c6}, + {0x2019, 0xa1c7}, + {0x201c, 0xa1c8}, + {0x201d, 0xa1c9}, + {0x2020, 0xa2f7}, + {0x2021, 0xa2f8}, + {0x2025, 0xa1c5}, + {0x2026, 0xa1c4}, + {0x2030, 0xa2f3}, + {0x2032, 0xa1ec}, + {0x2033, 0xa1ed}, + {0x203b, 0xa2a8}, + {0x203e, 0x7e}, + {0x2103, 0xa1ee}, + {0x2116, 0x8fa2f1}, + {0x2122, 0x8fa2ef}, + {0x212b, 0xa2f2}, + {0x2190, 0xa2ab}, + {0x2191, 0xa2ac}, + {0x2192, 0xa2aa}, + {0x2193, 0xa2ad}, + {0x21d2, 0xa2cd}, + {0x21d4, 0xa2ce}, + {0x2200, 0xa2cf}, + {0x2202, 0xa2df}, + {0x2203, 0xa2d0}, + {0x2207, 0xa2e0}, + {0x2208, 0xa2ba}, + {0x220b, 0xa2bb}, + {0x2212, 0xa1dd}, + {0x221a, 0xa2e5}, + {0x221d, 0xa2e7}, + {0x221e, 0xa1e7}, + {0x2220, 0xa2dc}, + {0x2227, 0xa2ca}, + {0x2228, 0xa2cb}, + {0x2229, 0xa2c1}, + {0x222a, 0xa2c0}, + {0x222b, 0xa2e9}, + {0x222c, 0xa2ea}, + {0x2234, 0xa1e8}, + {0x2235, 0xa2e8}, + {0x223d, 0xa2e6}, + {0x2252, 0xa2e2}, + {0x2260, 0xa1e2}, + {0x2261, 0xa2e1}, + {0x2266, 0xa1e5}, + {0x2267, 0xa1e6}, + {0x226a, 0xa2e3}, + {0x226b, 0xa2e4}, + {0x2282, 0xa2be}, + {0x2283, 0xa2bf}, + {0x2286, 0xa2bc}, + {0x2287, 0xa2bd}, + {0x22a5, 0xa2dd}, + {0x2312, 0xa2de}, + {0x2500, 0xa8a1}, + {0x2501, 0xa8ac}, + {0x2502, 0xa8a2}, + {0x2503, 0xa8ad}, + {0x250c, 0xa8a3}, + {0x250f, 0xa8ae}, + {0x2510, 0xa8a4}, + {0x2513, 0xa8af}, + {0x2514, 0xa8a6}, + {0x2517, 0xa8b1}, + {0x2518, 0xa8a5}, + {0x251b, 0xa8b0}, + {0x251c, 0xa8a7}, + {0x251d, 0xa8bc}, + {0x2520, 0xa8b7}, + {0x2523, 0xa8b2}, + {0x2524, 0xa8a9}, + {0x2525, 0xa8be}, + {0x2528, 0xa8b9}, + {0x252b, 0xa8b4}, + {0x252c, 0xa8a8}, + {0x252f, 0xa8b8}, + {0x2530, 0xa8bd}, + {0x2533, 0xa8b3}, + {0x2534, 0xa8aa}, + {0x2537, 0xa8ba}, + {0x2538, 0xa8bf}, + {0x253b, 0xa8b5}, + {0x253c, 0xa8ab}, + {0x253f, 0xa8bb}, + {0x2542, 0xa8c0}, + {0x254b, 0xa8b6}, + {0x25a0, 0xa2a3}, + {0x25a1, 0xa2a2}, + {0x25b2, 0xa2a5}, + {0x25b3, 0xa2a4}, + {0x25bc, 0xa2a7}, + {0x25bd, 0xa2a6}, + {0x25c6, 0xa2a1}, + {0x25c7, 0xa1fe}, + {0x25cb, 0xa1fb}, + {0x25ce, 0xa1fd}, + {0x25cf, 0xa1fc}, + {0x25ef, 0xa2fe}, + {0x2605, 0xa1fa}, + {0x2606, 0xa1f9}, + {0x2640, 0xa1ea}, + {0x2642, 0xa1e9}, + {0x266a, 0xa2f6}, + {0x266d, 0xa2f5}, + {0x266f, 0xa2f4}, + {0x3000, 0xa1a1}, + {0x3001, 0xa1a2}, + {0x3002, 0xa1a3}, + {0x3003, 0xa1b7}, + {0x3005, 0xa1b9}, + {0x3006, 0xa1ba}, + {0x3007, 0xa1bb}, + {0x3008, 0xa1d2}, + {0x3009, 0xa1d3}, + {0x300a, 0xa1d4}, + {0x300b, 0xa1d5}, + {0x300c, 0xa1d6}, + {0x300d, 0xa1d7}, + {0x300e, 0xa1d8}, + {0x300f, 0xa1d9}, + {0x3010, 0xa1da}, + {0x3011, 0xa1db}, + {0x3012, 0xa2a9}, + {0x3013, 0xa2ae}, + {0x3014, 0xa1cc}, + {0x3015, 0xa1cd}, + {0x301c, 0xa1c1}, + {0x3041, 0xa4a1}, + {0x3042, 0xa4a2}, + {0x3043, 0xa4a3}, + {0x3044, 0xa4a4}, + {0x3045, 0xa4a5}, + {0x3046, 0xa4a6}, + {0x3047, 0xa4a7}, + {0x3048, 0xa4a8}, + {0x3049, 0xa4a9}, + {0x304a, 0xa4aa}, + {0x304b, 0xa4ab}, + {0x304c, 0xa4ac}, + {0x304d, 0xa4ad}, + {0x304e, 0xa4ae}, + {0x304f, 0xa4af}, + {0x3050, 0xa4b0}, + {0x3051, 0xa4b1}, + {0x3052, 0xa4b2}, + {0x3053, 0xa4b3}, + {0x3054, 0xa4b4}, + {0x3055, 0xa4b5}, + {0x3056, 0xa4b6}, + {0x3057, 0xa4b7}, + {0x3058, 0xa4b8}, + {0x3059, 0xa4b9}, + {0x305a, 0xa4ba}, + {0x305b, 0xa4bb}, + {0x305c, 0xa4bc}, + {0x305d, 0xa4bd}, + {0x305e, 0xa4be}, + {0x305f, 0xa4bf}, + {0x3060, 0xa4c0}, + {0x3061, 0xa4c1}, + {0x3062, 0xa4c2}, + {0x3063, 0xa4c3}, + {0x3064, 0xa4c4}, + {0x3065, 0xa4c5}, + {0x3066, 0xa4c6}, + {0x3067, 0xa4c7}, + {0x3068, 0xa4c8}, + {0x3069, 0xa4c9}, + {0x306a, 0xa4ca}, + {0x306b, 0xa4cb}, + {0x306c, 0xa4cc}, + {0x306d, 0xa4cd}, + {0x306e, 0xa4ce}, + {0x306f, 0xa4cf}, + {0x3070, 0xa4d0}, + {0x3071, 0xa4d1}, + {0x3072, 0xa4d2}, + {0x3073, 0xa4d3}, + {0x3074, 0xa4d4}, + {0x3075, 0xa4d5}, + {0x3076, 0xa4d6}, + {0x3077, 0xa4d7}, + {0x3078, 0xa4d8}, + {0x3079, 0xa4d9}, + {0x307a, 0xa4da}, + {0x307b, 0xa4db}, + {0x307c, 0xa4dc}, + {0x307d, 0xa4dd}, + {0x307e, 0xa4de}, + {0x307f, 0xa4df}, + {0x3080, 0xa4e0}, + {0x3081, 0xa4e1}, + {0x3082, 0xa4e2}, + {0x3083, 0xa4e3}, + {0x3084, 0xa4e4}, + {0x3085, 0xa4e5}, + {0x3086, 0xa4e6}, + {0x3087, 0xa4e7}, + {0x3088, 0xa4e8}, + {0x3089, 0xa4e9}, + {0x308a, 0xa4ea}, + {0x308b, 0xa4eb}, + {0x308c, 0xa4ec}, + {0x308d, 0xa4ed}, + {0x308e, 0xa4ee}, + {0x308f, 0xa4ef}, + {0x3090, 0xa4f0}, + {0x3091, 0xa4f1}, + {0x3092, 0xa4f2}, + {0x3093, 0xa4f3}, + {0x309b, 0xa1ab}, + {0x309c, 0xa1ac}, + {0x309d, 0xa1b5}, + {0x309e, 0xa1b6}, + {0x30a1, 0xa5a1}, + {0x30a2, 0xa5a2}, + {0x30a3, 0xa5a3}, + {0x30a4, 0xa5a4}, + {0x30a5, 0xa5a5}, + {0x30a6, 0xa5a6}, + {0x30a7, 0xa5a7}, + {0x30a8, 0xa5a8}, + {0x30a9, 0xa5a9}, + {0x30aa, 0xa5aa}, + {0x30ab, 0xa5ab}, + {0x30ac, 0xa5ac}, + {0x30ad, 0xa5ad}, + {0x30ae, 0xa5ae}, + {0x30af, 0xa5af}, + {0x30b0, 0xa5b0}, + {0x30b1, 0xa5b1}, + {0x30b2, 0xa5b2}, + {0x30b3, 0xa5b3}, + {0x30b4, 0xa5b4}, + {0x30b5, 0xa5b5}, + {0x30b6, 0xa5b6}, + {0x30b7, 0xa5b7}, + {0x30b8, 0xa5b8}, + {0x30b9, 0xa5b9}, + {0x30ba, 0xa5ba}, + {0x30bb, 0xa5bb}, + {0x30bc, 0xa5bc}, + {0x30bd, 0xa5bd}, + {0x30be, 0xa5be}, + {0x30bf, 0xa5bf}, + {0x30c0, 0xa5c0}, + {0x30c1, 0xa5c1}, + {0x30c2, 0xa5c2}, + {0x30c3, 0xa5c3}, + {0x30c4, 0xa5c4}, + {0x30c5, 0xa5c5}, + {0x30c6, 0xa5c6}, + {0x30c7, 0xa5c7}, + {0x30c8, 0xa5c8}, + {0x30c9, 0xa5c9}, + {0x30ca, 0xa5ca}, + {0x30cb, 0xa5cb}, + {0x30cc, 0xa5cc}, + {0x30cd, 0xa5cd}, + {0x30ce, 0xa5ce}, + {0x30cf, 0xa5cf}, + {0x30d0, 0xa5d0}, + {0x30d1, 0xa5d1}, + {0x30d2, 0xa5d2}, + {0x30d3, 0xa5d3}, + {0x30d4, 0xa5d4}, + {0x30d5, 0xa5d5}, + {0x30d6, 0xa5d6}, + {0x30d7, 0xa5d7}, + {0x30d8, 0xa5d8}, + {0x30d9, 0xa5d9}, + {0x30da, 0xa5da}, + {0x30db, 0xa5db}, + {0x30dc, 0xa5dc}, + {0x30dd, 0xa5dd}, + {0x30de, 0xa5de}, + {0x30df, 0xa5df}, + {0x30e0, 0xa5e0}, + {0x30e1, 0xa5e1}, + {0x30e2, 0xa5e2}, + {0x30e3, 0xa5e3}, + {0x30e4, 0xa5e4}, + {0x30e5, 0xa5e5}, + {0x30e6, 0xa5e6}, + {0x30e7, 0xa5e7}, + {0x30e8, 0xa5e8}, + {0x30e9, 0xa5e9}, + {0x30ea, 0xa5ea}, + {0x30eb, 0xa5eb}, + {0x30ec, 0xa5ec}, + {0x30ed, 0xa5ed}, + {0x30ee, 0xa5ee}, + {0x30ef, 0xa5ef}, + {0x30f0, 0xa5f0}, + {0x30f1, 0xa5f1}, + {0x30f2, 0xa5f2}, + {0x30f3, 0xa5f3}, + {0x30f4, 0xa5f4}, + {0x30f5, 0xa5f5}, + {0x30f6, 0xa5f6}, + {0x30fb, 0xa1a6}, + {0x30fc, 0xa1bc}, + {0x30fd, 0xa1b3}, + {0x30fe, 0xa1b4}, + {0x4e00, 0xb0ec}, + {0x4e01, 0xc3fa}, + {0x4e02, 0x8fb0a1}, + {0x4e03, 0xbcb7}, + {0x4e04, 0x8fb0a2}, + {0x4e05, 0x8fb0a3}, + {0x4e07, 0xcbfc}, + {0x4e08, 0xbee6}, + {0x4e09, 0xbbb0}, + {0x4e0a, 0xbee5}, + {0x4e0b, 0xb2bc}, + {0x4e0c, 0x8fb0a4}, + {0x4e0d, 0xc9d4}, + {0x4e0e, 0xcdbf}, + {0x4e10, 0xd0a2}, + {0x4e11, 0xb1af}, + {0x4e12, 0x8fb0a5}, + {0x4e14, 0xb3ee}, + {0x4e15, 0xd0a3}, + {0x4e16, 0xc0a4}, + {0x4e17, 0xd2c2}, + {0x4e18, 0xb5d6}, + {0x4e19, 0xcaba}, + {0x4e1e, 0xbee7}, + {0x4e1f, 0x8fb0a6}, + {0x4e21, 0xcebe}, + {0x4e23, 0x8fb0a7}, + {0x4e24, 0x8fb0a8}, + {0x4e26, 0xcac2}, + {0x4e28, 0x8fb0a9}, + {0x4e2a, 0xd0a4}, + {0x4e2b, 0x8fb0aa}, + {0x4e2d, 0xc3e6}, + {0x4e2e, 0x8fb0ab}, + {0x4e2f, 0x8fb0ac}, + {0x4e30, 0x8fb0ad}, + {0x4e31, 0xd0a5}, + {0x4e32, 0xb6fa}, + {0x4e35, 0x8fb0ae}, + {0x4e36, 0xd0a6}, + {0x4e38, 0xb4dd}, + {0x4e39, 0xc3b0}, + {0x4e3b, 0xbce7}, + {0x4e3c, 0xd0a7}, + {0x4e3f, 0xd0a8}, + {0x4e40, 0x8fb0af}, + {0x4e41, 0x8fb0b0}, + {0x4e42, 0xd0a9}, + {0x4e43, 0xc7b5}, + {0x4e44, 0x8fb0b1}, + {0x4e45, 0xb5d7}, + {0x4e47, 0x8fb0b2}, + {0x4e4b, 0xc7b7}, + {0x4e4d, 0xc6e3}, + {0x4e4e, 0xb8c3}, + {0x4e4f, 0xcbb3}, + {0x4e51, 0x8fb0b3}, + {0x4e55, 0xe9c9}, + {0x4e56, 0xd0aa}, + {0x4e57, 0xbee8}, + {0x4e58, 0xd0ab}, + {0x4e59, 0xb2b5}, + {0x4e5a, 0x8fb0b4}, + {0x4e5c, 0x8fb0b5}, + {0x4e5d, 0xb6e5}, + {0x4e5e, 0xb8f0}, + {0x4e5f, 0xcce9}, + {0x4e62, 0xd6a6}, + {0x4e63, 0x8fb0b6}, + {0x4e68, 0x8fb0b7}, + {0x4e69, 0x8fb0b8}, + {0x4e71, 0xcdf0}, + {0x4e73, 0xc6fd}, + {0x4e74, 0x8fb0b9}, + {0x4e75, 0x8fb0ba}, + {0x4e79, 0x8fb0bb}, + {0x4e7e, 0xb4a5}, + {0x4e7f, 0x8fb0bc}, + {0x4e80, 0xb5b5}, + {0x4e82, 0xd0ac}, + {0x4e85, 0xd0ad}, + {0x4e86, 0xcebb}, + {0x4e88, 0xcdbd}, + {0x4e89, 0xc1e8}, + {0x4e8a, 0xd0af}, + {0x4e8b, 0xbbf6}, + {0x4e8c, 0xc6f3}, + {0x4e8d, 0x8fb0bd}, + {0x4e8e, 0xd0b2}, + {0x4e91, 0xb1be}, + {0x4e92, 0xb8df}, + {0x4e94, 0xb8de}, + {0x4e95, 0xb0e6}, + {0x4e96, 0x8fb0be}, + {0x4e97, 0x8fb0bf}, + {0x4e98, 0xcfcb}, + {0x4e99, 0xcfca}, + {0x4e9b, 0xbab3}, + {0x4e9c, 0xb0a1}, + {0x4e9d, 0x8fb0c0}, + {0x4e9e, 0xd0b3}, + {0x4e9f, 0xd0b4}, + {0x4ea0, 0xd0b5}, + {0x4ea1, 0xcbb4}, + {0x4ea2, 0xd0b6}, + {0x4ea4, 0xb8f2}, + {0x4ea5, 0xb0e7}, + {0x4ea6, 0xcbf2}, + {0x4ea8, 0xb5fc}, + {0x4eab, 0xb5fd}, + {0x4eac, 0xb5fe}, + {0x4ead, 0xc4e2}, + {0x4eae, 0xcebc}, + {0x4eaf, 0x8fb0c1}, + {0x4eb0, 0xd0b7}, + {0x4eb3, 0xd0b8}, + {0x4eb6, 0xd0b9}, + {0x4eb9, 0x8fb0c2}, + {0x4eba, 0xbfcd}, + {0x4ec0, 0xbdba}, + {0x4ec1, 0xbfce}, + {0x4ec2, 0xd0be}, + {0x4ec3, 0x8fb0c3}, + {0x4ec4, 0xd0bc}, + {0x4ec6, 0xd0bd}, + {0x4ec7, 0xb5d8}, + {0x4eca, 0xbaa3}, + {0x4ecb, 0xb2f0}, + {0x4ecd, 0xd0bb}, + {0x4ece, 0xd0ba}, + {0x4ecf, 0xcaa9}, + {0x4ed0, 0x8fb0c4}, + {0x4ed4, 0xbbc6}, + {0x4ed5, 0xbbc5}, + {0x4ed6, 0xc2be}, + {0x4ed7, 0xd0bf}, + {0x4ed8, 0xc9d5}, + {0x4ed9, 0xc0e7}, + {0x4eda, 0x8fb0c5}, + {0x4edb, 0x8fb0c6}, + {0x4edd, 0xa1b8}, + {0x4ede, 0xd0c0}, + {0x4edf, 0xd0c2}, + {0x4ee0, 0x8fb0c7}, + {0x4ee1, 0x8fb0c8}, + {0x4ee2, 0x8fb0c9}, + {0x4ee3, 0xc2e5}, + {0x4ee4, 0xcee1}, + {0x4ee5, 0xb0ca}, + {0x4ee8, 0x8fb0ca}, + {0x4eed, 0xd0c1}, + {0x4eee, 0xb2be}, + {0x4eef, 0x8fb0cb}, + {0x4ef0, 0xb6c4}, + {0x4ef1, 0x8fb0cc}, + {0x4ef2, 0xc3e7}, + {0x4ef3, 0x8fb0cd}, + {0x4ef5, 0x8fb0ce}, + {0x4ef6, 0xb7ef}, + {0x4ef7, 0xd0c3}, + {0x4efb, 0xc7a4}, + {0x4efd, 0x8fb0cf}, + {0x4efe, 0x8fb0d0}, + {0x4eff, 0x8fb0d1}, + {0x4f00, 0x8fb0d2}, + {0x4f01, 0xb4eb}, + {0x4f02, 0x8fb0d3}, + {0x4f03, 0x8fb0d4}, + {0x4f08, 0x8fb0d5}, + {0x4f09, 0xd0c4}, + {0x4f0a, 0xb0cb}, + {0x4f0b, 0x8fb0d6}, + {0x4f0c, 0x8fb0d7}, + {0x4f0d, 0xb8e0}, + {0x4f0e, 0xb4ec}, + {0x4f0f, 0xc9fa}, + {0x4f10, 0xc8b2}, + {0x4f11, 0xb5d9}, + {0x4f12, 0x8fb0d8}, + {0x4f15, 0x8fb0d9}, + {0x4f16, 0x8fb0da}, + {0x4f17, 0x8fb0db}, + {0x4f19, 0x8fb0dc}, + {0x4f1a, 0xb2f1}, + {0x4f1c, 0xd0e7}, + {0x4f1d, 0xc5c1}, + {0x4f2e, 0x8fb0dd}, + {0x4f2f, 0xc7ec}, + {0x4f30, 0xd0c6}, + {0x4f31, 0x8fb0de}, + {0x4f33, 0x8fb0e0}, + {0x4f34, 0xc8bc}, + {0x4f35, 0x8fb0e1}, + {0x4f36, 0xcee2}, + {0x4f37, 0x8fb0e2}, + {0x4f38, 0xbfad}, + {0x4f39, 0x8fb0e3}, + {0x4f3a, 0xbbc7}, + {0x4f3b, 0x8fb0e4}, + {0x4f3c, 0xbbf7}, + {0x4f3d, 0xb2c0}, + {0x4f3e, 0x8fb0e5}, + {0x4f40, 0x8fb0e6}, + {0x4f42, 0x8fb0e7}, + {0x4f43, 0xc4d1}, + {0x4f46, 0xc3a2}, + {0x4f47, 0xd0ca}, + {0x4f48, 0x8fb0e8}, + {0x4f49, 0x8fb0e9}, + {0x4f4b, 0x8fb0ea}, + {0x4f4c, 0x8fb0eb}, + {0x4f4d, 0xb0cc}, + {0x4f4e, 0xc4e3}, + {0x4f4f, 0xbdbb}, + {0x4f50, 0xbab4}, + {0x4f51, 0xcda4}, + {0x4f52, 0x8fb0ec}, + {0x4f53, 0xc2ce}, + {0x4f54, 0x8fb0ed}, + {0x4f55, 0xb2bf}, + {0x4f56, 0x8fb0ee}, + {0x4f57, 0xd0c9}, + {0x4f58, 0x8fb0ef}, + {0x4f59, 0xcdbe}, + {0x4f5a, 0xd0c5}, + {0x4f5b, 0xd0c7}, + {0x4f5c, 0xbaee}, + {0x4f5d, 0xd0c8}, + {0x4f5e, 0xd5a4}, + {0x4f5f, 0x8fb0f0}, + {0x4f60, 0x8fb0df}, + {0x4f63, 0x8fb0f1}, + {0x4f69, 0xd0d0}, + {0x4f6a, 0x8fb0f2}, + {0x4f6c, 0x8fb0f3}, + {0x4f6e, 0x8fb0f4}, + {0x4f6f, 0xd0d3}, + {0x4f70, 0xd0d1}, + {0x4f71, 0x8fb0f5}, + {0x4f73, 0xb2c2}, + {0x4f75, 0xcabb}, + {0x4f76, 0xd0cb}, + {0x4f77, 0x8fb0f6}, + {0x4f78, 0x8fb0f7}, + {0x4f79, 0x8fb0f8}, + {0x4f7a, 0x8fb0f9}, + {0x4f7b, 0xd0cf}, + {0x4f7c, 0xb8f3}, + {0x4f7d, 0x8fb0fa}, + {0x4f7e, 0x8fb0fb}, + {0x4f7f, 0xbbc8}, + {0x4f81, 0x8fb0fc}, + {0x4f82, 0x8fb0fd}, + {0x4f83, 0xb4a6}, + {0x4f84, 0x8fb0fe}, + {0x4f85, 0x8fb1a1}, + {0x4f86, 0xd0d4}, + {0x4f88, 0xd0cc}, + {0x4f89, 0x8fb1a2}, + {0x4f8a, 0x8fb1a3}, + {0x4f8b, 0xcee3}, + {0x4f8c, 0x8fb1a4}, + {0x4f8d, 0xbbf8}, + {0x4f8e, 0x8fb1a5}, + {0x4f8f, 0xd0cd}, + {0x4f90, 0x8fb1a6}, + {0x4f91, 0xd0d2}, + {0x4f92, 0x8fb1a7}, + {0x4f93, 0x8fb1a8}, + {0x4f94, 0x8fb1a9}, + {0x4f96, 0xd0d5}, + {0x4f97, 0x8fb1aa}, + {0x4f98, 0xd0ce}, + {0x4f99, 0x8fb1ab}, + {0x4f9a, 0x8fb1ac}, + {0x4f9b, 0xb6a1}, + {0x4f9d, 0xb0cd}, + {0x4f9e, 0x8fb1ad}, + {0x4f9f, 0x8fb1ae}, + {0x4fa0, 0xb6a2}, + {0x4fa1, 0xb2c1}, + {0x4fab, 0xd5a5}, + {0x4fad, 0xcbf9}, + {0x4fae, 0xc9ee}, + {0x4faf, 0xb8f4}, + {0x4fb2, 0x8fb1af}, + {0x4fb5, 0xbfaf}, + {0x4fb6, 0xceb7}, + {0x4fb7, 0x8fb1b0}, + {0x4fb9, 0x8fb1b1}, + {0x4fbb, 0x8fb1b2}, + {0x4fbc, 0x8fb1b3}, + {0x4fbd, 0x8fb1b4}, + {0x4fbe, 0x8fb1b5}, + {0x4fbf, 0xcad8}, + {0x4fc0, 0x8fb1b6}, + {0x4fc1, 0x8fb1b7}, + {0x4fc2, 0xb7b8}, + {0x4fc3, 0xc2a5}, + {0x4fc4, 0xb2e4}, + {0x4fc5, 0x8fb1b8}, + {0x4fc6, 0x8fb1b9}, + {0x4fc8, 0x8fb1ba}, + {0x4fc9, 0x8fb1bb}, + {0x4fca, 0xbdd3}, + {0x4fcb, 0x8fb1bc}, + {0x4fcc, 0x8fb1bd}, + {0x4fcd, 0x8fb1be}, + {0x4fce, 0xd0d9}, + {0x4fcf, 0x8fb1bf}, + {0x4fd0, 0xd0de}, + {0x4fd1, 0xd0dc}, + {0x4fd2, 0x8fb1c0}, + {0x4fd4, 0xd0d7}, + {0x4fd7, 0xc2af}, + {0x4fd8, 0xd0da}, + {0x4fda, 0xd0dd}, + {0x4fdb, 0xd0db}, + {0x4fdc, 0x8fb1c1}, + {0x4fdd, 0xcadd}, + {0x4fdf, 0xd0d8}, + {0x4fe0, 0x8fb1c2}, + {0x4fe1, 0xbfae}, + {0x4fe2, 0x8fb1c3}, + {0x4fe3, 0xcbf3}, + {0x4fe4, 0xd0df}, + {0x4fe5, 0xd0e0}, + {0x4fee, 0xbda4}, + {0x4fef, 0xd0ed}, + {0x4ff0, 0x8fb1c4}, + {0x4ff2, 0x8fb1c5}, + {0x4ff3, 0xc7d0}, + {0x4ff5, 0xc9b6}, + {0x4ff6, 0xd0e8}, + {0x4ff8, 0xcaf0}, + {0x4ffa, 0xb2b6}, + {0x4ffc, 0x8fb1c6}, + {0x4ffd, 0x8fb1c7}, + {0x4ffe, 0xd0ec}, + {0x4fff, 0x8fb1c8}, + {0x5000, 0x8fb1c9}, + {0x5001, 0x8fb1ca}, + {0x5004, 0x8fb1cb}, + {0x5005, 0xd0e6}, + {0x5006, 0xd0ef}, + {0x5007, 0x8fb1cc}, + {0x5009, 0xc1d2}, + {0x500a, 0x8fb1cd}, + {0x500b, 0xb8c4}, + {0x500c, 0x8fb1ce}, + {0x500d, 0xc7dc}, + {0x500e, 0x8fb1cf}, + {0x500f, 0xe0c7}, + {0x5010, 0x8fb1d0}, + {0x5011, 0xd0ee}, + {0x5012, 0xc5dd}, + {0x5013, 0x8fb1d1}, + {0x5014, 0xd0e3}, + {0x5016, 0xb8f6}, + {0x5017, 0x8fb1d2}, + {0x5018, 0x8fb1d3}, + {0x5019, 0xb8f5}, + {0x501a, 0xd0e1}, + {0x501b, 0x8fb1d4}, + {0x501c, 0x8fb1d5}, + {0x501d, 0x8fb1d6}, + {0x501e, 0x8fb1d7}, + {0x501f, 0xbcda}, + {0x5021, 0xd0e9}, + {0x5022, 0x8fb1d8}, + {0x5023, 0xcaef}, + {0x5024, 0xc3cd}, + {0x5025, 0xd0e5}, + {0x5026, 0xb7f1}, + {0x5027, 0x8fb1d9}, + {0x5028, 0xd0e2}, + {0x5029, 0xd0ea}, + {0x502a, 0xd0e4}, + {0x502b, 0xced1}, + {0x502c, 0xd0eb}, + {0x502d, 0xcfc1}, + {0x502e, 0x8fb1da}, + {0x5030, 0x8fb1db}, + {0x5032, 0x8fb1dc}, + {0x5033, 0x8fb1dd}, + {0x5035, 0x8fb1de}, + {0x5036, 0xb6e6}, + {0x5039, 0xb7f0}, + {0x503b, 0x8fb1f6}, + {0x5040, 0x8fb1df}, + {0x5041, 0x8fb1e0}, + {0x5042, 0x8fb1e1}, + {0x5043, 0xd0f0}, + {0x5045, 0x8fb1e2}, + {0x5046, 0x8fb1e3}, + {0x5047, 0xd0f1}, + {0x5048, 0xd0f5}, + {0x5049, 0xb0ce}, + {0x504a, 0x8fb1e4}, + {0x504c, 0x8fb1e5}, + {0x504e, 0x8fb1e6}, + {0x504f, 0xcad0}, + {0x5050, 0xd0f4}, + {0x5051, 0x8fb1e7}, + {0x5052, 0x8fb1e8}, + {0x5053, 0x8fb1e9}, + {0x5055, 0xd0f3}, + {0x5056, 0xd0f7}, + {0x5057, 0x8fb1ea}, + {0x5059, 0x8fb1eb}, + {0x505a, 0xd0f6}, + {0x505c, 0xc4e4}, + {0x505f, 0x8fb1ec}, + {0x5060, 0x8fb1ed}, + {0x5062, 0x8fb1ee}, + {0x5063, 0x8fb1ef}, + {0x5065, 0xb7f2}, + {0x5066, 0x8fb1f0}, + {0x5067, 0x8fb1f1}, + {0x506a, 0x8fb1f2}, + {0x506c, 0xd0f8}, + {0x506d, 0x8fb1f3}, + {0x5070, 0x8fb1f4}, + {0x5071, 0x8fb1f5}, + {0x5072, 0xbcc5}, + {0x5074, 0xc2a6}, + {0x5075, 0xc4e5}, + {0x5076, 0xb6f6}, + {0x5078, 0xd0f9}, + {0x507d, 0xb5b6}, + {0x5080, 0xd0fa}, + {0x5081, 0x8fb1f7}, + {0x5083, 0x8fb1f8}, + {0x5084, 0x8fb1f9}, + {0x5085, 0xd0fc}, + {0x5086, 0x8fb1fa}, + {0x508a, 0x8fb1fb}, + {0x508d, 0xcbb5}, + {0x508e, 0x8fb1fc}, + {0x508f, 0x8fb1fd}, + {0x5090, 0x8fb1fe}, + {0x5091, 0xb7e6}, + {0x5092, 0x8fb2a1}, + {0x5093, 0x8fb2a2}, + {0x5094, 0x8fb2a3}, + {0x5096, 0x8fb2a4}, + {0x5098, 0xbbb1}, + {0x5099, 0xc8f7}, + {0x509a, 0xd0fb}, + {0x509b, 0x8fb2a5}, + {0x509c, 0x8fb2a6}, + {0x509e, 0x8fb2a7}, + {0x509f, 0x8fb2a8}, + {0x50a0, 0x8fb2a9}, + {0x50a1, 0x8fb2aa}, + {0x50a2, 0x8fb2ab}, + {0x50aa, 0x8fb2ac}, + {0x50ac, 0xbac5}, + {0x50ad, 0xcdc3}, + {0x50af, 0x8fb2ad}, + {0x50b0, 0x8fb2ae}, + {0x50b2, 0xd0fe}, + {0x50b3, 0xd1a3}, + {0x50b4, 0xd0fd}, + {0x50b5, 0xbac4}, + {0x50b7, 0xbdfd}, + {0x50b9, 0x8fb2af}, + {0x50ba, 0x8fb2b0}, + {0x50bd, 0x8fb2b1}, + {0x50be, 0xb7b9}, + {0x50c0, 0x8fb2b2}, + {0x50c2, 0xd1a4}, + {0x50c3, 0x8fb2b3}, + {0x50c4, 0x8fb2b4}, + {0x50c5, 0xb6cf}, + {0x50c7, 0x8fb2b5}, + {0x50c9, 0xd1a1}, + {0x50ca, 0xd1a2}, + {0x50cc, 0x8fb2b6}, + {0x50cd, 0xc6af}, + {0x50ce, 0x8fb2b7}, + {0x50cf, 0xc1fc}, + {0x50d0, 0x8fb2b8}, + {0x50d1, 0xb6a3}, + {0x50d3, 0x8fb2b9}, + {0x50d4, 0x8fb2ba}, + {0x50d5, 0xcbcd}, + {0x50d6, 0xd1a5}, + {0x50d8, 0x8fb2bb}, + {0x50da, 0xcebd}, + {0x50dc, 0x8fb2bc}, + {0x50dd, 0x8fb2bd}, + {0x50de, 0xd1a6}, + {0x50df, 0x8fb2be}, + {0x50e2, 0x8fb2bf}, + {0x50e3, 0xd1a9}, + {0x50e4, 0x8fb2c0}, + {0x50e5, 0xd1a7}, + {0x50e6, 0x8fb2c1}, + {0x50e7, 0xc1ce}, + {0x50e8, 0x8fb2c2}, + {0x50e9, 0x8fb2c3}, + {0x50ed, 0xd1a8}, + {0x50ee, 0xd1aa}, + {0x50ef, 0x8fb2c4}, + {0x50f1, 0x8fb2c5}, + {0x50f2, 0x8fb2d1}, + {0x50f5, 0xd1ac}, + {0x50f6, 0x8fb2c6}, + {0x50f9, 0xd1ab}, + {0x50fa, 0x8fb2c7}, + {0x50fb, 0xcac8}, + {0x50fe, 0x8fb2c8}, + {0x5100, 0xb5b7}, + {0x5101, 0xd1ae}, + {0x5102, 0xd1af}, + {0x5103, 0x8fb2c9}, + {0x5104, 0xb2af}, + {0x5106, 0x8fb2ca}, + {0x5107, 0x8fb2cb}, + {0x5108, 0x8fb2cc}, + {0x5109, 0xd1ad}, + {0x510b, 0x8fb2cd}, + {0x510c, 0x8fb2ce}, + {0x510d, 0x8fb2cf}, + {0x510e, 0x8fb2d0}, + {0x5110, 0x8fb2d2}, + {0x5112, 0xbcf4}, + {0x5114, 0xd1b2}, + {0x5115, 0xd1b1}, + {0x5116, 0xd1b0}, + {0x5117, 0x8fb2d3}, + {0x5118, 0xd0d6}, + {0x5119, 0x8fb2d4}, + {0x511a, 0xd1b3}, + {0x511b, 0x8fb2d5}, + {0x511c, 0x8fb2d6}, + {0x511d, 0x8fb2d7}, + {0x511e, 0x8fb2d8}, + {0x511f, 0xbdfe}, + {0x5121, 0xd1b4}, + {0x5123, 0x8fb2d9}, + {0x5127, 0x8fb2da}, + {0x5128, 0x8fb2db}, + {0x512a, 0xcda5}, + {0x512c, 0x8fb2dc}, + {0x512d, 0x8fb2dd}, + {0x512f, 0x8fb2de}, + {0x5131, 0x8fb2df}, + {0x5132, 0xccd9}, + {0x5133, 0x8fb2e0}, + {0x5134, 0x8fb2e1}, + {0x5135, 0x8fb2e2}, + {0x5137, 0xd1b6}, + {0x5138, 0x8fb2e3}, + {0x5139, 0x8fb2e4}, + {0x513a, 0xd1b5}, + {0x513b, 0xd1b8}, + {0x513c, 0xd1b7}, + {0x513f, 0xd1b9}, + {0x5140, 0xd1ba}, + {0x5141, 0xb0f4}, + {0x5142, 0x8fb2e5}, + {0x5143, 0xb8b5}, + {0x5144, 0xb7bb}, + {0x5145, 0xbdbc}, + {0x5146, 0xc3fb}, + {0x5147, 0xb6a4}, + {0x5148, 0xc0e8}, + {0x5149, 0xb8f7}, + {0x514a, 0x8fb2e6}, + {0x514b, 0xb9ee}, + {0x514c, 0xd1bc}, + {0x514d, 0xccc8}, + {0x514e, 0xc5c6}, + {0x514f, 0x8fb2e7}, + {0x5150, 0xbbf9}, + {0x5152, 0xd1bb}, + {0x5153, 0x8fb2e8}, + {0x5154, 0xd1bd}, + {0x5155, 0x8fb2e9}, + {0x5157, 0x8fb2ea}, + {0x5158, 0x8fb2eb}, + {0x515a, 0xc5de}, + {0x515c, 0xb3f5}, + {0x515f, 0x8fb2ec}, + {0x5162, 0xd1be}, + {0x5164, 0x8fb2ed}, + {0x5165, 0xc6fe}, + {0x5166, 0x8fb2ee}, + {0x5168, 0xc1b4}, + {0x5169, 0xd1c0}, + {0x516a, 0xd1c1}, + {0x516b, 0xc8ac}, + {0x516c, 0xb8f8}, + {0x516d, 0xcfbb}, + {0x516e, 0xd1c2}, + {0x5171, 0xb6a6}, + {0x5175, 0xcabc}, + {0x5176, 0xc2b6}, + {0x5177, 0xb6f1}, + {0x5178, 0xc5b5}, + {0x517c, 0xb7f3}, + {0x517e, 0x8fb2ef}, + {0x5180, 0xd1c3}, + {0x5182, 0xd1c4}, + {0x5183, 0x8fb2f0}, + {0x5184, 0x8fb2f1}, + {0x5185, 0xc6e2}, + {0x5186, 0xb1df}, + {0x5189, 0xd1c7}, + {0x518a, 0xbafd}, + {0x518b, 0x8fb2f2}, + {0x518c, 0xd1c6}, + {0x518d, 0xbac6}, + {0x518e, 0x8fb2f3}, + {0x518f, 0xd1c8}, + {0x5190, 0xe6ee}, + {0x5191, 0xd1c9}, + {0x5192, 0xcbc1}, + {0x5193, 0xd1ca}, + {0x5195, 0xd1cb}, + {0x5196, 0xd1cc}, + {0x5197, 0xbee9}, + {0x5198, 0x8fb2f4}, + {0x5199, 0xbccc}, + {0x519d, 0x8fb2f5}, + {0x51a0, 0xb4a7}, + {0x51a1, 0x8fb2f6}, + {0x51a2, 0xd1cf}, + {0x51a3, 0x8fb2f7}, + {0x51a4, 0xd1cd}, + {0x51a5, 0xccbd}, + {0x51a6, 0xd1ce}, + {0x51a8, 0xc9da}, + {0x51a9, 0xd1d0}, + {0x51aa, 0xd1d1}, + {0x51ab, 0xd1d2}, + {0x51ac, 0xc5df}, + {0x51ad, 0x8fb2f8}, + {0x51b0, 0xd1d6}, + {0x51b1, 0xd1d4}, + {0x51b2, 0xd1d5}, + {0x51b3, 0xd1d3}, + {0x51b4, 0xbae3}, + {0x51b5, 0xd1d7}, + {0x51b6, 0xccea}, + {0x51b7, 0xcee4}, + {0x51b8, 0x8fb2f9}, + {0x51ba, 0x8fb2fa}, + {0x51bc, 0x8fb2fb}, + {0x51bd, 0xd1d8}, + {0x51be, 0x8fb2fc}, + {0x51bf, 0x8fb2fd}, + {0x51c2, 0x8fb2fe}, + {0x51c4, 0xc0a8}, + {0x51c5, 0xd1d9}, + {0x51c6, 0xbdda}, + {0x51c8, 0x8fb3a1}, + {0x51c9, 0xd1da}, + {0x51cb, 0xc3fc}, + {0x51cc, 0xcebf}, + {0x51cd, 0xc5e0}, + {0x51cf, 0x8fb3a2}, + {0x51d1, 0x8fb3a3}, + {0x51d2, 0x8fb3a4}, + {0x51d3, 0x8fb3a5}, + {0x51d5, 0x8fb3a6}, + {0x51d6, 0xd2c5}, + {0x51d8, 0x8fb3a7}, + {0x51db, 0xd1db}, + {0x51dc, 0xf4a5}, + {0x51dd, 0xb6c5}, + {0x51de, 0x8fb3a8}, + {0x51e0, 0xd1dc}, + {0x51e1, 0xcbde}, + {0x51e2, 0x8fb3a9}, + {0x51e5, 0x8fb3aa}, + {0x51e6, 0xbde8}, + {0x51e7, 0xc2fc}, + {0x51e9, 0xd1de}, + {0x51ea, 0xc6e4}, + {0x51ed, 0xd1df}, + {0x51ee, 0x8fb3ab}, + {0x51f0, 0xd1e0}, + {0x51f1, 0xb3ae}, + {0x51f2, 0x8fb3ac}, + {0x51f3, 0x8fb3ad}, + {0x51f4, 0x8fb3ae}, + {0x51f5, 0xd1e1}, + {0x51f6, 0xb6a7}, + {0x51f7, 0x8fb3af}, + {0x51f8, 0xc6cc}, + {0x51f9, 0xb1fa}, + {0x51fa, 0xbdd0}, + {0x51fd, 0xc8a1}, + {0x51fe, 0xd1e2}, + {0x5200, 0xc5e1}, + {0x5201, 0x8fb3b0}, + {0x5202, 0x8fb3b1}, + {0x5203, 0xbfcf}, + {0x5204, 0xd1e3}, + {0x5205, 0x8fb3b2}, + {0x5206, 0xcaac}, + {0x5207, 0xc0da}, + {0x5208, 0xb4a2}, + {0x520a, 0xb4a9}, + {0x520b, 0xd1e4}, + {0x520e, 0xd1e6}, + {0x5211, 0xb7ba}, + {0x5212, 0x8fb3b3}, + {0x5213, 0x8fb3b4}, + {0x5214, 0xd1e5}, + {0x5215, 0x8fb3b5}, + {0x5216, 0x8fb3b6}, + {0x5217, 0xcef3}, + {0x5218, 0x8fb3b7}, + {0x521d, 0xbde9}, + {0x5222, 0x8fb3b8}, + {0x5224, 0xc8bd}, + {0x5225, 0xcacc}, + {0x5227, 0xd1e7}, + {0x5228, 0x8fb3b9}, + {0x5229, 0xcdf8}, + {0x522a, 0xd1e8}, + {0x522e, 0xd1e9}, + {0x5230, 0xc5fe}, + {0x5231, 0x8fb3ba}, + {0x5232, 0x8fb3bb}, + {0x5233, 0xd1ea}, + {0x5235, 0x8fb3bc}, + {0x5236, 0xc0a9}, + {0x5237, 0xbafe}, + {0x5238, 0xb7f4}, + {0x5239, 0xd1eb}, + {0x523a, 0xbbc9}, + {0x523b, 0xb9ef}, + {0x523c, 0x8fb3bd}, + {0x5243, 0xc4e6}, + {0x5244, 0xd1ed}, + {0x5245, 0x8fb3be}, + {0x5247, 0xc2a7}, + {0x5249, 0x8fb3bf}, + {0x524a, 0xbaef}, + {0x524b, 0xd1ee}, + {0x524c, 0xd1ef}, + {0x524d, 0xc1b0}, + {0x524f, 0xd1ec}, + {0x5254, 0xd1f1}, + {0x5255, 0x8fb3c0}, + {0x5256, 0xcbb6}, + {0x5257, 0x8fb3c1}, + {0x5258, 0x8fb3c2}, + {0x525a, 0x8fb3c3}, + {0x525b, 0xb9e4}, + {0x525c, 0x8fb3c4}, + {0x525e, 0xd1f0}, + {0x525f, 0x8fb3c5}, + {0x5260, 0x8fb3c6}, + {0x5261, 0x8fb3c7}, + {0x5263, 0xb7f5}, + {0x5264, 0xbade}, + {0x5265, 0xc7ed}, + {0x5266, 0x8fb3c8}, + {0x5269, 0xd1f4}, + {0x526a, 0xd1f2}, + {0x526e, 0x8fb3c9}, + {0x526f, 0xc9fb}, + {0x5270, 0xbeea}, + {0x5271, 0xd1fb}, + {0x5272, 0xb3e4}, + {0x5273, 0xd1f5}, + {0x5274, 0xd1f3}, + {0x5275, 0xc1cf}, + {0x5277, 0x8fb3ca}, + {0x5278, 0x8fb3cb}, + {0x5279, 0x8fb3cc}, + {0x527d, 0xd1f7}, + {0x527f, 0xd1f6}, + {0x5280, 0x8fb3cd}, + {0x5282, 0x8fb3ce}, + {0x5283, 0xb3c4}, + {0x5285, 0x8fb3cf}, + {0x5287, 0xb7e0}, + {0x5288, 0xd1fc}, + {0x5289, 0xcead}, + {0x528a, 0x8fb3d0}, + {0x528c, 0x8fb3d1}, + {0x528d, 0xd1f8}, + {0x5291, 0xd1fd}, + {0x5292, 0xd1fa}, + {0x5293, 0x8fb3d2}, + {0x5294, 0xd1f9}, + {0x5295, 0x8fb3d3}, + {0x5296, 0x8fb3d4}, + {0x5297, 0x8fb3d5}, + {0x5298, 0x8fb3d6}, + {0x529a, 0x8fb3d7}, + {0x529b, 0xcecf}, + {0x529c, 0x8fb3d8}, + {0x529f, 0xb8f9}, + {0x52a0, 0xb2c3}, + {0x52a3, 0xcef4}, + {0x52a4, 0x8fb3d9}, + {0x52a5, 0x8fb3da}, + {0x52a6, 0x8fb3db}, + {0x52a7, 0x8fb3dc}, + {0x52a9, 0xbdf5}, + {0x52aa, 0xc5d8}, + {0x52ab, 0xb9e5}, + {0x52ac, 0xd2a2}, + {0x52ad, 0xd2a3}, + {0x52af, 0x8fb3dd}, + {0x52b0, 0x8fb3de}, + {0x52b1, 0xcee5}, + {0x52b4, 0xcfab}, + {0x52b5, 0xd2a5}, + {0x52b6, 0x8fb3df}, + {0x52b7, 0x8fb3e0}, + {0x52b8, 0x8fb3e1}, + {0x52b9, 0xb8fa}, + {0x52ba, 0x8fb3e2}, + {0x52bb, 0x8fb3e3}, + {0x52bc, 0xd2a4}, + {0x52bd, 0x8fb3e4}, + {0x52be, 0xb3af}, + {0x52c0, 0x8fb3e5}, + {0x52c1, 0xd2a6}, + {0x52c3, 0xcbd6}, + {0x52c4, 0x8fb3e6}, + {0x52c5, 0xc4bc}, + {0x52c6, 0x8fb3e7}, + {0x52c7, 0xcda6}, + {0x52c8, 0x8fb3e8}, + {0x52c9, 0xcad9}, + {0x52cc, 0x8fb3e9}, + {0x52cd, 0xd2a7}, + {0x52cf, 0x8fb3ea}, + {0x52d1, 0x8fb3eb}, + {0x52d2, 0xf0d5}, + {0x52d4, 0x8fb3ec}, + {0x52d5, 0xc6b0}, + {0x52d6, 0x8fb3ed}, + {0x52d7, 0xd2a8}, + {0x52d8, 0xb4aa}, + {0x52d9, 0xccb3}, + {0x52db, 0x8fb3ee}, + {0x52dc, 0x8fb3ef}, + {0x52dd, 0xbea1}, + {0x52de, 0xd2a9}, + {0x52df, 0xcae7}, + {0x52e0, 0xd2ad}, + {0x52e1, 0x8fb3f0}, + {0x52e2, 0xc0aa}, + {0x52e3, 0xd2aa}, + {0x52e4, 0xb6d0}, + {0x52e5, 0x8fb3f1}, + {0x52e6, 0xd2ab}, + {0x52e7, 0xb4ab}, + {0x52e8, 0x8fb3f2}, + {0x52e9, 0x8fb3f3}, + {0x52ea, 0x8fb3f4}, + {0x52ec, 0x8fb3f5}, + {0x52f0, 0x8fb3f6}, + {0x52f1, 0x8fb3f7}, + {0x52f2, 0xb7ae}, + {0x52f3, 0xd2ae}, + {0x52f4, 0x8fb3f8}, + {0x52f5, 0xd2af}, + {0x52f6, 0x8fb3f9}, + {0x52f7, 0x8fb3fa}, + {0x52f8, 0xd2b0}, + {0x52f9, 0xd2b1}, + {0x52fa, 0xbcdb}, + {0x52fe, 0xb8fb}, + {0x52ff, 0xccde}, + {0x5300, 0x8fb3fb}, + {0x5301, 0xcce8}, + {0x5302, 0xc6f7}, + {0x5303, 0x8fb3fc}, + {0x5305, 0xcaf1}, + {0x5306, 0xd2b2}, + {0x5308, 0xd2b3}, + {0x530a, 0x8fb3fd}, + {0x530b, 0x8fb3fe}, + {0x530c, 0x8fb4a1}, + {0x530d, 0xd2b5}, + {0x530f, 0xd2b7}, + {0x5310, 0xd2b6}, + {0x5311, 0x8fb4a2}, + {0x5313, 0x8fb4a3}, + {0x5315, 0xd2b8}, + {0x5316, 0xb2bd}, + {0x5317, 0xcbcc}, + {0x5318, 0x8fb4a4}, + {0x5319, 0xbafc}, + {0x531a, 0xd2b9}, + {0x531b, 0x8fb4a5}, + {0x531c, 0x8fb4a6}, + {0x531d, 0xc1d9}, + {0x531e, 0x8fb4a7}, + {0x531f, 0x8fb4a8}, + {0x5320, 0xbea2}, + {0x5321, 0xb6a9}, + {0x5323, 0xd2ba}, + {0x5325, 0x8fb4a9}, + {0x5327, 0x8fb4aa}, + {0x5328, 0x8fb4ab}, + {0x5329, 0x8fb4ac}, + {0x532a, 0xc8db}, + {0x532b, 0x8fb4ad}, + {0x532c, 0x8fb4ae}, + {0x532d, 0x8fb4af}, + {0x532f, 0xd2bb}, + {0x5330, 0x8fb4b0}, + {0x5331, 0xd2bc}, + {0x5332, 0x8fb4b1}, + {0x5333, 0xd2bd}, + {0x5335, 0x8fb4b2}, + {0x5338, 0xd2be}, + {0x5339, 0xc9a4}, + {0x533a, 0xb6e8}, + {0x533b, 0xb0e5}, + {0x533c, 0x8fb4b3}, + {0x533d, 0x8fb4b4}, + {0x533e, 0x8fb4b5}, + {0x533f, 0xc6bf}, + {0x5340, 0xd2bf}, + {0x5341, 0xbdbd}, + {0x5342, 0x8fb4b6}, + {0x5343, 0xc0e9}, + {0x5345, 0xd2c1}, + {0x5346, 0xd2c0}, + {0x5347, 0xbea3}, + {0x5348, 0xb8e1}, + {0x5349, 0xd2c3}, + {0x534a, 0xc8be}, + {0x534b, 0x8fb4b8}, + {0x534c, 0x8fb4b7}, + {0x534d, 0xd2c4}, + {0x5351, 0xc8dc}, + {0x5352, 0xc2b4}, + {0x5353, 0xc2ee}, + {0x5354, 0xb6a8}, + {0x5357, 0xc6ee}, + {0x5358, 0xc3b1}, + {0x5359, 0x8fb4b9}, + {0x535a, 0xc7ee}, + {0x535b, 0x8fb4ba}, + {0x535c, 0xcbce}, + {0x535e, 0xd2c6}, + {0x5360, 0xc0ea}, + {0x5361, 0x8fb4bb}, + {0x5363, 0x8fb4bc}, + {0x5365, 0x8fb4bd}, + {0x5366, 0xb7b5}, + {0x5369, 0xd2c7}, + {0x536c, 0x8fb4be}, + {0x536d, 0x8fb4bf}, + {0x536e, 0xd2c8}, + {0x536f, 0xb1ac}, + {0x5370, 0xb0f5}, + {0x5371, 0xb4ed}, + {0x5372, 0x8fb4c0}, + {0x5373, 0xc2a8}, + {0x5374, 0xb5d1}, + {0x5375, 0xcdf1}, + {0x5377, 0xd2cb}, + {0x5378, 0xb2b7}, + {0x5379, 0x8fb4c1}, + {0x537b, 0xd2ca}, + {0x537e, 0x8fb4c2}, + {0x537f, 0xb6aa}, + {0x5382, 0xd2cc}, + {0x5383, 0x8fb4c3}, + {0x5384, 0xccf1}, + {0x5387, 0x8fb4c4}, + {0x5388, 0x8fb4c5}, + {0x538e, 0x8fb4c6}, + {0x5393, 0x8fb4c7}, + {0x5394, 0x8fb4c8}, + {0x5396, 0xd2cd}, + {0x5398, 0xced2}, + {0x5399, 0x8fb4c9}, + {0x539a, 0xb8fc}, + {0x539d, 0x8fb4ca}, + {0x539f, 0xb8b6}, + {0x53a0, 0xd2ce}, + {0x53a1, 0x8fb4cb}, + {0x53a4, 0x8fb4cc}, + {0x53a5, 0xd2d0}, + {0x53a6, 0xd2cf}, + {0x53a8, 0xbfdf}, + {0x53a9, 0xb1b9}, + {0x53aa, 0x8fb4cd}, + {0x53ab, 0x8fb4ce}, + {0x53ad, 0xb1de}, + {0x53ae, 0xd2d1}, + {0x53af, 0x8fb4cf}, + {0x53b0, 0xd2d2}, + {0x53b2, 0x8fb4d0}, + {0x53b3, 0xb8b7}, + {0x53b4, 0x8fb4d1}, + {0x53b5, 0x8fb4d2}, + {0x53b6, 0xd2d3}, + {0x53b7, 0x8fb4d3}, + {0x53b8, 0x8fb4d4}, + {0x53ba, 0x8fb4d5}, + {0x53bb, 0xb5ee}, + {0x53bd, 0x8fb4d6}, + {0x53c0, 0x8fb4d7}, + {0x53c2, 0xbbb2}, + {0x53c3, 0xd2d4}, + {0x53c5, 0x8fb4d8}, + {0x53c8, 0xcbf4}, + {0x53c9, 0xbab5}, + {0x53ca, 0xb5da}, + {0x53cb, 0xcda7}, + {0x53cc, 0xc1d0}, + {0x53cd, 0xc8bf}, + {0x53ce, 0xbcfd}, + {0x53cf, 0x8fb4d9}, + {0x53d2, 0x8fb4da}, + {0x53d3, 0x8fb4db}, + {0x53d4, 0xbdc7}, + {0x53d5, 0x8fb4dc}, + {0x53d6, 0xbce8}, + {0x53d7, 0xbcf5}, + {0x53d9, 0xbdf6}, + {0x53da, 0x8fb4dd}, + {0x53db, 0xc8c0}, + {0x53dd, 0x8fb4de}, + {0x53de, 0x8fb4df}, + {0x53df, 0xd2d7}, + {0x53e0, 0x8fb4e0}, + {0x53e1, 0xb1c3}, + {0x53e2, 0xc1d1}, + {0x53e3, 0xb8fd}, + {0x53e4, 0xb8c5}, + {0x53e5, 0xb6e7}, + {0x53e6, 0x8fb4e1}, + {0x53e7, 0x8fb4e2}, + {0x53e8, 0xd2db}, + {0x53e9, 0xc3a1}, + {0x53ea, 0xc2fe}, + {0x53eb, 0xb6ab}, + {0x53ec, 0xbea4}, + {0x53ed, 0xd2dc}, + {0x53ee, 0xd2da}, + {0x53ef, 0xb2c4}, + {0x53f0, 0xc2e6}, + {0x53f1, 0xbcb8}, + {0x53f2, 0xbbcb}, + {0x53f3, 0xb1a6}, + {0x53f5, 0x8fb4e3}, + {0x53f6, 0xb3f0}, + {0x53f7, 0xb9e6}, + {0x53f8, 0xbbca}, + {0x53fa, 0xd2dd}, + {0x5401, 0xd2de}, + {0x5402, 0x8fb4e4}, + {0x5403, 0xb5c9}, + {0x5404, 0xb3c6}, + {0x5408, 0xb9e7}, + {0x5409, 0xb5c8}, + {0x540a, 0xc4df}, + {0x540b, 0xb1a5}, + {0x540c, 0xc6b1}, + {0x540d, 0xccbe}, + {0x540e, 0xb9a1}, + {0x540f, 0xcdf9}, + {0x5410, 0xc5c7}, + {0x5411, 0xb8fe}, + {0x5413, 0x8fb4e5}, + {0x541a, 0x8fb4e6}, + {0x541b, 0xb7af}, + {0x541d, 0xd2e7}, + {0x541f, 0xb6e3}, + {0x5420, 0xcbca}, + {0x5421, 0x8fb4e7}, + {0x5426, 0xc8dd}, + {0x5427, 0x8fb4e8}, + {0x5428, 0x8fb4e9}, + {0x5429, 0xd2e6}, + {0x542a, 0x8fb4ea}, + {0x542b, 0xb4de}, + {0x542c, 0xd2e1}, + {0x542d, 0xd2e2}, + {0x542e, 0xd2e4}, + {0x542f, 0x8fb4eb}, + {0x5431, 0x8fb4ec}, + {0x5434, 0x8fb4ed}, + {0x5435, 0x8fb4ee}, + {0x5436, 0xd2e5}, + {0x5438, 0xb5db}, + {0x5439, 0xbfe1}, + {0x543b, 0xcaad}, + {0x543c, 0xd2e3}, + {0x543d, 0xd2df}, + {0x543e, 0xb8e3}, + {0x5440, 0xd2e0}, + {0x5442, 0xcfa4}, + {0x5443, 0x8fb4ef}, + {0x5444, 0x8fb4f0}, + {0x5446, 0xcaf2}, + {0x5447, 0x8fb4f1}, + {0x5448, 0xc4e8}, + {0x5449, 0xb8e2}, + {0x544a, 0xb9f0}, + {0x544d, 0x8fb4f2}, + {0x544e, 0xd2e8}, + {0x544f, 0x8fb4f3}, + {0x5451, 0xc6dd}, + {0x545e, 0x8fb4f4}, + {0x545f, 0xd2ec}, + {0x5462, 0x8fb4f5}, + {0x5464, 0x8fb4f6}, + {0x5466, 0x8fb4f7}, + {0x5467, 0x8fb4f8}, + {0x5468, 0xbcfe}, + {0x5469, 0x8fb4f9}, + {0x546a, 0xbcf6}, + {0x546b, 0x8fb4fa}, + {0x546d, 0x8fb4fb}, + {0x546e, 0x8fb4fc}, + {0x5470, 0xd2ef}, + {0x5471, 0xd2ed}, + {0x5473, 0xcca3}, + {0x5474, 0x8fb4fd}, + {0x5475, 0xd2ea}, + {0x5476, 0xd2f3}, + {0x5477, 0xd2ee}, + {0x547b, 0xd2f1}, + {0x547c, 0xb8c6}, + {0x547d, 0xccbf}, + {0x547f, 0x8fb4fe}, + {0x5480, 0xd2f2}, + {0x5481, 0x8fb5a1}, + {0x5483, 0x8fb5a2}, + {0x5484, 0xd2f4}, + {0x5485, 0x8fb5a3}, + {0x5486, 0xd2f6}, + {0x5488, 0x8fb5a4}, + {0x5489, 0x8fb5a5}, + {0x548b, 0xbaf0}, + {0x548c, 0xcfc2}, + {0x548d, 0x8fb5a6}, + {0x548e, 0xd2eb}, + {0x548f, 0xd2e9}, + {0x5490, 0xd2f5}, + {0x5491, 0x8fb5a7}, + {0x5492, 0xd2f0}, + {0x5495, 0x8fb5a8}, + {0x5496, 0x8fb5a9}, + {0x549c, 0x8fb5aa}, + {0x549f, 0x8fb5ab}, + {0x54a1, 0x8fb5ac}, + {0x54a2, 0xd2f8}, + {0x54a4, 0xd3a3}, + {0x54a5, 0xd2fa}, + {0x54a6, 0x8fb5ad}, + {0x54a7, 0x8fb5ae}, + {0x54a8, 0xd2fe}, + {0x54a9, 0x8fb5af}, + {0x54aa, 0x8fb5b0}, + {0x54ab, 0xd3a1}, + {0x54ac, 0xd2fb}, + {0x54ad, 0x8fb5b1}, + {0x54ae, 0x8fb5b2}, + {0x54af, 0xd3be}, + {0x54b1, 0x8fb5b3}, + {0x54b2, 0xbae9}, + {0x54b3, 0xb3b1}, + {0x54b7, 0x8fb5b4}, + {0x54b8, 0xd2f9}, + {0x54b9, 0x8fb5b5}, + {0x54ba, 0x8fb5b6}, + {0x54bb, 0x8fb5b7}, + {0x54bc, 0xd3a5}, + {0x54bd, 0xb0f6}, + {0x54be, 0xd3a4}, + {0x54bf, 0x8fb5b8}, + {0x54c0, 0xb0a5}, + {0x54c1, 0xc9ca}, + {0x54c2, 0xd3a2}, + {0x54c4, 0xd2fc}, + {0x54c6, 0x8fb5b9}, + {0x54c7, 0xd2f7}, + {0x54c8, 0xd2fd}, + {0x54c9, 0xbac8}, + {0x54ca, 0x8fb5ba}, + {0x54cd, 0x8fb5bb}, + {0x54ce, 0x8fb5bc}, + {0x54d8, 0xd3a6}, + {0x54e0, 0x8fb5bd}, + {0x54e1, 0xb0f7}, + {0x54e2, 0xd3af}, + {0x54e5, 0xd3a7}, + {0x54e6, 0xd3a8}, + {0x54e8, 0xbea5}, + {0x54e9, 0xcbe9}, + {0x54ea, 0x8fb5be}, + {0x54ec, 0x8fb5bf}, + {0x54ed, 0xd3ad}, + {0x54ee, 0xd3ac}, + {0x54ef, 0x8fb5c0}, + {0x54f2, 0xc5af}, + {0x54f6, 0x8fb5c1}, + {0x54fa, 0xd3ae}, + {0x54fc, 0x8fb5c2}, + {0x54fd, 0xd3ab}, + {0x54fe, 0x8fb5c3}, + {0x54ff, 0x8fb5c4}, + {0x5500, 0x8fb5c5}, + {0x5501, 0x8fb5c6}, + {0x5504, 0xb1b4}, + {0x5505, 0x8fb5c7}, + {0x5506, 0xbab6}, + {0x5507, 0xbfb0}, + {0x5508, 0x8fb5c8}, + {0x5509, 0x8fb5c9}, + {0x550c, 0x8fb5ca}, + {0x550d, 0x8fb5cb}, + {0x550e, 0x8fb5cc}, + {0x550f, 0xd3a9}, + {0x5510, 0xc5e2}, + {0x5514, 0xd3aa}, + {0x5515, 0x8fb5cd}, + {0x5516, 0xb0a2}, + {0x552a, 0x8fb5ce}, + {0x552b, 0x8fb5cf}, + {0x552e, 0xd3b4}, + {0x552f, 0xcda3}, + {0x5531, 0xbea7}, + {0x5532, 0x8fb5d0}, + {0x5533, 0xd3ba}, + {0x5535, 0x8fb5d1}, + {0x5536, 0x8fb5d2}, + {0x5538, 0xd3b9}, + {0x5539, 0xd3b0}, + {0x553b, 0x8fb5d3}, + {0x553c, 0x8fb5d4}, + {0x553d, 0x8fb5d5}, + {0x553e, 0xc2c3}, + {0x5540, 0xd3b1}, + {0x5541, 0x8fb5d6}, + {0x5544, 0xc2ef}, + {0x5545, 0xd3b6}, + {0x5546, 0xbea6}, + {0x5547, 0x8fb5d7}, + {0x5549, 0x8fb5d8}, + {0x554a, 0x8fb5d9}, + {0x554c, 0xd3b3}, + {0x554d, 0x8fb5da}, + {0x554f, 0xcce4}, + {0x5550, 0x8fb5db}, + {0x5551, 0x8fb5dc}, + {0x5553, 0xb7bc}, + {0x5556, 0xd3b7}, + {0x5557, 0xd3b8}, + {0x5558, 0x8fb5dd}, + {0x555a, 0x8fb5de}, + {0x555b, 0x8fb5df}, + {0x555c, 0xd3b5}, + {0x555d, 0xd3bb}, + {0x555e, 0x8fb5e0}, + {0x5560, 0x8fb5e1}, + {0x5561, 0x8fb5e2}, + {0x5563, 0xd3b2}, + {0x5564, 0x8fb5e3}, + {0x5566, 0x8fb5e4}, + {0x557b, 0xd3c1}, + {0x557c, 0xd3c6}, + {0x557e, 0xd3c2}, + {0x557f, 0x8fb5e5}, + {0x5580, 0xd3bd}, + {0x5581, 0x8fb5e6}, + {0x5582, 0x8fb5e7}, + {0x5583, 0xd3c7}, + {0x5584, 0xc1b1}, + {0x5586, 0x8fb5e8}, + {0x5587, 0xd3c9}, + {0x5588, 0x8fb5e9}, + {0x5589, 0xb9a2}, + {0x558a, 0xd3bf}, + {0x558b, 0xc3fd}, + {0x558e, 0x8fb5ea}, + {0x558f, 0x8fb5eb}, + {0x5591, 0x8fb5ec}, + {0x5592, 0x8fb5ed}, + {0x5593, 0x8fb5ee}, + {0x5594, 0x8fb5ef}, + {0x5597, 0x8fb5f0}, + {0x5598, 0xd3c3}, + {0x5599, 0xd3bc}, + {0x559a, 0xb4ad}, + {0x559c, 0xb4ee}, + {0x559d, 0xb3e5}, + {0x559e, 0xd3c4}, + {0x559f, 0xd3c0}, + {0x55a3, 0x8fb5f1}, + {0x55a4, 0x8fb5f2}, + {0x55a7, 0xb7f6}, + {0x55a8, 0xd3ca}, + {0x55a9, 0xd3c8}, + {0x55aa, 0xc1d3}, + {0x55ab, 0xb5ca}, + {0x55ac, 0xb6ac}, + {0x55ad, 0x8fb5f3}, + {0x55ae, 0xd3c5}, + {0x55b0, 0xb6f4}, + {0x55b2, 0x8fb5f4}, + {0x55b6, 0xb1c4}, + {0x55bf, 0x8fb5f5}, + {0x55c1, 0x8fb5f6}, + {0x55c3, 0x8fb5f7}, + {0x55c4, 0xd3ce}, + {0x55c5, 0xd3cc}, + {0x55c6, 0x8fb5f8}, + {0x55c7, 0xd4a7}, + {0x55c9, 0x8fb5f9}, + {0x55cb, 0x8fb5fa}, + {0x55cc, 0x8fb5fb}, + {0x55ce, 0x8fb5fc}, + {0x55d1, 0x8fb5fd}, + {0x55d2, 0x8fb5fe}, + {0x55d3, 0x8fb6a1}, + {0x55d4, 0xd3d1}, + {0x55d7, 0x8fb6a2}, + {0x55d8, 0x8fb6a3}, + {0x55da, 0xd3cb}, + {0x55db, 0x8fb6a4}, + {0x55dc, 0xd3cf}, + {0x55de, 0x8fb6a5}, + {0x55df, 0xd3cd}, + {0x55e2, 0x8fb6a6}, + {0x55e3, 0xbbcc}, + {0x55e4, 0xd3d0}, + {0x55e9, 0x8fb6a7}, + {0x55f6, 0x8fb6a8}, + {0x55f7, 0xd3d3}, + {0x55f9, 0xd3d8}, + {0x55fd, 0xd3d6}, + {0x55fe, 0xd3d5}, + {0x55ff, 0x8fb6a9}, + {0x5605, 0x8fb6aa}, + {0x5606, 0xc3b2}, + {0x5608, 0x8fb6ab}, + {0x5609, 0xb2c5}, + {0x560a, 0x8fb6ac}, + {0x560d, 0x8fb6ad}, + {0x560e, 0x8fb6ae}, + {0x560f, 0x8fb6af}, + {0x5610, 0x8fb6b0}, + {0x5611, 0x8fb6b1}, + {0x5612, 0x8fb6b2}, + {0x5614, 0xd3d2}, + {0x5616, 0xd3d4}, + {0x5617, 0xbea8}, + {0x5618, 0xb1b3}, + {0x5619, 0x8fb6b3}, + {0x561b, 0xd3d7}, + {0x5629, 0xb2de}, + {0x562c, 0x8fb6b4}, + {0x562f, 0xd3e2}, + {0x5630, 0x8fb6b5}, + {0x5631, 0xbefc}, + {0x5632, 0xd3de}, + {0x5633, 0x8fb6b6}, + {0x5634, 0xd3dc}, + {0x5635, 0x8fb6b7}, + {0x5636, 0xd3dd}, + {0x5637, 0x8fb6b8}, + {0x5638, 0xd3df}, + {0x5639, 0x8fb6b9}, + {0x563b, 0x8fb6ba}, + {0x563c, 0x8fb6bb}, + {0x563d, 0x8fb6bc}, + {0x563f, 0x8fb6bd}, + {0x5640, 0x8fb6be}, + {0x5641, 0x8fb6bf}, + {0x5642, 0xb1bd}, + {0x5643, 0x8fb6c0}, + {0x5644, 0x8fb6c1}, + {0x5646, 0x8fb6c2}, + {0x5649, 0x8fb6c3}, + {0x564b, 0x8fb6c4}, + {0x564c, 0xc1b9}, + {0x564d, 0x8fb6c5}, + {0x564e, 0xd3d9}, + {0x564f, 0x8fb6c6}, + {0x5650, 0xd3da}, + {0x5654, 0x8fb6c7}, + {0x565b, 0xb3fa}, + {0x565e, 0x8fb6c8}, + {0x5660, 0x8fb6c9}, + {0x5661, 0x8fb6ca}, + {0x5662, 0x8fb6cb}, + {0x5663, 0x8fb6cc}, + {0x5664, 0xd3e1}, + {0x5666, 0x8fb6cd}, + {0x5668, 0xb4ef}, + {0x5669, 0x8fb6ce}, + {0x566a, 0xd3e4}, + {0x566b, 0xd3e0}, + {0x566c, 0xd3e3}, + {0x566d, 0x8fb6cf}, + {0x566f, 0x8fb6d0}, + {0x5671, 0x8fb6d1}, + {0x5672, 0x8fb6d2}, + {0x5674, 0xcaae}, + {0x5675, 0x8fb6d3}, + {0x5678, 0xc6d5}, + {0x567a, 0xc8b8}, + {0x5680, 0xd3e6}, + {0x5684, 0x8fb6d4}, + {0x5685, 0x8fb6d5}, + {0x5686, 0xd3e5}, + {0x5687, 0xb3c5}, + {0x5688, 0x8fb6d6}, + {0x568a, 0xd3e7}, + {0x568b, 0x8fb6d7}, + {0x568c, 0x8fb6d8}, + {0x568f, 0xd3ea}, + {0x5694, 0xd3e9}, + {0x5695, 0x8fb6d9}, + {0x5699, 0x8fb6da}, + {0x569a, 0x8fb6db}, + {0x569d, 0x8fb6dc}, + {0x569e, 0x8fb6dd}, + {0x569f, 0x8fb6de}, + {0x56a0, 0xd3e8}, + {0x56a2, 0xc7b9}, + {0x56a5, 0xd3eb}, + {0x56a6, 0x8fb6df}, + {0x56a7, 0x8fb6e0}, + {0x56a8, 0x8fb6e1}, + {0x56a9, 0x8fb6e2}, + {0x56ab, 0x8fb6e3}, + {0x56ac, 0x8fb6e4}, + {0x56ad, 0x8fb6e5}, + {0x56ae, 0xd3ec}, + {0x56b1, 0x8fb6e6}, + {0x56b3, 0x8fb6e7}, + {0x56b4, 0xd3ee}, + {0x56b6, 0xd3ed}, + {0x56b7, 0x8fb6e8}, + {0x56bc, 0xd3f0}, + {0x56be, 0x8fb6e9}, + {0x56c0, 0xd3f3}, + {0x56c1, 0xd3f1}, + {0x56c2, 0xd3ef}, + {0x56c3, 0xd3f2}, + {0x56c5, 0x8fb6ea}, + {0x56c8, 0xd3f4}, + {0x56c9, 0x8fb6eb}, + {0x56ca, 0x8fb6ec}, + {0x56cb, 0x8fb6ed}, + {0x56cc, 0x8fb6f0}, + {0x56cd, 0x8fb6f1}, + {0x56ce, 0xd3f5}, + {0x56cf, 0x8fb6ee}, + {0x56d0, 0x8fb6ef}, + {0x56d1, 0xd3f6}, + {0x56d3, 0xd3f7}, + {0x56d7, 0xd3f8}, + {0x56d8, 0xd1c5}, + {0x56d9, 0x8fb6f2}, + {0x56da, 0xbcfc}, + {0x56db, 0xbbcd}, + {0x56dc, 0x8fb6f3}, + {0x56dd, 0x8fb6f4}, + {0x56de, 0xb2f3}, + {0x56df, 0x8fb6f5}, + {0x56e0, 0xb0f8}, + {0x56e1, 0x8fb6f6}, + {0x56e3, 0xc3c4}, + {0x56e4, 0x8fb6f7}, + {0x56e5, 0x8fb6f8}, + {0x56e6, 0x8fb6f9}, + {0x56e7, 0x8fb6fa}, + {0x56e8, 0x8fb6fb}, + {0x56eb, 0x8fb6fd}, + {0x56ed, 0x8fb6fe}, + {0x56ee, 0xd3f9}, + {0x56f0, 0xbaa4}, + {0x56f1, 0x8fb6fc}, + {0x56f2, 0xb0cf}, + {0x56f3, 0xbfde}, + {0x56f6, 0x8fb7a1}, + {0x56f7, 0x8fb7a2}, + {0x56f9, 0xd3fa}, + {0x56fa, 0xb8c7}, + {0x56fd, 0xb9f1}, + {0x56ff, 0xd3fc}, + {0x5700, 0xd3fb}, + {0x5701, 0x8fb7a3}, + {0x5702, 0x8fb7a4}, + {0x5703, 0xcae0}, + {0x5704, 0xd3fd}, + {0x5707, 0x8fb7a5}, + {0x5708, 0xd4a1}, + {0x5709, 0xd3fe}, + {0x570a, 0x8fb7a6}, + {0x570b, 0xd4a2}, + {0x570c, 0x8fb7a7}, + {0x570d, 0xd4a3}, + {0x570f, 0xb7f7}, + {0x5711, 0x8fb7a8}, + {0x5712, 0xb1e0}, + {0x5713, 0xd4a4}, + {0x5715, 0x8fb7a9}, + {0x5716, 0xd4a6}, + {0x5718, 0xd4a5}, + {0x571a, 0x8fb7aa}, + {0x571b, 0x8fb7ab}, + {0x571c, 0xd4a8}, + {0x571d, 0x8fb7ac}, + {0x571f, 0xc5da}, + {0x5720, 0x8fb7ad}, + {0x5722, 0x8fb7ae}, + {0x5723, 0x8fb7af}, + {0x5724, 0x8fb7b0}, + {0x5725, 0x8fb7b1}, + {0x5726, 0xd4a9}, + {0x5727, 0xb0b5}, + {0x5728, 0xbadf}, + {0x5729, 0x8fb7b2}, + {0x572a, 0x8fb7b3}, + {0x572c, 0x8fb7b4}, + {0x572d, 0xb7bd}, + {0x572e, 0x8fb7b5}, + {0x572f, 0x8fb7b6}, + {0x5730, 0xc3cf}, + {0x5733, 0x8fb7b7}, + {0x5734, 0x8fb7b8}, + {0x5737, 0xd4aa}, + {0x5738, 0xd4ab}, + {0x573b, 0xd4ad}, + {0x573d, 0x8fb7b9}, + {0x573e, 0x8fb7ba}, + {0x573f, 0x8fb7bb}, + {0x5740, 0xd4ae}, + {0x5742, 0xbae4}, + {0x5745, 0x8fb7bc}, + {0x5746, 0x8fb7bd}, + {0x5747, 0xb6d1}, + {0x574a, 0xcbb7}, + {0x574c, 0x8fb7be}, + {0x574d, 0x8fb7bf}, + {0x574e, 0xd4ac}, + {0x574f, 0xd4af}, + {0x5750, 0xbac1}, + {0x5751, 0xb9a3}, + {0x5752, 0x8fb7c0}, + {0x5761, 0xd4b3}, + {0x5762, 0x8fb7c1}, + {0x5764, 0xbaa5}, + {0x5765, 0x8fb7c2}, + {0x5766, 0xc3b3}, + {0x5767, 0x8fb7c3}, + {0x5768, 0x8fb7c4}, + {0x5769, 0xd4b0}, + {0x576a, 0xc4da}, + {0x576b, 0x8fb7c5}, + {0x576d, 0x8fb7c6}, + {0x576e, 0x8fb7c7}, + {0x576f, 0x8fb7c8}, + {0x5770, 0x8fb7c9}, + {0x5771, 0x8fb7ca}, + {0x5773, 0x8fb7cb}, + {0x5774, 0x8fb7cc}, + {0x5775, 0x8fb7cd}, + {0x5777, 0x8fb7ce}, + {0x5779, 0x8fb7cf}, + {0x577a, 0x8fb7d0}, + {0x577b, 0x8fb7d1}, + {0x577c, 0x8fb7d2}, + {0x577e, 0x8fb7d3}, + {0x577f, 0xd4b4}, + {0x5781, 0x8fb7d4}, + {0x5782, 0xbfe2}, + {0x5783, 0x8fb7d5}, + {0x5788, 0xd4b2}, + {0x5789, 0xd4b5}, + {0x578b, 0xb7bf}, + {0x578c, 0x8fb7d6}, + {0x5793, 0xd4b6}, + {0x5794, 0x8fb7d7}, + {0x5795, 0x8fb7e0}, + {0x5797, 0x8fb7d8}, + {0x5799, 0x8fb7d9}, + {0x579a, 0x8fb7da}, + {0x579c, 0x8fb7db}, + {0x579d, 0x8fb7dc}, + {0x579e, 0x8fb7dd}, + {0x579f, 0x8fb7de}, + {0x57a0, 0xd4b7}, + {0x57a1, 0x8fb7df}, + {0x57a2, 0xb9a4}, + {0x57a3, 0xb3c0}, + {0x57a4, 0xd4b9}, + {0x57a7, 0x8fb7e1}, + {0x57a8, 0x8fb7e2}, + {0x57a9, 0x8fb7e3}, + {0x57aa, 0xd4ba}, + {0x57ac, 0x8fb7e4}, + {0x57b0, 0xd4bb}, + {0x57b3, 0xd4b8}, + {0x57b8, 0x8fb7e5}, + {0x57bd, 0x8fb7e6}, + {0x57c0, 0xd4b1}, + {0x57c3, 0xd4bc}, + {0x57c6, 0xd4bd}, + {0x57c7, 0x8fb7e7}, + {0x57c8, 0x8fb7e8}, + {0x57cb, 0xcbe4}, + {0x57cc, 0x8fb7e9}, + {0x57ce, 0xbeeb}, + {0x57cf, 0x8fb7ea}, + {0x57d2, 0xd4bf}, + {0x57d3, 0xd4c0}, + {0x57d4, 0xd4be}, + {0x57d5, 0x8fb7eb}, + {0x57d6, 0xd4c2}, + {0x57dc, 0xc7b8}, + {0x57dd, 0x8fb7ec}, + {0x57de, 0x8fb7ed}, + {0x57df, 0xb0e8}, + {0x57e0, 0xc9d6}, + {0x57e1, 0x8fb7fe}, + {0x57e3, 0xd4c3}, + {0x57e4, 0x8fb7ee}, + {0x57e6, 0x8fb7ef}, + {0x57e7, 0x8fb7f0}, + {0x57e9, 0x8fb7f1}, + {0x57ed, 0x8fb7f2}, + {0x57f0, 0x8fb7f3}, + {0x57f4, 0xbefd}, + {0x57f5, 0x8fb7f4}, + {0x57f6, 0x8fb7f5}, + {0x57f7, 0xbcb9}, + {0x57f8, 0x8fb7f6}, + {0x57f9, 0xc7dd}, + {0x57fa, 0xb4f0}, + {0x57fc, 0xbaeb}, + {0x57fd, 0x8fb7f7}, + {0x57fe, 0x8fb7f8}, + {0x57ff, 0x8fb7f9}, + {0x5800, 0xcbd9}, + {0x5802, 0xc6b2}, + {0x5803, 0x8fb7fa}, + {0x5804, 0x8fb7fb}, + {0x5805, 0xb7f8}, + {0x5806, 0xc2cf}, + {0x5808, 0x8fb7fc}, + {0x5809, 0x8fb7fd}, + {0x580a, 0xd4c1}, + {0x580b, 0xd4c4}, + {0x580c, 0x8fb8a1}, + {0x580d, 0x8fb8a2}, + {0x5815, 0xc2c4}, + {0x5819, 0xd4c5}, + {0x581b, 0x8fb8a3}, + {0x581d, 0xd4c6}, + {0x581e, 0x8fb8a4}, + {0x581f, 0x8fb8a5}, + {0x5820, 0x8fb8a6}, + {0x5821, 0xd4c8}, + {0x5824, 0xc4e9}, + {0x5826, 0x8fb8a7}, + {0x5827, 0x8fb8a8}, + {0x582a, 0xb4ae}, + {0x582d, 0x8fb8a9}, + {0x582f, 0xf4a1}, + {0x5830, 0xb1e1}, + {0x5831, 0xcaf3}, + {0x5832, 0x8fb8aa}, + {0x5834, 0xbeec}, + {0x5835, 0xc5c8}, + {0x5839, 0x8fb8ab}, + {0x583a, 0xbae6}, + {0x583d, 0xd4ce}, + {0x583f, 0x8fb8ac}, + {0x5840, 0xcabd}, + {0x5841, 0xcedd}, + {0x5849, 0x8fb8ad}, + {0x584a, 0xb2f4}, + {0x584b, 0xd4ca}, + {0x584c, 0x8fb8ae}, + {0x584d, 0x8fb8af}, + {0x584f, 0x8fb8b0}, + {0x5850, 0x8fb8b1}, + {0x5851, 0xc1ba}, + {0x5852, 0xd4cd}, + {0x5854, 0xc5e3}, + {0x5855, 0x8fb8b2}, + {0x5857, 0xc5c9}, + {0x5858, 0xc5e4}, + {0x5859, 0xc8b9}, + {0x585a, 0xc4cd}, + {0x585e, 0xbac9}, + {0x585f, 0x8fb8b3}, + {0x5861, 0x8fb8b4}, + {0x5862, 0xd4c9}, + {0x5864, 0x8fb8b5}, + {0x5867, 0x8fb8b6}, + {0x5868, 0x8fb8b7}, + {0x5869, 0xb1f6}, + {0x586b, 0xc5b6}, + {0x5870, 0xd4cb}, + {0x5872, 0xd4c7}, + {0x5875, 0xbfd0}, + {0x5878, 0x8fb8b8}, + {0x5879, 0xd4cf}, + {0x587c, 0x8fb8b9}, + {0x587e, 0xbdce}, + {0x587f, 0x8fb8ba}, + {0x5880, 0x8fb8bb}, + {0x5881, 0x8fb8bc}, + {0x5883, 0xb6ad}, + {0x5885, 0xd4d0}, + {0x5887, 0x8fb8bd}, + {0x5888, 0x8fb8be}, + {0x5889, 0x8fb8bf}, + {0x588a, 0x8fb8c0}, + {0x588c, 0x8fb8c1}, + {0x588d, 0x8fb8c2}, + {0x588f, 0x8fb8c3}, + {0x5890, 0x8fb8c4}, + {0x5893, 0xcae8}, + {0x5894, 0x8fb8c5}, + {0x5896, 0x8fb8c6}, + {0x5897, 0xc1fd}, + {0x589c, 0xc4c6}, + {0x589d, 0x8fb8c7}, + {0x589f, 0xd4d2}, + {0x58a0, 0x8fb8c8}, + {0x58a1, 0x8fb8c9}, + {0x58a2, 0x8fb8ca}, + {0x58a6, 0x8fb8cb}, + {0x58a8, 0xcbcf}, + {0x58a9, 0x8fb8cc}, + {0x58ab, 0xd4d3}, + {0x58ae, 0xd4d8}, + {0x58b1, 0x8fb8cd}, + {0x58b2, 0x8fb8ce}, + {0x58b3, 0xcaaf}, + {0x58b8, 0xd4d7}, + {0x58b9, 0xd4d1}, + {0x58ba, 0xd4d4}, + {0x58bb, 0xd4d6}, + {0x58bc, 0x8fb8d0}, + {0x58be, 0xbaa6}, + {0x58c1, 0xcac9}, + {0x58c2, 0x8fb8d1}, + {0x58c4, 0x8fb8cf}, + {0x58c5, 0xd4d9}, + {0x58c7, 0xc3c5}, + {0x58c8, 0x8fb8d2}, + {0x58ca, 0xb2f5}, + {0x58cc, 0xbeed}, + {0x58cd, 0x8fb8d3}, + {0x58ce, 0x8fb8d4}, + {0x58d0, 0x8fb8d5}, + {0x58d1, 0xd4db}, + {0x58d2, 0x8fb8d6}, + {0x58d3, 0xd4da}, + {0x58d4, 0x8fb8d7}, + {0x58d5, 0xb9e8}, + {0x58d6, 0x8fb8d8}, + {0x58d7, 0xd4dc}, + {0x58d8, 0xd4de}, + {0x58d9, 0xd4dd}, + {0x58da, 0x8fb8d9}, + {0x58dc, 0xd4e0}, + {0x58dd, 0x8fb8da}, + {0x58de, 0xd4d5}, + {0x58df, 0xd4e2}, + {0x58e1, 0x8fb8db}, + {0x58e2, 0x8fb8dc}, + {0x58e4, 0xd4e1}, + {0x58e5, 0xd4df}, + {0x58e9, 0x8fb8dd}, + {0x58eb, 0xbbce}, + {0x58ec, 0xbfd1}, + {0x58ee, 0xc1d4}, + {0x58ef, 0xd4e3}, + {0x58f0, 0xc0bc}, + {0x58f1, 0xb0ed}, + {0x58f2, 0xc7e4}, + {0x58f3, 0x8fb8de}, + {0x58f7, 0xc4db}, + {0x58f9, 0xd4e5}, + {0x58fa, 0xd4e4}, + {0x58fb, 0xd4e6}, + {0x58fc, 0xd4e7}, + {0x58fd, 0xd4e8}, + {0x5902, 0xd4e9}, + {0x5905, 0x8fb8df}, + {0x5906, 0x8fb8e0}, + {0x5909, 0xcad1}, + {0x590a, 0xd4ea}, + {0x590b, 0x8fb8e1}, + {0x590c, 0x8fb8e2}, + {0x590f, 0xb2c6}, + {0x5910, 0xd4eb}, + {0x5912, 0x8fb8e3}, + {0x5913, 0x8fb8e4}, + {0x5914, 0x8fb8e5}, + {0x5915, 0xcdbc}, + {0x5916, 0xb3b0}, + {0x5918, 0xd2c9}, + {0x5919, 0xbdc8}, + {0x591a, 0xc2bf}, + {0x591b, 0xd4ec}, + {0x591c, 0xcceb}, + {0x591d, 0x8fb8e7}, + {0x5921, 0x8fb8e8}, + {0x5922, 0xccb4}, + {0x5923, 0x8fb8e9}, + {0x5924, 0x8fb8ea}, + {0x5925, 0xd4ee}, + {0x5927, 0xc2e7}, + {0x5928, 0x8fb8eb}, + {0x5929, 0xc5b7}, + {0x592a, 0xc2c0}, + {0x592b, 0xc9d7}, + {0x592c, 0xd4ef}, + {0x592d, 0xd4f0}, + {0x592e, 0xb1fb}, + {0x592f, 0x8fb8ec}, + {0x5930, 0x8fb8ed}, + {0x5931, 0xbcba}, + {0x5932, 0xd4f1}, + {0x5933, 0x8fb8ee}, + {0x5935, 0x8fb8ef}, + {0x5936, 0x8fb8f0}, + {0x5937, 0xb0d0}, + {0x5938, 0xd4f2}, + {0x593e, 0xd4f3}, + {0x593f, 0x8fb8f1}, + {0x5943, 0x8fb8f2}, + {0x5944, 0xb1e2}, + {0x5946, 0x8fb8f3}, + {0x5947, 0xb4f1}, + {0x5948, 0xc6e0}, + {0x5949, 0xcaf4}, + {0x594e, 0xd4f7}, + {0x594f, 0xc1d5}, + {0x5950, 0xd4f6}, + {0x5951, 0xb7c0}, + {0x5952, 0x8fb8f4}, + {0x5953, 0x8fb8f5}, + {0x5954, 0xcbdb}, + {0x5955, 0xd4f5}, + {0x5957, 0xc5e5}, + {0x5958, 0xd4f9}, + {0x5959, 0x8fb8f6}, + {0x595a, 0xd4f8}, + {0x595b, 0x8fb8f7}, + {0x595d, 0x8fb8f8}, + {0x595e, 0x8fb8f9}, + {0x595f, 0x8fb8fa}, + {0x5960, 0xd4fb}, + {0x5961, 0x8fb8fb}, + {0x5962, 0xd4fa}, + {0x5963, 0x8fb8fc}, + {0x5965, 0xb1fc}, + {0x5967, 0xd4fc}, + {0x5968, 0xbea9}, + {0x5969, 0xd4fe}, + {0x596a, 0xc3a5}, + {0x596b, 0x8fb8fd}, + {0x596c, 0xd4fd}, + {0x596d, 0x8fb8fe}, + {0x596e, 0xcab3}, + {0x596f, 0x8fb9a1}, + {0x5972, 0x8fb9a2}, + {0x5973, 0xbdf7}, + {0x5974, 0xc5db}, + {0x5975, 0x8fb9a3}, + {0x5976, 0x8fb9a4}, + {0x5978, 0xd5a1}, + {0x5979, 0x8fb9a5}, + {0x597b, 0x8fb9a6}, + {0x597c, 0x8fb9a7}, + {0x597d, 0xb9a5}, + {0x5981, 0xd5a2}, + {0x5982, 0xc7a1}, + {0x5983, 0xc8de}, + {0x5984, 0xccd1}, + {0x598a, 0xc7a5}, + {0x598b, 0x8fb9a8}, + {0x598c, 0x8fb9a9}, + {0x598d, 0xd5ab}, + {0x598e, 0x8fb9aa}, + {0x5992, 0x8fb9ab}, + {0x5993, 0xb5b8}, + {0x5995, 0x8fb9ac}, + {0x5996, 0xcdc5}, + {0x5997, 0x8fb9ad}, + {0x5999, 0xccaf}, + {0x599b, 0xd6ac}, + {0x599d, 0xd5a3}, + {0x599f, 0x8fb9ae}, + {0x59a3, 0xd5a6}, + {0x59a4, 0x8fb9af}, + {0x59a5, 0xc2c5}, + {0x59a7, 0x8fb9b0}, + {0x59a8, 0xcbb8}, + {0x59ac, 0xc5ca}, + {0x59ad, 0x8fb9b1}, + {0x59ae, 0x8fb9b2}, + {0x59af, 0x8fb9b3}, + {0x59b0, 0x8fb9b4}, + {0x59b2, 0xd5a7}, + {0x59b3, 0x8fb9b5}, + {0x59b7, 0x8fb9b6}, + {0x59b9, 0xcbe5}, + {0x59ba, 0x8fb9b7}, + {0x59bb, 0xbaca}, + {0x59bc, 0x8fb9b8}, + {0x59be, 0xbeaa}, + {0x59c1, 0x8fb9b9}, + {0x59c3, 0x8fb9ba}, + {0x59c4, 0x8fb9bb}, + {0x59c6, 0xd5a8}, + {0x59c8, 0x8fb9bc}, + {0x59c9, 0xbbd0}, + {0x59ca, 0x8fb9bd}, + {0x59cb, 0xbbcf}, + {0x59cd, 0x8fb9be}, + {0x59d0, 0xb0b9}, + {0x59d1, 0xb8c8}, + {0x59d2, 0x8fb9bf}, + {0x59d3, 0xc0ab}, + {0x59d4, 0xb0d1}, + {0x59d9, 0xd5ac}, + {0x59da, 0xd5ad}, + {0x59dc, 0xd5aa}, + {0x59dd, 0x8fb9c0}, + {0x59de, 0x8fb9c1}, + {0x59df, 0x8fb9c2}, + {0x59e3, 0x8fb9c3}, + {0x59e4, 0x8fb9c4}, + {0x59e5, 0xb1b8}, + {0x59e6, 0xb4af}, + {0x59e7, 0x8fb9c5}, + {0x59e8, 0xd5a9}, + {0x59ea, 0xccc5}, + {0x59eb, 0xc9b1}, + {0x59ee, 0x8fb9c6}, + {0x59ef, 0x8fb9c7}, + {0x59f1, 0x8fb9c8}, + {0x59f2, 0x8fb9c9}, + {0x59f4, 0x8fb9ca}, + {0x59f6, 0xb0a8}, + {0x59f7, 0x8fb9cb}, + {0x59fb, 0xb0f9}, + {0x59ff, 0xbbd1}, + {0x5a00, 0x8fb9cc}, + {0x5a01, 0xb0d2}, + {0x5a03, 0xb0a3}, + {0x5a04, 0x8fb9cd}, + {0x5a09, 0xd5b2}, + {0x5a0c, 0x8fb9ce}, + {0x5a0d, 0x8fb9cf}, + {0x5a0e, 0x8fb9d0}, + {0x5a11, 0xd5b0}, + {0x5a12, 0x8fb9d1}, + {0x5a13, 0x8fb9d2}, + {0x5a18, 0xccbc}, + {0x5a1a, 0xd5b3}, + {0x5a1c, 0xd5b1}, + {0x5a1e, 0x8fb9d3}, + {0x5a1f, 0xd5af}, + {0x5a20, 0xbfb1}, + {0x5a23, 0x8fb9d4}, + {0x5a24, 0x8fb9d5}, + {0x5a25, 0xd5ae}, + {0x5a27, 0x8fb9d6}, + {0x5a28, 0x8fb9d7}, + {0x5a29, 0xcada}, + {0x5a2a, 0x8fb9d8}, + {0x5a2d, 0x8fb9d9}, + {0x5a2f, 0xb8e4}, + {0x5a30, 0x8fb9da}, + {0x5a35, 0xd5b7}, + {0x5a36, 0xd5b8}, + {0x5a3c, 0xbeab}, + {0x5a40, 0xd5b4}, + {0x5a41, 0xcfac}, + {0x5a44, 0x8fb9db}, + {0x5a45, 0x8fb9dc}, + {0x5a46, 0xc7cc}, + {0x5a47, 0x8fb9dd}, + {0x5a48, 0x8fb9de}, + {0x5a49, 0xd5b6}, + {0x5a4c, 0x8fb9df}, + {0x5a50, 0x8fb9e0}, + {0x5a55, 0x8fb9e1}, + {0x5a5a, 0xbaa7}, + {0x5a5e, 0x8fb9e2}, + {0x5a62, 0xd5b9}, + {0x5a63, 0x8fb9e3}, + {0x5a65, 0x8fb9e4}, + {0x5a66, 0xc9d8}, + {0x5a67, 0x8fb9e5}, + {0x5a6a, 0xd5ba}, + {0x5a6c, 0xd5b5}, + {0x5a6d, 0x8fb9e6}, + {0x5a77, 0x8fb9e7}, + {0x5a7a, 0x8fb9e8}, + {0x5a7b, 0x8fb9e9}, + {0x5a7e, 0x8fb9ea}, + {0x5a7f, 0xccbb}, + {0x5a8b, 0x8fb9eb}, + {0x5a90, 0x8fb9ec}, + {0x5a92, 0xc7de}, + {0x5a93, 0x8fb9ed}, + {0x5a96, 0x8fb9ee}, + {0x5a99, 0x8fb9ef}, + {0x5a9a, 0xd5bb}, + {0x5a9b, 0xc9b2}, + {0x5a9c, 0x8fb9f0}, + {0x5a9e, 0x8fb9f1}, + {0x5a9f, 0x8fb9f2}, + {0x5aa0, 0x8fb9f3}, + {0x5aa2, 0x8fb9f4}, + {0x5aa7, 0x8fb9f5}, + {0x5aac, 0x8fb9f6}, + {0x5ab1, 0x8fb9f7}, + {0x5ab2, 0x8fb9f8}, + {0x5ab3, 0x8fb9f9}, + {0x5ab5, 0x8fb9fa}, + {0x5ab8, 0x8fb9fb}, + {0x5aba, 0x8fb9fc}, + {0x5abb, 0x8fb9fd}, + {0x5abc, 0xd5bc}, + {0x5abd, 0xd5c0}, + {0x5abe, 0xd5bd}, + {0x5abf, 0x8fb9fe}, + {0x5ac1, 0xb2c7}, + {0x5ac2, 0xd5bf}, + {0x5ac4, 0x8fbaa1}, + {0x5ac6, 0x8fbaa2}, + {0x5ac8, 0x8fbaa3}, + {0x5ac9, 0xbcbb}, + {0x5acb, 0xd5be}, + {0x5acc, 0xb7f9}, + {0x5acf, 0x8fbaa4}, + {0x5ad0, 0xd5cc}, + {0x5ad6, 0xd5c5}, + {0x5ad7, 0xd5c2}, + {0x5ada, 0x8fbaa5}, + {0x5adc, 0x8fbaa6}, + {0x5ae0, 0x8fbaa7}, + {0x5ae1, 0xc3e4}, + {0x5ae3, 0xd5c1}, + {0x5ae5, 0x8fbaa8}, + {0x5ae6, 0xd5c3}, + {0x5ae9, 0xd5c4}, + {0x5aea, 0x8fbaa9}, + {0x5aee, 0x8fbaaa}, + {0x5af5, 0x8fbaab}, + {0x5af6, 0x8fbaac}, + {0x5afa, 0xd5c6}, + {0x5afb, 0xd5c7}, + {0x5afd, 0x8fbaad}, + {0x5b00, 0x8fbaae}, + {0x5b01, 0x8fbaaf}, + {0x5b08, 0x8fbab0}, + {0x5b09, 0xb4f2}, + {0x5b0b, 0xd5c9}, + {0x5b0c, 0xd5c8}, + {0x5b16, 0xd5ca}, + {0x5b17, 0x8fbab1}, + {0x5b19, 0x8fbab3}, + {0x5b1b, 0x8fbab4}, + {0x5b1d, 0x8fbab5}, + {0x5b21, 0x8fbab6}, + {0x5b22, 0xbeee}, + {0x5b25, 0x8fbab7}, + {0x5b2a, 0xd5cd}, + {0x5b2c, 0xc4dc}, + {0x5b2d, 0x8fbab8}, + {0x5b30, 0xb1c5}, + {0x5b32, 0xd5cb}, + {0x5b34, 0x8fbab2}, + {0x5b36, 0xd5ce}, + {0x5b38, 0x8fbab9}, + {0x5b3e, 0xd5cf}, + {0x5b40, 0xd5d2}, + {0x5b41, 0x8fbaba}, + {0x5b43, 0xd5d0}, + {0x5b45, 0xd5d1}, + {0x5b4b, 0x8fbabb}, + {0x5b4c, 0x8fbabc}, + {0x5b50, 0xbbd2}, + {0x5b51, 0xd5d3}, + {0x5b52, 0x8fbabd}, + {0x5b54, 0xb9a6}, + {0x5b55, 0xd5d4}, + {0x5b56, 0x8fbabe}, + {0x5b57, 0xbbfa}, + {0x5b58, 0xc2b8}, + {0x5b5a, 0xd5d5}, + {0x5b5b, 0xd5d6}, + {0x5b5c, 0xbbda}, + {0x5b5d, 0xb9a7}, + {0x5b5e, 0x8fbabf}, + {0x5b5f, 0xccd2}, + {0x5b63, 0xb5a8}, + {0x5b64, 0xb8c9}, + {0x5b65, 0xd5d7}, + {0x5b66, 0xb3d8}, + {0x5b68, 0x8fbac0}, + {0x5b69, 0xd5d8}, + {0x5b6b, 0xc2b9}, + {0x5b6e, 0x8fbac1}, + {0x5b6f, 0x8fbac2}, + {0x5b70, 0xd5d9}, + {0x5b71, 0xd6a3}, + {0x5b73, 0xd5da}, + {0x5b75, 0xd5db}, + {0x5b78, 0xd5dc}, + {0x5b7a, 0xd5de}, + {0x5b7c, 0x8fbac3}, + {0x5b7d, 0x8fbac4}, + {0x5b7e, 0x8fbac5}, + {0x5b7f, 0x8fbac6}, + {0x5b80, 0xd5df}, + {0x5b81, 0x8fbac7}, + {0x5b83, 0xd5e0}, + {0x5b84, 0x8fbac8}, + {0x5b85, 0xc2f0}, + {0x5b86, 0x8fbac9}, + {0x5b87, 0xb1a7}, + {0x5b88, 0xbce9}, + {0x5b89, 0xb0c2}, + {0x5b8a, 0x8fbaca}, + {0x5b8b, 0xc1d7}, + {0x5b8c, 0xb4b0}, + {0x5b8d, 0xbcb5}, + {0x5b8e, 0x8fbacb}, + {0x5b8f, 0xb9a8}, + {0x5b90, 0x8fbacc}, + {0x5b91, 0x8fbacd}, + {0x5b93, 0x8fbace}, + {0x5b94, 0x8fbacf}, + {0x5b95, 0xc5e6}, + {0x5b96, 0x8fbad0}, + {0x5b97, 0xbda1}, + {0x5b98, 0xb4b1}, + {0x5b99, 0xc3e8}, + {0x5b9a, 0xc4ea}, + {0x5b9b, 0xb0b8}, + {0x5b9c, 0xb5b9}, + {0x5b9d, 0xcaf5}, + {0x5b9f, 0xbcc2}, + {0x5ba2, 0xb5d2}, + {0x5ba3, 0xc0eb}, + {0x5ba4, 0xbcbc}, + {0x5ba5, 0xcda8}, + {0x5ba6, 0xd5e1}, + {0x5ba8, 0x8fbad1}, + {0x5ba9, 0x8fbad2}, + {0x5bac, 0x8fbad3}, + {0x5bad, 0x8fbad4}, + {0x5bae, 0xb5dc}, + {0x5baf, 0x8fbad5}, + {0x5bb0, 0xbacb}, + {0x5bb1, 0x8fbad6}, + {0x5bb2, 0x8fbad7}, + {0x5bb3, 0xb3b2}, + {0x5bb4, 0xb1e3}, + {0x5bb5, 0xbeac}, + {0x5bb6, 0xb2c8}, + {0x5bb7, 0x8fbad8}, + {0x5bb8, 0xd5e2}, + {0x5bb9, 0xcdc6}, + {0x5bba, 0x8fbad9}, + {0x5bbc, 0x8fbada}, + {0x5bbf, 0xbdc9}, + {0x5bc0, 0x8fbadb}, + {0x5bc1, 0x8fbadc}, + {0x5bc2, 0xbce4}, + {0x5bc3, 0xd5e3}, + {0x5bc4, 0xb4f3}, + {0x5bc5, 0xc6d2}, + {0x5bc6, 0xcca9}, + {0x5bc7, 0xd5e4}, + {0x5bc9, 0xd5e5}, + {0x5bcc, 0xc9d9}, + {0x5bcd, 0x8fbadd}, + {0x5bcf, 0x8fbade}, + {0x5bd0, 0xd5e7}, + {0x5bd2, 0xb4a8}, + {0x5bd3, 0xb6f7}, + {0x5bd4, 0xd5e6}, + {0x5bd6, 0x8fbadf}, + {0x5bd7, 0x8fbae0}, + {0x5bd8, 0x8fbae1}, + {0x5bd9, 0x8fbae2}, + {0x5bda, 0x8fbae3}, + {0x5bdb, 0xb4b2}, + {0x5bdd, 0xbfb2}, + {0x5bde, 0xd5eb}, + {0x5bdf, 0xbba1}, + {0x5be0, 0x8fbae4}, + {0x5be1, 0xb2c9}, + {0x5be2, 0xd5ea}, + {0x5be4, 0xd5e8}, + {0x5be5, 0xd5ec}, + {0x5be6, 0xd5e9}, + {0x5be7, 0xc7ab}, + {0x5be8, 0xdccd}, + {0x5be9, 0xbfb3}, + {0x5beb, 0xd5ed}, + {0x5bee, 0xcec0}, + {0x5bef, 0x8fbae5}, + {0x5bf0, 0xd5ee}, + {0x5bf1, 0x8fbae6}, + {0x5bf3, 0xd5f0}, + {0x5bf4, 0x8fbae7}, + {0x5bf5, 0xc3fe}, + {0x5bf6, 0xd5ef}, + {0x5bf8, 0xc0a3}, + {0x5bfa, 0xbbfb}, + {0x5bfd, 0x8fbae8}, + {0x5bfe, 0xc2d0}, + {0x5bff, 0xbcf7}, + {0x5c01, 0xc9f5}, + {0x5c02, 0xc0ec}, + {0x5c04, 0xbccd}, + {0x5c05, 0xd5f1}, + {0x5c06, 0xbead}, + {0x5c07, 0xd5f2}, + {0x5c08, 0xd5f3}, + {0x5c09, 0xb0d3}, + {0x5c0a, 0xc2ba}, + {0x5c0b, 0xbfd2}, + {0x5c0c, 0x8fbae9}, + {0x5c0d, 0xd5f4}, + {0x5c0e, 0xc6b3}, + {0x5c0f, 0xbeae}, + {0x5c11, 0xbeaf}, + {0x5c13, 0xd5f5}, + {0x5c16, 0xc0ed}, + {0x5c17, 0x8fbaea}, + {0x5c1a, 0xbeb0}, + {0x5c1e, 0x8fbaeb}, + {0x5c1f, 0x8fbaec}, + {0x5c20, 0xd5f6}, + {0x5c22, 0xd5f7}, + {0x5c23, 0x8fbaed}, + {0x5c24, 0xcce0}, + {0x5c26, 0x8fbaee}, + {0x5c28, 0xd5f8}, + {0x5c29, 0x8fbaef}, + {0x5c2b, 0x8fbaf0}, + {0x5c2c, 0x8fbaf1}, + {0x5c2d, 0xb6c6}, + {0x5c2e, 0x8fbaf2}, + {0x5c30, 0x8fbaf3}, + {0x5c31, 0xbda2}, + {0x5c32, 0x8fbaf4}, + {0x5c35, 0x8fbaf5}, + {0x5c36, 0x8fbaf6}, + {0x5c38, 0xd5f9}, + {0x5c39, 0xd5fa}, + {0x5c3a, 0xbcdc}, + {0x5c3b, 0xbfac}, + {0x5c3c, 0xc6f4}, + {0x5c3d, 0xbfd4}, + {0x5c3e, 0xc8f8}, + {0x5c3f, 0xc7a2}, + {0x5c40, 0xb6c9}, + {0x5c41, 0xd5fb}, + {0x5c45, 0xb5ef}, + {0x5c46, 0xd5fc}, + {0x5c48, 0xb6fe}, + {0x5c4a, 0xc6cf}, + {0x5c4b, 0xb2b0}, + {0x5c4d, 0xbbd3}, + {0x5c4e, 0xd5fd}, + {0x5c4f, 0xd6a2}, + {0x5c50, 0xd6a1}, + {0x5c51, 0xb6fd}, + {0x5c53, 0xd5fe}, + {0x5c55, 0xc5b8}, + {0x5c59, 0x8fbaf7}, + {0x5c5a, 0x8fbaf8}, + {0x5c5c, 0x8fbaf9}, + {0x5c5e, 0xc2b0}, + {0x5c60, 0xc5cb}, + {0x5c61, 0xbcc8}, + {0x5c62, 0x8fbafa}, + {0x5c63, 0x8fbafb}, + {0x5c64, 0xc1d8}, + {0x5c65, 0xcdfa}, + {0x5c67, 0x8fbafc}, + {0x5c68, 0x8fbafd}, + {0x5c69, 0x8fbafe}, + {0x5c6c, 0xd6a4}, + {0x5c6d, 0x8fbba1}, + {0x5c6e, 0xd6a5}, + {0x5c6f, 0xc6d6}, + {0x5c70, 0x8fbba2}, + {0x5c71, 0xbbb3}, + {0x5c74, 0x8fbba3}, + {0x5c75, 0x8fbba4}, + {0x5c76, 0xd6a7}, + {0x5c79, 0xd6a8}, + {0x5c7a, 0x8fbba5}, + {0x5c7b, 0x8fbba6}, + {0x5c7c, 0x8fbba7}, + {0x5c7d, 0x8fbba8}, + {0x5c87, 0x8fbba9}, + {0x5c88, 0x8fbbaa}, + {0x5c8a, 0x8fbbab}, + {0x5c8c, 0xd6a9}, + {0x5c8f, 0x8fbbac}, + {0x5c90, 0xb4f4}, + {0x5c91, 0xd6aa}, + {0x5c92, 0x8fbbad}, + {0x5c94, 0xd6ab}, + {0x5c9d, 0x8fbbae}, + {0x5c9f, 0x8fbbaf}, + {0x5ca0, 0x8fbbb0}, + {0x5ca1, 0xb2ac}, + {0x5ca2, 0x8fbbb1}, + {0x5ca3, 0x8fbbb2}, + {0x5ca6, 0x8fbbb3}, + {0x5ca8, 0xc1bb}, + {0x5ca9, 0xb4e4}, + {0x5caa, 0x8fbbb4}, + {0x5cab, 0xd6ad}, + {0x5cac, 0xcca8}, + {0x5cb1, 0xc2d2}, + {0x5cb2, 0x8fbbb5}, + {0x5cb3, 0xb3d9}, + {0x5cb4, 0x8fbbb6}, + {0x5cb5, 0x8fbbb7}, + {0x5cb6, 0xd6af}, + {0x5cb7, 0xd6b1}, + {0x5cb8, 0xb4df}, + {0x5cba, 0x8fbbb8}, + {0x5cbb, 0xd6ae}, + {0x5cbc, 0xd6b0}, + {0x5cbe, 0xd6b3}, + {0x5cc5, 0xd6b2}, + {0x5cc7, 0xd6b4}, + {0x5cc9, 0x8fbbb9}, + {0x5ccb, 0x8fbbba}, + {0x5cd2, 0x8fbbbb}, + {0x5cd7, 0x8fbbbd}, + {0x5cd9, 0xd6b5}, + {0x5cdd, 0x8fbbbc}, + {0x5ce0, 0xc6bd}, + {0x5ce1, 0xb6ae}, + {0x5ce8, 0xb2e5}, + {0x5ce9, 0xd6b6}, + {0x5cea, 0xd6bb}, + {0x5ced, 0xd6b9}, + {0x5cee, 0x8fbbbe}, + {0x5cef, 0xcaf7}, + {0x5cf0, 0xcaf6}, + {0x5cf1, 0x8fbbbf}, + {0x5cf2, 0x8fbbc0}, + {0x5cf4, 0x8fbbc1}, + {0x5cf6, 0xc5e7}, + {0x5cfa, 0xd6b8}, + {0x5cfb, 0xbdd4}, + {0x5cfd, 0xd6b7}, + {0x5d01, 0x8fbbc2}, + {0x5d06, 0x8fbbc3}, + {0x5d07, 0xbff2}, + {0x5d0b, 0xd6bc}, + {0x5d0d, 0x8fbbc4}, + {0x5d0e, 0xbaea}, + {0x5d11, 0xd6c2}, + {0x5d12, 0x8fbbc5}, + {0x5d14, 0xd6c3}, + {0x5d15, 0xd6bd}, + {0x5d16, 0xb3b3}, + {0x5d17, 0xd6be}, + {0x5d18, 0xd6c7}, + {0x5d19, 0xd6c6}, + {0x5d1a, 0xd6c5}, + {0x5d1b, 0xd6c1}, + {0x5d1f, 0xd6c0}, + {0x5d22, 0xd6c4}, + {0x5d23, 0x8fbbc7}, + {0x5d24, 0x8fbbc8}, + {0x5d26, 0x8fbbc9}, + {0x5d27, 0x8fbbca}, + {0x5d29, 0xcaf8}, + {0x5d2b, 0x8fbbc6}, + {0x5d31, 0x8fbbcb}, + {0x5d34, 0x8fbbcc}, + {0x5d39, 0x8fbbcd}, + {0x5d3d, 0x8fbbce}, + {0x5d3f, 0x8fbbcf}, + {0x5d42, 0x8fbbd0}, + {0x5d43, 0x8fbbd1}, + {0x5d46, 0x8fbbd2}, + {0x5d48, 0x8fbbd3}, + {0x5d4a, 0x8fbbd7}, + {0x5d4b, 0xd6cb}, + {0x5d4c, 0xd6c8}, + {0x5d4e, 0xd6ca}, + {0x5d50, 0xcdf2}, + {0x5d51, 0x8fbbd5}, + {0x5d52, 0xd6c9}, + {0x5d55, 0x8fbbd4}, + {0x5d59, 0x8fbbd6}, + {0x5d5c, 0xd6bf}, + {0x5d5f, 0x8fbbd8}, + {0x5d60, 0x8fbbd9}, + {0x5d61, 0x8fbbda}, + {0x5d62, 0x8fbbdb}, + {0x5d64, 0x8fbbdc}, + {0x5d69, 0xbff3}, + {0x5d6a, 0x8fbbdd}, + {0x5d6c, 0xd6cc}, + {0x5d6d, 0x8fbbde}, + {0x5d6f, 0xbab7}, + {0x5d70, 0x8fbbdf}, + {0x5d73, 0xd6cd}, + {0x5d76, 0xd6ce}, + {0x5d79, 0x8fbbe0}, + {0x5d7a, 0x8fbbe1}, + {0x5d7e, 0x8fbbe2}, + {0x5d7f, 0x8fbbe3}, + {0x5d81, 0x8fbbe4}, + {0x5d82, 0xd6d1}, + {0x5d83, 0x8fbbe5}, + {0x5d84, 0xd6d0}, + {0x5d87, 0xd6cf}, + {0x5d88, 0x8fbbe6}, + {0x5d8a, 0x8fbbe7}, + {0x5d8b, 0xc5e8}, + {0x5d8c, 0xd6ba}, + {0x5d90, 0xd6d7}, + {0x5d92, 0x8fbbe8}, + {0x5d93, 0x8fbbe9}, + {0x5d94, 0x8fbbea}, + {0x5d95, 0x8fbbeb}, + {0x5d99, 0x8fbbec}, + {0x5d9b, 0x8fbbed}, + {0x5d9d, 0xd6d3}, + {0x5d9f, 0x8fbbee}, + {0x5da0, 0x8fbbef}, + {0x5da2, 0xd6d2}, + {0x5da7, 0x8fbbf0}, + {0x5dab, 0x8fbbf1}, + {0x5dac, 0xd6d4}, + {0x5dae, 0xd6d5}, + {0x5db0, 0x8fbbf2}, + {0x5db2, 0x8fe6f4}, + {0x5db4, 0x8fbbf3}, + {0x5db7, 0xd6d8}, + {0x5db8, 0x8fbbf4}, + {0x5db9, 0x8fbbf5}, + {0x5dba, 0xcee6}, + {0x5dbc, 0xd6d9}, + {0x5dbd, 0xd6d6}, + {0x5dc3, 0x8fbbf6}, + {0x5dc7, 0x8fbbf7}, + {0x5dc9, 0xd6da}, + {0x5dcb, 0x8fbbf8}, + {0x5dcc, 0xb4e0}, + {0x5dcd, 0xd6db}, + {0x5dce, 0x8fbbfa}, + {0x5dd0, 0x8fbbf9}, + {0x5dd2, 0xd6dd}, + {0x5dd3, 0xd6dc}, + {0x5dd6, 0xd6de}, + {0x5dd8, 0x8fbbfb}, + {0x5dd9, 0x8fbbfc}, + {0x5ddb, 0xd6df}, + {0x5ddd, 0xc0ee}, + {0x5dde, 0xbda3}, + {0x5de0, 0x8fbbfd}, + {0x5de1, 0xbde4}, + {0x5de3, 0xc1e3}, + {0x5de4, 0x8fbbfe}, + {0x5de5, 0xb9a9}, + {0x5de6, 0xbab8}, + {0x5de7, 0xb9aa}, + {0x5de8, 0xb5f0}, + {0x5de9, 0x8fbca1}, + {0x5deb, 0xd6e0}, + {0x5dee, 0xbab9}, + {0x5df1, 0xb8ca}, + {0x5df2, 0xd6e1}, + {0x5df3, 0xcca6}, + {0x5df4, 0xc7c3}, + {0x5df5, 0xd6e2}, + {0x5df7, 0xb9ab}, + {0x5df8, 0x8fbca2}, + {0x5df9, 0x8fbca3}, + {0x5dfb, 0xb4ac}, + {0x5dfd, 0xc3a7}, + {0x5dfe, 0xb6d2}, + {0x5e00, 0x8fbca4}, + {0x5e02, 0xbbd4}, + {0x5e03, 0xc9db}, + {0x5e06, 0xc8c1}, + {0x5e07, 0x8fbca5}, + {0x5e0b, 0xd6e3}, + {0x5e0c, 0xb4f5}, + {0x5e0d, 0x8fbca6}, + {0x5e11, 0xd6e6}, + {0x5e12, 0x8fbca7}, + {0x5e14, 0x8fbca8}, + {0x5e15, 0x8fbca9}, + {0x5e16, 0xc4a1}, + {0x5e18, 0x8fbcaa}, + {0x5e19, 0xd6e5}, + {0x5e1a, 0xd6e4}, + {0x5e1b, 0xd6e7}, + {0x5e1d, 0xc4eb}, + {0x5e1f, 0x8fbcab}, + {0x5e20, 0x8fbcac}, + {0x5e25, 0xbfe3}, + {0x5e28, 0x8fbcae}, + {0x5e2b, 0xbbd5}, + {0x5e2d, 0xc0ca}, + {0x5e2e, 0x8fbcad}, + {0x5e2f, 0xc2d3}, + {0x5e30, 0xb5a2}, + {0x5e32, 0x8fbcaf}, + {0x5e33, 0xc4a2}, + {0x5e35, 0x8fbcb0}, + {0x5e36, 0xd6e8}, + {0x5e37, 0xd6e9}, + {0x5e38, 0xbeef}, + {0x5e3d, 0xcbb9}, + {0x5e3e, 0x8fbcb1}, + {0x5e40, 0xd6ec}, + {0x5e43, 0xd6eb}, + {0x5e44, 0xd6ea}, + {0x5e45, 0xc9fd}, + {0x5e47, 0xd6f3}, + {0x5e49, 0x8fbcb4}, + {0x5e4b, 0x8fbcb2}, + {0x5e4c, 0xcbda}, + {0x5e4e, 0xd6ed}, + {0x5e50, 0x8fbcb3}, + {0x5e51, 0x8fbcb5}, + {0x5e54, 0xd6ef}, + {0x5e55, 0xcbeb}, + {0x5e56, 0x8fbcb6}, + {0x5e57, 0xd6ee}, + {0x5e58, 0x8fbcb7}, + {0x5e5b, 0x8fbcb8}, + {0x5e5c, 0x8fbcb9}, + {0x5e5e, 0x8fbcba}, + {0x5e5f, 0xd6f0}, + {0x5e61, 0xc8a8}, + {0x5e62, 0xd6f1}, + {0x5e63, 0xcabe}, + {0x5e64, 0xd6f2}, + {0x5e68, 0x8fbcbb}, + {0x5e6a, 0x8fbcbc}, + {0x5e6b, 0x8fbcbd}, + {0x5e6c, 0x8fbcbe}, + {0x5e6d, 0x8fbcbf}, + {0x5e6e, 0x8fbcc0}, + {0x5e70, 0x8fbcc1}, + {0x5e72, 0xb4b3}, + {0x5e73, 0xcabf}, + {0x5e74, 0xc7af}, + {0x5e75, 0xd6f4}, + {0x5e76, 0xd6f5}, + {0x5e78, 0xb9ac}, + {0x5e79, 0xb4b4}, + {0x5e7a, 0xd6f6}, + {0x5e7b, 0xb8b8}, + {0x5e7c, 0xcdc4}, + {0x5e7d, 0xcda9}, + {0x5e7e, 0xb4f6}, + {0x5e7f, 0xd6f8}, + {0x5e80, 0x8fbcc2}, + {0x5e81, 0xc4a3}, + {0x5e83, 0xb9ad}, + {0x5e84, 0xbeb1}, + {0x5e87, 0xc8df}, + {0x5e8a, 0xbeb2}, + {0x5e8b, 0x8fbcc3}, + {0x5e8e, 0x8fbcc4}, + {0x5e8f, 0xbdf8}, + {0x5e95, 0xc4ec}, + {0x5e96, 0xcaf9}, + {0x5e97, 0xc5b9}, + {0x5e9a, 0xb9ae}, + {0x5e9c, 0xc9dc}, + {0x5ea0, 0xd6f9}, + {0x5ea2, 0x8fbcc5}, + {0x5ea4, 0x8fbcc6}, + {0x5ea5, 0x8fbcc7}, + {0x5ea6, 0xc5d9}, + {0x5ea7, 0xbac2}, + {0x5ea8, 0x8fbcc8}, + {0x5eaa, 0x8fbcc9}, + {0x5eab, 0xb8cb}, + {0x5eac, 0x8fbcca}, + {0x5ead, 0xc4ed}, + {0x5eb1, 0x8fbccb}, + {0x5eb3, 0x8fbccc}, + {0x5eb5, 0xb0c3}, + {0x5eb6, 0xbdee}, + {0x5eb7, 0xb9af}, + {0x5eb8, 0xcdc7}, + {0x5ebd, 0x8fbccd}, + {0x5ebe, 0x8fbcce}, + {0x5ebf, 0x8fbccf}, + {0x5ec1, 0xd6fa}, + {0x5ec2, 0xd6fb}, + {0x5ec3, 0xc7d1}, + {0x5ec6, 0x8fbcd0}, + {0x5ec8, 0xd6fc}, + {0x5ec9, 0xcef7}, + {0x5eca, 0xcfad}, + {0x5ecb, 0x8fbcd2}, + {0x5ecc, 0x8fbcd1}, + {0x5ece, 0x8fbcd3}, + {0x5ecf, 0xd6fe}, + {0x5ed0, 0xd6fd}, + {0x5ed1, 0x8fbcd4}, + {0x5ed2, 0x8fbcd5}, + {0x5ed3, 0xb3c7}, + {0x5ed4, 0x8fbcd6}, + {0x5ed5, 0x8fbcd7}, + {0x5ed6, 0xd7a1}, + {0x5eda, 0xd7a4}, + {0x5edb, 0xd7a5}, + {0x5edc, 0x8fbcd8}, + {0x5edd, 0xd7a3}, + {0x5ede, 0x8fbcd9}, + {0x5edf, 0xc9c0}, + {0x5ee0, 0xbeb3}, + {0x5ee1, 0xd7a7}, + {0x5ee2, 0xd7a6}, + {0x5ee3, 0xd7a2}, + {0x5ee5, 0x8fbcda}, + {0x5ee8, 0xd7a8}, + {0x5ee9, 0xd7a9}, + {0x5eeb, 0x8fbcdb}, + {0x5eec, 0xd7aa}, + {0x5ef0, 0xd7ad}, + {0x5ef1, 0xd7ab}, + {0x5ef3, 0xd7ac}, + {0x5ef4, 0xd7ae}, + {0x5ef6, 0xb1e4}, + {0x5ef7, 0xc4ee}, + {0x5ef8, 0xd7af}, + {0x5efa, 0xb7fa}, + {0x5efb, 0xb2f6}, + {0x5efc, 0xc7b6}, + {0x5efe, 0xd7b0}, + {0x5eff, 0xc6fb}, + {0x5f01, 0xcadb}, + {0x5f02, 0x8fbcdc}, + {0x5f03, 0xd7b1}, + {0x5f04, 0xcfae}, + {0x5f06, 0x8fbcdd}, + {0x5f07, 0x8fbcde}, + {0x5f08, 0x8fbcdf}, + {0x5f09, 0xd7b2}, + {0x5f0a, 0xcac0}, + {0x5f0b, 0xd7b5}, + {0x5f0c, 0xd0a1}, + {0x5f0d, 0xd0b1}, + {0x5f0e, 0x8fbce0}, + {0x5f0f, 0xbcb0}, + {0x5f10, 0xc6f5}, + {0x5f11, 0xd7b6}, + {0x5f13, 0xb5dd}, + {0x5f14, 0xc4a4}, + {0x5f15, 0xb0fa}, + {0x5f16, 0xd7b7}, + {0x5f17, 0xcaa6}, + {0x5f18, 0xb9b0}, + {0x5f19, 0x8fbce1}, + {0x5f1b, 0xc3d0}, + {0x5f1c, 0x8fbce2}, + {0x5f1d, 0x8fbce3}, + {0x5f1f, 0xc4ef}, + {0x5f21, 0x8fbce4}, + {0x5f22, 0x8fbce5}, + {0x5f23, 0x8fbce6}, + {0x5f24, 0x8fbce7}, + {0x5f25, 0xccef}, + {0x5f26, 0xb8b9}, + {0x5f27, 0xb8cc}, + {0x5f28, 0x8fbce8}, + {0x5f29, 0xd7b8}, + {0x5f2b, 0x8fbce9}, + {0x5f2c, 0x8fbcea}, + {0x5f2d, 0xd7b9}, + {0x5f2e, 0x8fbceb}, + {0x5f2f, 0xd7bf}, + {0x5f30, 0x8fbcec}, + {0x5f31, 0xbce5}, + {0x5f34, 0x8fbced}, + {0x5f35, 0xc4a5}, + {0x5f36, 0x8fbcee}, + {0x5f37, 0xb6af}, + {0x5f38, 0xd7ba}, + {0x5f3b, 0x8fbcef}, + {0x5f3c, 0xc9ab}, + {0x5f3d, 0x8fbcf0}, + {0x5f3e, 0xc3c6}, + {0x5f3f, 0x8fbcf1}, + {0x5f40, 0x8fbcf2}, + {0x5f41, 0xd7bb}, + {0x5f44, 0x8fbcf3}, + {0x5f45, 0x8fbcf4}, + {0x5f47, 0x8fbcf5}, + {0x5f48, 0xd7bc}, + {0x5f4a, 0xb6b0}, + {0x5f4c, 0xd7bd}, + {0x5f4d, 0x8fbcf6}, + {0x5f4e, 0xd7be}, + {0x5f50, 0x8fbcf7}, + {0x5f51, 0xd7c0}, + {0x5f53, 0xc5f6}, + {0x5f54, 0x8fbcf8}, + {0x5f56, 0xd7c1}, + {0x5f57, 0xd7c2}, + {0x5f58, 0x8fbcf9}, + {0x5f59, 0xd7c3}, + {0x5f5b, 0x8fbcfa}, + {0x5f5c, 0xd7b4}, + {0x5f5d, 0xd7b3}, + {0x5f60, 0x8fbcfb}, + {0x5f61, 0xd7c4}, + {0x5f62, 0xb7c1}, + {0x5f63, 0x8fbcfc}, + {0x5f64, 0x8fbcfd}, + {0x5f66, 0xc9a7}, + {0x5f67, 0x8fbcfe}, + {0x5f69, 0xbacc}, + {0x5f6a, 0xc9b7}, + {0x5f6b, 0xc4a6}, + {0x5f6c, 0xc9cb}, + {0x5f6d, 0xd7c5}, + {0x5f6f, 0x8fbda1}, + {0x5f70, 0xbeb4}, + {0x5f71, 0xb1c6}, + {0x5f72, 0x8fbda2}, + {0x5f73, 0xd7c6}, + {0x5f74, 0x8fbda3}, + {0x5f75, 0x8fbda4}, + {0x5f77, 0xd7c7}, + {0x5f78, 0x8fbda5}, + {0x5f79, 0xccf2}, + {0x5f7a, 0x8fbda6}, + {0x5f7c, 0xc8e0}, + {0x5f7d, 0x8fbda7}, + {0x5f7e, 0x8fbda8}, + {0x5f7f, 0xd7ca}, + {0x5f80, 0xb1fd}, + {0x5f81, 0xc0ac}, + {0x5f82, 0xd7c9}, + {0x5f83, 0xd7c8}, + {0x5f84, 0xb7c2}, + {0x5f85, 0xc2d4}, + {0x5f87, 0xd7ce}, + {0x5f88, 0xd7cc}, + {0x5f89, 0x8fbda9}, + {0x5f8a, 0xd7cb}, + {0x5f8b, 0xcea7}, + {0x5f8c, 0xb8e5}, + {0x5f8d, 0x8fbdaa}, + {0x5f8f, 0x8fbdab}, + {0x5f90, 0xbdf9}, + {0x5f91, 0xd7cd}, + {0x5f92, 0xc5cc}, + {0x5f93, 0xbdbe}, + {0x5f96, 0x8fbdac}, + {0x5f97, 0xc6c0}, + {0x5f98, 0xd7d1}, + {0x5f99, 0xd7d0}, + {0x5f9c, 0x8fbdad}, + {0x5f9d, 0x8fbdae}, + {0x5f9e, 0xd7cf}, + {0x5fa0, 0xd7d2}, + {0x5fa1, 0xb8e6}, + {0x5fa2, 0x8fbdaf}, + {0x5fa4, 0x8fbdb2}, + {0x5fa7, 0x8fbdb0}, + {0x5fa8, 0xd7d3}, + {0x5fa9, 0xc9fc}, + {0x5faa, 0xbddb}, + {0x5fab, 0x8fbdb1}, + {0x5fac, 0x8fbdb3}, + {0x5fad, 0xd7d4}, + {0x5fae, 0xc8f9}, + {0x5faf, 0x8fbdb4}, + {0x5fb0, 0x8fbdb5}, + {0x5fb1, 0x8fbdb6}, + {0x5fb3, 0xc6c1}, + {0x5fb4, 0xc4a7}, + {0x5fb8, 0x8fbdb7}, + {0x5fb9, 0xc5b0}, + {0x5fbc, 0xd7d5}, + {0x5fbd, 0xb5ab}, + {0x5fc3, 0xbfb4}, + {0x5fc4, 0x8fbdb8}, + {0x5fc5, 0xc9ac}, + {0x5fc7, 0x8fbdb9}, + {0x5fc8, 0x8fbdba}, + {0x5fc9, 0x8fbdbb}, + {0x5fcb, 0x8fbdbc}, + {0x5fcc, 0xb4f7}, + {0x5fcd, 0xc7a6}, + {0x5fd0, 0x8fbdbd}, + {0x5fd1, 0x8fbdbe}, + {0x5fd2, 0x8fbdbf}, + {0x5fd3, 0x8fbdc0}, + {0x5fd4, 0x8fbdc1}, + {0x5fd6, 0xd7d6}, + {0x5fd7, 0xbbd6}, + {0x5fd8, 0xcbba}, + {0x5fd9, 0xcbbb}, + {0x5fdc, 0xb1fe}, + {0x5fdd, 0xd7db}, + {0x5fde, 0x8fbdc2}, + {0x5fe0, 0xc3e9}, + {0x5fe1, 0x8fbdc3}, + {0x5fe2, 0x8fbdc4}, + {0x5fe4, 0xd7d8}, + {0x5fe8, 0x8fbdc5}, + {0x5fe9, 0x8fbdc6}, + {0x5fea, 0x8fbdc7}, + {0x5feb, 0xb2f7}, + {0x5fec, 0x8fbdc8}, + {0x5fed, 0x8fbdc9}, + {0x5fee, 0x8fbdca}, + {0x5fef, 0x8fbdcb}, + {0x5ff0, 0xd8ad}, + {0x5ff1, 0xd7da}, + {0x5ff2, 0x8fbdcc}, + {0x5ff3, 0x8fbdcd}, + {0x5ff5, 0xc7b0}, + {0x5ff6, 0x8fbdce}, + {0x5ff8, 0xd7d9}, + {0x5ffa, 0x8fbdcf}, + {0x5ffb, 0xd7d7}, + {0x5ffc, 0x8fbdd0}, + {0x5ffd, 0xb9fa}, + {0x5fff, 0xd7dd}, + {0x6007, 0x8fbdd1}, + {0x600a, 0x8fbdd2}, + {0x600d, 0x8fbdd3}, + {0x600e, 0xd7e3}, + {0x600f, 0xd7e9}, + {0x6010, 0xd7e1}, + {0x6012, 0xc5dc}, + {0x6013, 0x8fbdd4}, + {0x6014, 0x8fbdd5}, + {0x6015, 0xd7e6}, + {0x6016, 0xc9dd}, + {0x6017, 0x8fbdd6}, + {0x6018, 0x8fbdd7}, + {0x6019, 0xd7e0}, + {0x601a, 0x8fbdd8}, + {0x601b, 0xd7e5}, + {0x601c, 0xcee7}, + {0x601d, 0xbbd7}, + {0x601f, 0x8fbdd9}, + {0x6020, 0xc2d5}, + {0x6021, 0xd7de}, + {0x6024, 0x8fbdda}, + {0x6025, 0xb5de}, + {0x6026, 0xd7e8}, + {0x6027, 0xc0ad}, + {0x6028, 0xb1e5}, + {0x6029, 0xd7e2}, + {0x602a, 0xb2f8}, + {0x602b, 0xd7e7}, + {0x602d, 0x8fbddb}, + {0x602f, 0xb6b1}, + {0x6031, 0xd7e4}, + {0x6033, 0x8fbddc}, + {0x6035, 0x8fbddd}, + {0x603a, 0xd7ea}, + {0x6040, 0x8fbdde}, + {0x6041, 0xd7ec}, + {0x6042, 0xd7f6}, + {0x6043, 0xd7f4}, + {0x6046, 0xd7f1}, + {0x6047, 0x8fbddf}, + {0x6048, 0x8fbde0}, + {0x6049, 0x8fbde1}, + {0x604a, 0xd7f0}, + {0x604b, 0xcef8}, + {0x604c, 0x8fbde2}, + {0x604d, 0xd7f2}, + {0x6050, 0xb6b2}, + {0x6051, 0x8fbde3}, + {0x6052, 0xb9b1}, + {0x6054, 0x8fbde4}, + {0x6055, 0xbdfa}, + {0x6056, 0x8fbde5}, + {0x6057, 0x8fbde6}, + {0x6059, 0xd7f9}, + {0x605a, 0xd7eb}, + {0x605d, 0x8fbde7}, + {0x605f, 0xd7ef}, + {0x6060, 0xd7df}, + {0x6061, 0x8fbde8}, + {0x6062, 0xb2fa}, + {0x6063, 0xd7f3}, + {0x6064, 0xd7f5}, + {0x6065, 0xc3d1}, + {0x6067, 0x8fbde9}, + {0x6068, 0xbaa8}, + {0x6069, 0xb2b8}, + {0x606a, 0xd7ed}, + {0x606b, 0xd7f8}, + {0x606c, 0xd7f7}, + {0x606d, 0xb6b3}, + {0x606f, 0xc2a9}, + {0x6070, 0xb3e6}, + {0x6071, 0x8fbdea}, + {0x6075, 0xb7c3}, + {0x6077, 0xd7ee}, + {0x607e, 0x8fbdeb}, + {0x607f, 0x8fbdec}, + {0x6081, 0xd7fa}, + {0x6082, 0x8fbded}, + {0x6083, 0xd7fd}, + {0x6084, 0xd8a1}, + {0x6086, 0x8fbdee}, + {0x6088, 0x8fbdef}, + {0x6089, 0xbcbd}, + {0x608a, 0x8fbdf0}, + {0x608b, 0xd8a7}, + {0x608c, 0xc4f0}, + {0x608d, 0xd7fb}, + {0x608e, 0x8fbdf1}, + {0x6091, 0x8fbdf2}, + {0x6092, 0xd8a5}, + {0x6093, 0x8fbdf3}, + {0x6094, 0xb2f9}, + {0x6095, 0x8fbdf4}, + {0x6096, 0xd8a3}, + {0x6097, 0xd8a4}, + {0x6098, 0x8fbdf5}, + {0x609a, 0xd7fe}, + {0x609b, 0xd8a2}, + {0x609d, 0x8fbdf6}, + {0x609e, 0x8fbdf7}, + {0x609f, 0xb8e7}, + {0x60a0, 0xcdaa}, + {0x60a2, 0x8fbdf8}, + {0x60a3, 0xb4b5}, + {0x60a4, 0x8fbdf9}, + {0x60a5, 0x8fbdfa}, + {0x60a6, 0xb1d9}, + {0x60a7, 0xd8a6}, + {0x60a8, 0x8fbdfb}, + {0x60a9, 0xc7ba}, + {0x60aa, 0xb0ad}, + {0x60b0, 0x8fbdfc}, + {0x60b1, 0x8fbdfd}, + {0x60b2, 0xc8e1}, + {0x60b3, 0xd7dc}, + {0x60b4, 0xd8ac}, + {0x60b5, 0xd8b0}, + {0x60b6, 0xcce5}, + {0x60b7, 0x8fbdfe}, + {0x60b8, 0xd8a9}, + {0x60bb, 0x8fbea1}, + {0x60bc, 0xc5e9}, + {0x60bd, 0xd8ae}, + {0x60be, 0x8fbea2}, + {0x60c2, 0x8fbea3}, + {0x60c4, 0x8fbea4}, + {0x60c5, 0xbef0}, + {0x60c6, 0xd8af}, + {0x60c7, 0xc6d7}, + {0x60c8, 0x8fbea5}, + {0x60c9, 0x8fbea6}, + {0x60ca, 0x8fbea7}, + {0x60cb, 0x8fbea8}, + {0x60ce, 0x8fbea9}, + {0x60cf, 0x8fbeaa}, + {0x60d1, 0xcfc7}, + {0x60d3, 0xd8ab}, + {0x60d4, 0x8fbeab}, + {0x60d5, 0x8fbeac}, + {0x60d8, 0xd8b1}, + {0x60d9, 0x8fbead}, + {0x60da, 0xb9fb}, + {0x60db, 0x8fbeae}, + {0x60dc, 0xc0cb}, + {0x60dd, 0x8fbeaf}, + {0x60de, 0x8fbeb0}, + {0x60df, 0xb0d4}, + {0x60e0, 0xd8aa}, + {0x60e1, 0xd8a8}, + {0x60e2, 0x8fbeb1}, + {0x60e3, 0xc1da}, + {0x60e5, 0x8fbeb2}, + {0x60e7, 0xd7fc}, + {0x60e8, 0xbbb4}, + {0x60f0, 0xc2c6}, + {0x60f1, 0xd8bd}, + {0x60f2, 0x8fbeb3}, + {0x60f3, 0xc1db}, + {0x60f4, 0xd8b8}, + {0x60f5, 0x8fbeb4}, + {0x60f6, 0xd8b5}, + {0x60f7, 0xd8b6}, + {0x60f8, 0x8fbeb5}, + {0x60f9, 0xbce6}, + {0x60fa, 0xd8b9}, + {0x60fb, 0xd8bc}, + {0x60fc, 0x8fbeb6}, + {0x60fd, 0x8fbeb7}, + {0x6100, 0xd8b7}, + {0x6101, 0xbda5}, + {0x6102, 0x8fbeb8}, + {0x6103, 0xd8ba}, + {0x6106, 0xd8b4}, + {0x6107, 0x8fbeb9}, + {0x6108, 0xccfc}, + {0x6109, 0xccfb}, + {0x610a, 0x8fbeba}, + {0x610c, 0x8fbebb}, + {0x610d, 0xd8be}, + {0x610e, 0xd8bf}, + {0x610f, 0xb0d5}, + {0x6110, 0x8fbebc}, + {0x6111, 0x8fbebd}, + {0x6112, 0x8fbebe}, + {0x6113, 0x8fbebf}, + {0x6114, 0x8fbec0}, + {0x6115, 0xd8b3}, + {0x6116, 0x8fbec1}, + {0x6117, 0x8fbec2}, + {0x6119, 0x8fbec3}, + {0x611a, 0xb6f2}, + {0x611b, 0xb0a6}, + {0x611c, 0x8fbec4}, + {0x611e, 0x8fbec5}, + {0x611f, 0xb4b6}, + {0x6121, 0xd8bb}, + {0x6122, 0x8fbec6}, + {0x6127, 0xd8c3}, + {0x6128, 0xd8c2}, + {0x612a, 0x8fbec7}, + {0x612b, 0x8fbec8}, + {0x612c, 0xd8c7}, + {0x6130, 0x8fbec9}, + {0x6131, 0x8fbeca}, + {0x6134, 0xd8c8}, + {0x6135, 0x8fbecb}, + {0x6136, 0x8fbecc}, + {0x6137, 0x8fbecd}, + {0x6139, 0x8fbece}, + {0x613c, 0xd8c6}, + {0x613d, 0xd8c9}, + {0x613e, 0xd8c1}, + {0x613f, 0xd8c5}, + {0x6141, 0x8fbecf}, + {0x6142, 0xd8ca}, + {0x6144, 0xd8cb}, + {0x6145, 0x8fbed0}, + {0x6146, 0x8fbed1}, + {0x6147, 0xd8c0}, + {0x6148, 0xbbfc}, + {0x6149, 0x8fbed2}, + {0x614a, 0xd8c4}, + {0x614b, 0xc2d6}, + {0x614c, 0xb9b2}, + {0x614d, 0xd8b2}, + {0x614e, 0xbfb5}, + {0x6153, 0xd8d8}, + {0x6155, 0xcae9}, + {0x6158, 0xd8ce}, + {0x6159, 0xd8cf}, + {0x615a, 0xd8d0}, + {0x615d, 0xd8d7}, + {0x615e, 0x8fbed3}, + {0x615f, 0xd8d6}, + {0x6160, 0x8fbed4}, + {0x6162, 0xcbfd}, + {0x6163, 0xb4b7}, + {0x6165, 0xd8d4}, + {0x6167, 0xb7c5}, + {0x6168, 0xb3b4}, + {0x616b, 0xd8d1}, + {0x616c, 0x8fbed5}, + {0x616e, 0xceb8}, + {0x616f, 0xd8d3}, + {0x6170, 0xb0d6}, + {0x6171, 0xd8d5}, + {0x6172, 0x8fbed6}, + {0x6173, 0xd8cc}, + {0x6174, 0xd8d2}, + {0x6175, 0xd8d9}, + {0x6176, 0xb7c4}, + {0x6177, 0xd8cd}, + {0x6178, 0x8fbed7}, + {0x617b, 0x8fbed8}, + {0x617c, 0x8fbed9}, + {0x617e, 0xcddd}, + {0x617f, 0x8fbeda}, + {0x6180, 0x8fbedb}, + {0x6181, 0x8fbedc}, + {0x6182, 0xcdab}, + {0x6183, 0x8fbedd}, + {0x6184, 0x8fbede}, + {0x6187, 0xd8dc}, + {0x618a, 0xd8e0}, + {0x618b, 0x8fbedf}, + {0x618d, 0x8fbee0}, + {0x618e, 0xc1fe}, + {0x6190, 0xcef9}, + {0x6191, 0xd8e1}, + {0x6192, 0x8fbee1}, + {0x6193, 0x8fbee2}, + {0x6194, 0xd8de}, + {0x6196, 0xd8db}, + {0x6197, 0x8fbee3}, + {0x6198, 0x8fbee4}, + {0x6199, 0xd8da}, + {0x619a, 0xd8df}, + {0x619c, 0x8fbee5}, + {0x619d, 0x8fbee6}, + {0x619f, 0x8fbee7}, + {0x61a0, 0x8fbee8}, + {0x61a4, 0xcab0}, + {0x61a5, 0x8fbee9}, + {0x61a7, 0xc6b4}, + {0x61a8, 0x8fbeea}, + {0x61a9, 0xb7c6}, + {0x61aa, 0x8fbeeb}, + {0x61ab, 0xd8e2}, + {0x61ac, 0xd8dd}, + {0x61ad, 0x8fbeec}, + {0x61ae, 0xd8e3}, + {0x61b2, 0xb7fb}, + {0x61b6, 0xb2b1}, + {0x61b8, 0x8fbeed}, + {0x61b9, 0x8fbeee}, + {0x61ba, 0xd8eb}, + {0x61bc, 0x8fbeef}, + {0x61be, 0xb4b8}, + {0x61c0, 0x8fbef0}, + {0x61c1, 0x8fbef1}, + {0x61c2, 0x8fbef2}, + {0x61c3, 0xd8e9}, + {0x61c6, 0xd8ea}, + {0x61c7, 0xbaa9}, + {0x61c8, 0xd8e8}, + {0x61c9, 0xd8e6}, + {0x61ca, 0xd8e5}, + {0x61cb, 0xd8ec}, + {0x61cc, 0xd8e4}, + {0x61cd, 0xd8ee}, + {0x61ce, 0x8fbef3}, + {0x61cf, 0x8fbef4}, + {0x61d0, 0xb2fb}, + {0x61d5, 0x8fbef5}, + {0x61dc, 0x8fbef6}, + {0x61dd, 0x8fbef7}, + {0x61de, 0x8fbef8}, + {0x61df, 0x8fbef9}, + {0x61e1, 0x8fbefa}, + {0x61e2, 0x8fbefb}, + {0x61e3, 0xd8f0}, + {0x61e5, 0x8fbefe}, + {0x61e6, 0xd8ef}, + {0x61e7, 0x8fbefc}, + {0x61e9, 0x8fbefd}, + {0x61ec, 0x8fbfa1}, + {0x61ed, 0x8fbfa2}, + {0x61ef, 0x8fbfa3}, + {0x61f2, 0xc4a8}, + {0x61f4, 0xd8f3}, + {0x61f6, 0xd8f1}, + {0x61f7, 0xd8e7}, + {0x61f8, 0xb7fc}, + {0x61fa, 0xd8f2}, + {0x61fc, 0xd8f6}, + {0x61fd, 0xd8f5}, + {0x61fe, 0xd8f7}, + {0x61ff, 0xd8f4}, + {0x6200, 0xd8f8}, + {0x6201, 0x8fbfa4}, + {0x6203, 0x8fbfa5}, + {0x6204, 0x8fbfa6}, + {0x6207, 0x8fbfa7}, + {0x6208, 0xd8f9}, + {0x6209, 0xd8fa}, + {0x620a, 0xcaea}, + {0x620c, 0xd8fc}, + {0x620d, 0xd8fb}, + {0x620e, 0xbdbf}, + {0x6210, 0xc0ae}, + {0x6211, 0xb2e6}, + {0x6212, 0xb2fc}, + {0x6213, 0x8fbfa8}, + {0x6214, 0xd8fd}, + {0x6215, 0x8fbfa9}, + {0x6216, 0xb0bf}, + {0x621a, 0xc0cc}, + {0x621b, 0xd8fe}, + {0x621c, 0x8fbfaa}, + {0x621d, 0xecc3}, + {0x621e, 0xd9a1}, + {0x621f, 0xb7e1}, + {0x6220, 0x8fbfab}, + {0x6221, 0xd9a2}, + {0x6222, 0x8fbfac}, + {0x6223, 0x8fbfad}, + {0x6226, 0xc0ef}, + {0x6227, 0x8fbfae}, + {0x6229, 0x8fbfaf}, + {0x622a, 0xd9a3}, + {0x622b, 0x8fbfb0}, + {0x622e, 0xd9a4}, + {0x622f, 0xb5ba}, + {0x6230, 0xd9a5}, + {0x6232, 0xd9a6}, + {0x6233, 0xd9a7}, + {0x6234, 0xc2d7}, + {0x6238, 0xb8cd}, + {0x6239, 0x8fbfb1}, + {0x623b, 0xcce1}, + {0x623d, 0x8fbfb2}, + {0x623f, 0xcbbc}, + {0x6240, 0xbdea}, + {0x6241, 0xd9a8}, + {0x6242, 0x8fbfb3}, + {0x6243, 0x8fbfb4}, + {0x6244, 0x8fbfb5}, + {0x6246, 0x8fbfb6}, + {0x6247, 0xc0f0}, + {0x6248, 0xeebd}, + {0x6249, 0xc8e2}, + {0x624b, 0xbcea}, + {0x624c, 0x8fbfb7}, + {0x624d, 0xbacd}, + {0x624e, 0xd9a9}, + {0x6250, 0x8fbfb8}, + {0x6251, 0x8fbfb9}, + {0x6252, 0x8fbfba}, + {0x6253, 0xc2c7}, + {0x6254, 0x8fbfbb}, + {0x6255, 0xcaa7}, + {0x6256, 0x8fbfbc}, + {0x6258, 0xc2f1}, + {0x625a, 0x8fbfbd}, + {0x625b, 0xd9ac}, + {0x625c, 0x8fbfbe}, + {0x625e, 0xd9aa}, + {0x6260, 0xd9ad}, + {0x6263, 0xd9ab}, + {0x6264, 0x8fbfbf}, + {0x6268, 0xd9ae}, + {0x626d, 0x8fbfc0}, + {0x626e, 0xcab1}, + {0x626f, 0x8fbfc1}, + {0x6271, 0xb0b7}, + {0x6273, 0x8fbfc2}, + {0x6276, 0xc9de}, + {0x6279, 0xc8e3}, + {0x627a, 0x8fbfc3}, + {0x627c, 0xd9af}, + {0x627d, 0x8fbfc4}, + {0x627e, 0xd9b2}, + {0x627f, 0xbeb5}, + {0x6280, 0xb5bb}, + {0x6282, 0xd9b0}, + {0x6283, 0xd9b7}, + {0x6284, 0xbeb6}, + {0x6289, 0xd9b1}, + {0x628a, 0xc7c4}, + {0x628d, 0x8fbfc5}, + {0x628e, 0x8fbfc6}, + {0x628f, 0x8fbfc7}, + {0x6290, 0x8fbfc8}, + {0x6291, 0xcdde}, + {0x6292, 0xd9b3}, + {0x6293, 0xd9b4}, + {0x6294, 0xd9b8}, + {0x6295, 0xc5ea}, + {0x6296, 0xd9b5}, + {0x6297, 0xb9b3}, + {0x6298, 0xc0de}, + {0x629b, 0xd9c6}, + {0x629c, 0xc8b4}, + {0x629e, 0xc2f2}, + {0x62a6, 0x8fbfc9}, + {0x62a8, 0x8fbfca}, + {0x62ab, 0xc8e4}, + {0x62ac, 0xdaad}, + {0x62b1, 0xcafa}, + {0x62b3, 0x8fbfcb}, + {0x62b5, 0xc4f1}, + {0x62b6, 0x8fbfcc}, + {0x62b7, 0x8fbfcd}, + {0x62b9, 0xcbf5}, + {0x62ba, 0x8fbfce}, + {0x62bb, 0xd9bb}, + {0x62bc, 0xb2a1}, + {0x62bd, 0xc3ea}, + {0x62be, 0x8fbfcf}, + {0x62bf, 0x8fbfd0}, + {0x62c2, 0xd9c4}, + {0x62c4, 0x8fbfd1}, + {0x62c5, 0xc3b4}, + {0x62c6, 0xd9be}, + {0x62c7, 0xd9c5}, + {0x62c8, 0xd9c0}, + {0x62c9, 0xd9c7}, + {0x62ca, 0xd9c3}, + {0x62cc, 0xd9c2}, + {0x62cd, 0xc7ef}, + {0x62ce, 0x8fbfd2}, + {0x62cf, 0xd9bc}, + {0x62d0, 0xb2fd}, + {0x62d1, 0xd9ba}, + {0x62d2, 0xb5f1}, + {0x62d3, 0xc2f3}, + {0x62d4, 0xd9b6}, + {0x62d5, 0x8fbfd3}, + {0x62d6, 0x8fbfd4}, + {0x62d7, 0xd9b9}, + {0x62d8, 0xb9b4}, + {0x62d9, 0xc0db}, + {0x62da, 0x8fbfd5}, + {0x62db, 0xbeb7}, + {0x62dc, 0xd9c1}, + {0x62dd, 0xc7d2}, + {0x62e0, 0xb5f2}, + {0x62e1, 0xb3c8}, + {0x62ea, 0x8fbfd6}, + {0x62ec, 0xb3e7}, + {0x62ed, 0xbfa1}, + {0x62ee, 0xd9c9}, + {0x62ef, 0xd9ce}, + {0x62f1, 0xd9ca}, + {0x62f2, 0x8fbfd7}, + {0x62f3, 0xb7fd}, + {0x62f4, 0x8fbfd8}, + {0x62f5, 0xd9cf}, + {0x62f6, 0xbba2}, + {0x62f7, 0xb9e9}, + {0x62fc, 0x8fbfd9}, + {0x62fd, 0x8fbfda}, + {0x62fe, 0xbda6}, + {0x62ff, 0xd9bd}, + {0x6301, 0xbbfd}, + {0x6302, 0xd9cc}, + {0x6303, 0x8fbfdb}, + {0x6304, 0x8fbfdc}, + {0x6307, 0xbbd8}, + {0x6308, 0xd9cd}, + {0x6309, 0xb0c4}, + {0x630a, 0x8fbfdd}, + {0x630b, 0x8fbfde}, + {0x630c, 0xd9c8}, + {0x630d, 0x8fbfdf}, + {0x6310, 0x8fbfe0}, + {0x6311, 0xc4a9}, + {0x6313, 0x8fbfe1}, + {0x6316, 0x8fbfe2}, + {0x6318, 0x8fbfe3}, + {0x6319, 0xb5f3}, + {0x631f, 0xb6b4}, + {0x6327, 0xd9cb}, + {0x6328, 0xb0a7}, + {0x6329, 0x8fbfe4}, + {0x632a, 0x8fbfe5}, + {0x632b, 0xbac3}, + {0x632d, 0x8fbfe6}, + {0x632f, 0xbfb6}, + {0x6335, 0x8fbfe7}, + {0x6336, 0x8fbfe8}, + {0x6339, 0x8fbfe9}, + {0x633a, 0xc4f2}, + {0x633c, 0x8fbfea}, + {0x633d, 0xc8d4}, + {0x633e, 0xd9d1}, + {0x633f, 0xc1de}, + {0x6341, 0x8fbfeb}, + {0x6342, 0x8fbfec}, + {0x6343, 0x8fbfed}, + {0x6344, 0x8fbfee}, + {0x6346, 0x8fbfef}, + {0x6349, 0xc2aa}, + {0x634a, 0x8fbff0}, + {0x634b, 0x8fbff1}, + {0x634c, 0xbbab}, + {0x634d, 0xd9d2}, + {0x634e, 0x8fbff2}, + {0x634f, 0xd9d4}, + {0x6350, 0xd9d0}, + {0x6352, 0x8fbff3}, + {0x6353, 0x8fbff4}, + {0x6354, 0x8fbff5}, + {0x6355, 0xcae1}, + {0x6357, 0xc4bd}, + {0x6358, 0x8fbff6}, + {0x635b, 0x8fbff7}, + {0x635c, 0xc1dc}, + {0x6365, 0x8fbff8}, + {0x6366, 0x8fbff9}, + {0x6367, 0xcafb}, + {0x6368, 0xbcce}, + {0x6369, 0xd9e0}, + {0x636b, 0xd9df}, + {0x636c, 0x8fbffa}, + {0x636d, 0x8fbffb}, + {0x636e, 0xbff8}, + {0x6371, 0x8fbffc}, + {0x6372, 0xb7fe}, + {0x6374, 0x8fbffd}, + {0x6375, 0x8fbffe}, + {0x6376, 0xd9d9}, + {0x6377, 0xbeb9}, + {0x6378, 0x8fc0a1}, + {0x637a, 0xc6e8}, + {0x637b, 0xc7b1}, + {0x637c, 0x8fc0a2}, + {0x637d, 0x8fc0a3}, + {0x637f, 0x8fc0a4}, + {0x6380, 0xd9d7}, + {0x6382, 0x8fc0a5}, + {0x6383, 0xc1dd}, + {0x6384, 0x8fc0a6}, + {0x6387, 0x8fc0a7}, + {0x6388, 0xbcf8}, + {0x6389, 0xd9dc}, + {0x638a, 0x8fc0a8}, + {0x638c, 0xbeb8}, + {0x638e, 0xd9d6}, + {0x638f, 0xd9db}, + {0x6390, 0x8fc0a9}, + {0x6392, 0xc7d3}, + {0x6394, 0x8fc0aa}, + {0x6395, 0x8fc0ab}, + {0x6396, 0xd9d5}, + {0x6398, 0xb7a1}, + {0x6399, 0x8fc0ac}, + {0x639a, 0x8fc0ad}, + {0x639b, 0xb3dd}, + {0x639e, 0x8fc0ae}, + {0x639f, 0xd9dd}, + {0x63a0, 0xceab}, + {0x63a1, 0xbace}, + {0x63a2, 0xc3b5}, + {0x63a3, 0xd9da}, + {0x63a4, 0x8fc0af}, + {0x63a5, 0xc0dc}, + {0x63a6, 0x8fc0b0}, + {0x63a7, 0xb9b5}, + {0x63a8, 0xbfe4}, + {0x63a9, 0xb1e6}, + {0x63aa, 0xc1bc}, + {0x63ab, 0xd9d8}, + {0x63ac, 0xb5c5}, + {0x63ad, 0x8fc0b1}, + {0x63ae, 0x8fc0b2}, + {0x63af, 0x8fc0b3}, + {0x63b2, 0xb7c7}, + {0x63b4, 0xc4cf}, + {0x63b5, 0xd9de}, + {0x63bb, 0xc1df}, + {0x63bd, 0x8fc0b4}, + {0x63be, 0xd9e1}, + {0x63c0, 0xd9e3}, + {0x63c1, 0x8fc0b5}, + {0x63c3, 0xc2b7}, + {0x63c4, 0xd9e9}, + {0x63c5, 0x8fc0b6}, + {0x63c6, 0xd9e4}, + {0x63c8, 0x8fc0b7}, + {0x63c9, 0xd9e6}, + {0x63ce, 0x8fc0b8}, + {0x63cf, 0xc9c1}, + {0x63d0, 0xc4f3}, + {0x63d1, 0x8fc0b9}, + {0x63d2, 0xd9e7}, + {0x63d3, 0x8fc0ba}, + {0x63d4, 0x8fc0bb}, + {0x63d5, 0x8fc0bc}, + {0x63d6, 0xcdac}, + {0x63da, 0xcdc8}, + {0x63db, 0xb4b9}, + {0x63dc, 0x8fc0bd}, + {0x63e0, 0x8fc0be}, + {0x63e1, 0xb0ae}, + {0x63e3, 0xd9e5}, + {0x63e5, 0x8fc0bf}, + {0x63e9, 0xd9e2}, + {0x63ea, 0x8fc0c0}, + {0x63ec, 0x8fc0c1}, + {0x63ee, 0xb4f8}, + {0x63f2, 0x8fc0c2}, + {0x63f3, 0x8fc0c3}, + {0x63f4, 0xb1e7}, + {0x63f5, 0x8fc0c4}, + {0x63f6, 0xd9e8}, + {0x63f8, 0x8fc0c5}, + {0x63f9, 0x8fc0c6}, + {0x63fa, 0xcdc9}, + {0x6406, 0xd9ec}, + {0x6409, 0x8fc0c7}, + {0x640a, 0x8fc0c8}, + {0x640d, 0xc2bb}, + {0x640f, 0xd9f3}, + {0x6410, 0x8fc0c9}, + {0x6412, 0x8fc0ca}, + {0x6413, 0xd9ed}, + {0x6414, 0x8fc0cb}, + {0x6416, 0xd9ea}, + {0x6417, 0xd9f1}, + {0x6418, 0x8fc0cc}, + {0x641c, 0xd9d3}, + {0x641e, 0x8fc0cd}, + {0x6420, 0x8fc0ce}, + {0x6422, 0x8fc0cf}, + {0x6424, 0x8fc0d0}, + {0x6425, 0x8fc0d1}, + {0x6426, 0xd9ee}, + {0x6428, 0xd9f2}, + {0x6429, 0x8fc0d2}, + {0x642a, 0x8fc0d3}, + {0x642c, 0xc8c2}, + {0x642d, 0xc5eb}, + {0x642f, 0x8fc0d4}, + {0x6430, 0x8fc0d5}, + {0x6434, 0xd9eb}, + {0x6435, 0x8fc0d6}, + {0x6436, 0xd9ef}, + {0x643a, 0xb7c8}, + {0x643d, 0x8fc0d7}, + {0x643e, 0xbaf1}, + {0x643f, 0x8fc0d8}, + {0x6442, 0xc0dd}, + {0x644b, 0x8fc0d9}, + {0x644e, 0xd9f7}, + {0x644f, 0x8fc0da}, + {0x6451, 0x8fc0db}, + {0x6452, 0x8fc0dc}, + {0x6453, 0x8fc0dd}, + {0x6454, 0x8fc0de}, + {0x6458, 0xc5a6}, + {0x645a, 0x8fc0df}, + {0x645b, 0x8fc0e0}, + {0x645c, 0x8fc0e1}, + {0x645d, 0x8fc0e2}, + {0x645f, 0x8fc0e3}, + {0x6460, 0x8fc0e4}, + {0x6461, 0x8fc0e5}, + {0x6463, 0x8fc0e6}, + {0x6467, 0xd9f4}, + {0x6469, 0xcbe0}, + {0x646d, 0x8fc0e7}, + {0x646f, 0xd9f5}, + {0x6473, 0x8fc0e8}, + {0x6474, 0x8fc0e9}, + {0x6476, 0xd9f6}, + {0x6478, 0xccce}, + {0x647a, 0xc0a2}, + {0x647b, 0x8fc0ea}, + {0x647d, 0x8fc0eb}, + {0x6483, 0xb7e2}, + {0x6485, 0x8fc0ec}, + {0x6487, 0x8fc0ed}, + {0x6488, 0xd9fd}, + {0x648f, 0x8fc0ee}, + {0x6490, 0x8fc0ef}, + {0x6491, 0x8fc0f0}, + {0x6492, 0xbbb5}, + {0x6493, 0xd9fa}, + {0x6495, 0xd9f9}, + {0x6498, 0x8fc0f1}, + {0x6499, 0x8fc0f2}, + {0x649a, 0xc7b2}, + {0x649b, 0x8fc0f3}, + {0x649d, 0x8fc0f4}, + {0x649e, 0xc6b5}, + {0x649f, 0x8fc0f5}, + {0x64a1, 0x8fc0f6}, + {0x64a3, 0x8fc0f7}, + {0x64a4, 0xc5b1}, + {0x64a5, 0xd9fb}, + {0x64a6, 0x8fc0f8}, + {0x64a8, 0x8fc0f9}, + {0x64a9, 0xd9fc}, + {0x64ab, 0xc9ef}, + {0x64ac, 0x8fc0fa}, + {0x64ad, 0xc7c5}, + {0x64ae, 0xbba3}, + {0x64b0, 0xc0f1}, + {0x64b2, 0xcbd0}, + {0x64b3, 0x8fc0fb}, + {0x64b9, 0xb3c9}, + {0x64bb, 0xdaa5}, + {0x64bc, 0xd9fe}, + {0x64bd, 0x8fc0fc}, + {0x64be, 0x8fc0fd}, + {0x64bf, 0x8fc0fe}, + {0x64c1, 0xcdca}, + {0x64c2, 0xdaa7}, + {0x64c4, 0x8fc1a1}, + {0x64c5, 0xdaa3}, + {0x64c7, 0xdaa4}, + {0x64c9, 0x8fc1a2}, + {0x64ca, 0x8fc1a3}, + {0x64cb, 0x8fc1a4}, + {0x64cc, 0x8fc1a5}, + {0x64cd, 0xc1e0}, + {0x64ce, 0x8fc1a6}, + {0x64d0, 0x8fc1a7}, + {0x64d1, 0x8fc1a8}, + {0x64d2, 0xdaa2}, + {0x64d4, 0xd9bf}, + {0x64d5, 0x8fc1a9}, + {0x64d7, 0x8fc1aa}, + {0x64d8, 0xdaa6}, + {0x64da, 0xdaa1}, + {0x64e0, 0xdaab}, + {0x64e1, 0xdaac}, + {0x64e2, 0xc5a7}, + {0x64e3, 0xdaae}, + {0x64e4, 0x8fc1ab}, + {0x64e5, 0x8fc1ac}, + {0x64e6, 0xbba4}, + {0x64e7, 0xdaa9}, + {0x64e9, 0x8fc1ad}, + {0x64ea, 0x8fc1ae}, + {0x64ec, 0xb5bc}, + {0x64ed, 0x8fc1af}, + {0x64ef, 0xdaaf}, + {0x64f0, 0x8fc1b0}, + {0x64f1, 0xdaa8}, + {0x64f2, 0xdab3}, + {0x64f4, 0xdab2}, + {0x64f5, 0x8fc1b1}, + {0x64f6, 0xdab1}, + {0x64f7, 0x8fc1b2}, + {0x64fa, 0xdab4}, + {0x64fb, 0x8fc1b3}, + {0x64fd, 0xdab6}, + {0x64fe, 0xbef1}, + {0x64ff, 0x8fc1b4}, + {0x6500, 0xdab5}, + {0x6501, 0x8fc1b5}, + {0x6504, 0x8fc1b6}, + {0x6505, 0xdab9}, + {0x6508, 0x8fc1b7}, + {0x6509, 0x8fc1b8}, + {0x650a, 0x8fc1b9}, + {0x650f, 0x8fc1ba}, + {0x6513, 0x8fc1bb}, + {0x6514, 0x8fc1bc}, + {0x6516, 0x8fc1bd}, + {0x6518, 0xdab7}, + {0x6519, 0x8fc1be}, + {0x651b, 0x8fc1bf}, + {0x651c, 0xdab8}, + {0x651d, 0xd9f0}, + {0x651e, 0x8fc1c0}, + {0x651f, 0x8fc1c1}, + {0x6522, 0x8fc1c2}, + {0x6523, 0xdabb}, + {0x6524, 0xdaba}, + {0x6526, 0x8fc1c3}, + {0x6529, 0x8fc1c4}, + {0x652a, 0xd9f8}, + {0x652b, 0xdabc}, + {0x652c, 0xdab0}, + {0x652e, 0x8fc1c5}, + {0x652f, 0xbbd9}, + {0x6531, 0x8fc1c6}, + {0x6534, 0xdabd}, + {0x6535, 0xdabe}, + {0x6536, 0xdac0}, + {0x6537, 0xdabf}, + {0x6538, 0xdac1}, + {0x6539, 0xb2fe}, + {0x653a, 0x8fc1c7}, + {0x653b, 0xb9b6}, + {0x653c, 0x8fc1c8}, + {0x653d, 0x8fc1c9}, + {0x653e, 0xcafc}, + {0x653f, 0xc0af}, + {0x6543, 0x8fc1ca}, + {0x6545, 0xb8ce}, + {0x6547, 0x8fc1cb}, + {0x6548, 0xdac3}, + {0x6549, 0x8fc1cc}, + {0x654d, 0xdac6}, + {0x654f, 0xc9d2}, + {0x6550, 0x8fc1cd}, + {0x6551, 0xb5df}, + {0x6552, 0x8fc1ce}, + {0x6554, 0x8fc1cf}, + {0x6555, 0xdac5}, + {0x6556, 0xdac4}, + {0x6557, 0xc7d4}, + {0x6558, 0xdac7}, + {0x6559, 0xb6b5}, + {0x655d, 0xdac9}, + {0x655e, 0xdac8}, + {0x655f, 0x8fc1d0}, + {0x6560, 0x8fc1d1}, + {0x6562, 0xb4ba}, + {0x6563, 0xbbb6}, + {0x6566, 0xc6d8}, + {0x6567, 0x8fc1d2}, + {0x656b, 0x8fc1d3}, + {0x656c, 0xb7c9}, + {0x6570, 0xbff4}, + {0x6572, 0xdaca}, + {0x6574, 0xc0b0}, + {0x6575, 0xc5a8}, + {0x6577, 0xc9df}, + {0x6578, 0xdacb}, + {0x657a, 0x8fc1d4}, + {0x657d, 0x8fc1d5}, + {0x6581, 0x8fc1d6}, + {0x6582, 0xdacc}, + {0x6583, 0xdacd}, + {0x6585, 0x8fc1d7}, + {0x6587, 0xcab8}, + {0x6588, 0xd5dd}, + {0x6589, 0xc0c6}, + {0x658a, 0x8fc1d8}, + {0x658c, 0xc9cc}, + {0x658e, 0xbad8}, + {0x6590, 0xc8e5}, + {0x6591, 0xc8c3}, + {0x6592, 0x8fc1d9}, + {0x6595, 0x8fc1da}, + {0x6597, 0xc5cd}, + {0x6598, 0x8fc1db}, + {0x6599, 0xcec1}, + {0x659b, 0xdacf}, + {0x659c, 0xbcd0}, + {0x659d, 0x8fc1dc}, + {0x659f, 0xdad0}, + {0x65a0, 0x8fc1dd}, + {0x65a1, 0xb0b6}, + {0x65a3, 0x8fc1de}, + {0x65a4, 0xb6d4}, + {0x65a5, 0xc0cd}, + {0x65a6, 0x8fc1df}, + {0x65a7, 0xc9e0}, + {0x65ab, 0xdad1}, + {0x65ac, 0xbbc2}, + {0x65ad, 0xc3c7}, + {0x65ae, 0x8fc1e0}, + {0x65af, 0xbbdb}, + {0x65b0, 0xbfb7}, + {0x65b2, 0x8fc1e1}, + {0x65b3, 0x8fc1e2}, + {0x65b4, 0x8fc1e3}, + {0x65b7, 0xdad2}, + {0x65b9, 0xcafd}, + {0x65bc, 0xb1f7}, + {0x65bd, 0xbbdc}, + {0x65bf, 0x8fc1e4}, + {0x65c1, 0xdad5}, + {0x65c2, 0x8fc1e5}, + {0x65c3, 0xdad3}, + {0x65c4, 0xdad6}, + {0x65c5, 0xceb9}, + {0x65c6, 0xdad4}, + {0x65c8, 0x8fc1e6}, + {0x65c9, 0x8fc1e7}, + {0x65cb, 0xc0fb}, + {0x65cc, 0xdad7}, + {0x65ce, 0x8fc1e8}, + {0x65cf, 0xc2b2}, + {0x65d0, 0x8fc1e9}, + {0x65d2, 0xdad8}, + {0x65d4, 0x8fc1ea}, + {0x65d6, 0x8fc1eb}, + {0x65d7, 0xb4fa}, + {0x65d8, 0x8fc1ec}, + {0x65d9, 0xdada}, + {0x65db, 0xdad9}, + {0x65df, 0x8fc1ed}, + {0x65e0, 0xdadb}, + {0x65e1, 0xdadc}, + {0x65e2, 0xb4fb}, + {0x65e5, 0xc6fc}, + {0x65e6, 0xc3b6}, + {0x65e7, 0xb5ec}, + {0x65e8, 0xbbdd}, + {0x65e9, 0xc1e1}, + {0x65ec, 0xbddc}, + {0x65ed, 0xb0b0}, + {0x65f0, 0x8fc1ee}, + {0x65f1, 0xdadd}, + {0x65f2, 0x8fc1ef}, + {0x65f4, 0x8fc1f0}, + {0x65f5, 0x8fc1f1}, + {0x65f9, 0x8fc1f2}, + {0x65fa, 0xb2a2}, + {0x65fb, 0xdae1}, + {0x65fe, 0x8fc1f3}, + {0x65ff, 0x8fc1f4}, + {0x6600, 0x8fc1f5}, + {0x6602, 0xb9b7}, + {0x6603, 0xdae0}, + {0x6604, 0x8fc1f6}, + {0x6606, 0xbaab}, + {0x6607, 0xbeba}, + {0x6608, 0x8fc1f7}, + {0x6609, 0x8fc1f8}, + {0x660a, 0xdadf}, + {0x660c, 0xbebb}, + {0x660d, 0x8fc1f9}, + {0x660e, 0xccc0}, + {0x660f, 0xbaaa}, + {0x6611, 0x8fc1fa}, + {0x6612, 0x8fc1fb}, + {0x6613, 0xb0d7}, + {0x6614, 0xc0ce}, + {0x6615, 0x8fc1fc}, + {0x6616, 0x8fc1fd}, + {0x661c, 0xdae6}, + {0x661d, 0x8fc1fe}, + {0x661e, 0x8fc2a1}, + {0x661f, 0xc0b1}, + {0x6620, 0xb1c7}, + {0x6621, 0x8fc2a2}, + {0x6622, 0x8fc2a3}, + {0x6623, 0x8fc2a4}, + {0x6624, 0x8fc2a5}, + {0x6625, 0xbdd5}, + {0x6626, 0x8fc2a6}, + {0x6627, 0xcbe6}, + {0x6628, 0xbaf2}, + {0x6629, 0x8fc2a7}, + {0x662a, 0x8fc2a8}, + {0x662b, 0x8fc2a9}, + {0x662c, 0x8fc2aa}, + {0x662d, 0xbebc}, + {0x662e, 0x8fc2ab}, + {0x662f, 0xc0a7}, + {0x6630, 0x8fc2ac}, + {0x6631, 0x8fc2ad}, + {0x6633, 0x8fc2ae}, + {0x6634, 0xdae5}, + {0x6635, 0xdae3}, + {0x6636, 0xdae4}, + {0x6637, 0x8fc2b0}, + {0x6639, 0x8fc2af}, + {0x663c, 0xc3eb}, + {0x663f, 0xdba6}, + {0x6640, 0x8fc2b1}, + {0x6641, 0xdaea}, + {0x6642, 0xbbfe}, + {0x6643, 0xb9b8}, + {0x6644, 0xdae8}, + {0x6645, 0x8fc2b2}, + {0x6646, 0x8fc2b3}, + {0x6649, 0xdae9}, + {0x664a, 0x8fc2b4}, + {0x664b, 0xbfb8}, + {0x664c, 0x8fc2b5}, + {0x664e, 0x8fc2b7}, + {0x664f, 0xdae7}, + {0x6651, 0x8fc2b6}, + {0x6652, 0xbbaf}, + {0x6657, 0x8fc2b8}, + {0x6658, 0x8fc2b9}, + {0x6659, 0x8fc2ba}, + {0x665b, 0x8fc2bb}, + {0x665c, 0x8fc2bc}, + {0x665d, 0xdaec}, + {0x665e, 0xdaeb}, + {0x665f, 0xdaf0}, + {0x6660, 0x8fc2bd}, + {0x6661, 0x8fc2be}, + {0x6662, 0xdaf1}, + {0x6664, 0xdaed}, + {0x6666, 0xb3a2}, + {0x6667, 0xdaee}, + {0x6668, 0xdaef}, + {0x6669, 0xc8d5}, + {0x666a, 0x8fc2c0}, + {0x666b, 0x8fc2c1}, + {0x666c, 0x8fc2c2}, + {0x666e, 0xc9e1}, + {0x666f, 0xb7ca}, + {0x6670, 0xdaf2}, + {0x6673, 0x8fc2c4}, + {0x6674, 0xc0b2}, + {0x6675, 0x8fc2c5}, + {0x6676, 0xbebd}, + {0x6677, 0x8fc2c7}, + {0x6678, 0x8fc2c8}, + {0x6679, 0x8fc2c9}, + {0x667a, 0xc3d2}, + {0x667b, 0x8fc2ca}, + {0x667c, 0x8fc2cc}, + {0x667e, 0x8fc2c3}, + {0x667f, 0x8fc2c6}, + {0x6680, 0x8fc2cb}, + {0x6681, 0xb6c7}, + {0x6683, 0xdaf3}, + {0x6684, 0xdaf7}, + {0x6687, 0xb2cb}, + {0x6688, 0xdaf4}, + {0x6689, 0xdaf6}, + {0x668b, 0x8fc2cd}, + {0x668c, 0x8fc2ce}, + {0x668d, 0x8fc2cf}, + {0x668e, 0xdaf5}, + {0x6690, 0x8fc2d0}, + {0x6691, 0xbdeb}, + {0x6692, 0x8fc2d1}, + {0x6696, 0xc3c8}, + {0x6697, 0xb0c5}, + {0x6698, 0xdaf8}, + {0x6699, 0x8fc2d2}, + {0x669a, 0x8fc2d3}, + {0x669b, 0x8fc2d4}, + {0x669c, 0x8fc2d5}, + {0x669d, 0xdaf9}, + {0x669f, 0x8fc2d6}, + {0x66a0, 0x8fc2d7}, + {0x66a2, 0xc4aa}, + {0x66a4, 0x8fc2d8}, + {0x66a6, 0xcef1}, + {0x66ab, 0xbbc3}, + {0x66ad, 0x8fc2d9}, + {0x66ae, 0xcaeb}, + {0x66b1, 0x8fc2da}, + {0x66b2, 0x8fc2db}, + {0x66b4, 0xcbbd}, + {0x66b5, 0x8fc2dc}, + {0x66b8, 0xdba2}, + {0x66b9, 0xdafb}, + {0x66bb, 0x8fc2dd}, + {0x66bc, 0xdafe}, + {0x66be, 0xdafd}, + {0x66bf, 0x8fc2de}, + {0x66c0, 0x8fc2df}, + {0x66c1, 0xdafa}, + {0x66c2, 0x8fc2e0}, + {0x66c3, 0x8fc2e1}, + {0x66c4, 0xdba1}, + {0x66c7, 0xc6de}, + {0x66c8, 0x8fc2e2}, + {0x66c9, 0xdafc}, + {0x66cc, 0x8fc2e3}, + {0x66ce, 0x8fc2e4}, + {0x66cf, 0x8fc2e5}, + {0x66d4, 0x8fc2e6}, + {0x66d6, 0xdba3}, + {0x66d9, 0xbdec}, + {0x66da, 0xdba4}, + {0x66db, 0x8fc2e7}, + {0x66dc, 0xcdcb}, + {0x66dd, 0xc7f8}, + {0x66df, 0x8fc2e8}, + {0x66e0, 0xdba5}, + {0x66e6, 0xdba7}, + {0x66e8, 0x8fc2e9}, + {0x66e9, 0xdba8}, + {0x66eb, 0x8fc2ea}, + {0x66ec, 0x8fc2eb}, + {0x66ee, 0x8fc2ec}, + {0x66f0, 0xdba9}, + {0x66f2, 0xb6ca}, + {0x66f3, 0xb1c8}, + {0x66f4, 0xb9b9}, + {0x66f5, 0xdbaa}, + {0x66f7, 0xdbab}, + {0x66f8, 0xbdf1}, + {0x66f9, 0xc1e2}, + {0x66fa, 0x8fc2ed}, + {0x66fb, 0x8fc2bf}, + {0x66fc, 0xd2d8}, + {0x66fd, 0xc1be}, + {0x66fe, 0xc1bd}, + {0x66ff, 0xc2d8}, + {0x6700, 0xbac7}, + {0x6703, 0xd0f2}, + {0x6705, 0x8fc2ee}, + {0x6707, 0x8fc2ef}, + {0x6708, 0xb7ee}, + {0x6709, 0xcdad}, + {0x670b, 0xcafe}, + {0x670d, 0xc9fe}, + {0x670e, 0x8fc2f0}, + {0x670f, 0xdbac}, + {0x6713, 0x8fc2f1}, + {0x6714, 0xbaf3}, + {0x6715, 0xc4bf}, + {0x6716, 0xdbad}, + {0x6717, 0xcfaf}, + {0x6719, 0x8fc2f2}, + {0x671b, 0xcbbe}, + {0x671c, 0x8fc2f3}, + {0x671d, 0xc4ab}, + {0x671e, 0xdbae}, + {0x671f, 0xb4fc}, + {0x6720, 0x8fc2f4}, + {0x6722, 0x8fc2f5}, + {0x6726, 0xdbaf}, + {0x6727, 0xdbb0}, + {0x6728, 0xccda}, + {0x672a, 0xcca4}, + {0x672b, 0xcbf6}, + {0x672c, 0xcbdc}, + {0x672d, 0xbba5}, + {0x672e, 0xdbb2}, + {0x6731, 0xbceb}, + {0x6733, 0x8fc2f6}, + {0x6734, 0xcbd1}, + {0x6736, 0xdbb4}, + {0x6737, 0xdbb7}, + {0x6738, 0xdbb6}, + {0x673a, 0xb4f9}, + {0x673d, 0xb5e0}, + {0x673e, 0x8fc2f7}, + {0x673f, 0xdbb3}, + {0x6741, 0xdbb5}, + {0x6745, 0x8fc2f8}, + {0x6746, 0xdbb8}, + {0x6747, 0x8fc2f9}, + {0x6748, 0x8fc2fa}, + {0x6749, 0xbff9}, + {0x674c, 0x8fc2fb}, + {0x674e, 0xcdfb}, + {0x674f, 0xb0c9}, + {0x6750, 0xbae0}, + {0x6751, 0xc2bc}, + {0x6753, 0xbcdd}, + {0x6754, 0x8fc2fc}, + {0x6755, 0x8fc2fd}, + {0x6756, 0xbef3}, + {0x6759, 0xdbbb}, + {0x675c, 0xc5ce}, + {0x675d, 0x8fc2fe}, + {0x675e, 0xdbb9}, + {0x675f, 0xc2ab}, + {0x6760, 0xdbba}, + {0x6761, 0xbef2}, + {0x6762, 0xccdd}, + {0x6763, 0xdbbc}, + {0x6764, 0xdbbd}, + {0x6765, 0xcde8}, + {0x6766, 0x8fc3a1}, + {0x676a, 0xdbc2}, + {0x676c, 0x8fc3a2}, + {0x676d, 0xb9ba}, + {0x676e, 0x8fc3a3}, + {0x676f, 0xc7d5}, + {0x6770, 0xdbbf}, + {0x6771, 0xc5ec}, + {0x6772, 0xdade}, + {0x6773, 0xdae2}, + {0x6774, 0x8fc3a4}, + {0x6775, 0xb5cf}, + {0x6776, 0x8fc3a5}, + {0x6777, 0xc7c7}, + {0x677b, 0x8fc3a6}, + {0x677c, 0xdbc1}, + {0x677e, 0xbebe}, + {0x677f, 0xc8c4}, + {0x6781, 0x8fc3a7}, + {0x6784, 0x8fc3a8}, + {0x6785, 0xdbc7}, + {0x6787, 0xc8fa}, + {0x6789, 0xdbbe}, + {0x678b, 0xdbc4}, + {0x678c, 0xdbc3}, + {0x678e, 0x8fc3a9}, + {0x678f, 0x8fc3aa}, + {0x6790, 0xc0cf}, + {0x6791, 0x8fc3ab}, + {0x6793, 0x8fc3ac}, + {0x6795, 0xcbed}, + {0x6796, 0x8fc3ad}, + {0x6797, 0xced3}, + {0x6798, 0x8fc3ae}, + {0x6799, 0x8fc3af}, + {0x679a, 0xcbe7}, + {0x679b, 0x8fc3b0}, + {0x679c, 0xb2cc}, + {0x679d, 0xbbde}, + {0x67a0, 0xcfc8}, + {0x67a1, 0xdbc6}, + {0x67a2, 0xbff5}, + {0x67a6, 0xdbc5}, + {0x67a9, 0xdbc0}, + {0x67af, 0xb8cf}, + {0x67b0, 0x8fc3b1}, + {0x67b1, 0x8fc3b2}, + {0x67b2, 0x8fc3b3}, + {0x67b3, 0xdbcc}, + {0x67b4, 0xdbca}, + {0x67b5, 0x8fc3b4}, + {0x67b6, 0xb2cd}, + {0x67b7, 0xdbc8}, + {0x67b8, 0xdbce}, + {0x67b9, 0xdbd4}, + {0x67bb, 0x8fc3b5}, + {0x67bc, 0x8fc3b6}, + {0x67bd, 0x8fc3b7}, + {0x67c0, 0x8fc3b9}, + {0x67c1, 0xc2c8}, + {0x67c2, 0x8fc3ba}, + {0x67c3, 0x8fc3bb}, + {0x67c4, 0xcac1}, + {0x67c5, 0x8fc3bc}, + {0x67c6, 0xdbd6}, + {0x67c8, 0x8fc3bd}, + {0x67c9, 0x8fc3be}, + {0x67ca, 0xc9a2}, + {0x67ce, 0xdbd5}, + {0x67cf, 0xc7f0}, + {0x67d0, 0xcbbf}, + {0x67d1, 0xb4bb}, + {0x67d2, 0x8fc3bf}, + {0x67d3, 0xc0f7}, + {0x67d4, 0xbdc0}, + {0x67d7, 0x8fc3c0}, + {0x67d8, 0xc4d3}, + {0x67d9, 0x8fc3c1}, + {0x67da, 0xcdae}, + {0x67dc, 0x8fc3c2}, + {0x67dd, 0xdbd1}, + {0x67de, 0xdbd0}, + {0x67e1, 0x8fc3c3}, + {0x67e2, 0xdbd2}, + {0x67e4, 0xdbcf}, + {0x67e6, 0x8fc3c4}, + {0x67e7, 0xdbd7}, + {0x67e9, 0xdbcd}, + {0x67ec, 0xdbcb}, + {0x67ee, 0xdbd3}, + {0x67ef, 0xdbc9}, + {0x67f0, 0x8fc3c5}, + {0x67f1, 0xc3ec}, + {0x67f2, 0x8fc3c6}, + {0x67f3, 0xccf8}, + {0x67f4, 0xbcc6}, + {0x67f5, 0xbaf4}, + {0x67f6, 0x8fc3c7}, + {0x67f7, 0x8fc3c8}, + {0x67f9, 0x8fc3b8}, + {0x67fb, 0xbaba}, + {0x67fe, 0xcbef}, + {0x67ff, 0xb3c1}, + {0x6802, 0xc4ce}, + {0x6803, 0xc6ca}, + {0x6804, 0xb1c9}, + {0x6813, 0xc0f2}, + {0x6814, 0x8fc3ca}, + {0x6816, 0xc0b4}, + {0x6817, 0xb7aa}, + {0x6819, 0x8fc3cb}, + {0x681d, 0x8fc3cc}, + {0x681e, 0xdbd9}, + {0x681f, 0x8fc3cd}, + {0x6821, 0xb9bb}, + {0x6822, 0xb3fc}, + {0x6827, 0x8fc3cf}, + {0x6828, 0x8fc3ce}, + {0x6829, 0xdbdb}, + {0x682a, 0xb3f4}, + {0x682b, 0xdbe1}, + {0x682c, 0x8fc3d0}, + {0x682d, 0x8fc3d1}, + {0x682f, 0x8fc3d2}, + {0x6830, 0x8fc3d3}, + {0x6831, 0x8fc3d4}, + {0x6832, 0xdbde}, + {0x6833, 0x8fc3d5}, + {0x6834, 0xc0f3}, + {0x6838, 0xb3cb}, + {0x6839, 0xbaac}, + {0x683b, 0x8fc3d6}, + {0x683c, 0xb3ca}, + {0x683d, 0xbacf}, + {0x683f, 0x8fc3d7}, + {0x6840, 0xdbdc}, + {0x6841, 0xb7e5}, + {0x6842, 0xb7cb}, + {0x6843, 0xc5ed}, + {0x6844, 0x8fc3d8}, + {0x6845, 0x8fc3d9}, + {0x6846, 0xdbda}, + {0x6848, 0xb0c6}, + {0x684a, 0x8fc3da}, + {0x684c, 0x8fc3db}, + {0x684d, 0xdbdd}, + {0x684e, 0xdbdf}, + {0x6850, 0xb6cd}, + {0x6851, 0xb7ac}, + {0x6852, 0x8fc3c9}, + {0x6853, 0xb4bc}, + {0x6854, 0xb5cb}, + {0x6855, 0x8fc3dc}, + {0x6857, 0x8fc3dd}, + {0x6858, 0x8fc3de}, + {0x6859, 0xdbe2}, + {0x685b, 0x8fc3df}, + {0x685c, 0xbaf9}, + {0x685d, 0xcbf1}, + {0x685f, 0xbbb7}, + {0x6863, 0xdbe3}, + {0x6867, 0xc9b0}, + {0x686b, 0x8fc3e0}, + {0x686e, 0x8fc3e1}, + {0x686f, 0x8fc3e2}, + {0x6870, 0x8fc3e3}, + {0x6871, 0x8fc3e4}, + {0x6872, 0x8fc3e5}, + {0x6874, 0xdbef}, + {0x6875, 0x8fc3e6}, + {0x6876, 0xb2b3}, + {0x6877, 0xdbe4}, + {0x6879, 0x8fc3e7}, + {0x687a, 0x8fc3e8}, + {0x687b, 0x8fc3e9}, + {0x687c, 0x8fc3ea}, + {0x687e, 0xdbf5}, + {0x687f, 0xdbe5}, + {0x6881, 0xcec2}, + {0x6882, 0x8fc3eb}, + {0x6883, 0xdbec}, + {0x6884, 0x8fc3ec}, + {0x6885, 0xc7df}, + {0x6886, 0x8fc3ed}, + {0x6888, 0x8fc3ee}, + {0x688d, 0xdbf4}, + {0x688f, 0xdbe7}, + {0x6893, 0xb0b4}, + {0x6894, 0xdbe9}, + {0x6896, 0x8fc3ef}, + {0x6897, 0xb9bc}, + {0x6898, 0x8fc3f0}, + {0x689a, 0x8fc3f1}, + {0x689b, 0xdbeb}, + {0x689c, 0x8fc3f2}, + {0x689d, 0xdbea}, + {0x689f, 0xdbe6}, + {0x68a0, 0xdbf1}, + {0x68a1, 0x8fc3f3}, + {0x68a2, 0xbebf}, + {0x68a3, 0x8fc3f4}, + {0x68a5, 0x8fc3f5}, + {0x68a6, 0xd4ed}, + {0x68a7, 0xb8e8}, + {0x68a8, 0xcdfc}, + {0x68a9, 0x8fc3f6}, + {0x68aa, 0x8fc3f7}, + {0x68ad, 0xdbe8}, + {0x68ae, 0x8fc3f8}, + {0x68af, 0xc4f4}, + {0x68b0, 0xb3a3}, + {0x68b1, 0xbaad}, + {0x68b2, 0x8fc3f9}, + {0x68b3, 0xdbe0}, + {0x68b5, 0xdbf0}, + {0x68b6, 0xb3e1}, + {0x68b9, 0xdbee}, + {0x68ba, 0xdbf2}, + {0x68bb, 0x8fc3fa}, + {0x68bc, 0xc5ee}, + {0x68c4, 0xb4fe}, + {0x68c5, 0x8fc3fb}, + {0x68c6, 0xdcb2}, + {0x68c8, 0x8fc3fc}, + {0x68c9, 0xccc9}, + {0x68ca, 0xdbf7}, + {0x68cb, 0xb4fd}, + {0x68cc, 0x8fc3fd}, + {0x68cd, 0xdbfe}, + {0x68cf, 0x8fc3fe}, + {0x68d0, 0x8fc4a1}, + {0x68d1, 0x8fc4a2}, + {0x68d2, 0xcbc0}, + {0x68d3, 0x8fc4a3}, + {0x68d4, 0xdca1}, + {0x68d5, 0xdca3}, + {0x68d6, 0x8fc4a4}, + {0x68d7, 0xdca7}, + {0x68d8, 0xdbf9}, + {0x68d9, 0x8fc4a5}, + {0x68da, 0xc3aa}, + {0x68dc, 0x8fc4a6}, + {0x68dd, 0x8fc4a7}, + {0x68df, 0xc5ef}, + {0x68e0, 0xdcab}, + {0x68e1, 0xdbfc}, + {0x68e3, 0xdca8}, + {0x68e5, 0x8fc4a8}, + {0x68e7, 0xdca2}, + {0x68e8, 0x8fc4a9}, + {0x68ea, 0x8fc4aa}, + {0x68eb, 0x8fc4ab}, + {0x68ec, 0x8fc4ac}, + {0x68ed, 0x8fc4ad}, + {0x68ee, 0xbfb9}, + {0x68ef, 0xdcac}, + {0x68f0, 0x8fc4ae}, + {0x68f1, 0x8fc4af}, + {0x68f2, 0xc0b3}, + {0x68f5, 0x8fc4b0}, + {0x68f6, 0x8fc4b1}, + {0x68f9, 0xdcaa}, + {0x68fa, 0xb4bd}, + {0x68fb, 0x8fc4b2}, + {0x68fc, 0x8fc4b3}, + {0x68fd, 0x8fc4b4}, + {0x6900, 0xcfd0}, + {0x6901, 0xdbf6}, + {0x6904, 0xdca6}, + {0x6905, 0xb0d8}, + {0x6906, 0x8fc4b5}, + {0x6908, 0xdbf8}, + {0x6909, 0x8fc4b6}, + {0x690a, 0x8fc4b7}, + {0x690b, 0xccba}, + {0x690c, 0xdbfd}, + {0x690d, 0xbfa2}, + {0x690e, 0xc4c7}, + {0x690f, 0xdbf3}, + {0x6910, 0x8fc4b8}, + {0x6911, 0x8fc4b9}, + {0x6912, 0xdca5}, + {0x6913, 0x8fc4ba}, + {0x6916, 0x8fc4bb}, + {0x6917, 0x8fc4bc}, + {0x6919, 0xbffa}, + {0x691a, 0xdcaf}, + {0x691b, 0xb3f1}, + {0x691c, 0xb8a1}, + {0x6921, 0xdcb1}, + {0x6922, 0xdbfa}, + {0x6923, 0xdcb0}, + {0x6925, 0xdca9}, + {0x6926, 0xdbfb}, + {0x6928, 0xdcad}, + {0x692a, 0xdcae}, + {0x6930, 0xdcbf}, + {0x6931, 0x8fc4bd}, + {0x6933, 0x8fc4be}, + {0x6934, 0xc6ce}, + {0x6935, 0x8fc4bf}, + {0x6936, 0xdca4}, + {0x6938, 0x8fc4c0}, + {0x6939, 0xdcbb}, + {0x693b, 0x8fc4c1}, + {0x693d, 0xdcbd}, + {0x693f, 0xc4d8}, + {0x6942, 0x8fc4c2}, + {0x6945, 0x8fc4c3}, + {0x6949, 0x8fc4c4}, + {0x694a, 0xcdcc}, + {0x694e, 0x8fc4c5}, + {0x6953, 0xc9f6}, + {0x6954, 0xdcb8}, + {0x6955, 0xc2ca}, + {0x6957, 0x8fc4c6}, + {0x6959, 0xdcbe}, + {0x695a, 0xc1bf}, + {0x695b, 0x8fc4c7}, + {0x695c, 0xdcb5}, + {0x695d, 0xdcc2}, + {0x695e, 0xdcc1}, + {0x6960, 0xc6ef}, + {0x6961, 0xdcc0}, + {0x6962, 0xc6ea}, + {0x6963, 0x8fc4c8}, + {0x6964, 0x8fc4c9}, + {0x6965, 0x8fc4ca}, + {0x6966, 0x8fc4cb}, + {0x6968, 0x8fc4cc}, + {0x6969, 0x8fc4cd}, + {0x696a, 0xdcc4}, + {0x696b, 0xdcb7}, + {0x696c, 0x8fc4ce}, + {0x696d, 0xb6c8}, + {0x696e, 0xdcba}, + {0x696f, 0xbddd}, + {0x6970, 0x8fc4cf}, + {0x6971, 0x8fc4d0}, + {0x6972, 0x8fc4d1}, + {0x6973, 0xc7e0}, + {0x6974, 0xdcbc}, + {0x6975, 0xb6cb}, + {0x6977, 0xdcb4}, + {0x6978, 0xdcb6}, + {0x6979, 0xdcb3}, + {0x697a, 0x8fc4d2}, + {0x697b, 0x8fc4d3}, + {0x697c, 0xcfb0}, + {0x697d, 0xb3da}, + {0x697e, 0xdcb9}, + {0x697f, 0x8fc4d4}, + {0x6980, 0x8fc4d5}, + {0x6981, 0xdcc3}, + {0x6982, 0xb3b5}, + {0x698a, 0xbae7}, + {0x698d, 0x8fc4d6}, + {0x698e, 0xb1dd}, + {0x6991, 0xdcd4}, + {0x6992, 0x8fc4d7}, + {0x6994, 0xcfb1}, + {0x6995, 0xdcd7}, + {0x6996, 0x8fc4d8}, + {0x6998, 0x8fc4d9}, + {0x699b, 0xbfba}, + {0x699c, 0xdcd6}, + {0x69a0, 0xdcd5}, + {0x69a1, 0x8fc4da}, + {0x69a5, 0x8fc4db}, + {0x69a6, 0x8fc4dc}, + {0x69a7, 0xdcd2}, + {0x69a8, 0x8fc4dd}, + {0x69ab, 0x8fc4de}, + {0x69ad, 0x8fc4df}, + {0x69ae, 0xdcc6}, + {0x69af, 0x8fc4e0}, + {0x69b1, 0xdce3}, + {0x69b2, 0xdcc5}, + {0x69b4, 0xdcd8}, + {0x69b7, 0x8fc4e1}, + {0x69b8, 0x8fc4e2}, + {0x69ba, 0x8fc4e3}, + {0x69bb, 0xdcd0}, + {0x69bc, 0x8fc4e4}, + {0x69be, 0xdccb}, + {0x69bf, 0xdcc8}, + {0x69c1, 0xdcc9}, + {0x69c3, 0xdcd1}, + {0x69c5, 0x8fc4e5}, + {0x69c7, 0xf4a2}, + {0x69c8, 0x8fc4e6}, + {0x69ca, 0xdcce}, + {0x69cb, 0xb9bd}, + {0x69cc, 0xc4c8}, + {0x69cd, 0xc1e4}, + {0x69ce, 0xdccc}, + {0x69d0, 0xdcc7}, + {0x69d1, 0x8fc4e7}, + {0x69d3, 0xdcca}, + {0x69d6, 0x8fc4e8}, + {0x69d7, 0x8fc4e9}, + {0x69d8, 0xcdcd}, + {0x69d9, 0xcbea}, + {0x69dd, 0xdccf}, + {0x69de, 0xdcd9}, + {0x69e2, 0x8fc4ea}, + {0x69e5, 0x8fc4eb}, + {0x69e7, 0xdce1}, + {0x69e8, 0xdcda}, + {0x69eb, 0xdce7}, + {0x69ed, 0xdce5}, + {0x69ee, 0x8fc4ec}, + {0x69ef, 0x8fc4ed}, + {0x69f1, 0x8fc4ee}, + {0x69f2, 0xdce0}, + {0x69f3, 0x8fc4ef}, + {0x69f5, 0x8fc4f0}, + {0x69f9, 0xdcdf}, + {0x69fb, 0xc4d0}, + {0x69fd, 0xc1e5}, + {0x69fe, 0x8fc4f1}, + {0x69ff, 0xdcdd}, + {0x6a00, 0x8fc4f2}, + {0x6a01, 0x8fc4f3}, + {0x6a02, 0xdcdb}, + {0x6a03, 0x8fc4f4}, + {0x6a05, 0xdce2}, + {0x6a0a, 0xdce8}, + {0x6a0b, 0xc8f5}, + {0x6a0c, 0xdcee}, + {0x6a0f, 0x8fc4f5}, + {0x6a11, 0x8fc4f6}, + {0x6a12, 0xdce9}, + {0x6a13, 0xdcec}, + {0x6a14, 0xdce6}, + {0x6a15, 0x8fc4f7}, + {0x6a17, 0xc3f4}, + {0x6a19, 0xc9b8}, + {0x6a1a, 0x8fc4f8}, + {0x6a1b, 0xdcdc}, + {0x6a1d, 0x8fc4f9}, + {0x6a1e, 0xdce4}, + {0x6a1f, 0xbec0}, + {0x6a20, 0x8fc4fa}, + {0x6a21, 0xcccf}, + {0x6a22, 0xdcf8}, + {0x6a23, 0xdceb}, + {0x6a24, 0x8fc4fb}, + {0x6a28, 0x8fc4fc}, + {0x6a29, 0xb8a2}, + {0x6a2a, 0xb2a3}, + {0x6a2b, 0xb3df}, + {0x6a2e, 0xdcd3}, + {0x6a30, 0x8fc4fd}, + {0x6a32, 0x8fc4fe}, + {0x6a34, 0x8fc5a1}, + {0x6a35, 0xbec1}, + {0x6a36, 0xdcf0}, + {0x6a37, 0x8fc5a2}, + {0x6a38, 0xdcf7}, + {0x6a39, 0xbcf9}, + {0x6a3a, 0xb3f2}, + {0x6a3b, 0x8fc5a3}, + {0x6a3d, 0xc3ae}, + {0x6a3e, 0x8fc5a4}, + {0x6a3f, 0x8fc5a5}, + {0x6a44, 0xdced}, + {0x6a45, 0x8fc5a6}, + {0x6a46, 0x8fc5a7}, + {0x6a47, 0xdcf2}, + {0x6a48, 0xdcf6}, + {0x6a49, 0x8fc5a8}, + {0x6a4a, 0x8fc5a9}, + {0x6a4b, 0xb6b6}, + {0x6a4e, 0x8fc5aa}, + {0x6a50, 0x8fc5ab}, + {0x6a51, 0x8fc5ac}, + {0x6a52, 0x8fc5ad}, + {0x6a55, 0x8fc5ae}, + {0x6a56, 0x8fc5af}, + {0x6a58, 0xb5cc}, + {0x6a59, 0xdcf4}, + {0x6a5b, 0x8fc5b0}, + {0x6a5f, 0xb5a1}, + {0x6a61, 0xc6cb}, + {0x6a62, 0xdcf3}, + {0x6a64, 0x8fc5b1}, + {0x6a66, 0xdcf5}, + {0x6a67, 0x8fc5b2}, + {0x6a6a, 0x8fc5b3}, + {0x6a71, 0x8fc5b4}, + {0x6a72, 0xdcef}, + {0x6a73, 0x8fc5b5}, + {0x6a78, 0xdcf1}, + {0x6a7e, 0x8fc5b6}, + {0x6a7f, 0xb3e0}, + {0x6a80, 0xc3c9}, + {0x6a81, 0x8fc5b7}, + {0x6a83, 0x8fc5b8}, + {0x6a84, 0xdcfc}, + {0x6a86, 0x8fc5b9}, + {0x6a87, 0x8fc5ba}, + {0x6a89, 0x8fc5bb}, + {0x6a8b, 0x8fc5bc}, + {0x6a8d, 0xdcfa}, + {0x6a8e, 0xb8e9}, + {0x6a90, 0xdcf9}, + {0x6a91, 0x8fc5bd}, + {0x6a97, 0xdda1}, + {0x6a9b, 0x8fc5be}, + {0x6a9c, 0xdbd8}, + {0x6a9d, 0x8fc5bf}, + {0x6a9e, 0x8fc5c0}, + {0x6a9f, 0x8fc5c1}, + {0x6aa0, 0xdcfb}, + {0x6aa2, 0xdcfd}, + {0x6aa3, 0xdcfe}, + {0x6aa5, 0x8fc5c2}, + {0x6aaa, 0xddac}, + {0x6aab, 0x8fc5c3}, + {0x6aac, 0xdda8}, + {0x6aae, 0xdbed}, + {0x6aaf, 0x8fc5c4}, + {0x6ab0, 0x8fc5c5}, + {0x6ab1, 0x8fc5c6}, + {0x6ab3, 0xdda7}, + {0x6ab4, 0x8fc5c7}, + {0x6ab8, 0xdda6}, + {0x6abb, 0xdda3}, + {0x6abd, 0x8fc5c8}, + {0x6abe, 0x8fc5c9}, + {0x6abf, 0x8fc5ca}, + {0x6ac1, 0xdcea}, + {0x6ac2, 0xdda5}, + {0x6ac3, 0xdda4}, + {0x6ac6, 0x8fc5cb}, + {0x6ac8, 0x8fc5cd}, + {0x6ac9, 0x8fc5cc}, + {0x6acc, 0x8fc5ce}, + {0x6ad0, 0x8fc5cf}, + {0x6ad1, 0xddaa}, + {0x6ad3, 0xcfa6}, + {0x6ad4, 0x8fc5d0}, + {0x6ad5, 0x8fc5d1}, + {0x6ad6, 0x8fc5d2}, + {0x6ada, 0xddad}, + {0x6adb, 0xb6fb}, + {0x6adc, 0x8fc5d3}, + {0x6add, 0x8fc5d4}, + {0x6ade, 0xdda9}, + {0x6adf, 0xddab}, + {0x6ae4, 0x8fc5d5}, + {0x6ae7, 0x8fc5d6}, + {0x6ae8, 0xc8a7}, + {0x6aea, 0xddae}, + {0x6aec, 0x8fc5d7}, + {0x6af0, 0x8fc5d8}, + {0x6af1, 0x8fc5d9}, + {0x6af2, 0x8fc5da}, + {0x6afa, 0xddb2}, + {0x6afb, 0xddaf}, + {0x6afc, 0x8fc5db}, + {0x6afd, 0x8fc5dc}, + {0x6b02, 0x8fc5dd}, + {0x6b03, 0x8fc5de}, + {0x6b04, 0xcdf3}, + {0x6b05, 0xddb0}, + {0x6b06, 0x8fc5df}, + {0x6b07, 0x8fc5e0}, + {0x6b09, 0x8fc5e1}, + {0x6b0a, 0xdcde}, + {0x6b0f, 0x8fc5e2}, + {0x6b10, 0x8fc5e3}, + {0x6b11, 0x8fc5e4}, + {0x6b12, 0xddb3}, + {0x6b16, 0xddb4}, + {0x6b17, 0x8fc5e5}, + {0x6b1b, 0x8fc5e6}, + {0x6b1d, 0xb1b5}, + {0x6b1e, 0x8fc5e7}, + {0x6b1f, 0xddb6}, + {0x6b20, 0xb7e7}, + {0x6b21, 0xbca1}, + {0x6b23, 0xb6d5}, + {0x6b24, 0x8fc5e8}, + {0x6b27, 0xb2a4}, + {0x6b28, 0x8fc5e9}, + {0x6b2b, 0x8fc5ea}, + {0x6b2c, 0x8fc5eb}, + {0x6b2f, 0x8fc5ec}, + {0x6b32, 0xcddf}, + {0x6b35, 0x8fc5ed}, + {0x6b36, 0x8fc5ee}, + {0x6b37, 0xddb8}, + {0x6b38, 0xddb7}, + {0x6b39, 0xddba}, + {0x6b3a, 0xb5bd}, + {0x6b3b, 0x8fc5ef}, + {0x6b3d, 0xb6d6}, + {0x6b3e, 0xb4be}, + {0x6b3f, 0x8fc5f0}, + {0x6b43, 0xddbd}, + {0x6b46, 0x8fc5f1}, + {0x6b47, 0xddbc}, + {0x6b49, 0xddbe}, + {0x6b4a, 0x8fc5f2}, + {0x6b4c, 0xb2ce}, + {0x6b4d, 0x8fc5f3}, + {0x6b4e, 0xc3b7}, + {0x6b50, 0xddbf}, + {0x6b52, 0x8fc5f4}, + {0x6b53, 0xb4bf}, + {0x6b54, 0xddc1}, + {0x6b56, 0x8fc5f5}, + {0x6b58, 0x8fc5f6}, + {0x6b59, 0xddc0}, + {0x6b5b, 0xddc2}, + {0x6b5d, 0x8fc5f7}, + {0x6b5f, 0xddc3}, + {0x6b60, 0x8fc5f8}, + {0x6b61, 0xddc4}, + {0x6b62, 0xbbdf}, + {0x6b63, 0xc0b5}, + {0x6b64, 0xbaa1}, + {0x6b66, 0xc9f0}, + {0x6b67, 0x8fc5f9}, + {0x6b69, 0xcae2}, + {0x6b6a, 0xcfc4}, + {0x6b6b, 0x8fc5fa}, + {0x6b6e, 0x8fc5fb}, + {0x6b6f, 0xbbf5}, + {0x6b70, 0x8fc5fc}, + {0x6b73, 0xbad0}, + {0x6b74, 0xcef2}, + {0x6b75, 0x8fc5fd}, + {0x6b78, 0xddc5}, + {0x6b79, 0xddc6}, + {0x6b7b, 0xbbe0}, + {0x6b7d, 0x8fc5fe}, + {0x6b7e, 0x8fc6a1}, + {0x6b7f, 0xddc7}, + {0x6b80, 0xddc8}, + {0x6b82, 0x8fc6a2}, + {0x6b83, 0xddca}, + {0x6b84, 0xddc9}, + {0x6b85, 0x8fc6a3}, + {0x6b86, 0xcbd8}, + {0x6b89, 0xbdde}, + {0x6b8a, 0xbcec}, + {0x6b8b, 0xbbc4}, + {0x6b8d, 0xddcb}, + {0x6b95, 0xddcd}, + {0x6b96, 0xbfa3}, + {0x6b97, 0x8fc6a4}, + {0x6b98, 0xddcc}, + {0x6b9b, 0x8fc6a5}, + {0x6b9e, 0xddce}, + {0x6b9f, 0x8fc6a6}, + {0x6ba0, 0x8fc6a7}, + {0x6ba2, 0x8fc6a8}, + {0x6ba3, 0x8fc6a9}, + {0x6ba4, 0xddcf}, + {0x6ba8, 0x8fc6aa}, + {0x6ba9, 0x8fc6ab}, + {0x6baa, 0xddd0}, + {0x6bab, 0xddd1}, + {0x6bac, 0x8fc6ac}, + {0x6bad, 0x8fc6ad}, + {0x6bae, 0x8fc6ae}, + {0x6baf, 0xddd2}, + {0x6bb0, 0x8fc6af}, + {0x6bb1, 0xddd4}, + {0x6bb2, 0xddd3}, + {0x6bb3, 0xddd5}, + {0x6bb4, 0xb2a5}, + {0x6bb5, 0xc3ca}, + {0x6bb7, 0xddd6}, + {0x6bb8, 0x8fc6b0}, + {0x6bb9, 0x8fc6b1}, + {0x6bba, 0xbba6}, + {0x6bbb, 0xb3cc}, + {0x6bbc, 0xddd7}, + {0x6bbd, 0x8fc6b2}, + {0x6bbe, 0x8fc6b3}, + {0x6bbf, 0xc5c2}, + {0x6bc0, 0xd4cc}, + {0x6bc3, 0x8fc6b4}, + {0x6bc4, 0x8fc6b5}, + {0x6bc5, 0xb5a3}, + {0x6bc6, 0xddd8}, + {0x6bc9, 0x8fc6b6}, + {0x6bcb, 0xddd9}, + {0x6bcc, 0x8fc6b7}, + {0x6bcd, 0xcaec}, + {0x6bce, 0xcbe8}, + {0x6bd2, 0xc6c7}, + {0x6bd3, 0xddda}, + {0x6bd4, 0xc8e6}, + {0x6bd6, 0x8fc6b8}, + {0x6bd8, 0xc8fb}, + {0x6bda, 0x8fc6b9}, + {0x6bdb, 0xccd3}, + {0x6bdf, 0xdddb}, + {0x6be1, 0x8fc6ba}, + {0x6be3, 0x8fc6bb}, + {0x6be6, 0x8fc6bc}, + {0x6be7, 0x8fc6bd}, + {0x6beb, 0xdddd}, + {0x6bec, 0xdddc}, + {0x6bee, 0x8fc6be}, + {0x6bef, 0xdddf}, + {0x6bf1, 0x8fc6bf}, + {0x6bf3, 0xddde}, + {0x6bf7, 0x8fc6c0}, + {0x6bf9, 0x8fc6c1}, + {0x6bff, 0x8fc6c2}, + {0x6c02, 0x8fc6c3}, + {0x6c04, 0x8fc6c4}, + {0x6c05, 0x8fc6c5}, + {0x6c08, 0xdde1}, + {0x6c09, 0x8fc6c6}, + {0x6c0d, 0x8fc6c7}, + {0x6c0e, 0x8fc6c8}, + {0x6c0f, 0xbbe1}, + {0x6c10, 0x8fc6c9}, + {0x6c11, 0xccb1}, + {0x6c12, 0x8fc6ca}, + {0x6c13, 0xdde2}, + {0x6c14, 0xdde3}, + {0x6c17, 0xb5a4}, + {0x6c19, 0x8fc6cb}, + {0x6c1b, 0xdde4}, + {0x6c1f, 0x8fc6cc}, + {0x6c23, 0xdde6}, + {0x6c24, 0xdde5}, + {0x6c26, 0x8fc6cd}, + {0x6c27, 0x8fc6ce}, + {0x6c28, 0x8fc6cf}, + {0x6c2c, 0x8fc6d0}, + {0x6c2e, 0x8fc6d1}, + {0x6c33, 0x8fc6d2}, + {0x6c34, 0xbfe5}, + {0x6c35, 0x8fc6d3}, + {0x6c36, 0x8fc6d4}, + {0x6c37, 0xc9b9}, + {0x6c38, 0xb1ca}, + {0x6c3a, 0x8fc6d5}, + {0x6c3b, 0x8fc6d6}, + {0x6c3e, 0xc8c5}, + {0x6c3f, 0x8fc6d7}, + {0x6c40, 0xc4f5}, + {0x6c41, 0xbdc1}, + {0x6c42, 0xb5e1}, + {0x6c4a, 0x8fc6d8}, + {0x6c4b, 0x8fc6d9}, + {0x6c4d, 0x8fc6da}, + {0x6c4e, 0xc8c6}, + {0x6c4f, 0x8fc6db}, + {0x6c50, 0xbcae}, + {0x6c52, 0x8fc6dc}, + {0x6c54, 0x8fc6dd}, + {0x6c55, 0xdde8}, + {0x6c57, 0xb4c0}, + {0x6c59, 0x8fc6de}, + {0x6c5a, 0xb1f8}, + {0x6c5b, 0x8fc6df}, + {0x6c5c, 0x8fc6e0}, + {0x6c5d, 0xc6f2}, + {0x6c5e, 0xdde7}, + {0x6c5f, 0xb9be}, + {0x6c60, 0xc3d3}, + {0x6c62, 0xdde9}, + {0x6c67, 0x8fc7b6}, + {0x6c68, 0xddf1}, + {0x6c6a, 0xddea}, + {0x6c6b, 0x8fc6e1}, + {0x6c6d, 0x8fc6e2}, + {0x6c6f, 0x8fc6e3}, + {0x6c70, 0xc2c1}, + {0x6c72, 0xb5e2}, + {0x6c73, 0xddf2}, + {0x6c74, 0x8fc6e4}, + {0x6c76, 0x8fc6e5}, + {0x6c78, 0x8fc6e6}, + {0x6c79, 0x8fc6e7}, + {0x6c7a, 0xb7e8}, + {0x6c7b, 0x8fc6e8}, + {0x6c7d, 0xb5a5}, + {0x6c7e, 0xddf0}, + {0x6c81, 0xddee}, + {0x6c82, 0xddeb}, + {0x6c83, 0xcde0}, + {0x6c85, 0x8fc6e9}, + {0x6c86, 0x8fc6ea}, + {0x6c87, 0x8fc6eb}, + {0x6c88, 0xc4c0}, + {0x6c89, 0x8fc6ec}, + {0x6c8c, 0xc6d9}, + {0x6c8d, 0xddec}, + {0x6c90, 0xddf4}, + {0x6c92, 0xddf3}, + {0x6c93, 0xb7a3}, + {0x6c94, 0x8fc6ed}, + {0x6c95, 0x8fc6ee}, + {0x6c96, 0xb2ad}, + {0x6c97, 0x8fc6ef}, + {0x6c98, 0x8fc6f0}, + {0x6c99, 0xbabb}, + {0x6c9a, 0xdded}, + {0x6c9b, 0xddef}, + {0x6c9c, 0x8fc6f1}, + {0x6c9f, 0x8fc6f2}, + {0x6ca1, 0xcbd7}, + {0x6ca2, 0xc2f4}, + {0x6cab, 0xcbf7}, + {0x6cae, 0xddfc}, + {0x6cb0, 0x8fc6f3}, + {0x6cb1, 0xddfd}, + {0x6cb2, 0x8fc6f4}, + {0x6cb3, 0xb2cf}, + {0x6cb4, 0x8fc6f5}, + {0x6cb8, 0xcaa8}, + {0x6cb9, 0xccfd}, + {0x6cba, 0xdea1}, + {0x6cbb, 0xbca3}, + {0x6cbc, 0xbec2}, + {0x6cbd, 0xddf8}, + {0x6cbe, 0xddfe}, + {0x6cbf, 0xb1e8}, + {0x6cc1, 0xb6b7}, + {0x6cc2, 0x8fc6f6}, + {0x6cc4, 0xddf5}, + {0x6cc5, 0xddfa}, + {0x6cc6, 0x8fc6f7}, + {0x6cc9, 0xc0f4}, + {0x6cca, 0xc7f1}, + {0x6ccc, 0xc8e7}, + {0x6ccd, 0x8fc6f8}, + {0x6ccf, 0x8fc6f9}, + {0x6cd0, 0x8fc6fa}, + {0x6cd1, 0x8fc6fb}, + {0x6cd2, 0x8fc6fc}, + {0x6cd3, 0xddf7}, + {0x6cd4, 0x8fc6fd}, + {0x6cd5, 0xcba1}, + {0x6cd6, 0x8fc6fe}, + {0x6cd7, 0xddf9}, + {0x6cd9, 0xdea4}, + {0x6cda, 0x8fc7a1}, + {0x6cdb, 0xdea2}, + {0x6cdc, 0x8fc7a2}, + {0x6cdd, 0xddfb}, + {0x6ce0, 0x8fc7a3}, + {0x6ce1, 0xcba2}, + {0x6ce2, 0xc7c8}, + {0x6ce3, 0xb5e3}, + {0x6ce5, 0xc5a5}, + {0x6ce7, 0x8fc7a4}, + {0x6ce8, 0xc3ed}, + {0x6ce9, 0x8fc7a5}, + {0x6cea, 0xdea5}, + {0x6ceb, 0x8fc7a6}, + {0x6cec, 0x8fc7a7}, + {0x6cee, 0x8fc7a8}, + {0x6cef, 0xdea3}, + {0x6cf0, 0xc2d9}, + {0x6cf1, 0xddf6}, + {0x6cf2, 0x8fc7a9}, + {0x6cf3, 0xb1cb}, + {0x6cf4, 0x8fc7aa}, + {0x6d04, 0x8fc7ab}, + {0x6d07, 0x8fc7ac}, + {0x6d0a, 0x8fc7ad}, + {0x6d0b, 0xcdce}, + {0x6d0c, 0xdeb0}, + {0x6d0e, 0x8fc7ae}, + {0x6d0f, 0x8fc7af}, + {0x6d11, 0x8fc7b0}, + {0x6d12, 0xdeaf}, + {0x6d13, 0x8fc7b1}, + {0x6d17, 0xc0f6}, + {0x6d19, 0xdeac}, + {0x6d1a, 0x8fc7b2}, + {0x6d1b, 0xcdec}, + {0x6d1e, 0xc6b6}, + {0x6d1f, 0xdea6}, + {0x6d25, 0xc4c5}, + {0x6d26, 0x8fc7b3}, + {0x6d27, 0x8fc7b4}, + {0x6d28, 0x8fc7b5}, + {0x6d29, 0xb1cc}, + {0x6d2a, 0xb9bf}, + {0x6d2b, 0xdea9}, + {0x6d2e, 0x8fc7b7}, + {0x6d2f, 0x8fc7b8}, + {0x6d31, 0x8fc7b9}, + {0x6d32, 0xbda7}, + {0x6d33, 0xdeae}, + {0x6d35, 0xdead}, + {0x6d36, 0xdea8}, + {0x6d38, 0xdeab}, + {0x6d39, 0x8fc7ba}, + {0x6d3b, 0xb3e8}, + {0x6d3c, 0x8fc7bb}, + {0x6d3d, 0xdeaa}, + {0x6d3e, 0xc7c9}, + {0x6d3f, 0x8fc7bc}, + {0x6d41, 0xceae}, + {0x6d44, 0xbef4}, + {0x6d45, 0xc0f5}, + {0x6d57, 0x8fc7bd}, + {0x6d59, 0xdeb6}, + {0x6d5a, 0xdeb4}, + {0x6d5c, 0xc9cd}, + {0x6d5e, 0x8fc7be}, + {0x6d5f, 0x8fc7bf}, + {0x6d61, 0x8fc7c0}, + {0x6d63, 0xdeb1}, + {0x6d64, 0xdeb3}, + {0x6d65, 0x8fc7c1}, + {0x6d66, 0xb1ba}, + {0x6d67, 0x8fc7c2}, + {0x6d69, 0xb9c0}, + {0x6d6a, 0xcfb2}, + {0x6d6c, 0xb3bd}, + {0x6d6e, 0xc9e2}, + {0x6d6f, 0x8fc7c3}, + {0x6d70, 0x8fc7c4}, + {0x6d74, 0xcde1}, + {0x6d77, 0xb3a4}, + {0x6d78, 0xbfbb}, + {0x6d79, 0xdeb5}, + {0x6d7c, 0x8fc7c5}, + {0x6d82, 0x8fc7c6}, + {0x6d85, 0xdeba}, + {0x6d87, 0x8fc7c7}, + {0x6d88, 0xbec3}, + {0x6d8c, 0xcdb0}, + {0x6d8e, 0xdeb7}, + {0x6d91, 0x8fc7c8}, + {0x6d92, 0x8fc7c9}, + {0x6d93, 0xdeb2}, + {0x6d94, 0x8fc7ca}, + {0x6d95, 0xdeb8}, + {0x6d96, 0x8fc7cb}, + {0x6d97, 0x8fc7cc}, + {0x6d98, 0x8fc7cd}, + {0x6d99, 0xcede}, + {0x6d9b, 0xc5f3}, + {0x6d9c, 0xc6c2}, + {0x6daa, 0x8fc7ce}, + {0x6dac, 0x8fc7cf}, + {0x6daf, 0xb3b6}, + {0x6db2, 0xb1d5}, + {0x6db4, 0x8fc7d0}, + {0x6db5, 0xdebe}, + {0x6db7, 0x8fc7d1}, + {0x6db8, 0xdec1}, + {0x6db9, 0x8fc7d2}, + {0x6dbc, 0xcec3}, + {0x6dbd, 0x8fc7d3}, + {0x6dbf, 0x8fc7d4}, + {0x6dc0, 0xcde4}, + {0x6dc4, 0x8fc7d5}, + {0x6dc5, 0xdec8}, + {0x6dc6, 0xdec2}, + {0x6dc7, 0xdebf}, + {0x6dc8, 0x8fc7d6}, + {0x6dca, 0x8fc7d7}, + {0x6dcb, 0xced4}, + {0x6dcc, 0xdec5}, + {0x6dce, 0x8fc7d8}, + {0x6dcf, 0x8fc7d9}, + {0x6dd1, 0xbdca}, + {0x6dd2, 0xdec7}, + {0x6dd5, 0xdecc}, + {0x6dd6, 0x8fc7da}, + {0x6dd8, 0xc5f1}, + {0x6dd9, 0xdeca}, + {0x6ddb, 0x8fc7db}, + {0x6ddd, 0x8fc7dc}, + {0x6dde, 0xdec4}, + {0x6ddf, 0x8fc7dd}, + {0x6de0, 0x8fc7de}, + {0x6de1, 0xc3b8}, + {0x6de2, 0x8fc7df}, + {0x6de4, 0xdecb}, + {0x6de5, 0x8fc7e0}, + {0x6de6, 0xdec0}, + {0x6de8, 0xdec6}, + {0x6de9, 0x8fc7e1}, + {0x6dea, 0xdecd}, + {0x6deb, 0xb0fc}, + {0x6dec, 0xdec3}, + {0x6dee, 0xdece}, + {0x6def, 0x8fc7e2}, + {0x6df0, 0x8fc7e3}, + {0x6df1, 0xbfbc}, + {0x6df3, 0xbddf}, + {0x6df4, 0x8fc7e4}, + {0x6df5, 0xcaa5}, + {0x6df6, 0x8fc7e5}, + {0x6df7, 0xbaae}, + {0x6df9, 0xdebb}, + {0x6dfa, 0xdec9}, + {0x6dfb, 0xc5ba}, + {0x6dfc, 0x8fc7e6}, + {0x6e00, 0x8fc7e7}, + {0x6e04, 0x8fc7e8}, + {0x6e05, 0xc0b6}, + {0x6e07, 0xb3e9}, + {0x6e08, 0xbad1}, + {0x6e09, 0xbec4}, + {0x6e0a, 0xdebd}, + {0x6e0b, 0xbdc2}, + {0x6e13, 0xb7cc}, + {0x6e15, 0xdebc}, + {0x6e19, 0xded2}, + {0x6e1a, 0xbded}, + {0x6e1b, 0xb8ba}, + {0x6e1d, 0xdee1}, + {0x6e1e, 0x8fc7e9}, + {0x6e1f, 0xdedb}, + {0x6e20, 0xb5f4}, + {0x6e21, 0xc5cf}, + {0x6e22, 0x8fc7ea}, + {0x6e23, 0xded6}, + {0x6e24, 0xdedf}, + {0x6e25, 0xb0af}, + {0x6e26, 0xb1b2}, + {0x6e27, 0x8fc7eb}, + {0x6e29, 0xb2b9}, + {0x6e2b, 0xded8}, + {0x6e2c, 0xc2ac}, + {0x6e2d, 0xdecf}, + {0x6e2e, 0xded1}, + {0x6e2f, 0xb9c1}, + {0x6e32, 0x8fc7ec}, + {0x6e36, 0x8fc7ed}, + {0x6e38, 0xdee2}, + {0x6e39, 0x8fc7ee}, + {0x6e3a, 0xdedd}, + {0x6e3b, 0x8fc7ef}, + {0x6e3c, 0x8fc7f0}, + {0x6e3e, 0xded5}, + {0x6e43, 0xdedc}, + {0x6e44, 0x8fc7f1}, + {0x6e45, 0x8fc7f2}, + {0x6e48, 0x8fc7f3}, + {0x6e49, 0x8fc7f4}, + {0x6e4a, 0xccab}, + {0x6e4b, 0x8fc7f5}, + {0x6e4d, 0xdeda}, + {0x6e4e, 0xdede}, + {0x6e4f, 0x8fc7f6}, + {0x6e51, 0x8fc7f7}, + {0x6e52, 0x8fc7f8}, + {0x6e53, 0x8fc7f9}, + {0x6e54, 0x8fc7fa}, + {0x6e56, 0xb8d0}, + {0x6e57, 0x8fc7fb}, + {0x6e58, 0xbec5}, + {0x6e5b, 0xc3b9}, + {0x6e5c, 0x8fc7fc}, + {0x6e5d, 0x8fc7fd}, + {0x6e5e, 0x8fc7fe}, + {0x6e5f, 0xded4}, + {0x6e62, 0x8fc8a1}, + {0x6e63, 0x8fc8a2}, + {0x6e67, 0xcdaf}, + {0x6e68, 0x8fc8a3}, + {0x6e6b, 0xded7}, + {0x6e6e, 0xded0}, + {0x6e6f, 0xc5f2}, + {0x6e72, 0xded3}, + {0x6e73, 0x8fc8a4}, + {0x6e76, 0xded9}, + {0x6e7b, 0x8fc8a5}, + {0x6e7d, 0x8fc8a6}, + {0x6e7e, 0xcfd1}, + {0x6e7f, 0xbcbe}, + {0x6e80, 0xcbfe}, + {0x6e82, 0xdee3}, + {0x6e8c, 0xc8ae}, + {0x6e8d, 0x8fc8a7}, + {0x6e8f, 0xdeef}, + {0x6e90, 0xb8bb}, + {0x6e93, 0x8fc8a8}, + {0x6e96, 0xbde0}, + {0x6e98, 0xdee5}, + {0x6e99, 0x8fc8a9}, + {0x6e9c, 0xceaf}, + {0x6e9d, 0xb9c2}, + {0x6e9f, 0xdef2}, + {0x6ea0, 0x8fc8aa}, + {0x6ea2, 0xb0ee}, + {0x6ea5, 0xdef0}, + {0x6ea7, 0x8fc8ab}, + {0x6eaa, 0xdee4}, + {0x6ead, 0x8fc8ac}, + {0x6eae, 0x8fc8ad}, + {0x6eaf, 0xdeea}, + {0x6eb1, 0x8fc8ae}, + {0x6eb2, 0xdeec}, + {0x6eb3, 0x8fc8af}, + {0x6eb6, 0xcdcf}, + {0x6eb7, 0xdee7}, + {0x6eba, 0xc5ae}, + {0x6ebb, 0x8fc8b0}, + {0x6ebd, 0xdee9}, + {0x6ebf, 0x8fc8b1}, + {0x6ec0, 0x8fc8b2}, + {0x6ec1, 0x8fc8b3}, + {0x6ec2, 0xdef1}, + {0x6ec3, 0x8fc8b4}, + {0x6ec4, 0xdeeb}, + {0x6ec5, 0xccc7}, + {0x6ec7, 0x8fc8b5}, + {0x6ec8, 0x8fc8b6}, + {0x6ec9, 0xdee6}, + {0x6eca, 0x8fc8b7}, + {0x6ecb, 0xbca2}, + {0x6ecc, 0xdefe}, + {0x6ecd, 0x8fc8b8}, + {0x6ece, 0x8fc8b9}, + {0x6ecf, 0x8fc8ba}, + {0x6ed1, 0xb3ea}, + {0x6ed3, 0xdee8}, + {0x6ed4, 0xdeed}, + {0x6ed5, 0xdeee}, + {0x6edd, 0xc2ec}, + {0x6ede, 0xc2da}, + {0x6eeb, 0x8fc8bb}, + {0x6eec, 0xdef6}, + {0x6eed, 0x8fc8bc}, + {0x6eee, 0x8fc8bd}, + {0x6eef, 0xdefc}, + {0x6ef2, 0xdefa}, + {0x6ef4, 0xc5a9}, + {0x6ef7, 0xdfa3}, + {0x6ef8, 0xdef7}, + {0x6ef9, 0x8fc8be}, + {0x6efb, 0x8fc8bf}, + {0x6efd, 0x8fc8c0}, + {0x6efe, 0xdef8}, + {0x6eff, 0xdee0}, + {0x6f01, 0xb5f9}, + {0x6f02, 0xc9ba}, + {0x6f04, 0x8fc8c1}, + {0x6f06, 0xbcbf}, + {0x6f08, 0x8fc8c2}, + {0x6f09, 0xb9f7}, + {0x6f0a, 0x8fc8c3}, + {0x6f0c, 0x8fc8c4}, + {0x6f0d, 0x8fc8c5}, + {0x6f0f, 0xcfb3}, + {0x6f11, 0xdef4}, + {0x6f13, 0xdfa2}, + {0x6f14, 0xb1e9}, + {0x6f15, 0xc1e6}, + {0x6f16, 0x8fc8c6}, + {0x6f18, 0x8fc8c7}, + {0x6f1a, 0x8fc8c8}, + {0x6f1b, 0x8fc8c9}, + {0x6f20, 0xc7f9}, + {0x6f22, 0xb4c1}, + {0x6f23, 0xcefa}, + {0x6f26, 0x8fc8ca}, + {0x6f29, 0x8fc8cb}, + {0x6f2a, 0x8fc8cc}, + {0x6f2b, 0xcca1}, + {0x6f2c, 0xc4d2}, + {0x6f2d, 0x8fc8d3}, + {0x6f2f, 0x8fc8cd}, + {0x6f30, 0x8fc8ce}, + {0x6f31, 0xdefb}, + {0x6f32, 0xdefd}, + {0x6f33, 0x8fc8cf}, + {0x6f36, 0x8fc8d0}, + {0x6f38, 0xc1b2}, + {0x6f3b, 0x8fc8d1}, + {0x6f3c, 0x8fc8d2}, + {0x6f3e, 0xdfa1}, + {0x6f3f, 0xdef9}, + {0x6f41, 0xdef3}, + {0x6f45, 0xb4c3}, + {0x6f4f, 0x8fc8d4}, + {0x6f51, 0x8fc8d5}, + {0x6f52, 0x8fc8d6}, + {0x6f53, 0x8fc8d7}, + {0x6f54, 0xb7e9}, + {0x6f57, 0x8fc8d8}, + {0x6f58, 0xdfaf}, + {0x6f59, 0x8fc8d9}, + {0x6f5a, 0x8fc8da}, + {0x6f5b, 0xdfaa}, + {0x6f5c, 0xc0f8}, + {0x6f5d, 0x8fc8db}, + {0x6f5e, 0x8fc8dc}, + {0x6f5f, 0xb3e3}, + {0x6f61, 0x8fc8dd}, + {0x6f62, 0x8fc8de}, + {0x6f64, 0xbde1}, + {0x6f66, 0xdfb3}, + {0x6f68, 0x8fc8df}, + {0x6f6c, 0x8fc8e0}, + {0x6f6d, 0xdfac}, + {0x6f6e, 0xc4ac}, + {0x6f6f, 0xdfa9}, + {0x6f70, 0xc4d9}, + {0x6f74, 0xdfcc}, + {0x6f78, 0xdfa6}, + {0x6f7a, 0xdfa5}, + {0x6f7c, 0xdfae}, + {0x6f7d, 0x8fc8e1}, + {0x6f7e, 0x8fc8e2}, + {0x6f80, 0xdfa8}, + {0x6f81, 0xdfa7}, + {0x6f82, 0xdfad}, + {0x6f83, 0x8fc8e3}, + {0x6f84, 0xc0a1}, + {0x6f86, 0xdfa4}, + {0x6f87, 0x8fc8e4}, + {0x6f88, 0x8fc8e5}, + {0x6f8b, 0x8fc8e6}, + {0x6f8c, 0x8fc8e7}, + {0x6f8d, 0x8fc8e8}, + {0x6f8e, 0xdfb0}, + {0x6f90, 0x8fc8e9}, + {0x6f91, 0xdfb1}, + {0x6f92, 0x8fc8ea}, + {0x6f93, 0x8fc8eb}, + {0x6f94, 0x8fc8ec}, + {0x6f96, 0x8fc8ed}, + {0x6f97, 0xb4c2}, + {0x6f9a, 0x8fc8ee}, + {0x6f9f, 0x8fc8ef}, + {0x6fa0, 0x8fc8f0}, + {0x6fa1, 0xdfb6}, + {0x6fa3, 0xdfb5}, + {0x6fa4, 0xdfb7}, + {0x6fa5, 0x8fc8f1}, + {0x6fa6, 0x8fc8f2}, + {0x6fa7, 0x8fc8f3}, + {0x6fa8, 0x8fc8f4}, + {0x6faa, 0xdfba}, + {0x6fae, 0x8fc8f5}, + {0x6faf, 0x8fc8f6}, + {0x6fb0, 0x8fc8f7}, + {0x6fb1, 0xc5c3}, + {0x6fb3, 0xdfb4}, + {0x6fb5, 0x8fc8f8}, + {0x6fb6, 0x8fc8f9}, + {0x6fb9, 0xdfb8}, + {0x6fbc, 0x8fc8fa}, + {0x6fc0, 0xb7e3}, + {0x6fc1, 0xc2f9}, + {0x6fc2, 0xdfb2}, + {0x6fc3, 0xc7bb}, + {0x6fc5, 0x8fc8fb}, + {0x6fc6, 0xdfb9}, + {0x6fc7, 0x8fc8fc}, + {0x6fc8, 0x8fc8fd}, + {0x6fca, 0x8fc8fe}, + {0x6fd4, 0xdfbe}, + {0x6fd5, 0xdfbc}, + {0x6fd8, 0xdfbf}, + {0x6fda, 0x8fc9a1}, + {0x6fdb, 0xdfc2}, + {0x6fde, 0x8fc9a2}, + {0x6fdf, 0xdfbb}, + {0x6fe0, 0xb9ea}, + {0x6fe1, 0xc7a8}, + {0x6fe4, 0xdeb9}, + {0x6fe8, 0x8fc9a3}, + {0x6fe9, 0x8fc9a4}, + {0x6feb, 0xcdf4}, + {0x6fec, 0xdfbd}, + {0x6fee, 0xdfc1}, + {0x6fef, 0xc2f5}, + {0x6ff0, 0x8fc9a5}, + {0x6ff1, 0xdfc0}, + {0x6ff3, 0xdfab}, + {0x6ff5, 0x8fc9a6}, + {0x6ff6, 0xefe9}, + {0x6ff9, 0x8fc9a7}, + {0x6ffa, 0xdfc5}, + {0x6ffc, 0x8fc9a8}, + {0x6ffd, 0x8fc9a9}, + {0x6ffe, 0xdfc9}, + {0x7000, 0x8fc9aa}, + {0x7001, 0xdfc7}, + {0x7005, 0x8fc9ab}, + {0x7006, 0x8fc9ac}, + {0x7007, 0x8fc9ad}, + {0x7009, 0xdfc3}, + {0x700b, 0xdfc4}, + {0x700d, 0x8fc9ae}, + {0x700f, 0xdfc8}, + {0x7011, 0xdfc6}, + {0x7015, 0xc9ce}, + {0x7017, 0x8fc9af}, + {0x7018, 0xdfce}, + {0x701a, 0xdfcb}, + {0x701b, 0xdfca}, + {0x701d, 0xdfcd}, + {0x701e, 0xc6d4}, + {0x701f, 0xdfcf}, + {0x7020, 0x8fc9b0}, + {0x7023, 0x8fc9b1}, + {0x7026, 0xc3f5}, + {0x7027, 0xc2ed}, + {0x702c, 0xc0a5}, + {0x702f, 0x8fc9b2}, + {0x7030, 0xdfd0}, + {0x7032, 0xdfd2}, + {0x7034, 0x8fc9b3}, + {0x7037, 0x8fc9b4}, + {0x7039, 0x8fc9b5}, + {0x703c, 0x8fc9b6}, + {0x703e, 0xdfd1}, + {0x7043, 0x8fc9b7}, + {0x7044, 0x8fc9b8}, + {0x7048, 0x8fc9b9}, + {0x7049, 0x8fc9ba}, + {0x704a, 0x8fc9bb}, + {0x704b, 0x8fc9bc}, + {0x704c, 0xdef5}, + {0x704e, 0x8fc9c1}, + {0x7051, 0xdfd3}, + {0x7054, 0x8fc9bd}, + {0x7055, 0x8fc9be}, + {0x7058, 0xc6e7}, + {0x705d, 0x8fc9bf}, + {0x705e, 0x8fc9c0}, + {0x7063, 0xdfd4}, + {0x7064, 0x8fc9c2}, + {0x7065, 0x8fc9c3}, + {0x706b, 0xb2d0}, + {0x706c, 0x8fc9c4}, + {0x706e, 0x8fc9c5}, + {0x706f, 0xc5f4}, + {0x7070, 0xb3a5}, + {0x7075, 0x8fc9c6}, + {0x7076, 0x8fc9c7}, + {0x7078, 0xb5e4}, + {0x707c, 0xbcde}, + {0x707d, 0xbad2}, + {0x707e, 0x8fc9c8}, + {0x7081, 0x8fc9c9}, + {0x7085, 0x8fc9ca}, + {0x7086, 0x8fc9cb}, + {0x7089, 0xcfa7}, + {0x708a, 0xbfe6}, + {0x708e, 0xb1ea}, + {0x7092, 0xdfd6}, + {0x7094, 0x8fc9cc}, + {0x7095, 0x8fc9cd}, + {0x7096, 0x8fc9ce}, + {0x7097, 0x8fc9cf}, + {0x7098, 0x8fc9d0}, + {0x7099, 0xdfd5}, + {0x709b, 0x8fc9d1}, + {0x70a4, 0x8fc9d2}, + {0x70ab, 0x8fc9d3}, + {0x70ac, 0xdfd9}, + {0x70ad, 0xc3ba}, + {0x70ae, 0xdfdc}, + {0x70af, 0xdfd7}, + {0x70b0, 0x8fc9d4}, + {0x70b1, 0x8fc9d5}, + {0x70b3, 0xdfdb}, + {0x70b4, 0x8fc9d6}, + {0x70b7, 0x8fc9d7}, + {0x70b8, 0xdfda}, + {0x70b9, 0xc5c0}, + {0x70ba, 0xb0d9}, + {0x70c8, 0xcef5}, + {0x70ca, 0x8fc9d8}, + {0x70cb, 0xdfde}, + {0x70cf, 0xb1a8}, + {0x70d1, 0x8fc9d9}, + {0x70d3, 0x8fc9da}, + {0x70d4, 0x8fc9db}, + {0x70d5, 0x8fc9dc}, + {0x70d6, 0x8fc9dd}, + {0x70d8, 0x8fc9de}, + {0x70d9, 0xdfe0}, + {0x70dc, 0x8fc9df}, + {0x70dd, 0xdfdf}, + {0x70df, 0xdfdd}, + {0x70e4, 0x8fc9e0}, + {0x70f1, 0xdfd8}, + {0x70f9, 0xcba3}, + {0x70fa, 0x8fc9e1}, + {0x70fd, 0xdfe2}, + {0x7103, 0x8fc9e2}, + {0x7104, 0x8fc9e3}, + {0x7105, 0x8fc9e4}, + {0x7106, 0x8fc9e5}, + {0x7107, 0x8fc9e6}, + {0x7109, 0xdfe1}, + {0x710b, 0x8fc9e7}, + {0x710c, 0x8fc9e8}, + {0x710f, 0x8fc9e9}, + {0x7114, 0xb1eb}, + {0x7119, 0xdfe4}, + {0x711a, 0xcab2}, + {0x711c, 0xdfe3}, + {0x711e, 0x8fc9ea}, + {0x7120, 0x8fc9eb}, + {0x7121, 0xccb5}, + {0x7126, 0xbec7}, + {0x712b, 0x8fc9ec}, + {0x712d, 0x8fc9ed}, + {0x712f, 0x8fc9ee}, + {0x7130, 0x8fc9ef}, + {0x7131, 0x8fc9f0}, + {0x7136, 0xc1b3}, + {0x7138, 0x8fc9f1}, + {0x713c, 0xbec6}, + {0x7141, 0x8fc9f2}, + {0x7145, 0x8fc9f3}, + {0x7146, 0x8fc9f4}, + {0x7147, 0x8fc9f5}, + {0x7149, 0xcefb}, + {0x714a, 0x8fc9f6}, + {0x714b, 0x8fc9f7}, + {0x714c, 0xdfea}, + {0x714e, 0xc0f9}, + {0x7150, 0x8fc9f8}, + {0x7152, 0x8fc9f9}, + {0x7155, 0xdfe6}, + {0x7156, 0xdfeb}, + {0x7157, 0x8fc9fa}, + {0x7159, 0xb1ec}, + {0x715a, 0x8fc9fb}, + {0x715c, 0x8fc9fc}, + {0x715e, 0x8fc9fd}, + {0x7160, 0x8fc9fe}, + {0x7162, 0xdfe9}, + {0x7164, 0xc7e1}, + {0x7165, 0xdfe5}, + {0x7166, 0xdfe8}, + {0x7167, 0xbec8}, + {0x7168, 0x8fcaa1}, + {0x7169, 0xc8d1}, + {0x716c, 0xdfec}, + {0x716e, 0xbcd1}, + {0x7179, 0x8fcaa2}, + {0x717d, 0xc0fa}, + {0x7180, 0x8fcaa3}, + {0x7184, 0xdfef}, + {0x7185, 0x8fcaa4}, + {0x7187, 0x8fcaa5}, + {0x7188, 0xdfe7}, + {0x718a, 0xb7a7}, + {0x718c, 0x8fcaa6}, + {0x718f, 0xdfed}, + {0x7192, 0x8fcaa7}, + {0x7194, 0xcdd0}, + {0x7195, 0xdff0}, + {0x7199, 0xf4a6}, + {0x719a, 0x8fcaa8}, + {0x719b, 0x8fcaa9}, + {0x719f, 0xbdcf}, + {0x71a0, 0x8fcaaa}, + {0x71a2, 0x8fcaab}, + {0x71a8, 0xdff1}, + {0x71ac, 0xdff2}, + {0x71af, 0x8fcaac}, + {0x71b0, 0x8fcaad}, + {0x71b1, 0xc7ae}, + {0x71b2, 0x8fcaae}, + {0x71b3, 0x8fcaaf}, + {0x71b9, 0xdff4}, + {0x71ba, 0x8fcab0}, + {0x71be, 0xdff5}, + {0x71bf, 0x8fcab1}, + {0x71c0, 0x8fcab2}, + {0x71c1, 0x8fcab3}, + {0x71c3, 0xc7b3}, + {0x71c4, 0x8fcab4}, + {0x71c8, 0xc5f5}, + {0x71c9, 0xdff7}, + {0x71cb, 0x8fcab5}, + {0x71cc, 0x8fcab6}, + {0x71ce, 0xdff9}, + {0x71d0, 0xced5}, + {0x71d2, 0xdff6}, + {0x71d3, 0x8fcab7}, + {0x71d4, 0xdff8}, + {0x71d5, 0xb1ed}, + {0x71d6, 0x8fcab8}, + {0x71d7, 0xdff3}, + {0x71d9, 0x8fcab9}, + {0x71da, 0x8fcaba}, + {0x71dc, 0x8fcabb}, + {0x71df, 0xd3db}, + {0x71e0, 0xdffa}, + {0x71e5, 0xc1e7}, + {0x71e6, 0xbbb8}, + {0x71e7, 0xdffc}, + {0x71ec, 0xdffb}, + {0x71ed, 0xbfa4}, + {0x71ee, 0xd2d9}, + {0x71f5, 0xdffd}, + {0x71f8, 0x8fcabc}, + {0x71f9, 0xe0a1}, + {0x71fb, 0xdfee}, + {0x71fc, 0xdffe}, + {0x71fe, 0x8fcabd}, + {0x71ff, 0xe0a2}, + {0x7200, 0x8fcabe}, + {0x7206, 0xc7fa}, + {0x7207, 0x8fcabf}, + {0x7208, 0x8fcac0}, + {0x7209, 0x8fcac1}, + {0x720d, 0xe0a3}, + {0x7210, 0xe0a4}, + {0x7213, 0x8fcac2}, + {0x7217, 0x8fcac3}, + {0x721a, 0x8fcac4}, + {0x721b, 0xe0a5}, + {0x721d, 0x8fcac5}, + {0x721f, 0x8fcac6}, + {0x7224, 0x8fcac7}, + {0x7228, 0xe0a6}, + {0x722a, 0xc4de}, + {0x722b, 0x8fcac8}, + {0x722c, 0xe0a8}, + {0x722d, 0xe0a7}, + {0x722f, 0x8fcac9}, + {0x7230, 0xe0a9}, + {0x7232, 0xe0aa}, + {0x7234, 0x8fcaca}, + {0x7235, 0xbcdf}, + {0x7236, 0xc9e3}, + {0x7238, 0x8fcacb}, + {0x7239, 0x8fcacc}, + {0x723a, 0xccec}, + {0x723b, 0xe0ab}, + {0x723c, 0xe0ac}, + {0x723d, 0xc1d6}, + {0x723e, 0xbca4}, + {0x723f, 0xe0ad}, + {0x7240, 0xe0ae}, + {0x7241, 0x8fcacd}, + {0x7242, 0x8fcace}, + {0x7243, 0x8fcacf}, + {0x7245, 0x8fcad0}, + {0x7246, 0xe0af}, + {0x7247, 0xcad2}, + {0x7248, 0xc8c7}, + {0x724b, 0xe0b0}, + {0x724c, 0xc7d7}, + {0x724e, 0x8fcad1}, + {0x724f, 0x8fcad2}, + {0x7250, 0x8fcad3}, + {0x7252, 0xc4ad}, + {0x7253, 0x8fcad4}, + {0x7255, 0x8fcad5}, + {0x7256, 0x8fcad6}, + {0x7258, 0xe0b1}, + {0x7259, 0xb2e7}, + {0x725a, 0x8fcad7}, + {0x725b, 0xb5ed}, + {0x725c, 0x8fcad8}, + {0x725d, 0xccc6}, + {0x725e, 0x8fcad9}, + {0x725f, 0xccb6}, + {0x7260, 0x8fcada}, + {0x7261, 0xb2b4}, + {0x7262, 0xcfb4}, + {0x7263, 0x8fcadb}, + {0x7267, 0xcbd2}, + {0x7268, 0x8fcadc}, + {0x7269, 0xcaaa}, + {0x726b, 0x8fcadd}, + {0x726e, 0x8fcade}, + {0x726f, 0x8fcadf}, + {0x7271, 0x8fcae0}, + {0x7272, 0xc0b7}, + {0x7274, 0xe0b2}, + {0x7277, 0x8fcae1}, + {0x7278, 0x8fcae2}, + {0x7279, 0xc6c3}, + {0x727b, 0x8fcae3}, + {0x727c, 0x8fcae4}, + {0x727d, 0xb8a3}, + {0x727e, 0xe0b3}, + {0x727f, 0x8fcae5}, + {0x7280, 0xbad4}, + {0x7281, 0xe0b5}, + {0x7282, 0xe0b4}, + {0x7284, 0x8fcae6}, + {0x7287, 0xe0b6}, + {0x7289, 0x8fcae7}, + {0x728d, 0x8fcae8}, + {0x728e, 0x8fcae9}, + {0x7292, 0xe0b7}, + {0x7293, 0x8fcaea}, + {0x7296, 0xe0b8}, + {0x729b, 0x8fcaeb}, + {0x72a0, 0xb5be}, + {0x72a2, 0xe0b9}, + {0x72a7, 0xe0ba}, + {0x72a8, 0x8fcaec}, + {0x72ac, 0xb8a4}, + {0x72ad, 0x8fcaed}, + {0x72ae, 0x8fcaee}, + {0x72af, 0xc8c8}, + {0x72b1, 0x8fcaef}, + {0x72b2, 0xe0bc}, + {0x72b4, 0x8fcaf0}, + {0x72b6, 0xbef5}, + {0x72b9, 0xe0bb}, + {0x72be, 0x8fcaf1}, + {0x72c1, 0x8fcaf2}, + {0x72c2, 0xb6b8}, + {0x72c3, 0xe0bd}, + {0x72c4, 0xe0bf}, + {0x72c6, 0xe0be}, + {0x72c7, 0x8fcaf3}, + {0x72c9, 0x8fcaf4}, + {0x72cc, 0x8fcaf5}, + {0x72ce, 0xe0c0}, + {0x72d0, 0xb8d1}, + {0x72d2, 0xe0c1}, + {0x72d5, 0x8fcaf6}, + {0x72d6, 0x8fcaf7}, + {0x72d7, 0xb6e9}, + {0x72d8, 0x8fcaf8}, + {0x72d9, 0xc1c0}, + {0x72db, 0xb9fd}, + {0x72df, 0x8fcaf9}, + {0x72e0, 0xe0c3}, + {0x72e1, 0xe0c4}, + {0x72e2, 0xe0c2}, + {0x72e5, 0x8fcafa}, + {0x72e9, 0xbced}, + {0x72ec, 0xc6c8}, + {0x72ed, 0xb6b9}, + {0x72f3, 0x8fcafb}, + {0x72f4, 0x8fcafc}, + {0x72f7, 0xe0c6}, + {0x72f8, 0xc3ac}, + {0x72f9, 0xe0c5}, + {0x72fa, 0x8fcafd}, + {0x72fb, 0x8fcafe}, + {0x72fc, 0xcfb5}, + {0x72fd, 0xc7e2}, + {0x72fe, 0x8fcba1}, + {0x7302, 0x8fcba2}, + {0x7304, 0x8fcba3}, + {0x7305, 0x8fcba4}, + {0x7307, 0x8fcba5}, + {0x730a, 0xe0c9}, + {0x730b, 0x8fcba6}, + {0x730d, 0x8fcba7}, + {0x7312, 0x8fcba8}, + {0x7313, 0x8fcba9}, + {0x7316, 0xe0cb}, + {0x7317, 0xe0c8}, + {0x7318, 0x8fcbaa}, + {0x7319, 0x8fcbab}, + {0x731b, 0xccd4}, + {0x731c, 0xe0ca}, + {0x731d, 0xe0cc}, + {0x731e, 0x8fcbac}, + {0x731f, 0xcec4}, + {0x7322, 0x8fcbad}, + {0x7324, 0x8fcbae}, + {0x7325, 0xe0d0}, + {0x7327, 0x8fcbaf}, + {0x7328, 0x8fcbb0}, + {0x7329, 0xe0cf}, + {0x732a, 0xc3f6}, + {0x732b, 0xc7ad}, + {0x732c, 0x8fcbb1}, + {0x732e, 0xb8a5}, + {0x732f, 0xe0ce}, + {0x7331, 0x8fcbb2}, + {0x7332, 0x8fcbb3}, + {0x7334, 0xe0cd}, + {0x7335, 0x8fcbb4}, + {0x7336, 0xcdb1}, + {0x7337, 0xcdb2}, + {0x733a, 0x8fcbb5}, + {0x733b, 0x8fcbb6}, + {0x733d, 0x8fcbb7}, + {0x733e, 0xe0d1}, + {0x733f, 0xb1ee}, + {0x7343, 0x8fcbb8}, + {0x7344, 0xb9f6}, + {0x7345, 0xbbe2}, + {0x734d, 0x8fcbb9}, + {0x734e, 0xe0d2}, + {0x734f, 0xe0d3}, + {0x7350, 0x8fcbba}, + {0x7352, 0x8fcbbb}, + {0x7356, 0x8fcbbc}, + {0x7357, 0xe0d5}, + {0x7358, 0x8fcbbd}, + {0x735d, 0x8fcbbe}, + {0x735e, 0x8fcbbf}, + {0x735f, 0x8fcbc0}, + {0x7360, 0x8fcbc1}, + {0x7363, 0xbdc3}, + {0x7366, 0x8fcbc2}, + {0x7367, 0x8fcbc3}, + {0x7368, 0xe0d7}, + {0x7369, 0x8fcbc4}, + {0x736a, 0xe0d6}, + {0x736b, 0x8fcbc5}, + {0x736c, 0x8fcbc6}, + {0x736e, 0x8fcbc7}, + {0x736f, 0x8fcbc8}, + {0x7370, 0xe0d8}, + {0x7371, 0x8fcbc9}, + {0x7372, 0xb3cd}, + {0x7375, 0xe0da}, + {0x7377, 0x8fcbca}, + {0x7378, 0xe0d9}, + {0x7379, 0x8fcbcb}, + {0x737a, 0xe0dc}, + {0x737b, 0xe0db}, + {0x737c, 0x8fcbcc}, + {0x7380, 0x8fcbcd}, + {0x7381, 0x8fcbce}, + {0x7383, 0x8fcbcf}, + {0x7384, 0xb8bc}, + {0x7385, 0x8fcbd0}, + {0x7386, 0x8fcbd1}, + {0x7387, 0xcea8}, + {0x7389, 0xb6cc}, + {0x738b, 0xb2a6}, + {0x738e, 0x8fcbd2}, + {0x7390, 0x8fcbd3}, + {0x7393, 0x8fcbd4}, + {0x7395, 0x8fcbd5}, + {0x7396, 0xb6ea}, + {0x7397, 0x8fcbd6}, + {0x7398, 0x8fcbd7}, + {0x739c, 0x8fcbd8}, + {0x739e, 0x8fcbd9}, + {0x739f, 0x8fcbda}, + {0x73a0, 0x8fcbdb}, + {0x73a2, 0x8fcbdc}, + {0x73a5, 0x8fcbdd}, + {0x73a6, 0x8fcbde}, + {0x73a9, 0xb4e1}, + {0x73aa, 0x8fcbdf}, + {0x73ab, 0x8fcbe0}, + {0x73ad, 0x8fcbe1}, + {0x73b2, 0xcee8}, + {0x73b3, 0xe0de}, + {0x73b5, 0x8fcbe2}, + {0x73b7, 0x8fcbe3}, + {0x73b9, 0x8fcbe4}, + {0x73bb, 0xe0e0}, + {0x73bc, 0x8fcbe5}, + {0x73bd, 0x8fcbe6}, + {0x73bf, 0x8fcbe7}, + {0x73c0, 0xe0e1}, + {0x73c2, 0xb2d1}, + {0x73c5, 0x8fcbe8}, + {0x73c6, 0x8fcbe9}, + {0x73c8, 0xe0dd}, + {0x73c9, 0x8fcbea}, + {0x73ca, 0xbbb9}, + {0x73cb, 0x8fcbeb}, + {0x73cc, 0x8fcbec}, + {0x73cd, 0xc4c1}, + {0x73ce, 0xe0df}, + {0x73cf, 0x8fcbed}, + {0x73d2, 0x8fcbee}, + {0x73d3, 0x8fcbef}, + {0x73d6, 0x8fcbf0}, + {0x73d9, 0x8fcbf1}, + {0x73dd, 0x8fcbf2}, + {0x73de, 0xe0e4}, + {0x73e0, 0xbcee}, + {0x73e1, 0x8fcbf3}, + {0x73e3, 0x8fcbf4}, + {0x73e5, 0xe0e2}, + {0x73e6, 0x8fcbf5}, + {0x73e7, 0x8fcbf6}, + {0x73e9, 0x8fcbf7}, + {0x73ea, 0xb7be}, + {0x73ed, 0xc8c9}, + {0x73ee, 0xe0e3}, + {0x73f1, 0xe0fe}, + {0x73f4, 0x8fcbf8}, + {0x73f5, 0x8fcbf9}, + {0x73f7, 0x8fcbfa}, + {0x73f8, 0xe0e9}, + {0x73f9, 0x8fcbfb}, + {0x73fa, 0x8fcbfc}, + {0x73fb, 0x8fcbfd}, + {0x73fd, 0x8fcbfe}, + {0x73fe, 0xb8bd}, + {0x73ff, 0x8fcca1}, + {0x7400, 0x8fcca2}, + {0x7401, 0x8fcca3}, + {0x7403, 0xb5e5}, + {0x7404, 0x8fcca4}, + {0x7405, 0xe0e6}, + {0x7406, 0xcdfd}, + {0x7407, 0x8fcca5}, + {0x7409, 0xceb0}, + {0x740a, 0x8fcca6}, + {0x7411, 0x8fcca7}, + {0x741a, 0x8fcca8}, + {0x741b, 0x8fcca9}, + {0x7422, 0xc2f6}, + {0x7424, 0x8fccaa}, + {0x7425, 0xe0e8}, + {0x7426, 0x8fccab}, + {0x7428, 0x8fccac}, + {0x7429, 0x8fccad}, + {0x742a, 0x8fccae}, + {0x742b, 0x8fccaf}, + {0x742c, 0x8fccb0}, + {0x742d, 0x8fccb1}, + {0x742e, 0x8fccb2}, + {0x742f, 0x8fccb3}, + {0x7430, 0x8fccb4}, + {0x7431, 0x8fccb5}, + {0x7432, 0xe0ea}, + {0x7433, 0xced6}, + {0x7434, 0xb6d7}, + {0x7435, 0xc8fc}, + {0x7436, 0xc7ca}, + {0x7439, 0x8fccb6}, + {0x743a, 0xe0eb}, + {0x743f, 0xe0ed}, + {0x7440, 0x8fccb7}, + {0x7441, 0xe0f0}, + {0x7443, 0x8fccb8}, + {0x7444, 0x8fccb9}, + {0x7446, 0x8fccba}, + {0x7447, 0x8fccbb}, + {0x744b, 0x8fccbc}, + {0x744d, 0x8fccbd}, + {0x7451, 0x8fccbe}, + {0x7452, 0x8fccbf}, + {0x7455, 0xe0ec}, + {0x7457, 0x8fccc0}, + {0x7459, 0xe0ef}, + {0x745a, 0xb8ea}, + {0x745b, 0xb1cd}, + {0x745c, 0xe0f1}, + {0x745d, 0x8fccc1}, + {0x745e, 0xbff0}, + {0x745f, 0xe0ee}, + {0x7460, 0xcedc}, + {0x7462, 0x8fccc2}, + {0x7463, 0xe0f4}, + {0x7464, 0xf4a4}, + {0x7466, 0x8fccc3}, + {0x7467, 0x8fccc4}, + {0x7468, 0x8fccc5}, + {0x7469, 0xe0f2}, + {0x746a, 0xe0f5}, + {0x746b, 0x8fccc6}, + {0x746d, 0x8fccc7}, + {0x746e, 0x8fccc8}, + {0x746f, 0xe0e7}, + {0x7470, 0xe0f3}, + {0x7471, 0x8fccc9}, + {0x7472, 0x8fccca}, + {0x7473, 0xbabc}, + {0x7476, 0xe0f6}, + {0x747e, 0xe0f7}, + {0x7480, 0x8fcccb}, + {0x7481, 0x8fcccc}, + {0x7483, 0xcdfe}, + {0x7485, 0x8fcccd}, + {0x7486, 0x8fccce}, + {0x7487, 0x8fcccf}, + {0x7489, 0x8fccd0}, + {0x748b, 0xe0f8}, + {0x748f, 0x8fccd1}, + {0x7490, 0x8fccd2}, + {0x7491, 0x8fccd3}, + {0x7492, 0x8fccd4}, + {0x7498, 0x8fccd5}, + {0x7499, 0x8fccd6}, + {0x749a, 0x8fccd7}, + {0x749c, 0x8fccd8}, + {0x749e, 0xe0f9}, + {0x749f, 0x8fccd9}, + {0x74a0, 0x8fccda}, + {0x74a1, 0x8fccdb}, + {0x74a2, 0xe0e5}, + {0x74a3, 0x8fccdc}, + {0x74a6, 0x8fccdd}, + {0x74a7, 0xe0fa}, + {0x74a8, 0x8fccde}, + {0x74a9, 0x8fccdf}, + {0x74aa, 0x8fcce0}, + {0x74ab, 0x8fcce1}, + {0x74ae, 0x8fcce2}, + {0x74af, 0x8fcce3}, + {0x74b0, 0xb4c4}, + {0x74b1, 0x8fcce4}, + {0x74b2, 0x8fcce5}, + {0x74b5, 0x8fcce6}, + {0x74b9, 0x8fcce7}, + {0x74bb, 0x8fcce8}, + {0x74bd, 0xbca5}, + {0x74bf, 0x8fcce9}, + {0x74c8, 0x8fccea}, + {0x74c9, 0x8fcceb}, + {0x74ca, 0xe0fb}, + {0x74cc, 0x8fccec}, + {0x74cf, 0xe0fc}, + {0x74d0, 0x8fcced}, + {0x74d3, 0x8fccee}, + {0x74d4, 0xe0fd}, + {0x74d8, 0x8fccef}, + {0x74da, 0x8fccf0}, + {0x74db, 0x8fccf1}, + {0x74dc, 0xb1bb}, + {0x74de, 0x8fccf2}, + {0x74df, 0x8fccf3}, + {0x74e0, 0xe1a1}, + {0x74e2, 0xc9bb}, + {0x74e3, 0xe1a2}, + {0x74e4, 0x8fccf4}, + {0x74e6, 0xb4a4}, + {0x74e7, 0xe1a3}, + {0x74e8, 0x8fccf5}, + {0x74e9, 0xe1a4}, + {0x74ea, 0x8fccf6}, + {0x74eb, 0x8fccf7}, + {0x74ee, 0xe1a5}, + {0x74ef, 0x8fccf8}, + {0x74f0, 0xe1a7}, + {0x74f1, 0xe1a8}, + {0x74f2, 0xe1a6}, + {0x74f4, 0x8fccf9}, + {0x74f6, 0xc9d3}, + {0x74f7, 0xe1aa}, + {0x74f8, 0xe1a9}, + {0x74fa, 0x8fccfa}, + {0x74fb, 0x8fccfb}, + {0x74fc, 0x8fccfc}, + {0x74ff, 0x8fccfd}, + {0x7503, 0xe1ac}, + {0x7504, 0xe1ab}, + {0x7505, 0xe1ad}, + {0x7506, 0x8fccfe}, + {0x750c, 0xe1ae}, + {0x750d, 0xe1b0}, + {0x750e, 0xe1af}, + {0x7511, 0xb9f9}, + {0x7512, 0x8fcda1}, + {0x7513, 0xe1b2}, + {0x7515, 0xe1b1}, + {0x7516, 0x8fcda2}, + {0x7517, 0x8fcda3}, + {0x7518, 0xb4c5}, + {0x751a, 0xbfd3}, + {0x751c, 0xc5bc}, + {0x751e, 0xe1b3}, + {0x751f, 0xc0b8}, + {0x7520, 0x8fcda4}, + {0x7521, 0x8fcda5}, + {0x7523, 0xbbba}, + {0x7524, 0x8fcda6}, + {0x7525, 0xb1f9}, + {0x7526, 0xe1b4}, + {0x7527, 0x8fcda7}, + {0x7528, 0xcdd1}, + {0x7529, 0x8fcda8}, + {0x752a, 0x8fcda9}, + {0x752b, 0xcae3}, + {0x752c, 0xe1b5}, + {0x752f, 0x8fcdaa}, + {0x7530, 0xc5c4}, + {0x7531, 0xcdb3}, + {0x7532, 0xb9c3}, + {0x7533, 0xbfbd}, + {0x7536, 0x8fcdab}, + {0x7537, 0xc3cb}, + {0x7538, 0xd2b4}, + {0x7539, 0x8fcdac}, + {0x753a, 0xc4ae}, + {0x753b, 0xb2e8}, + {0x753c, 0xe1b6}, + {0x753d, 0x8fcdad}, + {0x753e, 0x8fcdae}, + {0x753f, 0x8fcdaf}, + {0x7540, 0x8fcdb0}, + {0x7543, 0x8fcdb1}, + {0x7544, 0xe1b7}, + {0x7546, 0xe1bc}, + {0x7547, 0x8fcdb2}, + {0x7548, 0x8fcdb3}, + {0x7549, 0xe1ba}, + {0x754a, 0xe1b9}, + {0x754b, 0xdac2}, + {0x754c, 0xb3a6}, + {0x754d, 0xe1b8}, + {0x754e, 0x8fcdb4}, + {0x754f, 0xb0da}, + {0x7550, 0x8fcdb5}, + {0x7551, 0xc8aa}, + {0x7552, 0x8fcdb6}, + {0x7554, 0xc8ca}, + {0x7557, 0x8fcdb7}, + {0x7559, 0xceb1}, + {0x755a, 0xe1bd}, + {0x755b, 0xe1bb}, + {0x755c, 0xc3dc}, + {0x755d, 0xc0a6}, + {0x755e, 0x8fcdb8}, + {0x755f, 0x8fcdb9}, + {0x7560, 0xc8ab}, + {0x7561, 0x8fcdba}, + {0x7562, 0xc9ad}, + {0x7564, 0xe1bf}, + {0x7565, 0xceac}, + {0x7566, 0xb7cd}, + {0x7567, 0xe1c0}, + {0x7569, 0xe1be}, + {0x756a, 0xc8d6}, + {0x756b, 0xe1c1}, + {0x756d, 0xe1c2}, + {0x756f, 0x8fcdbb}, + {0x7570, 0xb0db}, + {0x7571, 0x8fcdbc}, + {0x7573, 0xbef6}, + {0x7574, 0xe1c7}, + {0x7576, 0xe1c4}, + {0x7577, 0xc6ed}, + {0x7578, 0xe1c3}, + {0x7579, 0x8fcdbd}, + {0x757a, 0x8fcdbe}, + {0x757b, 0x8fcdbf}, + {0x757c, 0x8fcdc0}, + {0x757d, 0x8fcdc1}, + {0x757e, 0x8fcdc2}, + {0x757f, 0xb5a6}, + {0x7581, 0x8fcdc3}, + {0x7582, 0xe1ca}, + {0x7585, 0x8fcdc4}, + {0x7586, 0xe1c5}, + {0x7587, 0xe1c6}, + {0x7589, 0xe1c9}, + {0x758a, 0xe1c8}, + {0x758b, 0xc9a5}, + {0x758e, 0xc1c2}, + {0x758f, 0xc1c1}, + {0x7590, 0x8fcdc5}, + {0x7591, 0xb5bf}, + {0x7592, 0x8fcdc6}, + {0x7593, 0x8fcdc7}, + {0x7594, 0xe1cb}, + {0x7595, 0x8fcdc8}, + {0x7599, 0x8fcdc9}, + {0x759a, 0xe1cc}, + {0x759c, 0x8fcdca}, + {0x759d, 0xe1cd}, + {0x75a2, 0x8fcdcb}, + {0x75a3, 0xe1cf}, + {0x75a4, 0x8fcdcc}, + {0x75a5, 0xe1ce}, + {0x75ab, 0xb1d6}, + {0x75b1, 0xe1d7}, + {0x75b2, 0xc8e8}, + {0x75b3, 0xe1d1}, + {0x75b4, 0x8fcdcd}, + {0x75b5, 0xe1d3}, + {0x75b8, 0xe1d5}, + {0x75b9, 0xbfbe}, + {0x75ba, 0x8fcdce}, + {0x75bc, 0xe1d6}, + {0x75bd, 0xe1d4}, + {0x75be, 0xbcc0}, + {0x75bf, 0x8fcdcf}, + {0x75c0, 0x8fcdd0}, + {0x75c1, 0x8fcdd1}, + {0x75c2, 0xe1d0}, + {0x75c3, 0xe1d2}, + {0x75c4, 0x8fcdd2}, + {0x75c5, 0xc9c2}, + {0x75c6, 0x8fcdd3}, + {0x75c7, 0xbec9}, + {0x75ca, 0xe1d9}, + {0x75cc, 0x8fcdd4}, + {0x75cd, 0xe1d8}, + {0x75ce, 0x8fcdd5}, + {0x75cf, 0x8fcdd6}, + {0x75d2, 0xe1da}, + {0x75d4, 0xbca6}, + {0x75d5, 0xbaaf}, + {0x75d7, 0x8fcdd7}, + {0x75d8, 0xc5f7}, + {0x75d9, 0xe1db}, + {0x75db, 0xc4cb}, + {0x75dc, 0x8fcdd8}, + {0x75de, 0xe1dd}, + {0x75df, 0x8fcdd9}, + {0x75e0, 0x8fcdda}, + {0x75e1, 0x8fcddb}, + {0x75e2, 0xcea1}, + {0x75e3, 0xe1dc}, + {0x75e4, 0x8fcddc}, + {0x75e7, 0x8fcddd}, + {0x75e9, 0xc1e9}, + {0x75ec, 0x8fcdde}, + {0x75ee, 0x8fcddf}, + {0x75ef, 0x8fcde0}, + {0x75f0, 0xe1e2}, + {0x75f1, 0x8fcde1}, + {0x75f2, 0xe1e4}, + {0x75f3, 0xe1e5}, + {0x75f4, 0xc3d4}, + {0x75f9, 0x8fcde2}, + {0x75fa, 0xe1e3}, + {0x75fc, 0xe1e0}, + {0x75fe, 0xe1de}, + {0x75ff, 0xe1df}, + {0x7600, 0x8fcde3}, + {0x7601, 0xe1e1}, + {0x7602, 0x8fcde4}, + {0x7603, 0x8fcde5}, + {0x7604, 0x8fcde6}, + {0x7607, 0x8fcde7}, + {0x7608, 0x8fcde8}, + {0x7609, 0xe1e8}, + {0x760a, 0x8fcde9}, + {0x760b, 0xe1e6}, + {0x760c, 0x8fcdea}, + {0x760d, 0xe1e7}, + {0x760f, 0x8fcdeb}, + {0x7612, 0x8fcdec}, + {0x7613, 0x8fcded}, + {0x7615, 0x8fcdee}, + {0x7616, 0x8fcdef}, + {0x7619, 0x8fcdf0}, + {0x761b, 0x8fcdf1}, + {0x761c, 0x8fcdf2}, + {0x761d, 0x8fcdf3}, + {0x761e, 0x8fcdf4}, + {0x761f, 0xe1e9}, + {0x7620, 0xe1eb}, + {0x7621, 0xe1ec}, + {0x7622, 0xe1ed}, + {0x7623, 0x8fcdf5}, + {0x7624, 0xe1ee}, + {0x7625, 0x8fcdf6}, + {0x7626, 0x8fcdf7}, + {0x7627, 0xe1ea}, + {0x7629, 0x8fcdf8}, + {0x762d, 0x8fcdf9}, + {0x7630, 0xe1f0}, + {0x7632, 0x8fcdfa}, + {0x7633, 0x8fcdfb}, + {0x7634, 0xe1ef}, + {0x7635, 0x8fcdfc}, + {0x7638, 0x8fcdfd}, + {0x7639, 0x8fcdfe}, + {0x763a, 0x8fcea1}, + {0x763b, 0xe1f1}, + {0x763c, 0x8fcea2}, + {0x7640, 0x8fcea4}, + {0x7641, 0x8fcea5}, + {0x7642, 0xcec5}, + {0x7643, 0x8fcea6}, + {0x7644, 0x8fcea7}, + {0x7645, 0x8fcea8}, + {0x7646, 0xe1f4}, + {0x7647, 0xe1f2}, + {0x7648, 0xe1f3}, + {0x7649, 0x8fcea9}, + {0x764a, 0x8fcea3}, + {0x764b, 0x8fceaa}, + {0x764c, 0xb4e2}, + {0x7652, 0xccfe}, + {0x7655, 0x8fceab}, + {0x7656, 0xcaca}, + {0x7658, 0xe1f6}, + {0x7659, 0x8fceac}, + {0x765c, 0xe1f5}, + {0x765f, 0x8fcead}, + {0x7661, 0xe1f7}, + {0x7662, 0xe1f8}, + {0x7664, 0x8fceae}, + {0x7665, 0x8fceaf}, + {0x7667, 0xe1fc}, + {0x7668, 0xe1f9}, + {0x7669, 0xe1fa}, + {0x766a, 0xe1fb}, + {0x766c, 0xe1fd}, + {0x766d, 0x8fceb0}, + {0x766e, 0x8fceb1}, + {0x766f, 0x8fceb2}, + {0x7670, 0xe1fe}, + {0x7671, 0x8fceb3}, + {0x7672, 0xe2a1}, + {0x7674, 0x8fceb4}, + {0x7676, 0xe2a2}, + {0x7678, 0xe2a3}, + {0x767a, 0xc8af}, + {0x767b, 0xc5d0}, + {0x767c, 0xe2a4}, + {0x767d, 0xc7f2}, + {0x767e, 0xc9b4}, + {0x7680, 0xe2a5}, + {0x7681, 0x8fceb5}, + {0x7683, 0xe2a6}, + {0x7684, 0xc5aa}, + {0x7685, 0x8fceb6}, + {0x7686, 0xb3a7}, + {0x7687, 0xb9c4}, + {0x7688, 0xe2a7}, + {0x768b, 0xe2a8}, + {0x768c, 0x8fceb7}, + {0x768d, 0x8fceb8}, + {0x768e, 0xe2a9}, + {0x7690, 0xbba9}, + {0x7693, 0xe2ab}, + {0x7695, 0x8fceb9}, + {0x7696, 0xe2aa}, + {0x7699, 0xe2ac}, + {0x769a, 0xe2ad}, + {0x769b, 0x8fceba}, + {0x769c, 0x8fcebb}, + {0x769d, 0x8fcebc}, + {0x769f, 0x8fcebd}, + {0x76a0, 0x8fcebe}, + {0x76a2, 0x8fcebf}, + {0x76a3, 0x8fcec0}, + {0x76a4, 0x8fcec1}, + {0x76a5, 0x8fcec2}, + {0x76a6, 0x8fcec3}, + {0x76a7, 0x8fcec4}, + {0x76a8, 0x8fcec5}, + {0x76aa, 0x8fcec6}, + {0x76ad, 0x8fcec7}, + {0x76ae, 0xc8e9}, + {0x76b0, 0xe2ae}, + {0x76b4, 0xe2af}, + {0x76b7, 0xf3e9}, + {0x76b8, 0xe2b0}, + {0x76b9, 0xe2b1}, + {0x76ba, 0xe2b2}, + {0x76bd, 0x8fcec8}, + {0x76bf, 0xbbae}, + {0x76c1, 0x8fcec9}, + {0x76c2, 0xe2b3}, + {0x76c3, 0xc7d6}, + {0x76c5, 0x8fceca}, + {0x76c6, 0xcbdf}, + {0x76c8, 0xb1ce}, + {0x76c9, 0x8fcecb}, + {0x76ca, 0xb1d7}, + {0x76cb, 0x8fcecc}, + {0x76cc, 0x8fcecd}, + {0x76cd, 0xe2b4}, + {0x76ce, 0x8fcece}, + {0x76d2, 0xe2b6}, + {0x76d4, 0x8fcecf}, + {0x76d6, 0xe2b5}, + {0x76d7, 0xc5f0}, + {0x76d9, 0x8fced0}, + {0x76db, 0xc0b9}, + {0x76dc, 0xddb9}, + {0x76de, 0xe2b7}, + {0x76df, 0xccc1}, + {0x76e0, 0x8fced1}, + {0x76e1, 0xe2b8}, + {0x76e3, 0xb4c6}, + {0x76e4, 0xc8d7}, + {0x76e5, 0xe2b9}, + {0x76e6, 0x8fced2}, + {0x76e7, 0xe2ba}, + {0x76e8, 0x8fced3}, + {0x76ea, 0xe2bb}, + {0x76ec, 0x8fced4}, + {0x76ee, 0xccdc}, + {0x76f0, 0x8fced5}, + {0x76f1, 0x8fced6}, + {0x76f2, 0xccd5}, + {0x76f4, 0xc4be}, + {0x76f6, 0x8fced7}, + {0x76f8, 0xc1ea}, + {0x76f9, 0x8fced8}, + {0x76fb, 0xe2bd}, + {0x76fc, 0x8fced9}, + {0x76fe, 0xbde2}, + {0x7700, 0x8fceda}, + {0x7701, 0xbeca}, + {0x7704, 0xe2c0}, + {0x7706, 0x8fcedb}, + {0x7707, 0xe2bf}, + {0x7708, 0xe2be}, + {0x7709, 0xc8fd}, + {0x770a, 0x8fcedc}, + {0x770b, 0xb4c7}, + {0x770c, 0xb8a9}, + {0x770e, 0x8fcedd}, + {0x7712, 0x8fcede}, + {0x7714, 0x8fcedf}, + {0x7715, 0x8fcee0}, + {0x7717, 0x8fcee1}, + {0x7719, 0x8fcee2}, + {0x771a, 0x8fcee3}, + {0x771b, 0xe2c6}, + {0x771c, 0x8fcee4}, + {0x771e, 0xe2c3}, + {0x771f, 0xbfbf}, + {0x7720, 0xccb2}, + {0x7722, 0x8fcee5}, + {0x7724, 0xe2c2}, + {0x7725, 0xe2c4}, + {0x7726, 0xe2c5}, + {0x7728, 0x8fcee6}, + {0x7729, 0xe2c1}, + {0x772d, 0x8fcee7}, + {0x772e, 0x8fcee8}, + {0x772f, 0x8fcee9}, + {0x7734, 0x8fceea}, + {0x7735, 0x8fceeb}, + {0x7736, 0x8fceec}, + {0x7737, 0xe2c7}, + {0x7738, 0xe2c8}, + {0x7739, 0x8fceed}, + {0x773a, 0xc4af}, + {0x773c, 0xb4e3}, + {0x773d, 0x8fceee}, + {0x773e, 0x8fceef}, + {0x7740, 0xc3e5}, + {0x7742, 0x8fcef0}, + {0x7745, 0x8fcef1}, + {0x7746, 0x8fcef2}, + {0x7747, 0xe2c9}, + {0x774a, 0x8fcef3}, + {0x774d, 0x8fcef4}, + {0x774e, 0x8fcef5}, + {0x774f, 0x8fcef6}, + {0x7752, 0x8fcef7}, + {0x7756, 0x8fcef8}, + {0x7757, 0x8fcef9}, + {0x775a, 0xe2ca}, + {0x775b, 0xe2cd}, + {0x775c, 0x8fcefa}, + {0x775e, 0x8fcefb}, + {0x775f, 0x8fcefc}, + {0x7760, 0x8fcefd}, + {0x7761, 0xbfe7}, + {0x7762, 0x8fcefe}, + {0x7763, 0xc6c4}, + {0x7764, 0x8fcfa1}, + {0x7765, 0xe2ce}, + {0x7766, 0xcbd3}, + {0x7767, 0x8fcfa2}, + {0x7768, 0xe2cb}, + {0x776a, 0x8fcfa3}, + {0x776b, 0xe2cc}, + {0x776c, 0x8fcfa4}, + {0x7770, 0x8fcfa5}, + {0x7772, 0x8fcfa6}, + {0x7773, 0x8fcfa7}, + {0x7774, 0x8fcfa8}, + {0x7779, 0xe2d1}, + {0x777a, 0x8fcfa9}, + {0x777d, 0x8fcfaa}, + {0x777e, 0xe2d0}, + {0x777f, 0xe2cf}, + {0x7780, 0x8fcfab}, + {0x7784, 0x8fcfac}, + {0x778b, 0xe2d3}, + {0x778c, 0x8fcfad}, + {0x778d, 0x8fcfae}, + {0x778e, 0xe2d2}, + {0x7791, 0xe2d4}, + {0x7794, 0x8fcfaf}, + {0x7795, 0x8fcfb0}, + {0x7796, 0x8fcfb1}, + {0x779a, 0x8fcfb2}, + {0x779e, 0xe2d6}, + {0x779f, 0x8fcfb3}, + {0x77a0, 0xe2d5}, + {0x77a2, 0x8fcfb4}, + {0x77a5, 0xcacd}, + {0x77a7, 0x8fcfb5}, + {0x77aa, 0x8fcfb6}, + {0x77ac, 0xbdd6}, + {0x77ad, 0xcec6}, + {0x77ae, 0x8fcfb7}, + {0x77af, 0x8fcfb8}, + {0x77b0, 0xe2d7}, + {0x77b1, 0x8fcfb9}, + {0x77b3, 0xc6b7}, + {0x77b5, 0x8fcfba}, + {0x77b6, 0xe2d8}, + {0x77b9, 0xe2d9}, + {0x77bb, 0xe2dd}, + {0x77bc, 0xe2db}, + {0x77bd, 0xe2dc}, + {0x77be, 0x8fcfbb}, + {0x77bf, 0xe2da}, + {0x77c3, 0x8fcfbc}, + {0x77c7, 0xe2de}, + {0x77c9, 0x8fcfbd}, + {0x77cd, 0xe2df}, + {0x77d1, 0x8fcfbe}, + {0x77d2, 0x8fcfbf}, + {0x77d5, 0x8fcfc0}, + {0x77d7, 0xe2e0}, + {0x77d9, 0x8fcfc1}, + {0x77da, 0xe2e1}, + {0x77db, 0xccb7}, + {0x77dc, 0xe2e2}, + {0x77de, 0x8fcfc2}, + {0x77df, 0x8fcfc3}, + {0x77e0, 0x8fcfc4}, + {0x77e2, 0xccf0}, + {0x77e3, 0xe2e3}, + {0x77e4, 0x8fcfc5}, + {0x77e5, 0xc3ce}, + {0x77e6, 0x8fcfc6}, + {0x77e7, 0xc7ea}, + {0x77e9, 0xb6eb}, + {0x77ea, 0x8fcfc7}, + {0x77ec, 0x8fcfc8}, + {0x77ed, 0xc3bb}, + {0x77ee, 0xe2e4}, + {0x77ef, 0xb6ba}, + {0x77f0, 0x8fcfc9}, + {0x77f1, 0x8fcfca}, + {0x77f3, 0xc0d0}, + {0x77f4, 0x8fcfcb}, + {0x77f8, 0x8fcfcc}, + {0x77fb, 0x8fcfcd}, + {0x77fc, 0xe2e5}, + {0x7802, 0xbabd}, + {0x7805, 0x8fcfce}, + {0x7806, 0x8fcfcf}, + {0x7809, 0x8fcfd0}, + {0x780c, 0xe2e6}, + {0x780d, 0x8fcfd1}, + {0x780e, 0x8fcfd2}, + {0x7811, 0x8fcfd3}, + {0x7812, 0xe2e7}, + {0x7814, 0xb8a6}, + {0x7815, 0xbad5}, + {0x781d, 0x8fcfd4}, + {0x7820, 0xe2e9}, + {0x7821, 0x8fcfd5}, + {0x7822, 0x8fcfd6}, + {0x7823, 0x8fcfd7}, + {0x7825, 0xc5d6}, + {0x7826, 0xbad6}, + {0x7827, 0xb5ce}, + {0x782d, 0x8fcfd8}, + {0x782e, 0x8fcfd9}, + {0x7830, 0x8fcfda}, + {0x7832, 0xcba4}, + {0x7834, 0xc7cb}, + {0x7835, 0x8fcfdb}, + {0x7837, 0x8fcfdc}, + {0x783a, 0xc5d7}, + {0x783f, 0xb9dc}, + {0x7843, 0x8fcfdd}, + {0x7844, 0x8fcfde}, + {0x7845, 0xe2eb}, + {0x7847, 0x8fcfdf}, + {0x7848, 0x8fcfe0}, + {0x784c, 0x8fcfe1}, + {0x784e, 0x8fcfe2}, + {0x7852, 0x8fcfe3}, + {0x785c, 0x8fcfe4}, + {0x785d, 0xbecb}, + {0x785e, 0x8fcfe5}, + {0x7860, 0x8fcfe6}, + {0x7861, 0x8fcfe7}, + {0x7863, 0x8fcfe8}, + {0x7864, 0x8fcfe9}, + {0x7868, 0x8fcfea}, + {0x786a, 0x8fcfeb}, + {0x786b, 0xceb2}, + {0x786c, 0xb9c5}, + {0x786e, 0x8fcfec}, + {0x786f, 0xb8a7}, + {0x7872, 0xc8a3}, + {0x7874, 0xe2ed}, + {0x787a, 0x8fcfed}, + {0x787c, 0xe2ef}, + {0x787e, 0x8fcfee}, + {0x7881, 0xb8eb}, + {0x7886, 0xe2ee}, + {0x7887, 0xc4f6}, + {0x788a, 0x8fcfef}, + {0x788c, 0xe2f1}, + {0x788d, 0xb3b7}, + {0x788e, 0xe2ec}, + {0x788f, 0x8fcff0}, + {0x7891, 0xc8ea}, + {0x7893, 0xb1b0}, + {0x7894, 0x8fcff1}, + {0x7895, 0xbaec}, + {0x7897, 0xcfd2}, + {0x7898, 0x8fcff2}, + {0x789a, 0xe2f0}, + {0x789d, 0x8fcff4}, + {0x789e, 0x8fcff5}, + {0x789f, 0x8fcff6}, + {0x78a1, 0x8fcff3}, + {0x78a3, 0xe2f2}, + {0x78a4, 0x8fcff7}, + {0x78a7, 0xcacb}, + {0x78a8, 0x8fcff8}, + {0x78a9, 0xc0d9}, + {0x78aa, 0xe2f4}, + {0x78ac, 0x8fcff9}, + {0x78ad, 0x8fcffa}, + {0x78af, 0xe2f5}, + {0x78b0, 0x8fcffb}, + {0x78b1, 0x8fcffc}, + {0x78b2, 0x8fcffd}, + {0x78b3, 0x8fcffe}, + {0x78b5, 0xe2f3}, + {0x78ba, 0xb3ce}, + {0x78bb, 0x8fd0a1}, + {0x78bc, 0xe2fb}, + {0x78bd, 0x8fd0a2}, + {0x78be, 0xe2fa}, + {0x78bf, 0x8fd0a3}, + {0x78c1, 0xbca7}, + {0x78c5, 0xe2fc}, + {0x78c6, 0xe2f7}, + {0x78c7, 0x8fd0a4}, + {0x78c8, 0x8fd0a5}, + {0x78c9, 0x8fd0a6}, + {0x78ca, 0xe2fd}, + {0x78cb, 0xe2f8}, + {0x78cc, 0x8fd0a7}, + {0x78ce, 0x8fd0a8}, + {0x78d0, 0xc8d8}, + {0x78d1, 0xe2f6}, + {0x78d2, 0x8fd0a9}, + {0x78d3, 0x8fd0aa}, + {0x78d4, 0xe2f9}, + {0x78d5, 0x8fd0ab}, + {0x78d6, 0x8fd0ac}, + {0x78da, 0xe3a2}, + {0x78db, 0x8fd0ae}, + {0x78df, 0x8fd0af}, + {0x78e0, 0x8fd0b0}, + {0x78e1, 0x8fd0b1}, + {0x78e4, 0x8fd0ad}, + {0x78e6, 0x8fd0b2}, + {0x78e7, 0xe3a1}, + {0x78e8, 0xcbe1}, + {0x78ea, 0x8fd0b3}, + {0x78ec, 0xe2fe}, + {0x78ef, 0xb0eb}, + {0x78f2, 0x8fd0b4}, + {0x78f3, 0x8fd0b5}, + {0x78f4, 0xe3a4}, + {0x78f6, 0x8fd0b7}, + {0x78f7, 0x8fd0b8}, + {0x78fa, 0x8fd0b9}, + {0x78fb, 0x8fd0ba}, + {0x78fd, 0xe3a3}, + {0x78ff, 0x8fd0bb}, + {0x7900, 0x8fd0b6}, + {0x7901, 0xbecc}, + {0x7906, 0x8fd0bc}, + {0x7907, 0xe3a5}, + {0x790c, 0x8fd0bd}, + {0x790e, 0xc1c3}, + {0x7910, 0x8fd0be}, + {0x7911, 0xe3a7}, + {0x7912, 0xe3a6}, + {0x7919, 0xe3a8}, + {0x791a, 0x8fd0bf}, + {0x791c, 0x8fd0c0}, + {0x791e, 0x8fd0c1}, + {0x791f, 0x8fd0c2}, + {0x7920, 0x8fd0c3}, + {0x7925, 0x8fd0c4}, + {0x7926, 0xe2e8}, + {0x7927, 0x8fd0c5}, + {0x7929, 0x8fd0c6}, + {0x792a, 0xe2ea}, + {0x792b, 0xe3aa}, + {0x792c, 0xe3a9}, + {0x792d, 0x8fd0c7}, + {0x7931, 0x8fd0c8}, + {0x7934, 0x8fd0c9}, + {0x7935, 0x8fd0ca}, + {0x793a, 0xbca8}, + {0x793b, 0x8fd0cb}, + {0x793c, 0xcee9}, + {0x793d, 0x8fd0cc}, + {0x793e, 0xbcd2}, + {0x793f, 0x8fd0cd}, + {0x7940, 0xe3ab}, + {0x7941, 0xb7b7}, + {0x7944, 0x8fd0ce}, + {0x7945, 0x8fd0cf}, + {0x7946, 0x8fd0d0}, + {0x7947, 0xb5c0}, + {0x7948, 0xb5a7}, + {0x7949, 0xbbe3}, + {0x794a, 0x8fd0d1}, + {0x794b, 0x8fd0d2}, + {0x794f, 0x8fd0d3}, + {0x7950, 0xcdb4}, + {0x7951, 0x8fd0d4}, + {0x7953, 0xe3b1}, + {0x7954, 0x8fd0d5}, + {0x7955, 0xe3b0}, + {0x7956, 0xc1c4}, + {0x7957, 0xe3ad}, + {0x7958, 0x8fd0d6}, + {0x795a, 0xe3af}, + {0x795b, 0x8fd0d7}, + {0x795c, 0x8fd0d8}, + {0x795d, 0xbdcb}, + {0x795e, 0xbfc0}, + {0x795f, 0xe3ae}, + {0x7960, 0xe3ac}, + {0x7962, 0xc7aa}, + {0x7965, 0xbecd}, + {0x7967, 0x8fd0d9}, + {0x7968, 0xc9bc}, + {0x7969, 0x8fd0da}, + {0x796b, 0x8fd0db}, + {0x796d, 0xbad7}, + {0x7972, 0x8fd0dc}, + {0x7977, 0xc5f8}, + {0x7979, 0x8fd0dd}, + {0x797a, 0xe3b2}, + {0x797b, 0x8fd0de}, + {0x797c, 0x8fd0df}, + {0x797e, 0x8fd0e0}, + {0x797f, 0xe3b3}, + {0x7980, 0xe3c9}, + {0x7981, 0xb6d8}, + {0x7984, 0xcfbd}, + {0x7985, 0xc1b5}, + {0x798a, 0xe3b4}, + {0x798b, 0x8fd0e1}, + {0x798c, 0x8fd0e2}, + {0x798d, 0xb2d2}, + {0x798e, 0xc4f7}, + {0x798f, 0xcaa1}, + {0x7991, 0x8fd0e3}, + {0x7993, 0x8fd0e4}, + {0x7994, 0x8fd0e5}, + {0x7995, 0x8fd0e6}, + {0x7996, 0x8fd0e7}, + {0x7998, 0x8fd0e8}, + {0x799b, 0x8fd0e9}, + {0x799c, 0x8fd0ea}, + {0x799d, 0xe3b5}, + {0x79a1, 0x8fd0eb}, + {0x79a6, 0xb5fa}, + {0x79a7, 0xe3b6}, + {0x79a8, 0x8fd0ec}, + {0x79a9, 0x8fd0ed}, + {0x79aa, 0xe3b8}, + {0x79ab, 0x8fd0ee}, + {0x79ae, 0xe3b9}, + {0x79af, 0x8fd0ef}, + {0x79b0, 0xc7a9}, + {0x79b1, 0x8fd0f0}, + {0x79b3, 0xe3ba}, + {0x79b4, 0x8fd0f1}, + {0x79b8, 0x8fd0f2}, + {0x79b9, 0xe3bb}, + {0x79ba, 0xe3bc}, + {0x79bb, 0x8fd0f3}, + {0x79bd, 0xb6d9}, + {0x79be, 0xb2d3}, + {0x79bf, 0xc6c5}, + {0x79c0, 0xbda8}, + {0x79c1, 0xbbe4}, + {0x79c2, 0x8fd0f4}, + {0x79c4, 0x8fd0f5}, + {0x79c7, 0x8fd0f6}, + {0x79c8, 0x8fd0f7}, + {0x79c9, 0xe3bd}, + {0x79ca, 0x8fd0f8}, + {0x79cb, 0xbda9}, + {0x79cf, 0x8fd0f9}, + {0x79d1, 0xb2ca}, + {0x79d2, 0xc9c3}, + {0x79d4, 0x8fd0fa}, + {0x79d5, 0xe3be}, + {0x79d6, 0x8fd0fb}, + {0x79d8, 0xc8eb}, + {0x79da, 0x8fd0fc}, + {0x79dd, 0x8fd0fd}, + {0x79de, 0x8fd0fe}, + {0x79df, 0xc1c5}, + {0x79e0, 0x8fd1a1}, + {0x79e1, 0xe3c1}, + {0x79e2, 0x8fd1a2}, + {0x79e3, 0xe3c2}, + {0x79e4, 0xc7e9}, + {0x79e5, 0x8fd1a3}, + {0x79e6, 0xbfc1}, + {0x79e7, 0xe3bf}, + {0x79e9, 0xc3e1}, + {0x79ea, 0x8fd1a4}, + {0x79eb, 0x8fd1a5}, + {0x79ec, 0xe3c0}, + {0x79ed, 0x8fd1a6}, + {0x79f0, 0xbece}, + {0x79f1, 0x8fd1a7}, + {0x79f8, 0x8fd1a8}, + {0x79fb, 0xb0dc}, + {0x79fc, 0x8fd1a9}, + {0x7a00, 0xb5a9}, + {0x7a02, 0x8fd1aa}, + {0x7a03, 0x8fd1ab}, + {0x7a07, 0x8fd1ac}, + {0x7a08, 0xe3c3}, + {0x7a09, 0x8fd1ad}, + {0x7a0a, 0x8fd1ae}, + {0x7a0b, 0xc4f8}, + {0x7a0c, 0x8fd1af}, + {0x7a0d, 0xe3c4}, + {0x7a0e, 0xc0c7}, + {0x7a11, 0x8fd1b0}, + {0x7a14, 0xccad}, + {0x7a15, 0x8fd1b1}, + {0x7a17, 0xc9a3}, + {0x7a18, 0xe3c5}, + {0x7a19, 0xe3c6}, + {0x7a1a, 0xc3d5}, + {0x7a1b, 0x8fd1b2}, + {0x7a1c, 0xcec7}, + {0x7a1e, 0x8fd1b3}, + {0x7a1f, 0xe3c8}, + {0x7a20, 0xe3c7}, + {0x7a21, 0x8fd1b4}, + {0x7a27, 0x8fd1b5}, + {0x7a2b, 0x8fd1b6}, + {0x7a2d, 0x8fd1b7}, + {0x7a2e, 0xbcef}, + {0x7a2f, 0x8fd1b8}, + {0x7a30, 0x8fd1b9}, + {0x7a31, 0xe3ca}, + {0x7a32, 0xb0f0}, + {0x7a34, 0x8fd1ba}, + {0x7a35, 0x8fd1bb}, + {0x7a37, 0xe3cd}, + {0x7a38, 0x8fd1bc}, + {0x7a39, 0x8fd1bd}, + {0x7a3a, 0x8fd1be}, + {0x7a3b, 0xe3cb}, + {0x7a3c, 0xb2d4}, + {0x7a3d, 0xb7ce}, + {0x7a3e, 0xe3cc}, + {0x7a3f, 0xb9c6}, + {0x7a40, 0xb9f2}, + {0x7a42, 0xcae6}, + {0x7a43, 0xe3ce}, + {0x7a44, 0x8fd1bf}, + {0x7a45, 0x8fd1c0}, + {0x7a46, 0xcbd4}, + {0x7a47, 0x8fd1c1}, + {0x7a48, 0x8fd1c2}, + {0x7a49, 0xe3d0}, + {0x7a4c, 0x8fd1c3}, + {0x7a4d, 0xc0d1}, + {0x7a4e, 0xb1cf}, + {0x7a4f, 0xb2ba}, + {0x7a50, 0xb0ac}, + {0x7a55, 0x8fd1c4}, + {0x7a56, 0x8fd1c5}, + {0x7a57, 0xe3cf}, + {0x7a59, 0x8fd1c6}, + {0x7a5c, 0x8fd1c7}, + {0x7a5d, 0x8fd1c8}, + {0x7a5f, 0x8fd1c9}, + {0x7a60, 0x8fd1ca}, + {0x7a61, 0xe3d1}, + {0x7a62, 0xe3d2}, + {0x7a63, 0xbef7}, + {0x7a65, 0x8fd1cb}, + {0x7a67, 0x8fd1cc}, + {0x7a69, 0xe3d3}, + {0x7a6a, 0x8fd1cd}, + {0x7a6b, 0xb3cf}, + {0x7a6d, 0x8fd1ce}, + {0x7a70, 0xe3d5}, + {0x7a74, 0xb7ea}, + {0x7a75, 0x8fd1cf}, + {0x7a76, 0xb5e6}, + {0x7a78, 0x8fd1d0}, + {0x7a79, 0xe3d6}, + {0x7a7a, 0xb6f5}, + {0x7a7d, 0xe3d7}, + {0x7a7e, 0x8fd1d1}, + {0x7a7f, 0xc0fc}, + {0x7a80, 0x8fd1d2}, + {0x7a81, 0xc6cd}, + {0x7a82, 0x8fd1d3}, + {0x7a83, 0xc0e0}, + {0x7a84, 0xbaf5}, + {0x7a85, 0x8fd1d4}, + {0x7a86, 0x8fd1d5}, + {0x7a88, 0xe3d8}, + {0x7a8a, 0x8fd1d6}, + {0x7a8b, 0x8fd1d7}, + {0x7a90, 0x8fd1d8}, + {0x7a91, 0x8fd1d9}, + {0x7a92, 0xc3e2}, + {0x7a93, 0xc1eb}, + {0x7a94, 0x8fd1da}, + {0x7a95, 0xe3da}, + {0x7a96, 0xe3dc}, + {0x7a97, 0xe3d9}, + {0x7a98, 0xe3db}, + {0x7a9e, 0x8fd1db}, + {0x7a9f, 0xb7a2}, + {0x7aa0, 0x8fd1dc}, + {0x7aa3, 0x8fd1dd}, + {0x7aa9, 0xe3dd}, + {0x7aaa, 0xb7a6}, + {0x7aac, 0x8fd1de}, + {0x7aae, 0xb5e7}, + {0x7aaf, 0xcdd2}, + {0x7ab0, 0xe3df}, + {0x7ab3, 0x8fd1df}, + {0x7ab5, 0x8fd1e0}, + {0x7ab6, 0xe3e0}, + {0x7ab9, 0x8fd1e1}, + {0x7aba, 0xb1ae}, + {0x7abb, 0x8fd1e2}, + {0x7abc, 0x8fd1e3}, + {0x7abf, 0xe3e3}, + {0x7ac3, 0xb3f6}, + {0x7ac4, 0xe3e2}, + {0x7ac5, 0xe3e1}, + {0x7ac6, 0x8fd1e4}, + {0x7ac7, 0xe3e5}, + {0x7ac8, 0xe3de}, + {0x7ac9, 0x8fd1e5}, + {0x7aca, 0xe3e6}, + {0x7acb, 0xcea9}, + {0x7acc, 0x8fd1e6}, + {0x7acd, 0xe3e7}, + {0x7ace, 0x8fd1e7}, + {0x7acf, 0xe3e8}, + {0x7ad1, 0x8fd1e8}, + {0x7ad2, 0xd4f4}, + {0x7ad3, 0xe3ea}, + {0x7ad5, 0xe3e9}, + {0x7ad9, 0xe3eb}, + {0x7ada, 0xe3ec}, + {0x7adb, 0x8fd1e9}, + {0x7adc, 0xceb5}, + {0x7add, 0xe3ed}, + {0x7adf, 0xf0ef}, + {0x7ae0, 0xbecf}, + {0x7ae1, 0xe3ee}, + {0x7ae2, 0xe3ef}, + {0x7ae3, 0xbdd7}, + {0x7ae5, 0xc6b8}, + {0x7ae6, 0xe3f0}, + {0x7ae8, 0x8fd1ea}, + {0x7ae9, 0x8fd1eb}, + {0x7aea, 0xc3a8}, + {0x7aeb, 0x8fd1ec}, + {0x7aec, 0x8fd1ed}, + {0x7aed, 0xe3f1}, + {0x7aef, 0xc3bc}, + {0x7af0, 0xe3f2}, + {0x7af1, 0x8fd1ee}, + {0x7af4, 0x8fd1ef}, + {0x7af6, 0xb6a5}, + {0x7af8, 0xd1bf}, + {0x7af9, 0xc3dd}, + {0x7afa, 0xbcb3}, + {0x7afb, 0x8fd1f0}, + {0x7afd, 0x8fd1f1}, + {0x7afe, 0x8fd1f2}, + {0x7aff, 0xb4c8}, + {0x7b02, 0xe3f3}, + {0x7b04, 0xe4a2}, + {0x7b06, 0xe3f6}, + {0x7b07, 0x8fd1f3}, + {0x7b08, 0xb5e8}, + {0x7b0a, 0xe3f5}, + {0x7b0b, 0xe4a4}, + {0x7b0f, 0xe3f4}, + {0x7b11, 0xbed0}, + {0x7b14, 0x8fd1f4}, + {0x7b18, 0xe3f8}, + {0x7b19, 0xe3f9}, + {0x7b1b, 0xc5ab}, + {0x7b1e, 0xe3fa}, + {0x7b1f, 0x8fd1f5}, + {0x7b20, 0xb3de}, + {0x7b23, 0x8fd1f6}, + {0x7b25, 0xbfda}, + {0x7b26, 0xc9e4}, + {0x7b27, 0x8fd1f7}, + {0x7b28, 0xe3fc}, + {0x7b29, 0x8fd1f8}, + {0x7b2a, 0x8fd1f9}, + {0x7b2b, 0x8fd1fa}, + {0x7b2c, 0xc2e8}, + {0x7b2d, 0x8fd1fb}, + {0x7b2e, 0x8fd1fc}, + {0x7b2f, 0x8fd1fd}, + {0x7b30, 0x8fd1fe}, + {0x7b31, 0x8fd2a1}, + {0x7b33, 0xe3f7}, + {0x7b34, 0x8fd2a2}, + {0x7b35, 0xe3fb}, + {0x7b36, 0xe3fd}, + {0x7b39, 0xbafb}, + {0x7b3d, 0x8fd2a3}, + {0x7b3f, 0x8fd2a4}, + {0x7b40, 0x8fd2a5}, + {0x7b41, 0x8fd2a6}, + {0x7b45, 0xe4a6}, + {0x7b46, 0xc9ae}, + {0x7b47, 0x8fd2a7}, + {0x7b48, 0xc8a6}, + {0x7b49, 0xc5f9}, + {0x7b4b, 0xb6da}, + {0x7b4c, 0xe4a5}, + {0x7b4d, 0xe4a3}, + {0x7b4e, 0x8fd2a8}, + {0x7b4f, 0xc8b5}, + {0x7b50, 0xe3fe}, + {0x7b51, 0xc3de}, + {0x7b52, 0xc5fb}, + {0x7b54, 0xc5fa}, + {0x7b55, 0x8fd2a9}, + {0x7b56, 0xbaf6}, + {0x7b5d, 0xe4b8}, + {0x7b60, 0x8fd2aa}, + {0x7b64, 0x8fd2ab}, + {0x7b65, 0xe4a8}, + {0x7b66, 0x8fd2ac}, + {0x7b67, 0xe4aa}, + {0x7b69, 0x8fd2ad}, + {0x7b6a, 0x8fd2ae}, + {0x7b6c, 0xe4ad}, + {0x7b6d, 0x8fd2af}, + {0x7b6e, 0xe4ae}, + {0x7b6f, 0x8fd2b0}, + {0x7b70, 0xe4ab}, + {0x7b71, 0xe4ac}, + {0x7b72, 0x8fd2b1}, + {0x7b73, 0x8fd2b2}, + {0x7b74, 0xe4a9}, + {0x7b75, 0xe4a7}, + {0x7b77, 0x8fd2b3}, + {0x7b7a, 0xe4a1}, + {0x7b84, 0x8fd2b4}, + {0x7b86, 0xcacf}, + {0x7b87, 0xb2d5}, + {0x7b89, 0x8fd2b5}, + {0x7b8b, 0xe4b5}, + {0x7b8d, 0xe4b2}, + {0x7b8e, 0x8fd2b6}, + {0x7b8f, 0xe4b7}, + {0x7b90, 0x8fd2b7}, + {0x7b91, 0x8fd2b8}, + {0x7b92, 0xe4b6}, + {0x7b94, 0xc7f3}, + {0x7b95, 0xcca7}, + {0x7b96, 0x8fd2b9}, + {0x7b97, 0xbbbb}, + {0x7b98, 0xe4b0}, + {0x7b99, 0xe4b9}, + {0x7b9a, 0xe4b4}, + {0x7b9b, 0x8fd2ba}, + {0x7b9c, 0xe4b3}, + {0x7b9d, 0xe4af}, + {0x7b9e, 0x8fd2bb}, + {0x7b9f, 0xe4b1}, + {0x7ba0, 0x8fd2bc}, + {0x7ba1, 0xb4c9}, + {0x7ba5, 0x8fd2bd}, + {0x7baa, 0xc3bd}, + {0x7bac, 0x8fd2be}, + {0x7bad, 0xc0fd}, + {0x7baf, 0x8fd2bf}, + {0x7bb0, 0x8fd2c0}, + {0x7bb1, 0xc8a2}, + {0x7bb2, 0x8fd2c1}, + {0x7bb4, 0xe4be}, + {0x7bb5, 0x8fd2c2}, + {0x7bb6, 0x8fd2c3}, + {0x7bb8, 0xc8a4}, + {0x7bba, 0x8fd2c4}, + {0x7bbb, 0x8fd2c5}, + {0x7bbc, 0x8fd2c6}, + {0x7bbd, 0x8fd2c7}, + {0x7bc0, 0xc0e1}, + {0x7bc1, 0xe4bb}, + {0x7bc2, 0x8fd2c8}, + {0x7bc4, 0xc8cf}, + {0x7bc5, 0x8fd2c9}, + {0x7bc6, 0xe4bf}, + {0x7bc7, 0xcad3}, + {0x7bc8, 0x8fd2ca}, + {0x7bc9, 0xc3db}, + {0x7bca, 0x8fd2cb}, + {0x7bcb, 0xe4ba}, + {0x7bcc, 0xe4bc}, + {0x7bcf, 0xe4bd}, + {0x7bd4, 0x8fd2cc}, + {0x7bd6, 0x8fd2cd}, + {0x7bd7, 0x8fd2ce}, + {0x7bd9, 0x8fd2cf}, + {0x7bda, 0x8fd2d0}, + {0x7bdb, 0x8fd2d1}, + {0x7bdd, 0xe4c0}, + {0x7be0, 0xbcc4}, + {0x7be4, 0xc6c6}, + {0x7be5, 0xe4c5}, + {0x7be6, 0xe4c4}, + {0x7be8, 0x8fd2d2}, + {0x7be9, 0xe4c1}, + {0x7bea, 0x8fd2d3}, + {0x7bed, 0xcfb6}, + {0x7bf2, 0x8fd2d4}, + {0x7bf3, 0xe4ca}, + {0x7bf4, 0x8fd2d5}, + {0x7bf5, 0x8fd2d6}, + {0x7bf6, 0xe4ce}, + {0x7bf7, 0xe4cb}, + {0x7bf8, 0x8fd2d7}, + {0x7bf9, 0x8fd2d8}, + {0x7bfa, 0x8fd2d9}, + {0x7bfc, 0x8fd2da}, + {0x7bfe, 0x8fd2db}, + {0x7c00, 0xe4c7}, + {0x7c01, 0x8fd2dc}, + {0x7c02, 0x8fd2dd}, + {0x7c03, 0x8fd2de}, + {0x7c04, 0x8fd2df}, + {0x7c06, 0x8fd2e0}, + {0x7c07, 0xe4c8}, + {0x7c09, 0x8fd2e1}, + {0x7c0b, 0x8fd2e2}, + {0x7c0c, 0x8fd2e3}, + {0x7c0d, 0xe4cd}, + {0x7c0e, 0x8fd2e4}, + {0x7c0f, 0x8fd2e5}, + {0x7c11, 0xe4c2}, + {0x7c12, 0xd2d5}, + {0x7c13, 0xe4c9}, + {0x7c14, 0xe4c3}, + {0x7c17, 0xe4cc}, + {0x7c19, 0x8fd2e6}, + {0x7c1b, 0x8fd2e7}, + {0x7c1f, 0xe4d2}, + {0x7c20, 0x8fd2e8}, + {0x7c21, 0xb4ca}, + {0x7c23, 0xe4cf}, + {0x7c25, 0x8fd2e9}, + {0x7c26, 0x8fd2ea}, + {0x7c27, 0xe4d0}, + {0x7c28, 0x8fd2eb}, + {0x7c2a, 0xe4d1}, + {0x7c2b, 0xe4d4}, + {0x7c2c, 0x8fd2ec}, + {0x7c31, 0x8fd2ed}, + {0x7c33, 0x8fd2ee}, + {0x7c34, 0x8fd2ef}, + {0x7c36, 0x8fd2f0}, + {0x7c37, 0xe4d3}, + {0x7c38, 0xc8f6}, + {0x7c39, 0x8fd2f1}, + {0x7c3a, 0x8fd2f2}, + {0x7c3d, 0xe4d5}, + {0x7c3e, 0xcefc}, + {0x7c3f, 0xcaed}, + {0x7c40, 0xe4da}, + {0x7c43, 0xe4d7}, + {0x7c46, 0x8fd2f3}, + {0x7c4a, 0x8fd2f4}, + {0x7c4c, 0xe4d6}, + {0x7c4d, 0xc0d2}, + {0x7c4f, 0xe4d9}, + {0x7c50, 0xe4db}, + {0x7c51, 0x8fd2f6}, + {0x7c52, 0x8fd2f7}, + {0x7c53, 0x8fd2f8}, + {0x7c54, 0xe4d8}, + {0x7c55, 0x8fd2f5}, + {0x7c56, 0xe4df}, + {0x7c58, 0xe4dc}, + {0x7c59, 0x8fd2f9}, + {0x7c5a, 0x8fd2fa}, + {0x7c5b, 0x8fd2fb}, + {0x7c5c, 0x8fd2fc}, + {0x7c5d, 0x8fd2fd}, + {0x7c5e, 0x8fd2fe}, + {0x7c5f, 0xe4dd}, + {0x7c60, 0xe4c6}, + {0x7c61, 0x8fd3a1}, + {0x7c63, 0x8fd3a2}, + {0x7c64, 0xe4de}, + {0x7c65, 0xe4e0}, + {0x7c67, 0x8fd3a3}, + {0x7c69, 0x8fd3a4}, + {0x7c6c, 0xe4e1}, + {0x7c6d, 0x8fd3a5}, + {0x7c6e, 0x8fd3a6}, + {0x7c70, 0x8fd3a7}, + {0x7c72, 0x8fd3a8}, + {0x7c73, 0xcac6}, + {0x7c75, 0xe4e2}, + {0x7c79, 0x8fd3a9}, + {0x7c7c, 0x8fd3aa}, + {0x7c7d, 0x8fd3ab}, + {0x7c7e, 0xcce2}, + {0x7c81, 0xb6ce}, + {0x7c82, 0xb7a9}, + {0x7c83, 0xe4e3}, + {0x7c86, 0x8fd3ac}, + {0x7c87, 0x8fd3ad}, + {0x7c89, 0xcab4}, + {0x7c8b, 0xbfe8}, + {0x7c8d, 0xccb0}, + {0x7c8f, 0x8fd3ae}, + {0x7c90, 0xe4e4}, + {0x7c92, 0xceb3}, + {0x7c94, 0x8fd3af}, + {0x7c95, 0xc7f4}, + {0x7c97, 0xc1c6}, + {0x7c98, 0xc7b4}, + {0x7c9b, 0xbdcd}, + {0x7c9e, 0x8fd3b0}, + {0x7c9f, 0xb0c0}, + {0x7ca0, 0x8fd3b1}, + {0x7ca1, 0xe4e9}, + {0x7ca2, 0xe4e7}, + {0x7ca4, 0xe4e5}, + {0x7ca5, 0xb4a1}, + {0x7ca6, 0x8fd3b2}, + {0x7ca7, 0xbed1}, + {0x7ca8, 0xe4ea}, + {0x7cab, 0xe4e8}, + {0x7cad, 0xe4e6}, + {0x7cae, 0xe4ee}, + {0x7cb0, 0x8fd3b3}, + {0x7cb1, 0xe4ed}, + {0x7cb2, 0xe4ec}, + {0x7cb3, 0xe4eb}, + {0x7cb6, 0x8fd3b4}, + {0x7cb7, 0x8fd3b5}, + {0x7cb9, 0xe4ef}, + {0x7cba, 0x8fd3b6}, + {0x7cbb, 0x8fd3b7}, + {0x7cbc, 0x8fd3b8}, + {0x7cbd, 0xe4f0}, + {0x7cbe, 0xc0ba}, + {0x7cbf, 0x8fd3b9}, + {0x7cc0, 0xe4f1}, + {0x7cc2, 0xe4f3}, + {0x7cc4, 0x8fd3ba}, + {0x7cc5, 0xe4f2}, + {0x7cc7, 0x8fd3bb}, + {0x7cc8, 0x8fd3bc}, + {0x7cc9, 0x8fd3bd}, + {0x7cca, 0xb8d2}, + {0x7ccd, 0x8fd3be}, + {0x7cce, 0xc1b8}, + {0x7ccf, 0x8fd3bf}, + {0x7cd2, 0xe4f5}, + {0x7cd3, 0x8fd3c0}, + {0x7cd4, 0x8fd3c1}, + {0x7cd5, 0x8fd3c2}, + {0x7cd6, 0xc5fc}, + {0x7cd7, 0x8fd3c3}, + {0x7cd8, 0xe4f4}, + {0x7cd9, 0x8fd3c4}, + {0x7cda, 0x8fd3c5}, + {0x7cdc, 0xe4f6}, + {0x7cdd, 0x8fd3c6}, + {0x7cde, 0xcab5}, + {0x7cdf, 0xc1ec}, + {0x7ce0, 0xb9c7}, + {0x7ce2, 0xe4f7}, + {0x7ce6, 0x8fd3c7}, + {0x7ce7, 0xcec8}, + {0x7ce9, 0x8fd3c8}, + {0x7ceb, 0x8fd3c9}, + {0x7cef, 0xe4f9}, + {0x7cf2, 0xe4fa}, + {0x7cf4, 0xe4fb}, + {0x7cf5, 0x8fd3ca}, + {0x7cf6, 0xe4fc}, + {0x7cf8, 0xbbe5}, + {0x7cfa, 0xe4fd}, + {0x7cfb, 0xb7cf}, + {0x7cfe, 0xb5ea}, + {0x7d00, 0xb5aa}, + {0x7d02, 0xe5a1}, + {0x7d03, 0x8fd3cb}, + {0x7d04, 0xccf3}, + {0x7d05, 0xb9c8}, + {0x7d06, 0xe4fe}, + {0x7d07, 0x8fd3cc}, + {0x7d08, 0x8fd3cd}, + {0x7d09, 0x8fd3ce}, + {0x7d0a, 0xe5a4}, + {0x7d0b, 0xcce6}, + {0x7d0d, 0xc7bc}, + {0x7d0f, 0x8fd3cf}, + {0x7d10, 0xc9b3}, + {0x7d11, 0x8fd3d0}, + {0x7d12, 0x8fd3d1}, + {0x7d13, 0x8fd3d2}, + {0x7d14, 0xbde3}, + {0x7d15, 0xe5a3}, + {0x7d16, 0x8fd3d3}, + {0x7d17, 0xbcd3}, + {0x7d18, 0xb9c9}, + {0x7d19, 0xbbe6}, + {0x7d1a, 0xb5e9}, + {0x7d1b, 0xcab6}, + {0x7d1c, 0xe5a2}, + {0x7d1d, 0x8fd3d4}, + {0x7d1e, 0x8fd3d5}, + {0x7d20, 0xc1c7}, + {0x7d21, 0xcbc2}, + {0x7d22, 0xbaf7}, + {0x7d23, 0x8fd3d6}, + {0x7d26, 0x8fd3d7}, + {0x7d2a, 0x8fd3d8}, + {0x7d2b, 0xbbe7}, + {0x7d2c, 0xc4dd}, + {0x7d2d, 0x8fd3d9}, + {0x7d2e, 0xe5a7}, + {0x7d2f, 0xcedf}, + {0x7d30, 0xbad9}, + {0x7d31, 0x8fd3da}, + {0x7d32, 0xe5a8}, + {0x7d33, 0xbfc2}, + {0x7d35, 0xe5aa}, + {0x7d39, 0xbed2}, + {0x7d3a, 0xbab0}, + {0x7d3c, 0x8fd3db}, + {0x7d3d, 0x8fd3dc}, + {0x7d3e, 0x8fd3dd}, + {0x7d3f, 0xe5a9}, + {0x7d40, 0x8fd3de}, + {0x7d41, 0x8fd3df}, + {0x7d42, 0xbdaa}, + {0x7d43, 0xb8be}, + {0x7d44, 0xc1c8}, + {0x7d45, 0xe5a5}, + {0x7d46, 0xe5ab}, + {0x7d47, 0x8fd3e0}, + {0x7d48, 0x8fd3e1}, + {0x7d4b, 0xe5a6}, + {0x7d4c, 0xb7d0}, + {0x7d4d, 0x8fd3e2}, + {0x7d4e, 0xe5ae}, + {0x7d4f, 0xe5b2}, + {0x7d50, 0xb7eb}, + {0x7d51, 0x8fd3e3}, + {0x7d53, 0x8fd3e4}, + {0x7d56, 0xe5ad}, + {0x7d57, 0x8fd3e5}, + {0x7d59, 0x8fd3e6}, + {0x7d5a, 0x8fd3e7}, + {0x7d5b, 0xe5b6}, + {0x7d5c, 0x8fd3e8}, + {0x7d5d, 0x8fd3e9}, + {0x7d5e, 0xb9ca}, + {0x7d61, 0xcded}, + {0x7d62, 0xb0bc}, + {0x7d63, 0xe5b3}, + {0x7d65, 0x8fd3ea}, + {0x7d66, 0xb5eb}, + {0x7d67, 0x8fd3eb}, + {0x7d68, 0xe5b0}, + {0x7d6a, 0x8fd3ec}, + {0x7d6e, 0xe5b1}, + {0x7d70, 0x8fd3ed}, + {0x7d71, 0xc5fd}, + {0x7d72, 0xe5af}, + {0x7d73, 0xe5ac}, + {0x7d75, 0xb3a8}, + {0x7d76, 0xc0e4}, + {0x7d78, 0x8fd3ee}, + {0x7d79, 0xb8a8}, + {0x7d7a, 0x8fd3ef}, + {0x7d7b, 0x8fd3f0}, + {0x7d7d, 0xe5b8}, + {0x7d7f, 0x8fd3f1}, + {0x7d81, 0x8fd3f2}, + {0x7d82, 0x8fd3f3}, + {0x7d83, 0x8fd3f4}, + {0x7d85, 0x8fd3f5}, + {0x7d86, 0x8fd3f6}, + {0x7d88, 0x8fd3f7}, + {0x7d89, 0xe5b5}, + {0x7d8b, 0x8fd3f8}, + {0x7d8c, 0x8fd3f9}, + {0x7d8d, 0x8fd3fa}, + {0x7d8f, 0xe5b7}, + {0x7d91, 0x8fd3fb}, + {0x7d93, 0xe5b4}, + {0x7d96, 0x8fd3fc}, + {0x7d97, 0x8fd3fd}, + {0x7d99, 0xb7d1}, + {0x7d9a, 0xc2b3}, + {0x7d9b, 0xe5b9}, + {0x7d9c, 0xc1ee}, + {0x7d9d, 0x8fd3fe}, + {0x7d9e, 0x8fd4a1}, + {0x7d9f, 0xe5c6}, + {0x7da2, 0xe5c2}, + {0x7da3, 0xe5bc}, + {0x7da6, 0x8fd4a2}, + {0x7da7, 0x8fd4a3}, + {0x7daa, 0x8fd4a4}, + {0x7dab, 0xe5c0}, + {0x7dac, 0xbcfa}, + {0x7dad, 0xb0dd}, + {0x7dae, 0xe5bb}, + {0x7daf, 0xe5c3}, + {0x7db0, 0xe5c7}, + {0x7db1, 0xb9cb}, + {0x7db2, 0xccd6}, + {0x7db3, 0x8fd4a5}, + {0x7db4, 0xc4d6}, + {0x7db5, 0xe5bd}, + {0x7db6, 0x8fd4a6}, + {0x7db7, 0x8fd4a7}, + {0x7db8, 0xe5c5}, + {0x7db9, 0x8fd4a8}, + {0x7dba, 0xe5ba}, + {0x7dbb, 0xc3be}, + {0x7dbd, 0xe5bf}, + {0x7dbe, 0xb0bd}, + {0x7dbf, 0xccca}, + {0x7dc2, 0x8fd4a9}, + {0x7dc3, 0x8fd4aa}, + {0x7dc4, 0x8fd4ab}, + {0x7dc5, 0x8fd4ac}, + {0x7dc6, 0x8fd4ad}, + {0x7dc7, 0xe5be}, + {0x7dca, 0xb6db}, + {0x7dcb, 0xc8ec}, + {0x7dcc, 0x8fd4ae}, + {0x7dcd, 0x8fd4af}, + {0x7dce, 0x8fd4b0}, + {0x7dcf, 0xc1ed}, + {0x7dd1, 0xced0}, + {0x7dd2, 0xbdef}, + {0x7dd5, 0xe5ee}, + {0x7dd7, 0x8fd4b1}, + {0x7dd8, 0xe5c8}, + {0x7dd9, 0x8fd4b2}, + {0x7dda, 0xc0fe}, + {0x7ddc, 0xe5c4}, + {0x7ddd, 0xe5c9}, + {0x7dde, 0xe5cb}, + {0x7de0, 0xc4f9}, + {0x7de1, 0xe5ce}, + {0x7de2, 0x8fd4b4}, + {0x7de4, 0xe5ca}, + {0x7de5, 0x8fd4b5}, + {0x7de6, 0x8fd4b6}, + {0x7de8, 0xcad4}, + {0x7de9, 0xb4cb}, + {0x7dea, 0x8fd4b7}, + {0x7deb, 0x8fd4b8}, + {0x7dec, 0xcccb}, + {0x7ded, 0x8fd4b9}, + {0x7def, 0xb0de}, + {0x7df1, 0x8fd4ba}, + {0x7df2, 0xe5cd}, + {0x7df4, 0xcefd}, + {0x7df5, 0x8fd4bb}, + {0x7df6, 0x8fd4bc}, + {0x7df9, 0x8fd4bd}, + {0x7dfa, 0x8fd4be}, + {0x7dfb, 0xe5cc}, + {0x7e00, 0x8fd4b3}, + {0x7e01, 0xb1ef}, + {0x7e04, 0xc6ec}, + {0x7e05, 0xe5cf}, + {0x7e08, 0x8fd4bf}, + {0x7e09, 0xe5d6}, + {0x7e0a, 0xe5d0}, + {0x7e0b, 0xe5d7}, + {0x7e10, 0x8fd4c0}, + {0x7e11, 0x8fd4c1}, + {0x7e12, 0xe5d3}, + {0x7e15, 0x8fd4c2}, + {0x7e17, 0x8fd4c3}, + {0x7e1b, 0xc7fb}, + {0x7e1c, 0x8fd4c4}, + {0x7e1d, 0x8fd4c5}, + {0x7e1e, 0xbcca}, + {0x7e1f, 0xe5d5}, + {0x7e20, 0x8fd4c6}, + {0x7e21, 0xe5d2}, + {0x7e22, 0xe5d8}, + {0x7e23, 0xe5d1}, + {0x7e26, 0xbdc4}, + {0x7e27, 0x8fd4c7}, + {0x7e28, 0x8fd4c8}, + {0x7e2b, 0xcba5}, + {0x7e2c, 0x8fd4c9}, + {0x7e2d, 0x8fd4ca}, + {0x7e2e, 0xbdcc}, + {0x7e2f, 0x8fd4cb}, + {0x7e31, 0xe5d4}, + {0x7e32, 0xe5e0}, + {0x7e33, 0x8fd4cc}, + {0x7e35, 0xe5dc}, + {0x7e36, 0x8fd4cd}, + {0x7e37, 0xe5df}, + {0x7e39, 0xe5dd}, + {0x7e3a, 0xe5e1}, + {0x7e3b, 0xe5db}, + {0x7e3d, 0xe5c1}, + {0x7e3e, 0xc0d3}, + {0x7e3f, 0x8fd4ce}, + {0x7e41, 0xc8cb}, + {0x7e43, 0xe5de}, + {0x7e44, 0x8fd4cf}, + {0x7e45, 0x8fd4d0}, + {0x7e46, 0xe5d9}, + {0x7e47, 0x8fd4d1}, + {0x7e4a, 0xc1a1}, + {0x7e4b, 0xb7d2}, + {0x7e4d, 0xbdab}, + {0x7e4e, 0x8fd4d2}, + {0x7e50, 0x8fd4d3}, + {0x7e52, 0x8fd4d4}, + {0x7e54, 0xbfa5}, + {0x7e55, 0xc1b6}, + {0x7e56, 0xe5e4}, + {0x7e58, 0x8fd4d5}, + {0x7e59, 0xe5e6}, + {0x7e5a, 0xe5e7}, + {0x7e5d, 0xe5e3}, + {0x7e5e, 0xe5e5}, + {0x7e5f, 0x8fd4d6}, + {0x7e61, 0x8fd4d7}, + {0x7e62, 0x8fd4d8}, + {0x7e65, 0x8fd4d9}, + {0x7e66, 0xe5da}, + {0x7e67, 0xe5e2}, + {0x7e69, 0xe5ea}, + {0x7e6a, 0xe5e9}, + {0x7e6b, 0x8fd4da}, + {0x7e6d, 0xcbfa}, + {0x7e6e, 0x8fd4db}, + {0x7e6f, 0x8fd4dc}, + {0x7e70, 0xb7ab}, + {0x7e73, 0x8fd4dd}, + {0x7e78, 0x8fd4de}, + {0x7e79, 0xe5e8}, + {0x7e7b, 0xe5ec}, + {0x7e7c, 0xe5eb}, + {0x7e7d, 0xe5ef}, + {0x7e7e, 0x8fd4df}, + {0x7e7f, 0xe5f1}, + {0x7e81, 0x8fd4e0}, + {0x7e82, 0xbbbc}, + {0x7e83, 0xe5ed}, + {0x7e86, 0x8fd4e1}, + {0x7e87, 0x8fd4e2}, + {0x7e88, 0xe5f2}, + {0x7e89, 0xe5f3}, + {0x7e8a, 0x8fd4e3}, + {0x7e8c, 0xe5f4}, + {0x7e8d, 0x8fd4e4}, + {0x7e8e, 0xe5fa}, + {0x7e8f, 0xc5bb}, + {0x7e90, 0xe5f6}, + {0x7e91, 0x8fd4e5}, + {0x7e92, 0xe5f5}, + {0x7e93, 0xe5f7}, + {0x7e94, 0xe5f8}, + {0x7e95, 0x8fd4e6}, + {0x7e96, 0xe5f9}, + {0x7e98, 0x8fd4e7}, + {0x7e9a, 0x8fd4e8}, + {0x7e9b, 0xe5fb}, + {0x7e9c, 0xe5fc}, + {0x7e9d, 0x8fd4e9}, + {0x7e9e, 0x8fd4ea}, + {0x7f36, 0xb4cc}, + {0x7f38, 0xe5fd}, + {0x7f3a, 0xe5fe}, + {0x7f3b, 0x8fd4ec}, + {0x7f3c, 0x8fd4eb}, + {0x7f3d, 0x8fd4ed}, + {0x7f3e, 0x8fd4ee}, + {0x7f3f, 0x8fd4ef}, + {0x7f43, 0x8fd4f0}, + {0x7f44, 0x8fd4f1}, + {0x7f45, 0xe6a1}, + {0x7f47, 0x8fd4f2}, + {0x7f4c, 0xe6a2}, + {0x7f4d, 0xe6a3}, + {0x7f4e, 0xe6a4}, + {0x7f4f, 0x8fd4f3}, + {0x7f50, 0xe6a5}, + {0x7f51, 0xe6a6}, + {0x7f52, 0x8fd4f4}, + {0x7f53, 0x8fd4f5}, + {0x7f54, 0xe6a8}, + {0x7f55, 0xe6a7}, + {0x7f58, 0xe6a9}, + {0x7f5b, 0x8fd4f6}, + {0x7f5c, 0x8fd4f7}, + {0x7f5d, 0x8fd4f8}, + {0x7f5f, 0xe6aa}, + {0x7f60, 0xe6ab}, + {0x7f61, 0x8fd4f9}, + {0x7f63, 0x8fd4fa}, + {0x7f64, 0x8fd4fb}, + {0x7f65, 0x8fd4fc}, + {0x7f66, 0x8fd4fd}, + {0x7f67, 0xe6ae}, + {0x7f68, 0xe6ac}, + {0x7f69, 0xe6ad}, + {0x7f6a, 0xbae1}, + {0x7f6b, 0xb7d3}, + {0x7f6d, 0x8fd4fe}, + {0x7f6e, 0xc3d6}, + {0x7f70, 0xc8b3}, + {0x7f71, 0x8fd5a1}, + {0x7f72, 0xbdf0}, + {0x7f75, 0xc7cd}, + {0x7f77, 0xc8ed}, + {0x7f78, 0xe6af}, + {0x7f79, 0xd8ed}, + {0x7f7d, 0x8fd5a2}, + {0x7f7e, 0x8fd5a3}, + {0x7f7f, 0x8fd5a4}, + {0x7f80, 0x8fd5a5}, + {0x7f82, 0xe6b0}, + {0x7f83, 0xe6b2}, + {0x7f85, 0xcde5}, + {0x7f86, 0xe6b1}, + {0x7f87, 0xe6b4}, + {0x7f88, 0xe6b3}, + {0x7f8a, 0xcdd3}, + {0x7f8b, 0x8fd5a6}, + {0x7f8c, 0xe6b5}, + {0x7f8d, 0x8fd5a7}, + {0x7f8e, 0xc8fe}, + {0x7f8f, 0x8fd5a8}, + {0x7f90, 0x8fd5a9}, + {0x7f91, 0x8fd5aa}, + {0x7f94, 0xe6b6}, + {0x7f96, 0x8fd5ab}, + {0x7f97, 0x8fd5ac}, + {0x7f9a, 0xe6b9}, + {0x7f9c, 0x8fd5ad}, + {0x7f9d, 0xe6b8}, + {0x7f9e, 0xe6b7}, + {0x7fa1, 0x8fd5ae}, + {0x7fa2, 0x8fd5af}, + {0x7fa3, 0xe6ba}, + {0x7fa4, 0xb7b2}, + {0x7fa6, 0x8fd5b0}, + {0x7fa8, 0xc1a2}, + {0x7fa9, 0xb5c1}, + {0x7faa, 0x8fd5b1}, + {0x7fad, 0x8fd5b2}, + {0x7fae, 0xe6be}, + {0x7faf, 0xe6bb}, + {0x7fb2, 0xe6bc}, + {0x7fb4, 0x8fd5b3}, + {0x7fb6, 0xe6bf}, + {0x7fb8, 0xe6c0}, + {0x7fb9, 0xe6bd}, + {0x7fbc, 0x8fd5b4}, + {0x7fbd, 0xb1a9}, + {0x7fbf, 0x8fd5b5}, + {0x7fc0, 0x8fd5b6}, + {0x7fc1, 0xb2a7}, + {0x7fc3, 0x8fd5b7}, + {0x7fc5, 0xe6c2}, + {0x7fc6, 0xe6c3}, + {0x7fc8, 0x8fd5b8}, + {0x7fca, 0xe6c4}, + {0x7fcc, 0xcde2}, + {0x7fce, 0x8fd5b9}, + {0x7fcf, 0x8fd5ba}, + {0x7fd2, 0xbdac}, + {0x7fd4, 0xe6c6}, + {0x7fd5, 0xe6c5}, + {0x7fdb, 0x8fd5bb}, + {0x7fdf, 0x8fd5bc}, + {0x7fe0, 0xbfe9}, + {0x7fe1, 0xe6c7}, + {0x7fe3, 0x8fd5bd}, + {0x7fe5, 0x8fd5be}, + {0x7fe6, 0xe6c8}, + {0x7fe8, 0x8fd5bf}, + {0x7fe9, 0xe6c9}, + {0x7feb, 0xb4e5}, + {0x7fec, 0x8fd5c0}, + {0x7fee, 0x8fd5c1}, + {0x7fef, 0x8fd5c2}, + {0x7ff0, 0xb4cd}, + {0x7ff2, 0x8fd5c3}, + {0x7ff3, 0xe6ca}, + {0x7ff9, 0xe6cb}, + {0x7ffa, 0x8fd5c4}, + {0x7ffb, 0xcbdd}, + {0x7ffc, 0xcde3}, + {0x7ffd, 0x8fd5c5}, + {0x7ffe, 0x8fd5c6}, + {0x7fff, 0x8fd5c7}, + {0x8000, 0xcdd4}, + {0x8001, 0xcfb7}, + {0x8003, 0xb9cd}, + {0x8004, 0xe6ce}, + {0x8005, 0xbcd4}, + {0x8006, 0xe6cd}, + {0x8007, 0x8fd5c8}, + {0x8008, 0x8fd5c9}, + {0x800a, 0x8fd5ca}, + {0x800b, 0xe6cf}, + {0x800c, 0xbca9}, + {0x800d, 0x8fd5cb}, + {0x800e, 0x8fd5cc}, + {0x800f, 0x8fd5cd}, + {0x8010, 0xc2d1}, + {0x8011, 0x8fd5ce}, + {0x8012, 0xe6d0}, + {0x8013, 0x8fd5cf}, + {0x8014, 0x8fd5d0}, + {0x8015, 0xb9cc}, + {0x8016, 0x8fd5d1}, + {0x8017, 0xccd7}, + {0x8018, 0xe6d1}, + {0x8019, 0xe6d2}, + {0x801c, 0xe6d3}, + {0x801d, 0x8fd5d2}, + {0x801e, 0x8fd5d3}, + {0x801f, 0x8fd5d4}, + {0x8020, 0x8fd5d5}, + {0x8021, 0xe6d4}, + {0x8024, 0x8fd5d6}, + {0x8026, 0x8fd5d7}, + {0x8028, 0xe6d5}, + {0x802c, 0x8fd5d8}, + {0x802e, 0x8fd5d9}, + {0x8030, 0x8fd5da}, + {0x8033, 0xbcaa}, + {0x8034, 0x8fd5db}, + {0x8035, 0x8fd5dc}, + {0x8036, 0xcced}, + {0x8037, 0x8fd5dd}, + {0x8039, 0x8fd5de}, + {0x803a, 0x8fd5df}, + {0x803b, 0xe6d7}, + {0x803c, 0x8fd5e0}, + {0x803d, 0xc3bf}, + {0x803e, 0x8fd5e1}, + {0x803f, 0xe6d6}, + {0x8040, 0x8fd5e2}, + {0x8044, 0x8fd5e3}, + {0x8046, 0xe6d9}, + {0x804a, 0xe6d8}, + {0x8052, 0xe6da}, + {0x8056, 0xc0bb}, + {0x8058, 0xe6db}, + {0x805a, 0xe6dc}, + {0x805e, 0xcab9}, + {0x805f, 0xe6dd}, + {0x8060, 0x8fd5e4}, + {0x8061, 0xc1ef}, + {0x8062, 0xe6de}, + {0x8064, 0x8fd5e5}, + {0x8066, 0x8fd5e6}, + {0x8068, 0xe6df}, + {0x806d, 0x8fd5e7}, + {0x806f, 0xcefe}, + {0x8070, 0xe6e2}, + {0x8071, 0x8fd5e8}, + {0x8072, 0xe6e1}, + {0x8073, 0xe6e0}, + {0x8074, 0xc4b0}, + {0x8075, 0x8fd5e9}, + {0x8076, 0xe6e3}, + {0x8077, 0xbfa6}, + {0x8079, 0xe6e4}, + {0x807d, 0xe6e5}, + {0x807e, 0xcfb8}, + {0x807f, 0xe6e6}, + {0x8081, 0x8fd5ea}, + {0x8084, 0xe6e7}, + {0x8085, 0xe6e9}, + {0x8086, 0xe6e8}, + {0x8087, 0xc8a5}, + {0x8088, 0x8fd5eb}, + {0x8089, 0xc6f9}, + {0x808b, 0xcfbe}, + {0x808c, 0xc8a9}, + {0x808e, 0x8fd5ec}, + {0x8093, 0xe6eb}, + {0x8096, 0xbed3}, + {0x8098, 0xc9aa}, + {0x809a, 0xe6ec}, + {0x809b, 0xe6ea}, + {0x809c, 0x8fd5ed}, + {0x809d, 0xb4ce}, + {0x809e, 0x8fd5ee}, + {0x80a1, 0xb8d4}, + {0x80a2, 0xbbe8}, + {0x80a5, 0xc8ee}, + {0x80a6, 0x8fd5ef}, + {0x80a7, 0x8fd5f0}, + {0x80a9, 0xb8aa}, + {0x80aa, 0xcbc3}, + {0x80ab, 0x8fd5f1}, + {0x80ac, 0xe6ef}, + {0x80ad, 0xe6ed}, + {0x80af, 0xb9ce}, + {0x80b1, 0xb9cf}, + {0x80b2, 0xb0e9}, + {0x80b4, 0xbae8}, + {0x80b8, 0x8fd5f2}, + {0x80b9, 0x8fd5f3}, + {0x80ba, 0xc7d9}, + {0x80c3, 0xb0df}, + {0x80c4, 0xe6f4}, + {0x80c6, 0xc3c0}, + {0x80c8, 0x8fd5f4}, + {0x80cc, 0xc7d8}, + {0x80cd, 0x8fd5f5}, + {0x80ce, 0xc2db}, + {0x80cf, 0x8fd5f6}, + {0x80d2, 0x8fd5f7}, + {0x80d4, 0x8fd5f8}, + {0x80d5, 0x8fd5f9}, + {0x80d6, 0xe6f6}, + {0x80d7, 0x8fd5fa}, + {0x80d8, 0x8fd5fb}, + {0x80d9, 0xe6f2}, + {0x80da, 0xe6f5}, + {0x80db, 0xe6f0}, + {0x80dd, 0xe6f3}, + {0x80de, 0xcba6}, + {0x80e0, 0x8fd5fc}, + {0x80e1, 0xb8d5}, + {0x80e4, 0xb0fd}, + {0x80e5, 0xe6f1}, + {0x80ed, 0x8fd5fd}, + {0x80ee, 0x8fd5fe}, + {0x80ef, 0xe6f8}, + {0x80f0, 0x8fd6a1}, + {0x80f1, 0xe6f9}, + {0x80f2, 0x8fd6a2}, + {0x80f3, 0x8fd6a3}, + {0x80f4, 0xc6b9}, + {0x80f6, 0x8fd6a4}, + {0x80f8, 0xb6bb}, + {0x80f9, 0x8fd6a5}, + {0x80fa, 0x8fd6a6}, + {0x80fc, 0xe7a6}, + {0x80fd, 0xc7bd}, + {0x80fe, 0x8fd6a7}, + {0x8102, 0xbbe9}, + {0x8103, 0x8fd6a8}, + {0x8105, 0xb6bc}, + {0x8106, 0xc0c8}, + {0x8107, 0xcfc6}, + {0x8108, 0xccae}, + {0x8109, 0xe6f7}, + {0x810a, 0xc0d4}, + {0x810b, 0x8fd6a9}, + {0x8116, 0x8fd6aa}, + {0x8117, 0x8fd6ab}, + {0x8118, 0x8fd6ac}, + {0x811a, 0xb5d3}, + {0x811b, 0xe6fa}, + {0x811c, 0x8fd6ad}, + {0x811e, 0x8fd6ae}, + {0x8120, 0x8fd6af}, + {0x8123, 0xe6fc}, + {0x8124, 0x8fd6b0}, + {0x8127, 0x8fd6b1}, + {0x8129, 0xe6fb}, + {0x812c, 0x8fd6b2}, + {0x812f, 0xe6fd}, + {0x8130, 0x8fd6b3}, + {0x8131, 0xc3a6}, + {0x8133, 0xc7be}, + {0x8135, 0x8fd6b4}, + {0x8139, 0xc4b1}, + {0x813a, 0x8fd6b5}, + {0x813c, 0x8fd6b6}, + {0x813e, 0xe7a3}, + {0x8145, 0x8fd6b7}, + {0x8146, 0xe7a2}, + {0x8147, 0x8fd6b8}, + {0x814a, 0x8fd6b9}, + {0x814b, 0xe6fe}, + {0x814c, 0x8fd6ba}, + {0x814e, 0xbfd5}, + {0x8150, 0xc9e5}, + {0x8151, 0xe7a5}, + {0x8152, 0x8fd6bb}, + {0x8153, 0xe7a4}, + {0x8154, 0xb9d0}, + {0x8155, 0xcfd3}, + {0x8157, 0x8fd6bc}, + {0x815f, 0xe7b5}, + {0x8160, 0x8fd6bd}, + {0x8161, 0x8fd6be}, + {0x8165, 0xe7a9}, + {0x8166, 0xe7aa}, + {0x8167, 0x8fd6bf}, + {0x8168, 0x8fd6c0}, + {0x8169, 0x8fd6c1}, + {0x816b, 0xbcf0}, + {0x816d, 0x8fd6c2}, + {0x816e, 0xe7a8}, + {0x816f, 0x8fd6c3}, + {0x8170, 0xb9f8}, + {0x8171, 0xe7a7}, + {0x8174, 0xe7ab}, + {0x8177, 0x8fd6c4}, + {0x8178, 0xc4b2}, + {0x8179, 0xcaa2}, + {0x817a, 0xc1a3}, + {0x817f, 0xc2dc}, + {0x8180, 0xe7af}, + {0x8181, 0x8fd6c5}, + {0x8182, 0xe7b0}, + {0x8183, 0xe7ac}, + {0x8184, 0x8fd6c7}, + {0x8185, 0x8fd6c8}, + {0x8186, 0x8fd6c9}, + {0x8188, 0xe7ad}, + {0x818a, 0xe7ae}, + {0x818b, 0x8fd6ca}, + {0x818e, 0x8fd6cb}, + {0x818f, 0xb9d1}, + {0x8190, 0x8fd6c6}, + {0x8193, 0xe7b6}, + {0x8195, 0xe7b2}, + {0x8196, 0x8fd6cc}, + {0x8198, 0x8fd6cd}, + {0x819a, 0xc9e6}, + {0x819b, 0x8fd6ce}, + {0x819c, 0xcbec}, + {0x819d, 0xc9a8}, + {0x819e, 0x8fd6cf}, + {0x81a0, 0xe7b1}, + {0x81a2, 0x8fd6d0}, + {0x81a3, 0xe7b4}, + {0x81a4, 0xe7b3}, + {0x81a8, 0xcbc4}, + {0x81a9, 0xe7b7}, + {0x81ae, 0x8fd6d1}, + {0x81b0, 0xe7b8}, + {0x81b2, 0x8fd6d2}, + {0x81b3, 0xc1b7}, + {0x81b4, 0x8fd6d3}, + {0x81b5, 0xe7b9}, + {0x81b8, 0xe7bb}, + {0x81ba, 0xe7bf}, + {0x81bb, 0x8fd6d4}, + {0x81bd, 0xe7bc}, + {0x81be, 0xe7ba}, + {0x81bf, 0xc7bf}, + {0x81c0, 0xe7bd}, + {0x81c2, 0xe7be}, + {0x81c3, 0x8fd6d6}, + {0x81c5, 0x8fd6d7}, + {0x81c6, 0xb2b2}, + {0x81c8, 0xe7c5}, + {0x81c9, 0xe7c0}, + {0x81ca, 0x8fd6d8}, + {0x81cb, 0x8fd6d5}, + {0x81cd, 0xe7c1}, + {0x81ce, 0x8fd6d9}, + {0x81cf, 0x8fd6da}, + {0x81d1, 0xe7c2}, + {0x81d3, 0xc2a1}, + {0x81d5, 0x8fd6db}, + {0x81d7, 0x8fd6dc}, + {0x81d8, 0xe7c4}, + {0x81d9, 0xe7c3}, + {0x81da, 0xe7c6}, + {0x81db, 0x8fd6dd}, + {0x81dd, 0x8fd6de}, + {0x81de, 0x8fd6df}, + {0x81df, 0xe7c7}, + {0x81e0, 0xe7c8}, + {0x81e1, 0x8fd6e0}, + {0x81e3, 0xbfc3}, + {0x81e4, 0x8fd6e1}, + {0x81e5, 0xb2e9}, + {0x81e7, 0xe7c9}, + {0x81e8, 0xced7}, + {0x81ea, 0xbcab}, + {0x81eb, 0x8fd6e2}, + {0x81ec, 0x8fd6e3}, + {0x81ed, 0xbdad}, + {0x81f0, 0x8fd6e4}, + {0x81f1, 0x8fd6e5}, + {0x81f2, 0x8fd6e6}, + {0x81f3, 0xbbea}, + {0x81f4, 0xc3d7}, + {0x81f5, 0x8fd6e7}, + {0x81f6, 0x8fd6e8}, + {0x81f8, 0x8fd6e9}, + {0x81f9, 0x8fd6ea}, + {0x81fa, 0xe7ca}, + {0x81fb, 0xe7cb}, + {0x81fc, 0xb1b1}, + {0x81fd, 0x8fd6eb}, + {0x81fe, 0xe7cc}, + {0x81ff, 0x8fd6ec}, + {0x8200, 0x8fd6ed}, + {0x8201, 0xe7cd}, + {0x8202, 0xe7ce}, + {0x8203, 0x8fd6ee}, + {0x8205, 0xe7cf}, + {0x8207, 0xe7d0}, + {0x8208, 0xb6bd}, + {0x8209, 0xdaaa}, + {0x820a, 0xe7d1}, + {0x820c, 0xc0e5}, + {0x820d, 0xe7d2}, + {0x820e, 0xbccb}, + {0x820f, 0x8fd6ef}, + {0x8210, 0xe7d3}, + {0x8212, 0xd0b0}, + {0x8213, 0x8fd6f0}, + {0x8214, 0x8fd6f1}, + {0x8216, 0xe7d4}, + {0x8217, 0xcade}, + {0x8218, 0xb4dc}, + {0x8219, 0x8fd6f2}, + {0x821a, 0x8fd6f3}, + {0x821b, 0xc1a4}, + {0x821c, 0xbdd8}, + {0x821d, 0x8fd6f4}, + {0x821e, 0xc9f1}, + {0x821f, 0xbdae}, + {0x8221, 0x8fd6f5}, + {0x8222, 0x8fd6f6}, + {0x8228, 0x8fd6f7}, + {0x8229, 0xe7d5}, + {0x822a, 0xb9d2}, + {0x822b, 0xe7d6}, + {0x822c, 0xc8cc}, + {0x822e, 0xe7e4}, + {0x8232, 0x8fd6f8}, + {0x8233, 0xe7d8}, + {0x8234, 0x8fd6f9}, + {0x8235, 0xc2c9}, + {0x8236, 0xc7f5}, + {0x8237, 0xb8bf}, + {0x8238, 0xe7d7}, + {0x8239, 0xc1a5}, + {0x823a, 0x8fd6fa}, + {0x8240, 0xe7d9}, + {0x8243, 0x8fd6fb}, + {0x8244, 0x8fd6fc}, + {0x8245, 0x8fd6fd}, + {0x8246, 0x8fd6fe}, + {0x8247, 0xc4fa}, + {0x824b, 0x8fd7a1}, + {0x824e, 0x8fd7a2}, + {0x824f, 0x8fd7a3}, + {0x8251, 0x8fd7a4}, + {0x8256, 0x8fd7a5}, + {0x8258, 0xe7db}, + {0x8259, 0xe7da}, + {0x825a, 0xe7dd}, + {0x825c, 0x8fd7a6}, + {0x825d, 0xe7dc}, + {0x825f, 0xe7de}, + {0x8260, 0x8fd7a7}, + {0x8262, 0xe7e0}, + {0x8263, 0x8fd7a8}, + {0x8264, 0xe7df}, + {0x8266, 0xb4cf}, + {0x8267, 0x8fd7a9}, + {0x8268, 0xe7e1}, + {0x826a, 0xe7e2}, + {0x826b, 0xe7e3}, + {0x826d, 0x8fd7aa}, + {0x826e, 0xbab1}, + {0x826f, 0xcec9}, + {0x8271, 0xe7e5}, + {0x8272, 0xbfa7}, + {0x8274, 0x8fd7ab}, + {0x8276, 0xb1f0}, + {0x8277, 0xe7e6}, + {0x8278, 0xe7e7}, + {0x827b, 0x8fd7ac}, + {0x827d, 0x8fd7ad}, + {0x827e, 0xe7e8}, + {0x827f, 0x8fd7ae}, + {0x8280, 0x8fd7af}, + {0x8281, 0x8fd7b0}, + {0x8283, 0x8fd7b1}, + {0x8284, 0x8fd7b2}, + {0x8287, 0x8fd7b3}, + {0x8289, 0x8fd7b4}, + {0x828a, 0x8fd7b5}, + {0x828b, 0xb0f2}, + {0x828d, 0xe7e9}, + {0x828e, 0x8fd7b6}, + {0x8291, 0x8fd7b7}, + {0x8292, 0xe7ea}, + {0x8294, 0x8fd7b8}, + {0x8296, 0x8fd7b9}, + {0x8298, 0x8fd7ba}, + {0x8299, 0xc9e7}, + {0x829a, 0x8fd7bb}, + {0x829b, 0x8fd7bc}, + {0x829d, 0xbcc7}, + {0x829f, 0xe7ec}, + {0x82a0, 0x8fd7bd}, + {0x82a1, 0x8fd7be}, + {0x82a3, 0x8fd7bf}, + {0x82a4, 0x8fd7c0}, + {0x82a5, 0xb3a9}, + {0x82a6, 0xb0b2}, + {0x82a7, 0x8fd7c1}, + {0x82a8, 0x8fd7c2}, + {0x82a9, 0x8fd7c3}, + {0x82aa, 0x8fd7c4}, + {0x82ab, 0xe7eb}, + {0x82ac, 0xe7ee}, + {0x82ad, 0xc7ce}, + {0x82ae, 0x8fd7c5}, + {0x82af, 0xbfc4}, + {0x82b0, 0x8fd7c6}, + {0x82b1, 0xb2d6}, + {0x82b2, 0x8fd7c7}, + {0x82b3, 0xcba7}, + {0x82b4, 0x8fd7c8}, + {0x82b7, 0x8fd7c9}, + {0x82b8, 0xb7dd}, + {0x82b9, 0xb6dc}, + {0x82ba, 0x8fd7ca}, + {0x82bb, 0xe7ed}, + {0x82bc, 0x8fd7cb}, + {0x82bd, 0xb2ea}, + {0x82be, 0x8fd7cc}, + {0x82bf, 0x8fd7cd}, + {0x82c5, 0xb4a3}, + {0x82c6, 0x8fd7ce}, + {0x82d0, 0x8fd7cf}, + {0x82d1, 0xb1f1}, + {0x82d2, 0xe7f2}, + {0x82d3, 0xceea}, + {0x82d4, 0xc2dd}, + {0x82d5, 0x8fd7d0}, + {0x82d7, 0xc9c4}, + {0x82d9, 0xe7fe}, + {0x82da, 0x8fd7d1}, + {0x82db, 0xb2d7}, + {0x82dc, 0xe7fc}, + {0x82de, 0xe7fa}, + {0x82df, 0xe7f1}, + {0x82e0, 0x8fd7d2}, + {0x82e1, 0xe7ef}, + {0x82e2, 0x8fd7d3}, + {0x82e3, 0xe7f0}, + {0x82e4, 0x8fd7d4}, + {0x82e5, 0xbce3}, + {0x82e6, 0xb6ec}, + {0x82e7, 0xc3f7}, + {0x82e8, 0x8fd7d5}, + {0x82ea, 0x8fd7d6}, + {0x82eb, 0xc6d1}, + {0x82ed, 0x8fd7d7}, + {0x82ef, 0x8fd7d8}, + {0x82f1, 0xb1d1}, + {0x82f3, 0xe7f4}, + {0x82f4, 0xe7f3}, + {0x82f6, 0x8fd7d9}, + {0x82f7, 0x8fd7da}, + {0x82f9, 0xe7f9}, + {0x82fa, 0xe7f5}, + {0x82fb, 0xe7f8}, + {0x82fd, 0x8fd7db}, + {0x82fe, 0x8fd7dc}, + {0x8300, 0x8fd7dd}, + {0x8301, 0x8fd7de}, + {0x8302, 0xccd0}, + {0x8303, 0xe7f7}, + {0x8304, 0xb2d8}, + {0x8305, 0xb3fd}, + {0x8306, 0xe7fb}, + {0x8307, 0x8fd7df}, + {0x8308, 0x8fd7e0}, + {0x8309, 0xe7fd}, + {0x830a, 0x8fd7e1}, + {0x830b, 0x8fd7e2}, + {0x830e, 0xb7d4}, + {0x8316, 0xe8a3}, + {0x8317, 0xe8ac}, + {0x8318, 0xe8ad}, + {0x831b, 0x8fd7e4}, + {0x831c, 0xb0ab}, + {0x831d, 0x8fd7e5}, + {0x831e, 0x8fd7e6}, + {0x831f, 0x8fd7e7}, + {0x8321, 0x8fd7e8}, + {0x8322, 0x8fd7e9}, + {0x8323, 0xe8b4}, + {0x8328, 0xb0f1}, + {0x832b, 0xe8ab}, + {0x832c, 0x8fd7ea}, + {0x832d, 0x8fd7eb}, + {0x832e, 0x8fd7ec}, + {0x832f, 0xe8aa}, + {0x8330, 0x8fd7ed}, + {0x8331, 0xe8a5}, + {0x8332, 0xe8a4}, + {0x8333, 0x8fd7ee}, + {0x8334, 0xe8a2}, + {0x8335, 0xe8a1}, + {0x8336, 0xc3e3}, + {0x8337, 0x8fd7ef}, + {0x8338, 0xc2fb}, + {0x8339, 0xe8a7}, + {0x833a, 0x8fd7f0}, + {0x833c, 0x8fd7f1}, + {0x833d, 0x8fd7f2}, + {0x8340, 0xe8a6}, + {0x8342, 0x8fd7f3}, + {0x8343, 0x8fd7f4}, + {0x8344, 0x8fd7f5}, + {0x8345, 0xe8a9}, + {0x8347, 0x8fd7f6}, + {0x8349, 0xc1f0}, + {0x834a, 0xb7d5}, + {0x834d, 0x8fd7f7}, + {0x834e, 0x8fd7f8}, + {0x834f, 0xb1c1}, + {0x8350, 0xe8a8}, + {0x8351, 0x8fd7f9}, + {0x8352, 0xb9d3}, + {0x8353, 0x8fd8be}, + {0x8354, 0x8fd7e3}, + {0x8355, 0x8fd7fa}, + {0x8356, 0x8fd7fb}, + {0x8357, 0x8fd7fc}, + {0x8358, 0xc1f1}, + {0x8370, 0x8fd7fd}, + {0x8373, 0xe8ba}, + {0x8375, 0xe8bb}, + {0x8377, 0xb2d9}, + {0x8378, 0x8fd7fe}, + {0x837b, 0xb2ae}, + {0x837c, 0xe8b8}, + {0x837d, 0x8fd8a1}, + {0x837f, 0x8fd8a2}, + {0x8380, 0x8fd8a3}, + {0x8382, 0x8fd8a4}, + {0x8384, 0x8fd8a5}, + {0x8385, 0xe8ae}, + {0x8386, 0x8fd8a6}, + {0x8387, 0xe8b6}, + {0x8389, 0xe8bd}, + {0x838a, 0xe8b7}, + {0x838d, 0x8fd8a7}, + {0x838e, 0xe8b5}, + {0x8392, 0x8fd8a8}, + {0x8393, 0xe7f6}, + {0x8394, 0x8fd8a9}, + {0x8395, 0x8fd8aa}, + {0x8396, 0xe8b3}, + {0x8398, 0x8fd8ab}, + {0x8399, 0x8fd8ac}, + {0x839a, 0xe8af}, + {0x839b, 0x8fd8ad}, + {0x839c, 0x8fd8ae}, + {0x839d, 0x8fd8af}, + {0x839e, 0xb4d0}, + {0x839f, 0xe8b1}, + {0x83a0, 0xe8bc}, + {0x83a2, 0xe8b2}, + {0x83a6, 0x8fd8b0}, + {0x83a7, 0x8fd8b1}, + {0x83a8, 0xe8be}, + {0x83a9, 0x8fd8b2}, + {0x83aa, 0xe8b0}, + {0x83ab, 0xc7fc}, + {0x83ac, 0x8fd8b3}, + {0x83ad, 0x8fd8cc}, + {0x83b1, 0xcde9}, + {0x83b5, 0xe8b9}, + {0x83bd, 0xe8cf}, + {0x83be, 0x8fd8b4}, + {0x83bf, 0x8fd8b5}, + {0x83c0, 0x8fd8b6}, + {0x83c1, 0xe8c7}, + {0x83c5, 0xbffb}, + {0x83c7, 0x8fd8b7}, + {0x83c9, 0x8fd8b8}, + {0x83ca, 0xb5c6}, + {0x83cc, 0xb6dd}, + {0x83ce, 0xe8c2}, + {0x83cf, 0x8fd8b9}, + {0x83d0, 0x8fd8ba}, + {0x83d1, 0x8fd8bb}, + {0x83d3, 0xb2db}, + {0x83d4, 0x8fd8bc}, + {0x83d6, 0xbed4}, + {0x83d8, 0xe8c5}, + {0x83dc, 0xbada}, + {0x83dd, 0x8fd8bd}, + {0x83df, 0xc5d1}, + {0x83e0, 0xe8ca}, + {0x83e8, 0x8fd8bf}, + {0x83e9, 0xcaee}, + {0x83ea, 0x8fd8c0}, + {0x83eb, 0xe8c1}, + {0x83ef, 0xb2da}, + {0x83f0, 0xb8d6}, + {0x83f1, 0xc9a9}, + {0x83f2, 0xe8cb}, + {0x83f4, 0xe8bf}, + {0x83f6, 0x8fd8c1}, + {0x83f7, 0xe8c8}, + {0x83f8, 0x8fd8c2}, + {0x83f9, 0x8fd8c3}, + {0x83fb, 0xe8d2}, + {0x83fc, 0x8fd8c4}, + {0x83fd, 0xe8c3}, + {0x8401, 0x8fd8c5}, + {0x8403, 0xe8c4}, + {0x8404, 0xc6ba}, + {0x8406, 0x8fd8c6}, + {0x8407, 0xe8c9}, + {0x840a, 0x8fd8c7}, + {0x840b, 0xe8c6}, + {0x840c, 0xcba8}, + {0x840d, 0xe8cc}, + {0x840e, 0xb0e0}, + {0x840f, 0x8fd8c8}, + {0x8411, 0x8fd8c9}, + {0x8413, 0xe8c0}, + {0x8415, 0x8fd8ca}, + {0x8419, 0x8fd8cb}, + {0x8420, 0xe8ce}, + {0x8422, 0xe8cd}, + {0x8429, 0xc7eb}, + {0x842a, 0xe8d4}, + {0x842c, 0xe8df}, + {0x842f, 0x8fd8cd}, + {0x8431, 0xb3fe}, + {0x8435, 0xe8e2}, + {0x8438, 0xe8d0}, + {0x8439, 0x8fd8ce}, + {0x843c, 0xe8d5}, + {0x843d, 0xcdee}, + {0x8445, 0x8fd8cf}, + {0x8446, 0xe8de}, + {0x8447, 0x8fd8d0}, + {0x8448, 0x8fd8d1}, + {0x8449, 0xcdd5}, + {0x844a, 0x8fd8d2}, + {0x844d, 0x8fd8d3}, + {0x844e, 0xceaa}, + {0x844f, 0x8fd8d4}, + {0x8451, 0x8fd8d5}, + {0x8452, 0x8fd8d6}, + {0x8456, 0x8fd8d7}, + {0x8457, 0xc3f8}, + {0x8458, 0x8fd8d8}, + {0x8459, 0x8fd8d9}, + {0x845a, 0x8fd8da}, + {0x845b, 0xb3eb}, + {0x845c, 0x8fd8db}, + {0x8460, 0x8fd8dc}, + {0x8461, 0xc9f2}, + {0x8462, 0xe8e4}, + {0x8463, 0xc6a1}, + {0x8464, 0x8fd8dd}, + {0x8465, 0x8fd8de}, + {0x8466, 0xb0b1}, + {0x8467, 0x8fd8df}, + {0x8469, 0xe8dd}, + {0x846a, 0x8fd8e0}, + {0x846b, 0xe8d9}, + {0x846c, 0xc1f2}, + {0x846d, 0xe8d3}, + {0x846e, 0xe8db}, + {0x846f, 0xe8e0}, + {0x8470, 0x8fd8e1}, + {0x8471, 0xc7ac}, + {0x8473, 0x8fd8e2}, + {0x8474, 0x8fd8e3}, + {0x8475, 0xb0aa}, + {0x8476, 0x8fd8e4}, + {0x8477, 0xe8d8}, + {0x8478, 0x8fd8e5}, + {0x8479, 0xe8e1}, + {0x847a, 0xc9f8}, + {0x847c, 0x8fd8e6}, + {0x847d, 0x8fd8e7}, + {0x8481, 0x8fd8e8}, + {0x8482, 0xe8dc}, + {0x8484, 0xe8d7}, + {0x8485, 0x8fd8e9}, + {0x848b, 0xbed5}, + {0x8490, 0xbdaf}, + {0x8492, 0x8fd8ea}, + {0x8493, 0x8fd8eb}, + {0x8494, 0xbcac}, + {0x8495, 0x8fd8ec}, + {0x8499, 0xccd8}, + {0x849c, 0xc9c7}, + {0x849e, 0x8fd8ed}, + {0x849f, 0xe8e7}, + {0x84a1, 0xe8f0}, + {0x84a6, 0x8fd8ee}, + {0x84a8, 0x8fd8ef}, + {0x84a9, 0x8fd8f0}, + {0x84aa, 0x8fd8f1}, + {0x84ad, 0xe8da}, + {0x84af, 0x8fd8f2}, + {0x84b1, 0x8fd8f3}, + {0x84b2, 0xb3f7}, + {0x84b4, 0x8fd8f4}, + {0x84b8, 0xbef8}, + {0x84b9, 0xe8e5}, + {0x84ba, 0x8fd8f5}, + {0x84bb, 0xe8ea}, + {0x84bc, 0xc1f3}, + {0x84bd, 0x8fd8f6}, + {0x84be, 0x8fd8f7}, + {0x84bf, 0xe8e6}, + {0x84c0, 0x8fd8f8}, + {0x84c1, 0xe8ed}, + {0x84c2, 0x8fd8f9}, + {0x84c4, 0xc3df}, + {0x84c6, 0xe8ee}, + {0x84c7, 0x8fd8fa}, + {0x84c8, 0x8fd8fb}, + {0x84c9, 0xcdd6}, + {0x84ca, 0xe8e3}, + {0x84cb, 0xb3b8}, + {0x84cc, 0x8fd8fc}, + {0x84cd, 0xe8e9}, + {0x84cf, 0x8fd8fd}, + {0x84d0, 0xe8ec}, + {0x84d1, 0xccac}, + {0x84d3, 0x8fd8fe}, + {0x84d6, 0xe8ef}, + {0x84d9, 0xe8e8}, + {0x84da, 0xe8eb}, + {0x84dc, 0x8fd9a1}, + {0x84e7, 0x8fd9a2}, + {0x84ea, 0x8fd9a3}, + {0x84ec, 0xcba9}, + {0x84ee, 0xcfa1}, + {0x84ef, 0x8fd9a4}, + {0x84f0, 0x8fd9a5}, + {0x84f1, 0x8fd9a6}, + {0x84f2, 0x8fd9a7}, + {0x84f4, 0xe8f3}, + {0x84f7, 0x8fd9a8}, + {0x84fa, 0x8fd9aa}, + {0x84fb, 0x8fd9ab}, + {0x84fc, 0xe8fa}, + {0x84fd, 0x8fd9ac}, + {0x84ff, 0xe8f2}, + {0x8500, 0xbcc3}, + {0x8502, 0x8fd9ad}, + {0x8503, 0x8fd9ae}, + {0x8506, 0xe8d1}, + {0x8507, 0x8fd9af}, + {0x850c, 0x8fd9b0}, + {0x850e, 0x8fd9b1}, + {0x8510, 0x8fd9b2}, + {0x8511, 0xcace}, + {0x8513, 0xcca2}, + {0x8514, 0xe8f9}, + {0x8515, 0xe8f8}, + {0x8517, 0xe8f4}, + {0x8518, 0xe8f5}, + {0x851a, 0xb1b6}, + {0x851c, 0x8fd9b3}, + {0x851e, 0x8fd9b4}, + {0x851f, 0xe8f7}, + {0x8521, 0xe8f1}, + {0x8522, 0x8fd9b5}, + {0x8523, 0x8fd9b6}, + {0x8524, 0x8fd9b7}, + {0x8525, 0x8fd9b8}, + {0x8526, 0xc4d5}, + {0x8527, 0x8fd9b9}, + {0x852a, 0x8fd9ba}, + {0x852b, 0x8fd9bb}, + {0x852c, 0xe8f6}, + {0x852d, 0xb0fe}, + {0x852f, 0x8fd9bc}, + {0x8532, 0x8fd9a9}, + {0x8533, 0x8fd9bd}, + {0x8534, 0x8fd9be}, + {0x8535, 0xc2a2}, + {0x8536, 0x8fd9bf}, + {0x853d, 0xcac3}, + {0x853f, 0x8fd9c0}, + {0x8540, 0xe8fb}, + {0x8541, 0xe9a1}, + {0x8543, 0xc8d9}, + {0x8546, 0x8fd9c1}, + {0x8548, 0xe8fe}, + {0x8549, 0xbed6}, + {0x854a, 0xbcc9}, + {0x854b, 0xe9a3}, + {0x854e, 0xb6be}, + {0x854f, 0x8fd9c2}, + {0x8550, 0x8fd9c3}, + {0x8551, 0x8fd9c4}, + {0x8552, 0x8fd9c5}, + {0x8553, 0x8fd9c6}, + {0x8555, 0xe9a4}, + {0x8556, 0x8fd9c7}, + {0x8557, 0xc9f9}, + {0x8558, 0xe8fd}, + {0x8559, 0x8fd9c8}, + {0x855a, 0xe8d6}, + {0x855c, 0x8fd9c9}, + {0x855d, 0x8fd9ca}, + {0x855e, 0x8fd9cb}, + {0x855f, 0x8fd9cc}, + {0x8560, 0x8fd9cd}, + {0x8561, 0x8fd9ce}, + {0x8562, 0x8fd9cf}, + {0x8563, 0xe8fc}, + {0x8564, 0x8fd9d0}, + {0x8568, 0xcfcf}, + {0x8569, 0xc6a2}, + {0x856a, 0xc9f3}, + {0x856b, 0x8fd9d1}, + {0x856d, 0xe9ab}, + {0x856f, 0x8fd9d2}, + {0x8577, 0xe9b1}, + {0x8579, 0x8fd9d3}, + {0x857a, 0x8fd9d4}, + {0x857b, 0x8fd9d5}, + {0x857d, 0x8fd9d6}, + {0x857e, 0xe9b2}, + {0x857f, 0x8fd9d7}, + {0x8580, 0xe9a5}, + {0x8581, 0x8fd9d8}, + {0x8584, 0xc7f6}, + {0x8585, 0x8fd9d9}, + {0x8586, 0x8fd9da}, + {0x8587, 0xe9af}, + {0x8588, 0xe9a7}, + {0x8589, 0x8fd9db}, + {0x858a, 0xe9a9}, + {0x858b, 0x8fd9dc}, + {0x858c, 0x8fd9dd}, + {0x858f, 0x8fd9de}, + {0x8590, 0xe9b3}, + {0x8591, 0xe9a8}, + {0x8593, 0x8fd9df}, + {0x8594, 0xe9ac}, + {0x8597, 0xb1f2}, + {0x8598, 0x8fd9e0}, + {0x8599, 0xc6e5}, + {0x859b, 0xe9ad}, + {0x859c, 0xe9b0}, + {0x859d, 0x8fd9e1}, + {0x859f, 0x8fd9e2}, + {0x85a0, 0x8fd9e3}, + {0x85a2, 0x8fd9e4}, + {0x85a4, 0xe9a6}, + {0x85a5, 0x8fd9e5}, + {0x85a6, 0xc1a6}, + {0x85a7, 0x8fd9e6}, + {0x85a8, 0xe9aa}, + {0x85a9, 0xbba7}, + {0x85aa, 0xbfc5}, + {0x85ab, 0xb7b0}, + {0x85ac, 0xccf4}, + {0x85ad, 0x8fd9f4}, + {0x85ae, 0xccf9}, + {0x85af, 0xbdf2}, + {0x85b4, 0x8fd9e7}, + {0x85b6, 0x8fd9e8}, + {0x85b7, 0x8fd9e9}, + {0x85b8, 0x8fd9ea}, + {0x85b9, 0xe9b7}, + {0x85ba, 0xe9b5}, + {0x85bc, 0x8fd9eb}, + {0x85bd, 0x8fd9ec}, + {0x85be, 0x8fd9ed}, + {0x85bf, 0x8fd9ee}, + {0x85c1, 0xcfce}, + {0x85c2, 0x8fd9ef}, + {0x85c7, 0x8fd9f0}, + {0x85c9, 0xe9b4}, + {0x85ca, 0x8fd9f1}, + {0x85cb, 0x8fd9f2}, + {0x85cd, 0xcdf5}, + {0x85ce, 0x8fd9f3}, + {0x85cf, 0xe9b6}, + {0x85d0, 0xe9b8}, + {0x85d5, 0xe9b9}, + {0x85d8, 0x8fd9f5}, + {0x85da, 0x8fd9f6}, + {0x85dc, 0xe9bc}, + {0x85dd, 0xe9ba}, + {0x85df, 0x8fd9f7}, + {0x85e0, 0x8fd9f8}, + {0x85e4, 0xc6a3}, + {0x85e5, 0xe9bb}, + {0x85e6, 0x8fd9f9}, + {0x85e8, 0x8fd9fa}, + {0x85e9, 0xc8cd}, + {0x85ea, 0xe9ae}, + {0x85ed, 0x8fd9fb}, + {0x85f3, 0x8fd9fc}, + {0x85f6, 0x8fd9fd}, + {0x85f7, 0xbdf3}, + {0x85f9, 0xe9bd}, + {0x85fa, 0xe9c2}, + {0x85fb, 0xc1f4}, + {0x85fc, 0x8fd9fe}, + {0x85fe, 0xe9c1}, + {0x85ff, 0x8fdaa1}, + {0x8600, 0x8fdaa2}, + {0x8602, 0xe9a2}, + {0x8604, 0x8fdaa3}, + {0x8605, 0x8fdaa4}, + {0x8606, 0xe9c3}, + {0x8607, 0xc1c9}, + {0x860a, 0xe9be}, + {0x860b, 0xe9c0}, + {0x860d, 0x8fdaa5}, + {0x860e, 0x8fdaa6}, + {0x8610, 0x8fdaa7}, + {0x8611, 0x8fdaa8}, + {0x8612, 0x8fdaa9}, + {0x8613, 0xe9bf}, + {0x8616, 0xddb1}, + {0x8617, 0xdda2}, + {0x8618, 0x8fdaaa}, + {0x8619, 0x8fdaab}, + {0x861a, 0xe9c5}, + {0x861b, 0x8fdaac}, + {0x861e, 0x8fdaad}, + {0x8621, 0x8fdaae}, + {0x8622, 0xe9c4}, + {0x8627, 0x8fdaaf}, + {0x8629, 0x8fdab0}, + {0x862d, 0xcdf6}, + {0x862f, 0xe2bc}, + {0x8630, 0xe9c6}, + {0x8636, 0x8fdab1}, + {0x8638, 0x8fdab2}, + {0x863a, 0x8fdab3}, + {0x863c, 0x8fdab4}, + {0x863d, 0x8fdab5}, + {0x863f, 0xe9c7}, + {0x8640, 0x8fdab6}, + {0x8641, 0x8fb8e6}, + {0x8642, 0x8fdab7}, + {0x8646, 0x8fdab8}, + {0x864d, 0xe9c8}, + {0x864e, 0xb8d7}, + {0x8650, 0xb5d4}, + {0x8652, 0x8fdab9}, + {0x8653, 0x8fdaba}, + {0x8654, 0xe9ca}, + {0x8655, 0xd1dd}, + {0x8656, 0x8fdabb}, + {0x8657, 0x8fdabc}, + {0x8658, 0x8fdabd}, + {0x8659, 0x8fdabe}, + {0x865a, 0xb5f5}, + {0x865c, 0xceba}, + {0x865d, 0x8fdabf}, + {0x865e, 0xb6f3}, + {0x865f, 0xe9cb}, + {0x8660, 0x8fdac0}, + {0x8661, 0x8fdac1}, + {0x8662, 0x8fdac2}, + {0x8663, 0x8fdac3}, + {0x8664, 0x8fdac4}, + {0x8667, 0xe9cc}, + {0x8669, 0x8fdac5}, + {0x866b, 0xc3ee}, + {0x866c, 0x8fdac6}, + {0x866f, 0x8fdac7}, + {0x8671, 0xe9cd}, + {0x8675, 0x8fdac8}, + {0x8676, 0x8fdac9}, + {0x8677, 0x8fdaca}, + {0x8679, 0xc6fa}, + {0x867a, 0x8fdacb}, + {0x867b, 0xb0ba}, + {0x8688, 0x8fdaed}, + {0x868a, 0xb2e3}, + {0x868b, 0xe9d2}, + {0x868c, 0xe9d3}, + {0x868d, 0x8fdacc}, + {0x8691, 0x8fdacd}, + {0x8693, 0xe9ce}, + {0x8695, 0xbbbd}, + {0x8696, 0x8fdace}, + {0x8698, 0x8fdacf}, + {0x869a, 0x8fdad0}, + {0x869c, 0x8fdad1}, + {0x86a1, 0x8fdad2}, + {0x86a3, 0xe9cf}, + {0x86a4, 0xc7c2}, + {0x86a6, 0x8fdad3}, + {0x86a7, 0x8fdad4}, + {0x86a8, 0x8fdad5}, + {0x86a9, 0xe9d0}, + {0x86aa, 0xe9d1}, + {0x86ab, 0xe9db}, + {0x86ad, 0x8fdad6}, + {0x86af, 0xe9d5}, + {0x86b0, 0xe9d8}, + {0x86b1, 0x8fdad7}, + {0x86b3, 0x8fdad8}, + {0x86b4, 0x8fdad9}, + {0x86b5, 0x8fdada}, + {0x86b6, 0xe9d4}, + {0x86b7, 0x8fdadb}, + {0x86b8, 0x8fdadc}, + {0x86b9, 0x8fdadd}, + {0x86bf, 0x8fdade}, + {0x86c0, 0x8fdadf}, + {0x86c1, 0x8fdae0}, + {0x86c3, 0x8fdae1}, + {0x86c4, 0xe9d6}, + {0x86c5, 0x8fdae2}, + {0x86c6, 0xe9d7}, + {0x86c7, 0xbcd8}, + {0x86c9, 0xe9d9}, + {0x86cb, 0xc3c1}, + {0x86cd, 0xb7d6}, + {0x86ce, 0xb3c2}, + {0x86d1, 0x8fdae3}, + {0x86d2, 0x8fdae4}, + {0x86d4, 0xe9dc}, + {0x86d5, 0x8fdae5}, + {0x86d7, 0x8fdae6}, + {0x86d9, 0xb3bf}, + {0x86da, 0x8fdae7}, + {0x86db, 0xe9e1}, + {0x86dc, 0x8fdae8}, + {0x86de, 0xe9dd}, + {0x86df, 0xe9e0}, + {0x86e0, 0x8fdae9}, + {0x86e3, 0x8fdaea}, + {0x86e4, 0xc8ba}, + {0x86e5, 0x8fdaeb}, + {0x86e7, 0x8fdaec}, + {0x86e9, 0xe9de}, + {0x86ec, 0xe9df}, + {0x86ed, 0xc9c8}, + {0x86ee, 0xc8da}, + {0x86ef, 0xe9e2}, + {0x86f8, 0xc2fd}, + {0x86f9, 0xe9ec}, + {0x86fa, 0x8fdaee}, + {0x86fb, 0xe9e8}, + {0x86fc, 0x8fdaef}, + {0x86fd, 0x8fdaf0}, + {0x86fe, 0xb2eb}, + {0x8700, 0xe9e6}, + {0x8702, 0xcbaa}, + {0x8703, 0xe9e7}, + {0x8704, 0x8fdaf1}, + {0x8705, 0x8fdaf2}, + {0x8706, 0xe9e4}, + {0x8707, 0x8fdaf3}, + {0x8708, 0xe9e5}, + {0x8709, 0xe9ea}, + {0x870a, 0xe9ed}, + {0x870b, 0x8fdaf4}, + {0x870d, 0xe9eb}, + {0x870e, 0x8fdaf5}, + {0x870f, 0x8fdaf6}, + {0x8710, 0x8fdaf7}, + {0x8711, 0xe9e9}, + {0x8712, 0xe9e3}, + {0x8713, 0x8fdaf8}, + {0x8714, 0x8fdaf9}, + {0x8718, 0xc3d8}, + {0x8719, 0x8fdafa}, + {0x871a, 0xe9f4}, + {0x871c, 0xccaa}, + {0x871e, 0x8fdafb}, + {0x871f, 0x8fdafc}, + {0x8721, 0x8fdafd}, + {0x8723, 0x8fdafe}, + {0x8725, 0xe9f2}, + {0x8728, 0x8fdba1}, + {0x8729, 0xe9f3}, + {0x872e, 0x8fdba2}, + {0x872f, 0x8fdba3}, + {0x8731, 0x8fdba4}, + {0x8732, 0x8fdba5}, + {0x8734, 0xe9ee}, + {0x8737, 0xe9f0}, + {0x8739, 0x8fdba6}, + {0x873a, 0x8fdba7}, + {0x873b, 0xe9f1}, + {0x873c, 0x8fdba8}, + {0x873d, 0x8fdba9}, + {0x873e, 0x8fdbaa}, + {0x873f, 0xe9ef}, + {0x8740, 0x8fdbab}, + {0x8743, 0x8fdbac}, + {0x8745, 0x8fdbad}, + {0x8749, 0xc0e6}, + {0x874b, 0xcfb9}, + {0x874c, 0xe9f8}, + {0x874d, 0x8fdbae}, + {0x874e, 0xe9f9}, + {0x8753, 0xeaa1}, + {0x8755, 0xbfaa}, + {0x8757, 0xe9fb}, + {0x8758, 0x8fdbaf}, + {0x8759, 0xe9fe}, + {0x875d, 0x8fdbb0}, + {0x875f, 0xe9f6}, + {0x8760, 0xe9f5}, + {0x8761, 0x8fdbb1}, + {0x8763, 0xeaa2}, + {0x8764, 0x8fdbb2}, + {0x8765, 0x8fdbb3}, + {0x8766, 0xb2dc}, + {0x8768, 0xe9fc}, + {0x876a, 0xeaa3}, + {0x876e, 0xe9fd}, + {0x876f, 0x8fdbb4}, + {0x8771, 0x8fdbb5}, + {0x8772, 0x8fdbb6}, + {0x8774, 0xe9fa}, + {0x8776, 0xc4b3}, + {0x8778, 0xe9f7}, + {0x877b, 0x8fdbb7}, + {0x877f, 0xc7e8}, + {0x8782, 0xeaa7}, + {0x8783, 0x8fdbb8}, + {0x8784, 0x8fdbb9}, + {0x8785, 0x8fdbba}, + {0x8786, 0x8fdbbb}, + {0x8787, 0x8fdbbc}, + {0x8788, 0x8fdbbd}, + {0x8789, 0x8fdbbe}, + {0x878b, 0x8fdbbf}, + {0x878c, 0x8fdbc0}, + {0x878d, 0xcdbb}, + {0x8790, 0x8fdbc1}, + {0x8793, 0x8fdbc2}, + {0x8795, 0x8fdbc3}, + {0x8797, 0x8fdbc4}, + {0x8798, 0x8fdbc5}, + {0x8799, 0x8fdbc6}, + {0x879e, 0x8fdbc7}, + {0x879f, 0xeaa6}, + {0x87a0, 0x8fdbc8}, + {0x87a2, 0xeaa5}, + {0x87a3, 0x8fdbc9}, + {0x87a7, 0x8fdbca}, + {0x87ab, 0xeaae}, + {0x87ac, 0x8fdbcb}, + {0x87ad, 0x8fdbcc}, + {0x87ae, 0x8fdbcd}, + {0x87af, 0xeaa8}, + {0x87b1, 0x8fdbce}, + {0x87b3, 0xeab0}, + {0x87b5, 0x8fdbcf}, + {0x87ba, 0xcde6}, + {0x87bb, 0xeab3}, + {0x87bd, 0xeaaa}, + {0x87be, 0x8fdbd0}, + {0x87bf, 0x8fdbd1}, + {0x87c0, 0xeaab}, + {0x87c1, 0x8fdbd2}, + {0x87c4, 0xeaaf}, + {0x87c6, 0xeab2}, + {0x87c7, 0xeab1}, + {0x87c8, 0x8fdbd3}, + {0x87c9, 0x8fdbd4}, + {0x87ca, 0x8fdbd5}, + {0x87cb, 0xeaa9}, + {0x87ce, 0x8fdbd6}, + {0x87d0, 0xeaac}, + {0x87d2, 0xeabd}, + {0x87d5, 0x8fdbd7}, + {0x87d6, 0x8fdbd8}, + {0x87d9, 0x8fdbd9}, + {0x87da, 0x8fdbda}, + {0x87dc, 0x8fdbdb}, + {0x87df, 0x8fdbdc}, + {0x87e0, 0xeab6}, + {0x87e2, 0x8fdbdd}, + {0x87e3, 0x8fdbde}, + {0x87e4, 0x8fdbdf}, + {0x87ea, 0x8fdbe0}, + {0x87eb, 0x8fdbe1}, + {0x87ed, 0x8fdbe2}, + {0x87ef, 0xeab4}, + {0x87f1, 0x8fdbe3}, + {0x87f2, 0xeab5}, + {0x87f3, 0x8fdbe4}, + {0x87f6, 0xeaba}, + {0x87f7, 0xeabb}, + {0x87f8, 0x8fdbe5}, + {0x87f9, 0xb3aa}, + {0x87fa, 0x8fdbe6}, + {0x87fb, 0xb5c2}, + {0x87fe, 0xeab9}, + {0x87ff, 0x8fdbe7}, + {0x8801, 0x8fdbe8}, + {0x8803, 0x8fdbe9}, + {0x8805, 0xeaa4}, + {0x8806, 0x8fdbea}, + {0x8809, 0x8fdbeb}, + {0x880a, 0x8fdbec}, + {0x880b, 0x8fdbed}, + {0x880d, 0xeab8}, + {0x880e, 0xeabc}, + {0x880f, 0xeab7}, + {0x8810, 0x8fdbee}, + {0x8811, 0xeabe}, + {0x8812, 0x8fdbf0}, + {0x8813, 0x8fdbf1}, + {0x8814, 0x8fdbf2}, + {0x8815, 0xeac0}, + {0x8816, 0xeabf}, + {0x8818, 0x8fdbf3}, + {0x8819, 0x8fdbef}, + {0x881a, 0x8fdbf4}, + {0x881b, 0x8fdbf5}, + {0x881c, 0x8fdbf6}, + {0x881e, 0x8fdbf7}, + {0x881f, 0x8fdbf8}, + {0x8821, 0xeac2}, + {0x8822, 0xeac1}, + {0x8823, 0xe9da}, + {0x8827, 0xeac6}, + {0x8828, 0x8fdbf9}, + {0x882d, 0x8fdbfa}, + {0x882e, 0x8fdbfb}, + {0x8830, 0x8fdbfc}, + {0x8831, 0xeac3}, + {0x8832, 0x8fdbfd}, + {0x8835, 0x8fdbfe}, + {0x8836, 0xeac4}, + {0x8839, 0xeac5}, + {0x883a, 0x8fdca1}, + {0x883b, 0xeac7}, + {0x883c, 0x8fdca2}, + {0x8840, 0xb7ec}, + {0x8841, 0x8fdca3}, + {0x8842, 0xeac9}, + {0x8843, 0x8fdca4}, + {0x8844, 0xeac8}, + {0x8845, 0x8fdca5}, + {0x8846, 0xbdb0}, + {0x8848, 0x8fdca6}, + {0x8849, 0x8fdca7}, + {0x884a, 0x8fdca8}, + {0x884b, 0x8fdca9}, + {0x884c, 0xb9d4}, + {0x884d, 0xdea7}, + {0x884e, 0x8fdcaa}, + {0x8851, 0x8fdcab}, + {0x8852, 0xeaca}, + {0x8853, 0xbdd1}, + {0x8855, 0x8fdcac}, + {0x8856, 0x8fdcad}, + {0x8857, 0xb3b9}, + {0x8858, 0x8fdcae}, + {0x8859, 0xeacb}, + {0x885a, 0x8fdcaf}, + {0x885b, 0xb1d2}, + {0x885c, 0x8fdcb0}, + {0x885d, 0xbed7}, + {0x885e, 0xeacc}, + {0x885f, 0x8fdcb1}, + {0x8860, 0x8fdcb2}, + {0x8861, 0xb9d5}, + {0x8862, 0xeacd}, + {0x8863, 0xb0e1}, + {0x8864, 0x8fdcb3}, + {0x8868, 0xc9bd}, + {0x8869, 0x8fdcb4}, + {0x886b, 0xeace}, + {0x8870, 0xbfea}, + {0x8871, 0x8fdcb5}, + {0x8872, 0xead5}, + {0x8875, 0xead2}, + {0x8877, 0xc3ef}, + {0x8879, 0x8fdcb6}, + {0x887b, 0x8fdcb7}, + {0x887d, 0xead3}, + {0x887e, 0xead0}, + {0x887f, 0xb6de}, + {0x8880, 0x8fdcb8}, + {0x8881, 0xeacf}, + {0x8882, 0xead6}, + {0x8888, 0xb7b6}, + {0x888b, 0xc2de}, + {0x888d, 0xeadc}, + {0x8892, 0xead8}, + {0x8896, 0xc2b5}, + {0x8897, 0xead7}, + {0x8898, 0x8fdcb9}, + {0x8899, 0xeada}, + {0x889a, 0x8fdcba}, + {0x889b, 0x8fdcbb}, + {0x889c, 0x8fdcbc}, + {0x889e, 0xead1}, + {0x889f, 0x8fdcbd}, + {0x88a0, 0x8fdcbe}, + {0x88a2, 0xeadb}, + {0x88a4, 0xeadd}, + {0x88a8, 0x8fdcbf}, + {0x88aa, 0x8fdcc0}, + {0x88ab, 0xc8ef}, + {0x88ae, 0xead9}, + {0x88b0, 0xeade}, + {0x88b1, 0xeae0}, + {0x88b4, 0xb8d3}, + {0x88b5, 0xead4}, + {0x88b7, 0xb0c1}, + {0x88ba, 0x8fdcc1}, + {0x88bd, 0x8fdcc2}, + {0x88be, 0x8fdcc3}, + {0x88bf, 0xeadf}, + {0x88c0, 0x8fdcc4}, + {0x88c1, 0xbadb}, + {0x88c2, 0xcef6}, + {0x88c3, 0xeae1}, + {0x88c4, 0xeae2}, + {0x88c5, 0xc1f5}, + {0x88ca, 0x8fdcc5}, + {0x88cb, 0x8fdcc6}, + {0x88cc, 0x8fdcc7}, + {0x88cd, 0x8fdcc8}, + {0x88ce, 0x8fdcc9}, + {0x88cf, 0xcea2}, + {0x88d1, 0x8fdcca}, + {0x88d2, 0x8fdccb}, + {0x88d3, 0x8fdccc}, + {0x88d4, 0xeae3}, + {0x88d5, 0xcdb5}, + {0x88d8, 0xeae4}, + {0x88d9, 0xeae5}, + {0x88db, 0x8fdccd}, + {0x88dc, 0xcae4}, + {0x88dd, 0xeae6}, + {0x88de, 0x8fdcce}, + {0x88df, 0xbac0}, + {0x88e1, 0xcea3}, + {0x88e7, 0x8fdccf}, + {0x88e8, 0xeaeb}, + {0x88ef, 0x8fdcd0}, + {0x88f0, 0x8fdcd1}, + {0x88f1, 0x8fdcd2}, + {0x88f2, 0xeaec}, + {0x88f3, 0xbed8}, + {0x88f4, 0xeaea}, + {0x88f5, 0x8fdcd3}, + {0x88f7, 0x8fdcd4}, + {0x88f8, 0xcde7}, + {0x88f9, 0xeae7}, + {0x88fc, 0xeae9}, + {0x88fd, 0xc0bd}, + {0x88fe, 0xbffe}, + {0x8901, 0x8fdcd5}, + {0x8902, 0xeae8}, + {0x8904, 0xeaed}, + {0x8906, 0x8fdcd6}, + {0x8907, 0xcaa3}, + {0x890a, 0xeaef}, + {0x890c, 0xeaee}, + {0x890d, 0x8fdcd7}, + {0x890e, 0x8fdcd8}, + {0x890f, 0x8fdcd9}, + {0x8910, 0xb3ec}, + {0x8912, 0xcbab}, + {0x8913, 0xeaf0}, + {0x8915, 0x8fdcda}, + {0x8916, 0x8fdcdb}, + {0x8918, 0x8fdcdc}, + {0x8919, 0x8fdcdd}, + {0x891a, 0x8fdcde}, + {0x891c, 0x8fdcdf}, + {0x891d, 0xeafc}, + {0x891e, 0xeaf2}, + {0x8920, 0x8fdce0}, + {0x8925, 0xeaf3}, + {0x8926, 0x8fdce1}, + {0x8927, 0x8fdce2}, + {0x8928, 0x8fdce3}, + {0x892a, 0xeaf4}, + {0x892b, 0xeaf5}, + {0x8930, 0x8fdce4}, + {0x8931, 0x8fdce5}, + {0x8932, 0x8fdce6}, + {0x8935, 0x8fdce7}, + {0x8936, 0xeaf9}, + {0x8938, 0xeafa}, + {0x8939, 0x8fdce8}, + {0x893a, 0x8fdce9}, + {0x893b, 0xeaf8}, + {0x893e, 0x8fdcea}, + {0x8940, 0x8fdceb}, + {0x8941, 0xeaf6}, + {0x8942, 0x8fdcec}, + {0x8943, 0xeaf1}, + {0x8944, 0xeaf7}, + {0x8945, 0x8fdced}, + {0x8946, 0x8fdcee}, + {0x8949, 0x8fdcef}, + {0x894c, 0xeafb}, + {0x894d, 0xf0b7}, + {0x894f, 0x8fdcf0}, + {0x8952, 0x8fdcf1}, + {0x8956, 0xb2a8}, + {0x8957, 0x8fdcf2}, + {0x895a, 0x8fdcf3}, + {0x895b, 0x8fdcf4}, + {0x895c, 0x8fdcf5}, + {0x895e, 0xeafe}, + {0x895f, 0xb6df}, + {0x8960, 0xeafd}, + {0x8961, 0x8fdcf6}, + {0x8962, 0x8fdcf7}, + {0x8963, 0x8fdcf8}, + {0x8964, 0xeba2}, + {0x8966, 0xeba1}, + {0x896a, 0xeba4}, + {0x896b, 0x8fdcf9}, + {0x896d, 0xeba3}, + {0x896e, 0x8fdcfa}, + {0x896f, 0xeba5}, + {0x8970, 0x8fdcfb}, + {0x8972, 0xbdb1}, + {0x8973, 0x8fdcfc}, + {0x8974, 0xeba6}, + {0x8975, 0x8fdcfd}, + {0x8977, 0xeba7}, + {0x897a, 0x8fdcfe}, + {0x897b, 0x8fdda1}, + {0x897c, 0x8fdda2}, + {0x897d, 0x8fdda3}, + {0x897e, 0xeba8}, + {0x897f, 0xc0be}, + {0x8981, 0xcdd7}, + {0x8983, 0xeba9}, + {0x8986, 0xcaa4}, + {0x8987, 0xc7c6}, + {0x8988, 0xebaa}, + {0x8989, 0x8fdda4}, + {0x898a, 0xebab}, + {0x898b, 0xb8ab}, + {0x898d, 0x8fdda5}, + {0x898f, 0xb5ac}, + {0x8990, 0x8fdda6}, + {0x8993, 0xebac}, + {0x8994, 0x8fdda7}, + {0x8995, 0x8fdda8}, + {0x8996, 0xbbeb}, + {0x8997, 0xc7c1}, + {0x8998, 0xebad}, + {0x899a, 0xb3d0}, + {0x899b, 0x8fdda9}, + {0x899c, 0x8fddaa}, + {0x899f, 0x8fddab}, + {0x89a0, 0x8fddac}, + {0x89a1, 0xebae}, + {0x89a5, 0x8fddad}, + {0x89a6, 0xebb0}, + {0x89a7, 0xcdf7}, + {0x89a9, 0xebaf}, + {0x89aa, 0xbfc6}, + {0x89ac, 0xebb1}, + {0x89af, 0xebb2}, + {0x89b0, 0x8fddae}, + {0x89b2, 0xebb3}, + {0x89b3, 0xb4d1}, + {0x89b4, 0x8fddaf}, + {0x89b5, 0x8fddb0}, + {0x89b6, 0x8fddb1}, + {0x89b7, 0x8fddb2}, + {0x89ba, 0xebb4}, + {0x89bc, 0x8fddb3}, + {0x89bd, 0xebb5}, + {0x89bf, 0xebb6}, + {0x89c0, 0xebb7}, + {0x89d2, 0xb3d1}, + {0x89d4, 0x8fddb4}, + {0x89d5, 0x8fddb5}, + {0x89d6, 0x8fddb6}, + {0x89d7, 0x8fddb7}, + {0x89d8, 0x8fddb8}, + {0x89da, 0xebb8}, + {0x89dc, 0xebb9}, + {0x89dd, 0xebba}, + {0x89e3, 0xb2f2}, + {0x89e5, 0x8fddb9}, + {0x89e6, 0xbfa8}, + {0x89e7, 0xebbb}, + {0x89e9, 0x8fddba}, + {0x89eb, 0x8fddbb}, + {0x89ed, 0x8fddbc}, + {0x89f1, 0x8fddbd}, + {0x89f3, 0x8fddbe}, + {0x89f4, 0xebbc}, + {0x89f6, 0x8fddbf}, + {0x89f8, 0xebbd}, + {0x89f9, 0x8fddc0}, + {0x89fd, 0x8fddc1}, + {0x89ff, 0x8fddc2}, + {0x8a00, 0xb8c0}, + {0x8a02, 0xc4fb}, + {0x8a03, 0xebbe}, + {0x8a04, 0x8fddc3}, + {0x8a05, 0x8fddc4}, + {0x8a07, 0x8fddc5}, + {0x8a08, 0xb7d7}, + {0x8a0a, 0xbfd6}, + {0x8a0c, 0xebc1}, + {0x8a0e, 0xc6a4}, + {0x8a0f, 0x8fddc6}, + {0x8a10, 0xebc0}, + {0x8a11, 0x8fddc7}, + {0x8a12, 0x8fddc8}, + {0x8a13, 0xb7b1}, + {0x8a14, 0x8fddc9}, + {0x8a15, 0x8fddca}, + {0x8a16, 0xebbf}, + {0x8a17, 0xc2f7}, + {0x8a18, 0xb5ad}, + {0x8a1b, 0xebc2}, + {0x8a1d, 0xebc3}, + {0x8a1e, 0x8fddcb}, + {0x8a1f, 0xbed9}, + {0x8a20, 0x8fddcc}, + {0x8a22, 0x8fddcd}, + {0x8a23, 0xb7ed}, + {0x8a24, 0x8fddce}, + {0x8a25, 0xebc4}, + {0x8a26, 0x8fddcf}, + {0x8a2a, 0xcbac}, + {0x8a2b, 0x8fddd0}, + {0x8a2c, 0x8fddd1}, + {0x8a2d, 0xc0df}, + {0x8a2f, 0x8fddd2}, + {0x8a31, 0xb5f6}, + {0x8a33, 0xccf5}, + {0x8a34, 0xc1ca}, + {0x8a35, 0x8fddd3}, + {0x8a36, 0xebc5}, + {0x8a37, 0x8fddd4}, + {0x8a3a, 0xbfc7}, + {0x8a3b, 0xc3f0}, + {0x8a3c, 0xbeda}, + {0x8a3d, 0x8fddd5}, + {0x8a3e, 0x8fddd6}, + {0x8a40, 0x8fddd7}, + {0x8a41, 0xebc6}, + {0x8a43, 0x8fddd8}, + {0x8a45, 0x8fddd9}, + {0x8a46, 0xebc9}, + {0x8a47, 0x8fddda}, + {0x8a48, 0xebca}, + {0x8a49, 0x8fdddb}, + {0x8a4d, 0x8fdddc}, + {0x8a4e, 0x8fdddd}, + {0x8a50, 0xbabe}, + {0x8a51, 0xc2c2}, + {0x8a52, 0xebc8}, + {0x8a53, 0x8fddde}, + {0x8a54, 0xbedb}, + {0x8a55, 0xc9be}, + {0x8a56, 0x8fdddf}, + {0x8a57, 0x8fdde0}, + {0x8a58, 0x8fdde1}, + {0x8a5b, 0xebc7}, + {0x8a5c, 0x8fdde2}, + {0x8a5d, 0x8fdde3}, + {0x8a5e, 0xbbec}, + {0x8a60, 0xb1d3}, + {0x8a61, 0x8fdde4}, + {0x8a62, 0xebce}, + {0x8a63, 0xb7d8}, + {0x8a65, 0x8fdde5}, + {0x8a66, 0xbbee}, + {0x8a67, 0x8fdde6}, + {0x8a69, 0xbbed}, + {0x8a6b, 0xcfcd}, + {0x8a6c, 0xebcd}, + {0x8a6d, 0xebcc}, + {0x8a6e, 0xc1a7}, + {0x8a70, 0xb5cd}, + {0x8a71, 0xcfc3}, + {0x8a72, 0xb3ba}, + {0x8a73, 0xbedc}, + {0x8a75, 0x8fdde7}, + {0x8a76, 0x8fdde8}, + {0x8a77, 0x8fdde9}, + {0x8a79, 0x8fddea}, + {0x8a7a, 0x8fddeb}, + {0x8a7b, 0x8fddec}, + {0x8a7c, 0xebcb}, + {0x8a7e, 0x8fdded}, + {0x8a7f, 0x8fddee}, + {0x8a80, 0x8fddef}, + {0x8a82, 0xebd0}, + {0x8a83, 0x8fddf0}, + {0x8a84, 0xebd1}, + {0x8a85, 0xebcf}, + {0x8a86, 0x8fddf1}, + {0x8a87, 0xb8d8}, + {0x8a89, 0xcdc0}, + {0x8a8b, 0x8fddf2}, + {0x8a8c, 0xbbef}, + {0x8a8d, 0xc7a7}, + {0x8a8f, 0x8fddf3}, + {0x8a90, 0x8fddf4}, + {0x8a91, 0xebd4}, + {0x8a92, 0x8fddf5}, + {0x8a93, 0xc0c0}, + {0x8a95, 0xc3c2}, + {0x8a96, 0x8fddf6}, + {0x8a97, 0x8fddf7}, + {0x8a98, 0xcdb6}, + {0x8a99, 0x8fddf8}, + {0x8a9a, 0xebd7}, + {0x8a9e, 0xb8ec}, + {0x8a9f, 0x8fddf9}, + {0x8aa0, 0xc0bf}, + {0x8aa1, 0xebd3}, + {0x8aa3, 0xebd8}, + {0x8aa4, 0xb8ed}, + {0x8aa5, 0xebd5}, + {0x8aa6, 0xebd6}, + {0x8aa7, 0x8fddfa}, + {0x8aa8, 0xebd2}, + {0x8aa9, 0x8fddfb}, + {0x8aac, 0xc0e2}, + {0x8aad, 0xc6c9}, + {0x8aae, 0x8fddfc}, + {0x8aaf, 0x8fddfd}, + {0x8ab0, 0xc3af}, + {0x8ab2, 0xb2dd}, + {0x8ab3, 0x8fddfe}, + {0x8ab6, 0x8fdea1}, + {0x8ab7, 0x8fdea2}, + {0x8ab9, 0xc8f0}, + {0x8abb, 0x8fdea3}, + {0x8abc, 0xb5c3}, + {0x8abe, 0x8fdea4}, + {0x8abf, 0xc4b4}, + {0x8ac2, 0xebdb}, + {0x8ac3, 0x8fdea5}, + {0x8ac4, 0xebd9}, + {0x8ac6, 0x8fdea6}, + {0x8ac7, 0xc3cc}, + {0x8ac8, 0x8fdea7}, + {0x8ac9, 0x8fdea8}, + {0x8aca, 0x8fdea9}, + {0x8acb, 0xc0c1}, + {0x8acc, 0xb4d2}, + {0x8acd, 0xebda}, + {0x8acf, 0xbfdb}, + {0x8ad1, 0x8fdeaa}, + {0x8ad2, 0xceca}, + {0x8ad3, 0x8fdeab}, + {0x8ad4, 0x8fdeac}, + {0x8ad5, 0x8fdead}, + {0x8ad6, 0xcfc0}, + {0x8ad7, 0x8fdeae}, + {0x8ada, 0xebdc}, + {0x8adb, 0xebe7}, + {0x8adc, 0xc4b5}, + {0x8add, 0x8fdeaf}, + {0x8ade, 0xebe6}, + {0x8adf, 0x8fdeb0}, + {0x8ae0, 0xebe3}, + {0x8ae1, 0xebeb}, + {0x8ae2, 0xebe4}, + {0x8ae4, 0xebe0}, + {0x8ae6, 0xc4fc}, + {0x8ae7, 0xebdf}, + {0x8aeb, 0xebdd}, + {0x8aec, 0x8fdeb1}, + {0x8aed, 0xcda1}, + {0x8aee, 0xbbf0}, + {0x8af0, 0x8fdeb2}, + {0x8af1, 0xebe1}, + {0x8af3, 0xebde}, + {0x8af4, 0x8fdeb3}, + {0x8af5, 0x8fdeb4}, + {0x8af6, 0x8fdeb5}, + {0x8af7, 0xebe5}, + {0x8af8, 0xbdf4}, + {0x8afa, 0xb8c1}, + {0x8afc, 0x8fdeb6}, + {0x8afe, 0xc2fa}, + {0x8aff, 0x8fdeb7}, + {0x8b00, 0xcbc5}, + {0x8b01, 0xb1da}, + {0x8b02, 0xb0e2}, + {0x8b04, 0xc6a5}, + {0x8b05, 0x8fdeb8}, + {0x8b06, 0x8fdeb9}, + {0x8b07, 0xebe9}, + {0x8b0a, 0x8fdebf}, + {0x8b0b, 0x8fdeba}, + {0x8b0c, 0xebe8}, + {0x8b0e, 0xc6e6}, + {0x8b10, 0xebed}, + {0x8b11, 0x8fdebb}, + {0x8b14, 0xebe2}, + {0x8b16, 0xebec}, + {0x8b17, 0xebee}, + {0x8b19, 0xb8ac}, + {0x8b1a, 0xebea}, + {0x8b1b, 0xb9d6}, + {0x8b1c, 0x8fdebc}, + {0x8b1d, 0xbcd5}, + {0x8b1e, 0x8fdebd}, + {0x8b1f, 0x8fdebe}, + {0x8b20, 0xebef}, + {0x8b21, 0xcdd8}, + {0x8b26, 0xebf2}, + {0x8b28, 0xebf5}, + {0x8b2b, 0xebf3}, + {0x8b2c, 0xc9b5}, + {0x8b2d, 0x8fdec0}, + {0x8b30, 0x8fdec1}, + {0x8b33, 0xebf0}, + {0x8b37, 0x8fdec2}, + {0x8b39, 0xb6e0}, + {0x8b3c, 0x8fdec3}, + {0x8b3e, 0xebf4}, + {0x8b41, 0xebf6}, + {0x8b42, 0x8fdec4}, + {0x8b43, 0x8fdec5}, + {0x8b44, 0x8fdec6}, + {0x8b45, 0x8fdec7}, + {0x8b46, 0x8fdec8}, + {0x8b48, 0x8fdec9}, + {0x8b49, 0xebfa}, + {0x8b4c, 0xebf7}, + {0x8b4d, 0x8fdece}, + {0x8b4e, 0xebf9}, + {0x8b4f, 0xebf8}, + {0x8b52, 0x8fdeca}, + {0x8b53, 0x8fdecb}, + {0x8b54, 0x8fdecc}, + {0x8b56, 0xebfb}, + {0x8b58, 0xbcb1}, + {0x8b59, 0x8fdecd}, + {0x8b5a, 0xebfd}, + {0x8b5b, 0xebfc}, + {0x8b5c, 0xc9e8}, + {0x8b5e, 0x8fdecf}, + {0x8b5f, 0xeca1}, + {0x8b63, 0x8fded0}, + {0x8b66, 0xb7d9}, + {0x8b6b, 0xebfe}, + {0x8b6c, 0xeca2}, + {0x8b6d, 0x8fded1}, + {0x8b6f, 0xeca3}, + {0x8b70, 0xb5c4}, + {0x8b71, 0xe6c1}, + {0x8b72, 0xbef9}, + {0x8b74, 0xeca4}, + {0x8b76, 0x8fded2}, + {0x8b77, 0xb8ee}, + {0x8b78, 0x8fded3}, + {0x8b79, 0x8fded4}, + {0x8b7c, 0x8fded5}, + {0x8b7d, 0xeca5}, + {0x8b7e, 0x8fded6}, + {0x8b80, 0xeca6}, + {0x8b81, 0x8fded7}, + {0x8b83, 0xbbbe}, + {0x8b84, 0x8fded8}, + {0x8b85, 0x8fded9}, + {0x8b8a, 0xdace}, + {0x8b8b, 0x8fdeda}, + {0x8b8c, 0xeca7}, + {0x8b8d, 0x8fdedb}, + {0x8b8e, 0xeca8}, + {0x8b8f, 0x8fdedc}, + {0x8b90, 0xbdb2}, + {0x8b92, 0xeca9}, + {0x8b93, 0xecaa}, + {0x8b94, 0x8fdedd}, + {0x8b95, 0x8fdede}, + {0x8b96, 0xecab}, + {0x8b99, 0xecac}, + {0x8b9a, 0xecad}, + {0x8b9c, 0x8fdedf}, + {0x8b9e, 0x8fdee0}, + {0x8b9f, 0x8fdee1}, + {0x8c37, 0xc3ab}, + {0x8c38, 0x8fdee2}, + {0x8c39, 0x8fdee3}, + {0x8c3a, 0xecae}, + {0x8c3d, 0x8fdee4}, + {0x8c3e, 0x8fdee5}, + {0x8c3f, 0xecb0}, + {0x8c41, 0xecaf}, + {0x8c45, 0x8fdee6}, + {0x8c46, 0xc6a6}, + {0x8c47, 0x8fdee7}, + {0x8c48, 0xecb1}, + {0x8c49, 0x8fdee8}, + {0x8c4a, 0xcbad}, + {0x8c4b, 0x8fdee9}, + {0x8c4c, 0xecb2}, + {0x8c4e, 0xecb3}, + {0x8c4f, 0x8fdeea}, + {0x8c50, 0xecb4}, + {0x8c51, 0x8fdeeb}, + {0x8c53, 0x8fdeec}, + {0x8c54, 0x8fdeed}, + {0x8c55, 0xecb5}, + {0x8c57, 0x8fdeee}, + {0x8c58, 0x8fdeef}, + {0x8c59, 0x8fdef2}, + {0x8c5a, 0xc6da}, + {0x8c5b, 0x8fdef0}, + {0x8c5d, 0x8fdef1}, + {0x8c61, 0xbedd}, + {0x8c62, 0xecb6}, + {0x8c63, 0x8fdef3}, + {0x8c64, 0x8fdef4}, + {0x8c66, 0x8fdef5}, + {0x8c68, 0x8fdef6}, + {0x8c69, 0x8fdef7}, + {0x8c6a, 0xb9eb}, + {0x8c6b, 0xd0ae}, + {0x8c6c, 0xecb7}, + {0x8c6d, 0x8fdef8}, + {0x8c73, 0x8fdef9}, + {0x8c75, 0x8fdefa}, + {0x8c76, 0x8fdefb}, + {0x8c78, 0xecb8}, + {0x8c79, 0xc9bf}, + {0x8c7a, 0xecb9}, + {0x8c7b, 0x8fdefc}, + {0x8c7c, 0xecc1}, + {0x8c7e, 0x8fdefd}, + {0x8c82, 0xecba}, + {0x8c85, 0xecbc}, + {0x8c86, 0x8fdefe}, + {0x8c87, 0x8fdfa1}, + {0x8c89, 0xecbb}, + {0x8c8a, 0xecbd}, + {0x8c8b, 0x8fdfa2}, + {0x8c8c, 0xcbc6}, + {0x8c8d, 0xecbe}, + {0x8c8e, 0xecbf}, + {0x8c90, 0x8fdfa3}, + {0x8c92, 0x8fdfa4}, + {0x8c93, 0x8fdfa5}, + {0x8c94, 0xecc0}, + {0x8c98, 0xecc2}, + {0x8c99, 0x8fdfa6}, + {0x8c9b, 0x8fdfa7}, + {0x8c9c, 0x8fdfa8}, + {0x8c9d, 0xb3ad}, + {0x8c9e, 0xc4e7}, + {0x8ca0, 0xc9e9}, + {0x8ca1, 0xbae2}, + {0x8ca2, 0xb9d7}, + {0x8ca4, 0x8fdfa9}, + {0x8ca7, 0xc9cf}, + {0x8ca8, 0xb2df}, + {0x8ca9, 0xc8ce}, + {0x8caa, 0xecc5}, + {0x8cab, 0xb4d3}, + {0x8cac, 0xc0d5}, + {0x8cad, 0xecc4}, + {0x8cae, 0xecc9}, + {0x8caf, 0xc3f9}, + {0x8cb0, 0xcce3}, + {0x8cb2, 0xecc7}, + {0x8cb3, 0xecc8}, + {0x8cb4, 0xb5ae}, + {0x8cb6, 0xecca}, + {0x8cb7, 0xc7e3}, + {0x8cb8, 0xc2df}, + {0x8cb9, 0x8fdfaa}, + {0x8cba, 0x8fdfab}, + {0x8cbb, 0xc8f1}, + {0x8cbc, 0xc5bd}, + {0x8cbd, 0xecc6}, + {0x8cbf, 0xcbc7}, + {0x8cc0, 0xb2ec}, + {0x8cc1, 0xeccc}, + {0x8cc2, 0xcfa8}, + {0x8cc3, 0xc4c2}, + {0x8cc4, 0xcfc5}, + {0x8cc5, 0x8fdfac}, + {0x8cc6, 0x8fdfad}, + {0x8cc7, 0xbbf1}, + {0x8cc8, 0xeccb}, + {0x8cc9, 0x8fdfae}, + {0x8cca, 0xc2b1}, + {0x8ccb, 0x8fdfaf}, + {0x8ccd, 0xecdc}, + {0x8cce, 0xc1a8}, + {0x8ccf, 0x8fdfb0}, + {0x8cd1, 0xc6f8}, + {0x8cd3, 0xc9d0}, + {0x8cd5, 0x8fdfb2}, + {0x8cd6, 0x8fdfb1}, + {0x8cd9, 0x8fdfb3}, + {0x8cda, 0xeccf}, + {0x8cdb, 0xbbbf}, + {0x8cdc, 0xbbf2}, + {0x8cdd, 0x8fdfb4}, + {0x8cde, 0xbede}, + {0x8ce0, 0xc7e5}, + {0x8ce1, 0x8fdfb5}, + {0x8ce2, 0xb8ad}, + {0x8ce3, 0xecce}, + {0x8ce4, 0xeccd}, + {0x8ce6, 0xc9ea}, + {0x8ce8, 0x8fdfb6}, + {0x8cea, 0xbcc1}, + {0x8cec, 0x8fdfb7}, + {0x8ced, 0xc5d2}, + {0x8cef, 0x8fdfb8}, + {0x8cf0, 0x8fdfb9}, + {0x8cf2, 0x8fdfba}, + {0x8cf5, 0x8fdfbb}, + {0x8cf7, 0x8fdfbc}, + {0x8cf8, 0x8fdfbd}, + {0x8cfa, 0xecd1}, + {0x8cfb, 0xecd2}, + {0x8cfc, 0xb9d8}, + {0x8cfd, 0xecd0}, + {0x8cfe, 0x8fdfbe}, + {0x8cff, 0x8fdfbf}, + {0x8d01, 0x8fdfc0}, + {0x8d03, 0x8fdfc1}, + {0x8d04, 0xecd3}, + {0x8d05, 0xecd4}, + {0x8d07, 0xecd6}, + {0x8d08, 0xc2a3}, + {0x8d09, 0x8fdfc2}, + {0x8d0a, 0xecd5}, + {0x8d0b, 0xb4e6}, + {0x8d0d, 0xecd8}, + {0x8d0f, 0xecd7}, + {0x8d10, 0xecd9}, + {0x8d12, 0x8fdfc3}, + {0x8d13, 0xecdb}, + {0x8d14, 0xecdd}, + {0x8d16, 0xecde}, + {0x8d17, 0x8fdfc4}, + {0x8d1b, 0x8fdfc5}, + {0x8d64, 0xc0d6}, + {0x8d65, 0x8fdfc6}, + {0x8d66, 0xbccf}, + {0x8d67, 0xecdf}, + {0x8d69, 0x8fdfc7}, + {0x8d6b, 0xb3d2}, + {0x8d6c, 0x8fdfc8}, + {0x8d6d, 0xece0}, + {0x8d6e, 0x8fdfc9}, + {0x8d70, 0xc1f6}, + {0x8d71, 0xece1}, + {0x8d73, 0xece2}, + {0x8d74, 0xc9eb}, + {0x8d77, 0xb5af}, + {0x8d7f, 0x8fdfca}, + {0x8d81, 0xece3}, + {0x8d82, 0x8fdfcb}, + {0x8d84, 0x8fdfcc}, + {0x8d85, 0xc4b6}, + {0x8d88, 0x8fdfcd}, + {0x8d8a, 0xb1db}, + {0x8d8d, 0x8fdfce}, + {0x8d90, 0x8fdfcf}, + {0x8d91, 0x8fdfd0}, + {0x8d95, 0x8fdfd1}, + {0x8d99, 0xece4}, + {0x8d9e, 0x8fdfd2}, + {0x8d9f, 0x8fdfd3}, + {0x8da0, 0x8fdfd4}, + {0x8da3, 0xbcf1}, + {0x8da6, 0x8fdfd5}, + {0x8da8, 0xbff6}, + {0x8dab, 0x8fdfd6}, + {0x8dac, 0x8fdfd7}, + {0x8daf, 0x8fdfd8}, + {0x8db2, 0x8fdfd9}, + {0x8db3, 0xc2ad}, + {0x8db5, 0x8fdfda}, + {0x8db7, 0x8fdfdb}, + {0x8db9, 0x8fdfdc}, + {0x8dba, 0xece7}, + {0x8dbb, 0x8fdfdd}, + {0x8dbc, 0x8fdfef}, + {0x8dbe, 0xece6}, + {0x8dc0, 0x8fdfde}, + {0x8dc2, 0xece5}, + {0x8dc5, 0x8fdfdf}, + {0x8dc6, 0x8fdfe0}, + {0x8dc7, 0x8fdfe1}, + {0x8dc8, 0x8fdfe2}, + {0x8dca, 0x8fdfe3}, + {0x8dcb, 0xeced}, + {0x8dcc, 0xeceb}, + {0x8dce, 0x8fdfe4}, + {0x8dcf, 0xece8}, + {0x8dd1, 0x8fdfe5}, + {0x8dd4, 0x8fdfe6}, + {0x8dd5, 0x8fdfe7}, + {0x8dd6, 0xecea}, + {0x8dd7, 0x8fdfe8}, + {0x8dd9, 0x8fdfe9}, + {0x8dda, 0xece9}, + {0x8ddb, 0xecec}, + {0x8ddd, 0xb5f7}, + {0x8ddf, 0xecf0}, + {0x8de1, 0xc0d7}, + {0x8de3, 0xecf1}, + {0x8de4, 0x8fdfea}, + {0x8de5, 0x8fdfeb}, + {0x8de7, 0x8fdfec}, + {0x8de8, 0xb8d9}, + {0x8dea, 0xecee}, + {0x8deb, 0xecef}, + {0x8dec, 0x8fdfed}, + {0x8def, 0xcfa9}, + {0x8df0, 0x8fdfee}, + {0x8df1, 0x8fdff0}, + {0x8df2, 0x8fdff1}, + {0x8df3, 0xc4b7}, + {0x8df4, 0x8fdff2}, + {0x8df5, 0xc1a9}, + {0x8dfc, 0xecf2}, + {0x8dfd, 0x8fdff3}, + {0x8dff, 0xecf5}, + {0x8e01, 0x8fdff4}, + {0x8e04, 0x8fdff5}, + {0x8e05, 0x8fdff6}, + {0x8e06, 0x8fdff7}, + {0x8e08, 0xecf3}, + {0x8e09, 0xecf4}, + {0x8e0a, 0xcdd9}, + {0x8e0b, 0x8fdff8}, + {0x8e0f, 0xc6a7}, + {0x8e10, 0xecf8}, + {0x8e11, 0x8fdff9}, + {0x8e14, 0x8fdffa}, + {0x8e16, 0x8fdffb}, + {0x8e1d, 0xecf6}, + {0x8e1e, 0xecf7}, + {0x8e1f, 0xecf9}, + {0x8e20, 0x8fdffc}, + {0x8e21, 0x8fdffd}, + {0x8e22, 0x8fdffe}, + {0x8e23, 0x8fe0a1}, + {0x8e26, 0x8fe0a2}, + {0x8e27, 0x8fe0a3}, + {0x8e2a, 0xeda9}, + {0x8e30, 0xecfc}, + {0x8e31, 0x8fe0a4}, + {0x8e33, 0x8fe0a5}, + {0x8e34, 0xecfd}, + {0x8e35, 0xecfb}, + {0x8e36, 0x8fe0a6}, + {0x8e37, 0x8fe0a7}, + {0x8e38, 0x8fe0a8}, + {0x8e39, 0x8fe0a9}, + {0x8e3d, 0x8fe0aa}, + {0x8e40, 0x8fe0ab}, + {0x8e41, 0x8fe0ac}, + {0x8e42, 0xecfa}, + {0x8e44, 0xc4fd}, + {0x8e47, 0xeda1}, + {0x8e48, 0xeda5}, + {0x8e49, 0xeda2}, + {0x8e4a, 0xecfe}, + {0x8e4b, 0x8fe0ad}, + {0x8e4c, 0xeda3}, + {0x8e4d, 0x8fe0ae}, + {0x8e4e, 0x8fe0af}, + {0x8e4f, 0x8fe0b0}, + {0x8e50, 0xeda4}, + {0x8e54, 0x8fe0b1}, + {0x8e55, 0xedab}, + {0x8e59, 0xeda6}, + {0x8e5b, 0x8fe0b2}, + {0x8e5c, 0x8fe0b3}, + {0x8e5d, 0x8fe0b4}, + {0x8e5e, 0x8fe0b5}, + {0x8e5f, 0xc0d8}, + {0x8e60, 0xeda8}, + {0x8e61, 0x8fe0b6}, + {0x8e62, 0x8fe0b7}, + {0x8e63, 0xedaa}, + {0x8e64, 0xeda7}, + {0x8e69, 0x8fe0b8}, + {0x8e6c, 0x8fe0b9}, + {0x8e6d, 0x8fe0ba}, + {0x8e6f, 0x8fe0bb}, + {0x8e70, 0x8fe0bc}, + {0x8e71, 0x8fe0bd}, + {0x8e72, 0xedad}, + {0x8e74, 0xbdb3}, + {0x8e76, 0xedac}, + {0x8e79, 0x8fe0be}, + {0x8e7a, 0x8fe0bf}, + {0x8e7b, 0x8fe0c0}, + {0x8e7c, 0xedae}, + {0x8e81, 0xedaf}, + {0x8e82, 0x8fe0c1}, + {0x8e83, 0x8fe0c2}, + {0x8e84, 0xedb2}, + {0x8e85, 0xedb1}, + {0x8e87, 0xedb0}, + {0x8e89, 0x8fe0c3}, + {0x8e8a, 0xedb4}, + {0x8e8b, 0xedb3}, + {0x8e8d, 0xccf6}, + {0x8e90, 0x8fe0c4}, + {0x8e91, 0xedb6}, + {0x8e92, 0x8fe0c5}, + {0x8e93, 0xedb5}, + {0x8e94, 0xedb7}, + {0x8e95, 0x8fe0c6}, + {0x8e99, 0xedb8}, + {0x8e9a, 0x8fe0c7}, + {0x8e9b, 0x8fe0c8}, + {0x8e9d, 0x8fe0c9}, + {0x8e9e, 0x8fe0ca}, + {0x8ea1, 0xedba}, + {0x8ea2, 0x8fe0cb}, + {0x8ea7, 0x8fe0cc}, + {0x8ea9, 0x8fe0cd}, + {0x8eaa, 0xedb9}, + {0x8eab, 0xbfc8}, + {0x8eac, 0xedbb}, + {0x8ead, 0x8fe0ce}, + {0x8eae, 0x8fe0cf}, + {0x8eaf, 0xb6ed}, + {0x8eb0, 0xedbc}, + {0x8eb1, 0xedbe}, + {0x8eb3, 0x8fe0d0}, + {0x8eb5, 0x8fe0d1}, + {0x8eba, 0x8fe0d2}, + {0x8ebb, 0x8fe0d3}, + {0x8ebe, 0xedbf}, + {0x8ec0, 0x8fe0d4}, + {0x8ec1, 0x8fe0d5}, + {0x8ec3, 0x8fe0d6}, + {0x8ec4, 0x8fe0d7}, + {0x8ec5, 0xedc0}, + {0x8ec6, 0xedbd}, + {0x8ec7, 0x8fe0d8}, + {0x8ec8, 0xedc1}, + {0x8eca, 0xbcd6}, + {0x8ecb, 0xedc2}, + {0x8ecc, 0xb5b0}, + {0x8ecd, 0xb7b3}, + {0x8ecf, 0x8fe0d9}, + {0x8ed1, 0x8fe0da}, + {0x8ed2, 0xb8ae}, + {0x8ed4, 0x8fe0db}, + {0x8edb, 0xedc3}, + {0x8edc, 0x8fe0dc}, + {0x8edf, 0xc6f0}, + {0x8ee2, 0xc5be}, + {0x8ee3, 0xedc4}, + {0x8ee8, 0x8fe0dd}, + {0x8eeb, 0xedc7}, + {0x8eed, 0x8fe0e4}, + {0x8eee, 0x8fe0de}, + {0x8ef0, 0x8fe0df}, + {0x8ef1, 0x8fe0e0}, + {0x8ef7, 0x8fe0e1}, + {0x8ef8, 0xbcb4}, + {0x8ef9, 0x8fe0e2}, + {0x8efa, 0x8fe0e3}, + {0x8efb, 0xedc6}, + {0x8efc, 0xedc5}, + {0x8efd, 0xb7da}, + {0x8efe, 0xedc8}, + {0x8f00, 0x8fe0e5}, + {0x8f02, 0x8fe0e6}, + {0x8f03, 0xb3d3}, + {0x8f05, 0xedca}, + {0x8f07, 0x8fe0e7}, + {0x8f08, 0x8fe0e8}, + {0x8f09, 0xbadc}, + {0x8f0a, 0xedc9}, + {0x8f0c, 0xedd2}, + {0x8f0f, 0x8fe0e9}, + {0x8f10, 0x8fe0ea}, + {0x8f12, 0xedcc}, + {0x8f13, 0xedce}, + {0x8f14, 0xcae5}, + {0x8f15, 0xedcb}, + {0x8f16, 0x8fe0eb}, + {0x8f17, 0x8fe0ec}, + {0x8f18, 0x8fe0ed}, + {0x8f19, 0xedcd}, + {0x8f1b, 0xedd1}, + {0x8f1c, 0xedcf}, + {0x8f1d, 0xb5b1}, + {0x8f1e, 0x8fe0ee}, + {0x8f1f, 0xedd0}, + {0x8f20, 0x8fe0ef}, + {0x8f21, 0x8fe0f0}, + {0x8f23, 0x8fe0f1}, + {0x8f25, 0x8fe0f2}, + {0x8f26, 0xedd3}, + {0x8f27, 0x8fe0f3}, + {0x8f28, 0x8fe0f4}, + {0x8f29, 0xc7da}, + {0x8f2a, 0xced8}, + {0x8f2c, 0x8fe0f5}, + {0x8f2d, 0x8fe0f6}, + {0x8f2e, 0x8fe0f7}, + {0x8f2f, 0xbdb4}, + {0x8f33, 0xedd4}, + {0x8f34, 0x8fe0f8}, + {0x8f35, 0x8fe0f9}, + {0x8f36, 0x8fe0fa}, + {0x8f37, 0x8fe0fb}, + {0x8f38, 0xcda2}, + {0x8f39, 0xedd6}, + {0x8f3a, 0x8fe0fc}, + {0x8f3b, 0xedd5}, + {0x8f3e, 0xedd9}, + {0x8f3f, 0xcdc1}, + {0x8f40, 0x8fe0fd}, + {0x8f41, 0x8fe0fe}, + {0x8f42, 0xedd8}, + {0x8f43, 0x8fe1a1}, + {0x8f44, 0xb3ed}, + {0x8f45, 0xedd7}, + {0x8f46, 0xeddc}, + {0x8f47, 0x8fe1a2}, + {0x8f49, 0xeddb}, + {0x8f4c, 0xedda}, + {0x8f4d, 0xc5b2}, + {0x8f4e, 0xeddd}, + {0x8f4f, 0x8fe1a3}, + {0x8f51, 0x8fe1a4}, + {0x8f52, 0x8fe1a5}, + {0x8f53, 0x8fe1a6}, + {0x8f54, 0x8fe1a7}, + {0x8f55, 0x8fe1a8}, + {0x8f57, 0xedde}, + {0x8f58, 0x8fe1a9}, + {0x8f5c, 0xeddf}, + {0x8f5d, 0x8fe1aa}, + {0x8f5e, 0x8fe1ab}, + {0x8f5f, 0xb9ec}, + {0x8f61, 0xb7a5}, + {0x8f62, 0xede0}, + {0x8f63, 0xede1}, + {0x8f64, 0xede2}, + {0x8f65, 0x8fe1ac}, + {0x8f9b, 0xbfc9}, + {0x8f9c, 0xede3}, + {0x8f9d, 0x8fe1ad}, + {0x8f9e, 0xbcad}, + {0x8f9f, 0xede4}, + {0x8fa0, 0x8fe1ae}, + {0x8fa1, 0x8fe1af}, + {0x8fa3, 0xede5}, + {0x8fa4, 0x8fe1b0}, + {0x8fa5, 0x8fe1b1}, + {0x8fa6, 0x8fe1b2}, + {0x8fa7, 0xd2a1}, + {0x8fa8, 0xd1fe}, + {0x8fad, 0xede6}, + {0x8fae, 0xe5f0}, + {0x8faf, 0xede7}, + {0x8fb0, 0xc3a4}, + {0x8fb1, 0xbfab}, + {0x8fb2, 0xc7c0}, + {0x8fb5, 0x8fe1b3}, + {0x8fb6, 0x8fe1b4}, + {0x8fb7, 0xede8}, + {0x8fb8, 0x8fe1b5}, + {0x8fba, 0xcad5}, + {0x8fbb, 0xc4d4}, + {0x8fbc, 0xb9fe}, + {0x8fbe, 0x8fe1b6}, + {0x8fbf, 0xc3a9}, + {0x8fc0, 0x8fe1b7}, + {0x8fc1, 0x8fe1b8}, + {0x8fc2, 0xb1aa}, + {0x8fc4, 0xcbf8}, + {0x8fc5, 0xbfd7}, + {0x8fc6, 0x8fe1b9}, + {0x8fca, 0x8fe1ba}, + {0x8fcb, 0x8fe1bb}, + {0x8fcd, 0x8fe1bc}, + {0x8fce, 0xb7de}, + {0x8fd0, 0x8fe1bd}, + {0x8fd1, 0xb6e1}, + {0x8fd2, 0x8fe1be}, + {0x8fd3, 0x8fe1bf}, + {0x8fd4, 0xcad6}, + {0x8fd5, 0x8fe1c0}, + {0x8fda, 0xede9}, + {0x8fe0, 0x8fe1c1}, + {0x8fe2, 0xedeb}, + {0x8fe3, 0x8fe1c2}, + {0x8fe4, 0x8fe1c3}, + {0x8fe5, 0xedea}, + {0x8fe6, 0xb2e0}, + {0x8fe8, 0x8fe1c4}, + {0x8fe9, 0xc6f6}, + {0x8fea, 0xedec}, + {0x8feb, 0xc7f7}, + {0x8fed, 0xc5b3}, + {0x8fee, 0x8fe1c5}, + {0x8fef, 0xeded}, + {0x8ff0, 0xbdd2}, + {0x8ff1, 0x8fe1c6}, + {0x8ff4, 0xedef}, + {0x8ff5, 0x8fe1c7}, + {0x8ff6, 0x8fe1c8}, + {0x8ff7, 0xccc2}, + {0x8ff8, 0xedfe}, + {0x8ff9, 0xedf1}, + {0x8ffa, 0xedf2}, + {0x8ffb, 0x8fe1c9}, + {0x8ffd, 0xc4c9}, + {0x8ffe, 0x8fe1ca}, + {0x9000, 0xc2e0}, + {0x9001, 0xc1f7}, + {0x9002, 0x8fe1cb}, + {0x9003, 0xc6a8}, + {0x9004, 0x8fe1cc}, + {0x9005, 0xedf0}, + {0x9006, 0xb5d5}, + {0x9008, 0x8fe1cd}, + {0x900b, 0xedf9}, + {0x900c, 0x8fe1ce}, + {0x900d, 0xedf6}, + {0x900e, 0xeea5}, + {0x900f, 0xc6a9}, + {0x9010, 0xc3e0}, + {0x9011, 0xedf3}, + {0x9013, 0xc4fe}, + {0x9014, 0xc5d3}, + {0x9015, 0xedf4}, + {0x9016, 0xedf8}, + {0x9017, 0xbfe0}, + {0x9018, 0x8fe1cf}, + {0x9019, 0xc7e7}, + {0x901a, 0xc4cc}, + {0x901b, 0x8fe1d0}, + {0x901d, 0xc0c2}, + {0x901e, 0xedf7}, + {0x901f, 0xc2ae}, + {0x9020, 0xc2a4}, + {0x9021, 0xedf5}, + {0x9022, 0xb0a9}, + {0x9023, 0xcfa2}, + {0x9027, 0xedfa}, + {0x9028, 0x8fe1d1}, + {0x9029, 0x8fe1d2}, + {0x902a, 0x8fe1d4}, + {0x902c, 0x8fe1d5}, + {0x902d, 0x8fe1d6}, + {0x902e, 0xc2e1}, + {0x902f, 0x8fe1d3}, + {0x9031, 0xbdb5}, + {0x9032, 0xbfca}, + {0x9033, 0x8fe1d7}, + {0x9034, 0x8fe1d8}, + {0x9035, 0xedfc}, + {0x9036, 0xedfb}, + {0x9037, 0x8fe1d9}, + {0x9038, 0xb0ef}, + {0x9039, 0xedfd}, + {0x903c, 0xc9af}, + {0x903e, 0xeea7}, + {0x903f, 0x8fe1da}, + {0x9041, 0xc6db}, + {0x9042, 0xbfeb}, + {0x9043, 0x8fe1db}, + {0x9044, 0x8fe1dc}, + {0x9045, 0xc3d9}, + {0x9047, 0xb6f8}, + {0x9049, 0xeea6}, + {0x904a, 0xcdb7}, + {0x904b, 0xb1bf}, + {0x904c, 0x8fe1dd}, + {0x904d, 0xcad7}, + {0x904e, 0xb2e1}, + {0x904f, 0xeea1}, + {0x9050, 0xeea2}, + {0x9051, 0xeea3}, + {0x9052, 0xeea4}, + {0x9053, 0xc6bb}, + {0x9054, 0xc3a3}, + {0x9055, 0xb0e3}, + {0x9056, 0xeea8}, + {0x9058, 0xeea9}, + {0x9059, 0xf4a3}, + {0x905b, 0x8fe1de}, + {0x905c, 0xc2bd}, + {0x905d, 0x8fe1df}, + {0x905e, 0xeeaa}, + {0x9060, 0xb1f3}, + {0x9061, 0xc1cc}, + {0x9062, 0x8fe1e0}, + {0x9063, 0xb8af}, + {0x9065, 0xcdda}, + {0x9066, 0x8fe1e1}, + {0x9067, 0x8fe1e2}, + {0x9068, 0xeeab}, + {0x9069, 0xc5ac}, + {0x906c, 0x8fe1e3}, + {0x906d, 0xc1f8}, + {0x906e, 0xbcd7}, + {0x906f, 0xeeac}, + {0x9070, 0x8fe1e4}, + {0x9072, 0xeeaf}, + {0x9074, 0x8fe1e5}, + {0x9075, 0xbde5}, + {0x9076, 0xeead}, + {0x9077, 0xc1ab}, + {0x9078, 0xc1aa}, + {0x9079, 0x8fe1e6}, + {0x907a, 0xb0e4}, + {0x907c, 0xcecb}, + {0x907d, 0xeeb1}, + {0x907f, 0xc8f2}, + {0x9080, 0xeeb3}, + {0x9081, 0xeeb2}, + {0x9082, 0xeeb0}, + {0x9083, 0xe3e4}, + {0x9084, 0xb4d4}, + {0x9085, 0x8fe1e7}, + {0x9087, 0xedee}, + {0x9088, 0x8fe1e8}, + {0x9089, 0xeeb5}, + {0x908a, 0xeeb4}, + {0x908b, 0x8fe1e9}, + {0x908c, 0x8fe1ea}, + {0x908e, 0x8fe1eb}, + {0x908f, 0xeeb6}, + {0x9090, 0x8fe1ec}, + {0x9091, 0xcdb8}, + {0x9095, 0x8fe1ed}, + {0x9097, 0x8fe1ee}, + {0x9098, 0x8fe1ef}, + {0x9099, 0x8fe1f0}, + {0x909b, 0x8fe1f1}, + {0x90a0, 0x8fe1f2}, + {0x90a1, 0x8fe1f3}, + {0x90a2, 0x8fe1f4}, + {0x90a3, 0xc6e1}, + {0x90a5, 0x8fe1f5}, + {0x90a6, 0xcbae}, + {0x90a8, 0xeeb7}, + {0x90aa, 0xbcd9}, + {0x90af, 0xeeb8}, + {0x90b0, 0x8fe1f6}, + {0x90b1, 0xeeb9}, + {0x90b2, 0x8fe1f7}, + {0x90b3, 0x8fe1f8}, + {0x90b4, 0x8fe1f9}, + {0x90b5, 0xeeba}, + {0x90b6, 0x8fe1fa}, + {0x90b8, 0xc5a1}, + {0x90bd, 0x8fe1fb}, + {0x90be, 0x8fe1fd}, + {0x90c1, 0xb0ea}, + {0x90c3, 0x8fe1fe}, + {0x90c4, 0x8fe2a1}, + {0x90c5, 0x8fe2a2}, + {0x90c7, 0x8fe2a3}, + {0x90c8, 0x8fe2a4}, + {0x90ca, 0xb9d9}, + {0x90cc, 0x8fe1fc}, + {0x90ce, 0xcfba}, + {0x90d2, 0x8fe2ad}, + {0x90d5, 0x8fe2a5}, + {0x90d7, 0x8fe2a6}, + {0x90d8, 0x8fe2a7}, + {0x90d9, 0x8fe2a8}, + {0x90db, 0xeebe}, + {0x90dc, 0x8fe2a9}, + {0x90dd, 0x8fe2aa}, + {0x90df, 0x8fe2ab}, + {0x90e1, 0xb7b4}, + {0x90e2, 0xeebb}, + {0x90e4, 0xeebc}, + {0x90e5, 0x8fe2ac}, + {0x90e8, 0xc9f4}, + {0x90eb, 0x8fe2af}, + {0x90ed, 0xb3d4}, + {0x90ef, 0x8fe2b0}, + {0x90f0, 0x8fe2b1}, + {0x90f4, 0x8fe2b2}, + {0x90f5, 0xcdb9}, + {0x90f6, 0x8fe2ae}, + {0x90f7, 0xb6bf}, + {0x90fd, 0xc5d4}, + {0x90fe, 0x8fe2b3}, + {0x90ff, 0x8fe2b4}, + {0x9100, 0x8fe2b5}, + {0x9102, 0xeebf}, + {0x9104, 0x8fe2b6}, + {0x9105, 0x8fe2b7}, + {0x9106, 0x8fe2b8}, + {0x9108, 0x8fe2b9}, + {0x910d, 0x8fe2ba}, + {0x9110, 0x8fe2bb}, + {0x9112, 0xeec0}, + {0x9114, 0x8fe2bc}, + {0x9116, 0x8fe2bd}, + {0x9117, 0x8fe2be}, + {0x9118, 0x8fe2bf}, + {0x9119, 0xeec1}, + {0x911a, 0x8fe2c0}, + {0x911c, 0x8fe2c1}, + {0x911e, 0x8fe2c2}, + {0x9120, 0x8fe2c3}, + {0x9122, 0x8fe2c5}, + {0x9123, 0x8fe2c6}, + {0x9125, 0x8fe2c4}, + {0x9127, 0x8fe2c7}, + {0x9129, 0x8fe2c8}, + {0x912d, 0xc5a2}, + {0x912e, 0x8fe2c9}, + {0x912f, 0x8fe2ca}, + {0x9130, 0xeec3}, + {0x9131, 0x8fe2cb}, + {0x9132, 0xeec2}, + {0x9134, 0x8fe2cc}, + {0x9136, 0x8fe2cd}, + {0x9137, 0x8fe2ce}, + {0x9139, 0x8fe2cf}, + {0x913a, 0x8fe2d0}, + {0x913c, 0x8fe2d1}, + {0x913d, 0x8fe2d2}, + {0x9143, 0x8fe2d3}, + {0x9147, 0x8fe2d4}, + {0x9148, 0x8fe2d5}, + {0x9149, 0xc6d3}, + {0x914a, 0xeec4}, + {0x914b, 0xbdb6}, + {0x914c, 0xbce0}, + {0x914d, 0xc7db}, + {0x914e, 0xc3f1}, + {0x914f, 0x8fe2d6}, + {0x9152, 0xbcf2}, + {0x9153, 0x8fe2d7}, + {0x9154, 0xbfec}, + {0x9156, 0xeec5}, + {0x9157, 0x8fe2d8}, + {0x9158, 0xeec6}, + {0x9159, 0x8fe2d9}, + {0x915a, 0x8fe2da}, + {0x915b, 0x8fe2db}, + {0x9161, 0x8fe2dc}, + {0x9162, 0xbfdd}, + {0x9163, 0xeec7}, + {0x9164, 0x8fe2dd}, + {0x9165, 0xeec8}, + {0x9167, 0x8fe2de}, + {0x9169, 0xeec9}, + {0x916a, 0xcdef}, + {0x916c, 0xbdb7}, + {0x916d, 0x8fe2df}, + {0x9172, 0xeecb}, + {0x9173, 0xeeca}, + {0x9174, 0x8fe2e0}, + {0x9175, 0xb9da}, + {0x9177, 0xb9f3}, + {0x9178, 0xbbc0}, + {0x9179, 0x8fe2e1}, + {0x917a, 0x8fe2e2}, + {0x917b, 0x8fe2e3}, + {0x9181, 0x8fe2e4}, + {0x9182, 0xeece}, + {0x9183, 0x8fe2e5}, + {0x9185, 0x8fe2e6}, + {0x9186, 0x8fe2e7}, + {0x9187, 0xbde6}, + {0x9189, 0xeecd}, + {0x918a, 0x8fe2e8}, + {0x918b, 0xeecc}, + {0x918d, 0xc2e9}, + {0x918e, 0x8fe2e9}, + {0x9190, 0xb8ef}, + {0x9191, 0x8fe2ea}, + {0x9192, 0xc0c3}, + {0x9193, 0x8fe2eb}, + {0x9194, 0x8fe2ec}, + {0x9195, 0x8fe2ed}, + {0x9197, 0xc8b0}, + {0x9198, 0x8fe2ee}, + {0x919c, 0xbdb9}, + {0x919e, 0x8fe2ef}, + {0x91a1, 0x8fe2f0}, + {0x91a2, 0xeecf}, + {0x91a4, 0xbedf}, + {0x91a6, 0x8fe2f1}, + {0x91a8, 0x8fe2f2}, + {0x91aa, 0xeed2}, + {0x91ab, 0xeed0}, + {0x91ac, 0x8fe2f3}, + {0x91ad, 0x8fe2f4}, + {0x91ae, 0x8fe2f5}, + {0x91af, 0xeed1}, + {0x91b0, 0x8fe2f6}, + {0x91b1, 0x8fe2f7}, + {0x91b2, 0x8fe2f8}, + {0x91b3, 0x8fe2f9}, + {0x91b4, 0xeed4}, + {0x91b5, 0xeed3}, + {0x91b6, 0x8fe2fa}, + {0x91b8, 0xbefa}, + {0x91ba, 0xeed5}, + {0x91bb, 0x8fe2fb}, + {0x91bc, 0x8fe2fc}, + {0x91bd, 0x8fe2fd}, + {0x91bf, 0x8fe2fe}, + {0x91c0, 0xeed6}, + {0x91c1, 0xeed7}, + {0x91c2, 0x8fe3a1}, + {0x91c3, 0x8fe3a2}, + {0x91c5, 0x8fe3a3}, + {0x91c6, 0xc8d0}, + {0x91c7, 0xbad3}, + {0x91c8, 0xbce1}, + {0x91c9, 0xeed8}, + {0x91cb, 0xeed9}, + {0x91cc, 0xcea4}, + {0x91cd, 0xbdc5}, + {0x91ce, 0xccee}, + {0x91cf, 0xcecc}, + {0x91d0, 0xeeda}, + {0x91d1, 0xb6e2}, + {0x91d3, 0x8fe3a4}, + {0x91d4, 0x8fe3a5}, + {0x91d6, 0xeedb}, + {0x91d7, 0x8fe3a6}, + {0x91d8, 0xc5a3}, + {0x91d9, 0x8fe3a7}, + {0x91da, 0x8fe3a8}, + {0x91db, 0xeede}, + {0x91dc, 0xb3f8}, + {0x91dd, 0xbfcb}, + {0x91de, 0x8fe3a9}, + {0x91df, 0xeedc}, + {0x91e1, 0xeedd}, + {0x91e3, 0xc4e0}, + {0x91e4, 0x8fe3aa}, + {0x91e5, 0x8fe3ab}, + {0x91e6, 0xcbd5}, + {0x91e7, 0xb6fc}, + {0x91e9, 0x8fe3ac}, + {0x91ea, 0x8fe3ad}, + {0x91ec, 0x8fe3ae}, + {0x91ed, 0x8fe3af}, + {0x91ee, 0x8fe3b0}, + {0x91ef, 0x8fe3b1}, + {0x91f0, 0x8fe3b2}, + {0x91f1, 0x8fe3b3}, + {0x91f5, 0xeee0}, + {0x91f6, 0xeee1}, + {0x91f7, 0x8fe3b4}, + {0x91f9, 0x8fe3b5}, + {0x91fb, 0x8fe3b6}, + {0x91fc, 0xeedf}, + {0x91fd, 0x8fe3b7}, + {0x91ff, 0xeee3}, + {0x9200, 0x8fe3b8}, + {0x9201, 0x8fe3b9}, + {0x9204, 0x8fe3ba}, + {0x9205, 0x8fe3bb}, + {0x9206, 0x8fe3bc}, + {0x9207, 0x8fe3bd}, + {0x9209, 0x8fe3be}, + {0x920a, 0x8fe3bf}, + {0x920c, 0x8fe3c0}, + {0x920d, 0xc6df}, + {0x920e, 0xb3c3}, + {0x9210, 0x8fe3c1}, + {0x9211, 0xeee7}, + {0x9212, 0x8fe3c2}, + {0x9213, 0x8fe3c3}, + {0x9214, 0xeee4}, + {0x9215, 0xeee6}, + {0x9216, 0x8fe3c4}, + {0x9218, 0x8fe3c5}, + {0x921c, 0x8fe3c6}, + {0x921d, 0x8fe3c7}, + {0x921e, 0xeee2}, + {0x9223, 0x8fe3c8}, + {0x9224, 0x8fe3c9}, + {0x9225, 0x8fe3ca}, + {0x9226, 0x8fe3cb}, + {0x9228, 0x8fe3cc}, + {0x9229, 0xefcf}, + {0x922c, 0xeee5}, + {0x922e, 0x8fe3cd}, + {0x922f, 0x8fe3ce}, + {0x9230, 0x8fe3cf}, + {0x9233, 0x8fe3d0}, + {0x9234, 0xceeb}, + {0x9235, 0x8fe3d1}, + {0x9236, 0x8fe3d2}, + {0x9237, 0xb8da}, + {0x9238, 0x8fe3d3}, + {0x9239, 0x8fe3d4}, + {0x923a, 0x8fe3d5}, + {0x923c, 0x8fe3d6}, + {0x923e, 0x8fe3d7}, + {0x923f, 0xeeef}, + {0x9240, 0x8fe3d8}, + {0x9242, 0x8fe3d9}, + {0x9243, 0x8fe3da}, + {0x9244, 0xc5b4}, + {0x9245, 0xeeea}, + {0x9246, 0x8fe3db}, + {0x9247, 0x8fe3dc}, + {0x9248, 0xeeed}, + {0x9249, 0xeeeb}, + {0x924a, 0x8fe3dd}, + {0x924b, 0xeef0}, + {0x924d, 0x8fe3de}, + {0x924e, 0x8fe3df}, + {0x924f, 0x8fe3e0}, + {0x9250, 0xeef1}, + {0x9251, 0x8fe3e1}, + {0x9257, 0xeee9}, + {0x9258, 0x8fe3e2}, + {0x9259, 0x8fe3e3}, + {0x925a, 0xeef6}, + {0x925b, 0xb1f4}, + {0x925c, 0x8fe3e4}, + {0x925d, 0x8fe3e5}, + {0x925e, 0xeee8}, + {0x9260, 0x8fe3e6}, + {0x9261, 0x8fe3e7}, + {0x9262, 0xc8ad}, + {0x9264, 0xeeec}, + {0x9265, 0x8fe3e8}, + {0x9266, 0xbee0}, + {0x9267, 0x8fe3e9}, + {0x9268, 0x8fe3ea}, + {0x9269, 0x8fe3eb}, + {0x926e, 0x8fe3ec}, + {0x926f, 0x8fe3ed}, + {0x9270, 0x8fe3ee}, + {0x9271, 0xb9db}, + {0x9275, 0x8fe3ef}, + {0x9276, 0x8fe3f0}, + {0x9277, 0x8fe3f1}, + {0x9278, 0x8fe3f2}, + {0x9279, 0x8fe3f3}, + {0x927b, 0x8fe3f4}, + {0x927c, 0x8fe3f5}, + {0x927d, 0x8fe3f6}, + {0x927e, 0xcbc8}, + {0x927f, 0x8fe3f7}, + {0x9280, 0xb6e4}, + {0x9283, 0xbdc6}, + {0x9285, 0xc6bc}, + {0x9288, 0x8fe3f8}, + {0x9289, 0x8fe3f9}, + {0x928a, 0x8fe3fa}, + {0x928d, 0x8fe3fb}, + {0x928e, 0x8fe3fc}, + {0x9291, 0xc1ad}, + {0x9292, 0x8fe3fd}, + {0x9293, 0xeef4}, + {0x9295, 0xeeee}, + {0x9296, 0xeef3}, + {0x9297, 0x8fe3fe}, + {0x9298, 0xccc3}, + {0x9299, 0x8fe4a1}, + {0x929a, 0xc4b8}, + {0x929b, 0xeef5}, + {0x929c, 0xeef2}, + {0x929f, 0x8fe4a2}, + {0x92a0, 0x8fe4a3}, + {0x92a4, 0x8fe4a4}, + {0x92a5, 0x8fe4a5}, + {0x92a7, 0x8fe4a6}, + {0x92a8, 0x8fe4a7}, + {0x92ab, 0x8fe4a8}, + {0x92ad, 0xc1ac}, + {0x92af, 0x8fe4a9}, + {0x92b2, 0x8fe4aa}, + {0x92b6, 0x8fe4ab}, + {0x92b7, 0xeef9}, + {0x92b8, 0x8fe4ac}, + {0x92b9, 0xeef8}, + {0x92ba, 0x8fe4ad}, + {0x92bb, 0x8fe4ae}, + {0x92bc, 0x8fe4af}, + {0x92bd, 0x8fe4b0}, + {0x92bf, 0x8fe4b1}, + {0x92c0, 0x8fe4b2}, + {0x92c1, 0x8fe4b3}, + {0x92c2, 0x8fe4b4}, + {0x92c3, 0x8fe4b5}, + {0x92c5, 0x8fe4b6}, + {0x92c6, 0x8fe4b7}, + {0x92c7, 0x8fe4b8}, + {0x92c8, 0x8fe4b9}, + {0x92cb, 0x8fe4ba}, + {0x92cc, 0x8fe4bb}, + {0x92cd, 0x8fe4bc}, + {0x92ce, 0x8fe4bd}, + {0x92cf, 0xeef7}, + {0x92d0, 0x8fe4be}, + {0x92d2, 0xcbaf}, + {0x92d3, 0x8fe4bf}, + {0x92d5, 0x8fe4c0}, + {0x92d7, 0x8fe4c1}, + {0x92d8, 0x8fe4c2}, + {0x92d9, 0x8fe4c3}, + {0x92dc, 0x8fe4c4}, + {0x92dd, 0x8fe4c5}, + {0x92df, 0x8fe4c6}, + {0x92e0, 0x8fe4c7}, + {0x92e1, 0x8fe4c8}, + {0x92e3, 0x8fe4c9}, + {0x92e4, 0xbdfb}, + {0x92e5, 0x8fe4ca}, + {0x92e7, 0x8fe4cb}, + {0x92e8, 0x8fe4cc}, + {0x92e9, 0xeefa}, + {0x92ea, 0xcadf}, + {0x92ec, 0x8fe4cd}, + {0x92ed, 0xb1d4}, + {0x92ee, 0x8fe4ce}, + {0x92f0, 0x8fe4cf}, + {0x92f2, 0xc9c6}, + {0x92f3, 0xc3f2}, + {0x92f8, 0xb5f8}, + {0x92f9, 0x8fe4d0}, + {0x92fa, 0xeefc}, + {0x92fb, 0x8fe4d1}, + {0x92fc, 0xb9dd}, + {0x92ff, 0x8fe4d2}, + {0x9300, 0x8fe4d3}, + {0x9302, 0x8fe4d4}, + {0x9306, 0xbbac}, + {0x9308, 0x8fe4d5}, + {0x930d, 0x8fe4d6}, + {0x930f, 0xeefb}, + {0x9310, 0xbfed}, + {0x9311, 0x8fe4d7}, + {0x9314, 0x8fe4d8}, + {0x9315, 0x8fe4d9}, + {0x9318, 0xbfee}, + {0x9319, 0xefa1}, + {0x931a, 0xefa3}, + {0x931c, 0x8fe4da}, + {0x931d, 0x8fe4db}, + {0x931e, 0x8fe4dc}, + {0x931f, 0x8fe4dd}, + {0x9320, 0xbefb}, + {0x9321, 0x8fe4de}, + {0x9322, 0xefa2}, + {0x9323, 0xefa4}, + {0x9324, 0x8fe4df}, + {0x9325, 0x8fe4e0}, + {0x9326, 0xb6d3}, + {0x9327, 0x8fe4e1}, + {0x9328, 0xc9c5}, + {0x9329, 0x8fe4e2}, + {0x932a, 0x8fe4e3}, + {0x932b, 0xbce2}, + {0x932c, 0xcfa3}, + {0x932e, 0xeefe}, + {0x932f, 0xbaf8}, + {0x9332, 0xcfbf}, + {0x9333, 0x8fe4e4}, + {0x9334, 0x8fe4e5}, + {0x9335, 0xefa6}, + {0x9336, 0x8fe4e6}, + {0x9337, 0x8fe4e7}, + {0x933a, 0xefa5}, + {0x933b, 0xefa7}, + {0x9344, 0xeefd}, + {0x9347, 0x8fe4e8}, + {0x9348, 0x8fe4e9}, + {0x9349, 0x8fe4ea}, + {0x934b, 0xc6e9}, + {0x934d, 0xc5d5}, + {0x9350, 0x8fe4eb}, + {0x9351, 0x8fe4ec}, + {0x9352, 0x8fe4ed}, + {0x9354, 0xc4d7}, + {0x9355, 0x8fe4ee}, + {0x9356, 0xefac}, + {0x9357, 0x8fe4ef}, + {0x9358, 0x8fe4f0}, + {0x935a, 0x8fe4f1}, + {0x935b, 0xc3c3}, + {0x935c, 0xefa8}, + {0x935e, 0x8fe4f2}, + {0x9360, 0xefa9}, + {0x9364, 0x8fe4f3}, + {0x9365, 0x8fe4f4}, + {0x9367, 0x8fe4f5}, + {0x9369, 0x8fe4f6}, + {0x936a, 0x8fe4f7}, + {0x936c, 0xb7ad}, + {0x936d, 0x8fe4f8}, + {0x936e, 0xefab}, + {0x936f, 0x8fe4f9}, + {0x9370, 0x8fe4fa}, + {0x9371, 0x8fe4fb}, + {0x9373, 0x8fe4fc}, + {0x9374, 0x8fe4fd}, + {0x9375, 0xb8b0}, + {0x9376, 0x8fe4fe}, + {0x937a, 0x8fe5a1}, + {0x937c, 0xefaa}, + {0x937d, 0x8fe5a2}, + {0x937e, 0xbee1}, + {0x937f, 0x8fe5a3}, + {0x9380, 0x8fe5a4}, + {0x9381, 0x8fe5a5}, + {0x9382, 0x8fe5a6}, + {0x9388, 0x8fe5a7}, + {0x938a, 0x8fe5a8}, + {0x938b, 0x8fe5a9}, + {0x938c, 0xb3f9}, + {0x938d, 0x8fe5aa}, + {0x938f, 0x8fe5ab}, + {0x9392, 0x8fe5ac}, + {0x9394, 0xefb0}, + {0x9395, 0x8fe5ad}, + {0x9396, 0xbabf}, + {0x9397, 0xc1f9}, + {0x9398, 0x8fe5ae}, + {0x939a, 0xc4ca}, + {0x939b, 0x8fe5af}, + {0x939e, 0x8fe5b0}, + {0x93a1, 0x8fe5b1}, + {0x93a3, 0x8fe5b2}, + {0x93a4, 0x8fe5b3}, + {0x93a6, 0x8fe5b4}, + {0x93a7, 0xb3bb}, + {0x93a8, 0x8fe5b5}, + {0x93a9, 0x8fe5bb}, + {0x93ab, 0x8fe5b6}, + {0x93ac, 0xefae}, + {0x93ad, 0xefaf}, + {0x93ae, 0xc4c3}, + {0x93b0, 0xefad}, + {0x93b4, 0x8fe5b7}, + {0x93b5, 0x8fe5b8}, + {0x93b6, 0x8fe5b9}, + {0x93b9, 0xefb1}, + {0x93ba, 0x8fe5ba}, + {0x93c1, 0x8fe5bc}, + {0x93c3, 0xefb7}, + {0x93c4, 0x8fe5bd}, + {0x93c5, 0x8fe5be}, + {0x93c6, 0x8fe5bf}, + {0x93c7, 0x8fe5c0}, + {0x93c8, 0xefba}, + {0x93c9, 0x8fe5c1}, + {0x93ca, 0x8fe5c2}, + {0x93cb, 0x8fe5c3}, + {0x93cc, 0x8fe5c4}, + {0x93cd, 0x8fe5c5}, + {0x93d0, 0xefb9}, + {0x93d1, 0xc5ad}, + {0x93d3, 0x8fe5c6}, + {0x93d6, 0xefb2}, + {0x93d7, 0xefb3}, + {0x93d8, 0xefb6}, + {0x93d9, 0x8fe5c7}, + {0x93dc, 0x8fe5c8}, + {0x93dd, 0xefb8}, + {0x93de, 0x8fe5c9}, + {0x93df, 0x8fe5ca}, + {0x93e1, 0xb6c0}, + {0x93e2, 0x8fe5cb}, + {0x93e4, 0xefbb}, + {0x93e5, 0xefb5}, + {0x93e6, 0x8fe5cc}, + {0x93e7, 0x8fe5cd}, + {0x93e8, 0xefb4}, + {0x93f7, 0x8fe5cf}, + {0x93f8, 0x8fe5d0}, + {0x93f9, 0x8fe5ce}, + {0x93fa, 0x8fe5d1}, + {0x93fb, 0x8fe5d2}, + {0x93fd, 0x8fe5d3}, + {0x9401, 0x8fe5d4}, + {0x9402, 0x8fe5d5}, + {0x9403, 0xefbf}, + {0x9404, 0x8fe5d6}, + {0x9407, 0xefc0}, + {0x9408, 0x8fe5d7}, + {0x9409, 0x8fe5d8}, + {0x940d, 0x8fe5d9}, + {0x940e, 0x8fe5da}, + {0x940f, 0x8fe5db}, + {0x9410, 0xefc1}, + {0x9413, 0xefbe}, + {0x9414, 0xefbd}, + {0x9415, 0x8fe5dc}, + {0x9416, 0x8fe5dd}, + {0x9417, 0x8fe5de}, + {0x9418, 0xbee2}, + {0x9419, 0xc6aa}, + {0x941a, 0xefbc}, + {0x941f, 0x8fe5df}, + {0x9421, 0xefc5}, + {0x942b, 0xefc3}, + {0x942e, 0x8fe5e0}, + {0x942f, 0x8fe5e1}, + {0x9431, 0x8fe5e2}, + {0x9432, 0x8fe5e3}, + {0x9433, 0x8fe5e4}, + {0x9434, 0x8fe5e5}, + {0x9435, 0xefc4}, + {0x9436, 0xefc2}, + {0x9438, 0xc2f8}, + {0x943a, 0xefc6}, + {0x943b, 0x8fe5e6}, + {0x943d, 0x8fe5e8}, + {0x943f, 0x8fe5e7}, + {0x9441, 0xefc7}, + {0x9443, 0x8fe5e9}, + {0x9444, 0xefc9}, + {0x9445, 0x8fe5ea}, + {0x9448, 0x8fe5eb}, + {0x944a, 0x8fe5ec}, + {0x944c, 0x8fe5ed}, + {0x9451, 0xb4d5}, + {0x9452, 0xefc8}, + {0x9453, 0xccfa}, + {0x9455, 0x8fe5ee}, + {0x9459, 0x8fe5ef}, + {0x945a, 0xefd4}, + {0x945b, 0xefca}, + {0x945c, 0x8fe5f0}, + {0x945e, 0xefcd}, + {0x945f, 0x8fe5f1}, + {0x9460, 0xefcb}, + {0x9461, 0x8fe5f2}, + {0x9462, 0xefcc}, + {0x9463, 0x8fe5f3}, + {0x9468, 0x8fe5f4}, + {0x946a, 0xefce}, + {0x946b, 0x8fe5f5}, + {0x946d, 0x8fe5f6}, + {0x946e, 0x8fe5f7}, + {0x946f, 0x8fe5f8}, + {0x9470, 0xefd0}, + {0x9471, 0x8fe5f9}, + {0x9472, 0x8fe5fa}, + {0x9475, 0xefd1}, + {0x9477, 0xefd2}, + {0x947c, 0xefd5}, + {0x947d, 0xefd3}, + {0x947e, 0xefd6}, + {0x947f, 0xefd8}, + {0x9481, 0xefd7}, + {0x9483, 0x8fe5fc}, + {0x9484, 0x8fe5fb}, + {0x9577, 0xc4b9}, + {0x9578, 0x8fe5fd}, + {0x9579, 0x8fe5fe}, + {0x957e, 0x8fe6a1}, + {0x9580, 0xcce7}, + {0x9582, 0xefd9}, + {0x9583, 0xc1ae}, + {0x9584, 0x8fe6a2}, + {0x9587, 0xefda}, + {0x9588, 0x8fe6a3}, + {0x9589, 0xcac4}, + {0x958a, 0xefdb}, + {0x958b, 0xb3ab}, + {0x958c, 0x8fe6a4}, + {0x958d, 0x8fe6a5}, + {0x958e, 0x8fe6a6}, + {0x958f, 0xb1bc}, + {0x9591, 0xb4d7}, + {0x9593, 0xb4d6}, + {0x9594, 0xefdc}, + {0x9596, 0xefdd}, + {0x9598, 0xefde}, + {0x9599, 0xefdf}, + {0x959d, 0x8fe6a7}, + {0x959e, 0x8fe6a8}, + {0x959f, 0x8fe6a9}, + {0x95a0, 0xefe0}, + {0x95a1, 0x8fe6aa}, + {0x95a2, 0xb4d8}, + {0x95a3, 0xb3d5}, + {0x95a4, 0xb9de}, + {0x95a5, 0xc8b6}, + {0x95a6, 0x8fe6ab}, + {0x95a7, 0xefe2}, + {0x95a8, 0xefe1}, + {0x95a9, 0x8fe6ac}, + {0x95ab, 0x8fe6ad}, + {0x95ac, 0x8fe6ae}, + {0x95ad, 0xefe3}, + {0x95b2, 0xb1dc}, + {0x95b4, 0x8fe6af}, + {0x95b6, 0x8fe6b0}, + {0x95b9, 0xefe6}, + {0x95ba, 0x8fe6b1}, + {0x95bb, 0xefe5}, + {0x95bc, 0xefe4}, + {0x95bd, 0x8fe6b2}, + {0x95be, 0xefe7}, + {0x95bf, 0x8fe6b3}, + {0x95c3, 0xefea}, + {0x95c6, 0x8fe6b4}, + {0x95c7, 0xb0c7}, + {0x95c8, 0x8fe6b5}, + {0x95c9, 0x8fe6b6}, + {0x95ca, 0xefe8}, + {0x95cb, 0x8fe6b7}, + {0x95cc, 0xefec}, + {0x95cd, 0xefeb}, + {0x95d0, 0x8fe6b8}, + {0x95d1, 0x8fe6b9}, + {0x95d2, 0x8fe6ba}, + {0x95d3, 0x8fe6bb}, + {0x95d4, 0xefee}, + {0x95d5, 0xefed}, + {0x95d6, 0xefef}, + {0x95d8, 0xc6ae}, + {0x95d9, 0x8fe6bc}, + {0x95da, 0x8fe6bd}, + {0x95dc, 0xeff0}, + {0x95dd, 0x8fe6be}, + {0x95de, 0x8fe6bf}, + {0x95df, 0x8fe6c0}, + {0x95e0, 0x8fe6c1}, + {0x95e1, 0xeff1}, + {0x95e2, 0xeff3}, + {0x95e4, 0x8fe6c2}, + {0x95e5, 0xeff2}, + {0x95e6, 0x8fe6c3}, + {0x961c, 0xc9ec}, + {0x961d, 0x8fe6c4}, + {0x961e, 0x8fe6c5}, + {0x9621, 0xeff4}, + {0x9622, 0x8fe6c6}, + {0x9624, 0x8fe6c7}, + {0x9625, 0x8fe6c8}, + {0x9626, 0x8fe6c9}, + {0x9628, 0xeff5}, + {0x962a, 0xbae5}, + {0x962c, 0x8fe6ca}, + {0x962e, 0xeff6}, + {0x962f, 0xeff7}, + {0x9631, 0x8fe6cb}, + {0x9632, 0xcbc9}, + {0x9633, 0x8fe6cc}, + {0x9637, 0x8fe6cd}, + {0x9638, 0x8fe6ce}, + {0x9639, 0x8fe6cf}, + {0x963a, 0x8fe6d0}, + {0x963b, 0xc1cb}, + {0x963c, 0x8fe6d1}, + {0x963d, 0x8fe6d2}, + {0x963f, 0xb0a4}, + {0x9640, 0xc2cb}, + {0x9641, 0x8fe6d3}, + {0x9642, 0xeff8}, + {0x9644, 0xc9ed}, + {0x964b, 0xeffb}, + {0x964c, 0xeff9}, + {0x964d, 0xb9df}, + {0x964f, 0xeffa}, + {0x9650, 0xb8c2}, + {0x9652, 0x8fe6d4}, + {0x9654, 0x8fe6d5}, + {0x9656, 0x8fe6d6}, + {0x9657, 0x8fe6d7}, + {0x9658, 0x8fe6d8}, + {0x965b, 0xcac5}, + {0x965c, 0xeffd}, + {0x965d, 0xf0a1}, + {0x965e, 0xeffe}, + {0x965f, 0xf0a2}, + {0x9661, 0x8fe6d9}, + {0x9662, 0xb1a1}, + {0x9663, 0xbfd8}, + {0x9664, 0xbdfc}, + {0x9665, 0xb4d9}, + {0x9666, 0xf0a3}, + {0x966a, 0xc7e6}, + {0x966c, 0xf0a5}, + {0x966e, 0x8fe6da}, + {0x9670, 0xb1a2}, + {0x9672, 0xf0a4}, + {0x9673, 0xc4c4}, + {0x9674, 0x8fe6db}, + {0x9675, 0xcecd}, + {0x9676, 0xc6ab}, + {0x9677, 0xeffc}, + {0x9678, 0xcea6}, + {0x967a, 0xb8b1}, + {0x967b, 0x8fe6dc}, + {0x967c, 0x8fe6dd}, + {0x967d, 0xcddb}, + {0x967e, 0x8fe6de}, + {0x967f, 0x8fe6df}, + {0x9681, 0x8fe6e0}, + {0x9682, 0x8fe6e1}, + {0x9683, 0x8fe6e2}, + {0x9684, 0x8fe6e3}, + {0x9685, 0xb6f9}, + {0x9686, 0xceb4}, + {0x9688, 0xb7a8}, + {0x9689, 0x8fe6e4}, + {0x968a, 0xc2e2}, + {0x968b, 0xe7a1}, + {0x968d, 0xf0a6}, + {0x968e, 0xb3ac}, + {0x968f, 0xbfef}, + {0x9691, 0x8fe6e5}, + {0x9694, 0xb3d6}, + {0x9695, 0xf0a8}, + {0x9696, 0x8fe6e6}, + {0x9697, 0xf0a9}, + {0x9698, 0xf0a7}, + {0x9699, 0xb7e4}, + {0x969a, 0x8fe6e7}, + {0x969b, 0xbadd}, + {0x969c, 0xbee3}, + {0x969d, 0x8fe6e8}, + {0x969f, 0x8fe6e9}, + {0x96a0, 0xb1a3}, + {0x96a3, 0xced9}, + {0x96a4, 0x8fe6ea}, + {0x96a5, 0x8fe6eb}, + {0x96a6, 0x8fe6ec}, + {0x96a7, 0xf0ab}, + {0x96a8, 0xeeae}, + {0x96a9, 0x8fe6ed}, + {0x96aa, 0xf0aa}, + {0x96ae, 0x8fe6ee}, + {0x96af, 0x8fe6ef}, + {0x96b0, 0xf0ae}, + {0x96b1, 0xf0ac}, + {0x96b2, 0xf0ad}, + {0x96b3, 0x8fe6f0}, + {0x96b4, 0xf0af}, + {0x96b6, 0xf0b0}, + {0x96b7, 0xceec}, + {0x96b8, 0xf0b1}, + {0x96b9, 0xf0b2}, + {0x96ba, 0x8fe6f1}, + {0x96bb, 0xc0c9}, + {0x96bc, 0xc8bb}, + {0x96c0, 0xbffd}, + {0x96c1, 0xb4e7}, + {0x96c4, 0xcdba}, + {0x96c5, 0xb2ed}, + {0x96c6, 0xbdb8}, + {0x96c7, 0xb8db}, + {0x96c9, 0xf0b5}, + {0x96ca, 0x8fe6f2}, + {0x96cb, 0xf0b4}, + {0x96cc, 0xbbf3}, + {0x96cd, 0xf0b6}, + {0x96ce, 0xf0b3}, + {0x96d1, 0xbba8}, + {0x96d2, 0x8fe6f3}, + {0x96d5, 0xf0ba}, + {0x96d6, 0xeaad}, + {0x96d8, 0x8fe6f5}, + {0x96d9, 0xd2d6}, + {0x96da, 0x8fe6f6}, + {0x96db, 0xbff7}, + {0x96dc, 0xf0b8}, + {0x96dd, 0x8fe6f7}, + {0x96de, 0x8fe6f8}, + {0x96df, 0x8fe6f9}, + {0x96e2, 0xcea5}, + {0x96e3, 0xc6f1}, + {0x96e8, 0xb1ab}, + {0x96e9, 0x8fe6fa}, + {0x96ea, 0xc0e3}, + {0x96eb, 0xbcb6}, + {0x96ef, 0x8fe6fb}, + {0x96f0, 0xcab7}, + {0x96f1, 0x8fe6fc}, + {0x96f2, 0xb1c0}, + {0x96f6, 0xceed}, + {0x96f7, 0xcdeb}, + {0x96f9, 0xf0bb}, + {0x96fa, 0x8fe6fd}, + {0x96fb, 0xc5c5}, + {0x9700, 0xbcfb}, + {0x9702, 0x8fe6fe}, + {0x9703, 0x8fe7a1}, + {0x9704, 0xf0bc}, + {0x9705, 0x8fe7a2}, + {0x9706, 0xf0bd}, + {0x9707, 0xbfcc}, + {0x9708, 0xf0be}, + {0x9709, 0x8fe7a3}, + {0x970a, 0xceee}, + {0x970d, 0xf0b9}, + {0x970e, 0xf0c0}, + {0x970f, 0xf0c2}, + {0x9711, 0xf0c1}, + {0x9713, 0xf0bf}, + {0x9716, 0xf0c3}, + {0x9719, 0xf0c4}, + {0x971a, 0x8fe7a4}, + {0x971b, 0x8fe7a5}, + {0x971c, 0xc1fa}, + {0x971d, 0x8fe7a6}, + {0x971e, 0xb2e2}, + {0x9721, 0x8fe7a7}, + {0x9722, 0x8fe7a8}, + {0x9723, 0x8fe7a9}, + {0x9724, 0xf0c5}, + {0x9727, 0xccb8}, + {0x9728, 0x8fe7aa}, + {0x972a, 0xf0c6}, + {0x9730, 0xf0c7}, + {0x9731, 0x8fe7ab}, + {0x9732, 0xcfaa}, + {0x9733, 0x8fe7ac}, + {0x9738, 0xdbb1}, + {0x9739, 0xf0c8}, + {0x973d, 0xf0c9}, + {0x973e, 0xf0ca}, + {0x9741, 0x8fe7ad}, + {0x9742, 0xf0ce}, + {0x9743, 0x8fe7ae}, + {0x9744, 0xf0cb}, + {0x9746, 0xf0cc}, + {0x9748, 0xf0cd}, + {0x9749, 0xf0cf}, + {0x974a, 0x8fe7af}, + {0x974e, 0x8fe7b0}, + {0x974f, 0x8fe7b1}, + {0x9752, 0xc0c4}, + {0x9755, 0x8fe7b2}, + {0x9756, 0xccf7}, + {0x9757, 0x8fe7b3}, + {0x9758, 0x8fe7b4}, + {0x9759, 0xc0c5}, + {0x975a, 0x8fe7b5}, + {0x975b, 0x8fe7b6}, + {0x975c, 0xf0d0}, + {0x975e, 0xc8f3}, + {0x9760, 0xf0d1}, + {0x9761, 0xf3d3}, + {0x9762, 0xcccc}, + {0x9763, 0x8fe7b7}, + {0x9764, 0xf0d2}, + {0x9766, 0xf0d3}, + {0x9767, 0x8fe7b8}, + {0x9768, 0xf0d4}, + {0x9769, 0xb3d7}, + {0x976a, 0x8fe7b9}, + {0x976b, 0xf0d6}, + {0x976d, 0xbfd9}, + {0x976e, 0x8fe7ba}, + {0x9771, 0xf0d7}, + {0x9773, 0x8fe7bb}, + {0x9774, 0xb7a4}, + {0x9776, 0x8fe7bc}, + {0x9777, 0x8fe7bd}, + {0x9778, 0x8fe7be}, + {0x9779, 0xf0d8}, + {0x977a, 0xf0dc}, + {0x977b, 0x8fe7bf}, + {0x977c, 0xf0da}, + {0x977d, 0x8fe7c0}, + {0x977f, 0x8fe7c1}, + {0x9780, 0x8fe7c2}, + {0x9781, 0xf0db}, + {0x9784, 0xb3f3}, + {0x9785, 0xf0d9}, + {0x9786, 0xf0dd}, + {0x9789, 0x8fe7c3}, + {0x978b, 0xf0de}, + {0x978d, 0xb0c8}, + {0x978f, 0xf0df}, + {0x9790, 0xf0e0}, + {0x9795, 0x8fe7c4}, + {0x9796, 0x8fe7c5}, + {0x9797, 0x8fe7c6}, + {0x9798, 0xbee4}, + {0x9799, 0x8fe7c7}, + {0x979a, 0x8fe7c8}, + {0x979c, 0xf0e1}, + {0x979e, 0x8fe7c9}, + {0x979f, 0x8fe7ca}, + {0x97a0, 0xb5c7}, + {0x97a2, 0x8fe7cb}, + {0x97a3, 0xf0e4}, + {0x97a6, 0xf0e3}, + {0x97a8, 0xf0e2}, + {0x97ab, 0xebf1}, + {0x97ac, 0x8fe7cc}, + {0x97ad, 0xcadc}, + {0x97ae, 0x8fe7cd}, + {0x97b1, 0x8fe7ce}, + {0x97b2, 0x8fe7cf}, + {0x97b3, 0xf0e5}, + {0x97b4, 0xf0e6}, + {0x97b5, 0x8fe7d0}, + {0x97b6, 0x8fe7d1}, + {0x97b8, 0x8fe7d2}, + {0x97b9, 0x8fe7d3}, + {0x97ba, 0x8fe7d4}, + {0x97bc, 0x8fe7d5}, + {0x97be, 0x8fe7d6}, + {0x97bf, 0x8fe7d7}, + {0x97c1, 0x8fe7d8}, + {0x97c3, 0xf0e7}, + {0x97c4, 0x8fe7d9}, + {0x97c5, 0x8fe7da}, + {0x97c6, 0xf0e8}, + {0x97c7, 0x8fe7db}, + {0x97c8, 0xf0e9}, + {0x97c9, 0x8fe7dc}, + {0x97ca, 0x8fe7dd}, + {0x97cb, 0xf0ea}, + {0x97cc, 0x8fe7de}, + {0x97cd, 0x8fe7df}, + {0x97ce, 0x8fe7e0}, + {0x97d0, 0x8fe7e1}, + {0x97d1, 0x8fe7e2}, + {0x97d3, 0xb4da}, + {0x97d4, 0x8fe7e3}, + {0x97d7, 0x8fe7e4}, + {0x97d8, 0x8fe7e5}, + {0x97d9, 0x8fe7e6}, + {0x97db, 0x8fe7ea}, + {0x97dc, 0xf0eb}, + {0x97dd, 0x8fe7e7}, + {0x97de, 0x8fe7e8}, + {0x97e0, 0x8fe7e9}, + {0x97e1, 0x8fe7eb}, + {0x97e4, 0x8fe7ec}, + {0x97ed, 0xf0ec}, + {0x97ee, 0xc7a3}, + {0x97ef, 0x8fe7ed}, + {0x97f1, 0x8fe7ee}, + {0x97f2, 0xf0ee}, + {0x97f3, 0xb2bb}, + {0x97f4, 0x8fe7ef}, + {0x97f5, 0xf0f1}, + {0x97f6, 0xf0f0}, + {0x97f7, 0x8fe7f0}, + {0x97f8, 0x8fe7f1}, + {0x97fa, 0x8fe7f2}, + {0x97fb, 0xb1a4}, + {0x97ff, 0xb6c1}, + {0x9801, 0xcac7}, + {0x9802, 0xc4ba}, + {0x9803, 0xbaa2}, + {0x9805, 0xb9e0}, + {0x9806, 0xbde7}, + {0x9807, 0x8fe7f3}, + {0x9808, 0xbfdc}, + {0x980a, 0x8fe7f4}, + {0x980c, 0xf0f3}, + {0x980d, 0x8fe7f6}, + {0x980e, 0x8fe7f7}, + {0x980f, 0xf0f2}, + {0x9810, 0xcdc2}, + {0x9811, 0xb4e8}, + {0x9812, 0xc8d2}, + {0x9813, 0xc6dc}, + {0x9814, 0x8fe7f8}, + {0x9816, 0x8fe7f9}, + {0x9817, 0xbffc}, + {0x9818, 0xcece}, + {0x9819, 0x8fe7f5}, + {0x981a, 0xb7db}, + {0x981c, 0x8fe7fa}, + {0x981e, 0x8fe7fb}, + {0x9820, 0x8fe7fc}, + {0x9821, 0xf0f6}, + {0x9823, 0x8fe7fd}, + {0x9824, 0xf0f5}, + {0x9825, 0x8fe8a8}, + {0x9826, 0x8fe7fe}, + {0x982b, 0x8fe8a1}, + {0x982c, 0xcbcb}, + {0x982d, 0xc6ac}, + {0x982e, 0x8fe8a2}, + {0x982f, 0x8fe8a3}, + {0x9830, 0x8fe8a4}, + {0x9832, 0x8fe8a5}, + {0x9833, 0x8fe8a6}, + {0x9834, 0xb1d0}, + {0x9835, 0x8fe8a7}, + {0x9837, 0xf0f7}, + {0x9838, 0xf0f4}, + {0x983b, 0xc9d1}, + {0x983c, 0xcdea}, + {0x983d, 0xf0f8}, + {0x983e, 0x8fe8a9}, + {0x9844, 0x8fe8aa}, + {0x9846, 0xf0f9}, + {0x9847, 0x8fe8ab}, + {0x984a, 0x8fe8ac}, + {0x984b, 0xf0fb}, + {0x984c, 0xc2ea}, + {0x984d, 0xb3db}, + {0x984e, 0xb3dc}, + {0x984f, 0xf0fa}, + {0x9851, 0x8fe8ad}, + {0x9852, 0x8fe8ae}, + {0x9853, 0x8fe8af}, + {0x9854, 0xb4e9}, + {0x9855, 0xb8b2}, + {0x9856, 0x8fe8b0}, + {0x9857, 0x8fe8b1}, + {0x9858, 0xb4ea}, + {0x9859, 0x8fe8b2}, + {0x985a, 0x8fe8b3}, + {0x985b, 0xc5bf}, + {0x985e, 0xcee0}, + {0x9862, 0x8fe8b4}, + {0x9863, 0x8fe8b5}, + {0x9865, 0x8fe8b6}, + {0x9866, 0x8fe8b7}, + {0x9867, 0xb8dc}, + {0x986a, 0x8fe8b8}, + {0x986b, 0xf0fc}, + {0x986c, 0x8fe8b9}, + {0x986f, 0xf0fd}, + {0x9870, 0xf0fe}, + {0x9871, 0xf1a1}, + {0x9873, 0xf1a3}, + {0x9874, 0xf1a2}, + {0x98a8, 0xc9f7}, + {0x98aa, 0xf1a4}, + {0x98ab, 0x8fe8ba}, + {0x98ad, 0x8fe8bb}, + {0x98ae, 0x8fe8bc}, + {0x98af, 0xf1a5}, + {0x98b0, 0x8fe8bd}, + {0x98b1, 0xf1a6}, + {0x98b4, 0x8fe8be}, + {0x98b6, 0xf1a7}, + {0x98b7, 0x8fe8bf}, + {0x98b8, 0x8fe8c0}, + {0x98ba, 0x8fe8c1}, + {0x98bb, 0x8fe8c2}, + {0x98bf, 0x8fe8c3}, + {0x98c2, 0x8fe8c4}, + {0x98c3, 0xf1a9}, + {0x98c4, 0xf1a8}, + {0x98c5, 0x8fe8c5}, + {0x98c6, 0xf1aa}, + {0x98c8, 0x8fe8c6}, + {0x98cc, 0x8fe8c7}, + {0x98db, 0xc8f4}, + {0x98dc, 0xe6cc}, + {0x98df, 0xbfa9}, + {0x98e1, 0x8fe8c8}, + {0x98e2, 0xb5b2}, + {0x98e3, 0x8fe8c9}, + {0x98e5, 0x8fe8ca}, + {0x98e6, 0x8fe8cb}, + {0x98e7, 0x8fe8cc}, + {0x98e9, 0xf1ab}, + {0x98ea, 0x8fe8cd}, + {0x98eb, 0xf1ac}, + {0x98ed, 0xd2ac}, + {0x98ee, 0xddbb}, + {0x98ef, 0xc8d3}, + {0x98f2, 0xb0fb}, + {0x98f3, 0x8fe8ce}, + {0x98f4, 0xb0bb}, + {0x98f6, 0x8fe8cf}, + {0x98fc, 0xbbf4}, + {0x98fd, 0xcbb0}, + {0x98fe, 0xbefe}, + {0x9902, 0x8fe8d0}, + {0x9903, 0xf1ad}, + {0x9905, 0xccdf}, + {0x9907, 0x8fe8d1}, + {0x9908, 0x8fe8d2}, + {0x9909, 0xf1ae}, + {0x990a, 0xcddc}, + {0x990c, 0xb1c2}, + {0x9910, 0xbbc1}, + {0x9911, 0x8fe8d3}, + {0x9912, 0xf1af}, + {0x9913, 0xb2ee}, + {0x9914, 0xf1b0}, + {0x9915, 0x8fe8d4}, + {0x9916, 0x8fe8d5}, + {0x9917, 0x8fe8d6}, + {0x9918, 0xf1b1}, + {0x991a, 0x8fe8d7}, + {0x991b, 0x8fe8d8}, + {0x991c, 0x8fe8d9}, + {0x991d, 0xf1b3}, + {0x991e, 0xf1b4}, + {0x991f, 0x8fe8da}, + {0x9920, 0xf1b6}, + {0x9921, 0xf1b2}, + {0x9922, 0x8fe8db}, + {0x9924, 0xf1b5}, + {0x9926, 0x8fe8dc}, + {0x9927, 0x8fe8dd}, + {0x9928, 0xb4db}, + {0x992b, 0x8fe8de}, + {0x992c, 0xf1b7}, + {0x992e, 0xf1b8}, + {0x9931, 0x8fe8df}, + {0x9932, 0x8fe8e0}, + {0x9933, 0x8fe8e1}, + {0x9934, 0x8fe8e2}, + {0x9935, 0x8fe8e3}, + {0x9939, 0x8fe8e4}, + {0x993a, 0x8fe8e5}, + {0x993b, 0x8fe8e6}, + {0x993c, 0x8fe8e7}, + {0x993d, 0xf1b9}, + {0x993e, 0xf1ba}, + {0x9940, 0x8fe8e8}, + {0x9941, 0x8fe8e9}, + {0x9942, 0xf1bb}, + {0x9945, 0xf1bd}, + {0x9946, 0x8fe8ea}, + {0x9947, 0x8fe8eb}, + {0x9948, 0x8fe8ec}, + {0x9949, 0xf1bc}, + {0x994b, 0xf1bf}, + {0x994c, 0xf1c2}, + {0x994d, 0x8fe8ed}, + {0x994e, 0x8fe8ee}, + {0x9950, 0xf1be}, + {0x9951, 0xf1c0}, + {0x9952, 0xf1c1}, + {0x9954, 0x8fe8ef}, + {0x9955, 0xf1c3}, + {0x9957, 0xb6c2}, + {0x9958, 0x8fe8f0}, + {0x9959, 0x8fe8f1}, + {0x995b, 0x8fe8f2}, + {0x995c, 0x8fe8f3}, + {0x995e, 0x8fe8f4}, + {0x995f, 0x8fe8f5}, + {0x9960, 0x8fe8f6}, + {0x9996, 0xbcf3}, + {0x9997, 0xf1c4}, + {0x9998, 0xf1c5}, + {0x9999, 0xb9e1}, + {0x999b, 0x8fe8f7}, + {0x999d, 0x8fe8f8}, + {0x999f, 0x8fe8f9}, + {0x99a5, 0xf1c6}, + {0x99a6, 0x8fe8fa}, + {0x99a8, 0xb3be}, + {0x99ac, 0xc7cf}, + {0x99ad, 0xf1c7}, + {0x99ae, 0xf1c8}, + {0x99b0, 0x8fe8fb}, + {0x99b1, 0x8fe8fc}, + {0x99b2, 0x8fe8fd}, + {0x99b3, 0xc3da}, + {0x99b4, 0xc6eb}, + {0x99b5, 0x8fe8fe}, + {0x99b9, 0x8fe9a1}, + {0x99ba, 0x8fe9a2}, + {0x99bc, 0xf1c9}, + {0x99bd, 0x8fe9a3}, + {0x99bf, 0x8fe9a4}, + {0x99c1, 0xc7fd}, + {0x99c3, 0x8fe9a5}, + {0x99c4, 0xc2cc}, + {0x99c5, 0xb1d8}, + {0x99c6, 0xb6ee}, + {0x99c8, 0xb6ef}, + {0x99c9, 0x8fe9a6}, + {0x99d0, 0xc3f3}, + {0x99d1, 0xf1ce}, + {0x99d2, 0xb6f0}, + {0x99d3, 0x8fe9a7}, + {0x99d4, 0x8fe9a8}, + {0x99d5, 0xb2ef}, + {0x99d8, 0xf1cd}, + {0x99d9, 0x8fe9a9}, + {0x99da, 0x8fe9aa}, + {0x99db, 0xf1cb}, + {0x99dc, 0x8fe9ab}, + {0x99dd, 0xf1cc}, + {0x99de, 0x8fe9ac}, + {0x99df, 0xf1ca}, + {0x99e2, 0xf1d8}, + {0x99e7, 0x8fe9ad}, + {0x99ea, 0x8fe9ae}, + {0x99eb, 0x8fe9af}, + {0x99ec, 0x8fe9b0}, + {0x99ed, 0xf1cf}, + {0x99ee, 0xf1d0}, + {0x99f0, 0x8fe9b1}, + {0x99f1, 0xf1d1}, + {0x99f2, 0xf1d2}, + {0x99f4, 0x8fe9b2}, + {0x99f5, 0x8fe9b3}, + {0x99f8, 0xf1d4}, + {0x99f9, 0x8fe9b4}, + {0x99fb, 0xf1d3}, + {0x99fd, 0x8fe9b5}, + {0x99fe, 0x8fe9b6}, + {0x99ff, 0xbdd9}, + {0x9a01, 0xf1d5}, + {0x9a02, 0x8fe9b7}, + {0x9a03, 0x8fe9b8}, + {0x9a04, 0x8fe9b9}, + {0x9a05, 0xf1d7}, + {0x9a0b, 0x8fe9ba}, + {0x9a0c, 0x8fe9bb}, + {0x9a0e, 0xb5b3}, + {0x9a0f, 0xf1d6}, + {0x9a10, 0x8fe9bc}, + {0x9a11, 0x8fe9bd}, + {0x9a12, 0xc1fb}, + {0x9a13, 0xb8b3}, + {0x9a16, 0x8fe9be}, + {0x9a19, 0xf1d9}, + {0x9a1e, 0x8fe9bf}, + {0x9a20, 0x8fe9c0}, + {0x9a22, 0x8fe9c1}, + {0x9a23, 0x8fe9c2}, + {0x9a24, 0x8fe9c3}, + {0x9a27, 0x8fe9c4}, + {0x9a28, 0xc2cd}, + {0x9a2b, 0xf1da}, + {0x9a2d, 0x8fe9c5}, + {0x9a2e, 0x8fe9c6}, + {0x9a30, 0xc6ad}, + {0x9a33, 0x8fe9c7}, + {0x9a35, 0x8fe9c8}, + {0x9a36, 0x8fe9c9}, + {0x9a37, 0xf1db}, + {0x9a38, 0x8fe9ca}, + {0x9a3e, 0xf1e0}, + {0x9a40, 0xf1de}, + {0x9a41, 0x8fe9cc}, + {0x9a42, 0xf1dd}, + {0x9a43, 0xf1df}, + {0x9a44, 0x8fe9cd}, + {0x9a45, 0xf1dc}, + {0x9a47, 0x8fe9cb}, + {0x9a4a, 0x8fe9ce}, + {0x9a4b, 0x8fe9cf}, + {0x9a4c, 0x8fe9d0}, + {0x9a4d, 0xf1e2}, + {0x9a4e, 0x8fe9d1}, + {0x9a51, 0x8fe9d2}, + {0x9a54, 0x8fe9d3}, + {0x9a55, 0xf1e1}, + {0x9a56, 0x8fe9d4}, + {0x9a57, 0xf1e4}, + {0x9a5a, 0xb6c3}, + {0x9a5b, 0xf1e3}, + {0x9a5d, 0x8fe9d5}, + {0x9a5f, 0xf1e5}, + {0x9a62, 0xf1e6}, + {0x9a64, 0xf1e8}, + {0x9a65, 0xf1e7}, + {0x9a69, 0xf1e9}, + {0x9a6a, 0xf1eb}, + {0x9a6b, 0xf1ea}, + {0x9aa8, 0xb9fc}, + {0x9aaa, 0x8fe9d6}, + {0x9aac, 0x8fe9d7}, + {0x9aad, 0xf1ec}, + {0x9aae, 0x8fe9d8}, + {0x9aaf, 0x8fe9d9}, + {0x9ab0, 0xf1ed}, + {0x9ab2, 0x8fe9da}, + {0x9ab4, 0x8fe9db}, + {0x9ab5, 0x8fe9dc}, + {0x9ab6, 0x8fe9dd}, + {0x9ab8, 0xb3bc}, + {0x9ab9, 0x8fe9de}, + {0x9abb, 0x8fe9df}, + {0x9abc, 0xf1ee}, + {0x9abe, 0x8fe9e0}, + {0x9abf, 0x8fe9e1}, + {0x9ac0, 0xf1ef}, + {0x9ac1, 0x8fe9e2}, + {0x9ac3, 0x8fe9e3}, + {0x9ac4, 0xbff1}, + {0x9ac6, 0x8fe9e4}, + {0x9ac8, 0x8fe9e5}, + {0x9ace, 0x8fe9e6}, + {0x9acf, 0xf1f0}, + {0x9ad0, 0x8fe9e7}, + {0x9ad1, 0xf1f1}, + {0x9ad2, 0x8fe9e8}, + {0x9ad3, 0xf1f2}, + {0x9ad4, 0xf1f3}, + {0x9ad5, 0x8fe9e9}, + {0x9ad6, 0x8fe9ea}, + {0x9ad7, 0x8fe9eb}, + {0x9ad8, 0xb9e2}, + {0x9adb, 0x8fe9ec}, + {0x9adc, 0x8fe9ed}, + {0x9ade, 0xf1f4}, + {0x9adf, 0xf1f5}, + {0x9ae0, 0x8fe9ee}, + {0x9ae2, 0xf1f6}, + {0x9ae3, 0xf1f7}, + {0x9ae4, 0x8fe9ef}, + {0x9ae5, 0x8fe9f0}, + {0x9ae6, 0xf1f8}, + {0x9ae7, 0x8fe9f1}, + {0x9ae9, 0x8fe9f2}, + {0x9aea, 0xc8b1}, + {0x9aeb, 0xf1fa}, + {0x9aec, 0x8fe9f3}, + {0x9aed, 0xc9a6}, + {0x9aee, 0xf1fb}, + {0x9aef, 0xf1f9}, + {0x9af1, 0xf1fd}, + {0x9af2, 0x8fe9f4}, + {0x9af3, 0x8fe9f5}, + {0x9af4, 0xf1fc}, + {0x9af5, 0x8fe9f6}, + {0x9af7, 0xf1fe}, + {0x9af9, 0x8fe9f7}, + {0x9afa, 0x8fe9f8}, + {0x9afb, 0xf2a1}, + {0x9afd, 0x8fe9f9}, + {0x9aff, 0x8fe9fa}, + {0x9b00, 0x8fe9fb}, + {0x9b01, 0x8fe9fc}, + {0x9b02, 0x8fe9fd}, + {0x9b03, 0x8fe9fe}, + {0x9b04, 0x8feaa1}, + {0x9b05, 0x8feaa2}, + {0x9b06, 0xf2a2}, + {0x9b08, 0x8feaa3}, + {0x9b09, 0x8feaa4}, + {0x9b0b, 0x8feaa5}, + {0x9b0c, 0x8feaa6}, + {0x9b0d, 0x8feaa7}, + {0x9b0e, 0x8feaa8}, + {0x9b10, 0x8feaa9}, + {0x9b12, 0x8feaaa}, + {0x9b16, 0x8feaab}, + {0x9b18, 0xf2a3}, + {0x9b19, 0x8feaac}, + {0x9b1a, 0xf2a4}, + {0x9b1b, 0x8feaad}, + {0x9b1c, 0x8feaae}, + {0x9b1f, 0xf2a5}, + {0x9b20, 0x8feaaf}, + {0x9b22, 0xf2a6}, + {0x9b23, 0xf2a7}, + {0x9b25, 0xf2a8}, + {0x9b26, 0x8feab0}, + {0x9b27, 0xf2a9}, + {0x9b28, 0xf2aa}, + {0x9b29, 0xf2ab}, + {0x9b2a, 0xf2ac}, + {0x9b2b, 0x8feab1}, + {0x9b2d, 0x8feab2}, + {0x9b2e, 0xf2ad}, + {0x9b2f, 0xf2ae}, + {0x9b31, 0xddb5}, + {0x9b32, 0xf2af}, + {0x9b33, 0x8feab3}, + {0x9b34, 0x8feab4}, + {0x9b35, 0x8feab5}, + {0x9b37, 0x8feab6}, + {0x9b39, 0x8feab7}, + {0x9b3a, 0x8feab8}, + {0x9b3b, 0xe4f8}, + {0x9b3c, 0xb5b4}, + {0x9b3d, 0x8feab9}, + {0x9b41, 0xb3a1}, + {0x9b42, 0xbab2}, + {0x9b43, 0xf2b1}, + {0x9b44, 0xf2b0}, + {0x9b45, 0xcca5}, + {0x9b48, 0x8feaba}, + {0x9b4b, 0x8feabb}, + {0x9b4c, 0x8feabc}, + {0x9b4d, 0xf2b3}, + {0x9b4e, 0xf2b4}, + {0x9b4f, 0xf2b2}, + {0x9b51, 0xf2b5}, + {0x9b54, 0xcbe2}, + {0x9b55, 0x8feabd}, + {0x9b56, 0x8feabe}, + {0x9b57, 0x8feabf}, + {0x9b58, 0xf2b6}, + {0x9b5a, 0xb5fb}, + {0x9b5b, 0x8feac0}, + {0x9b5e, 0x8feac1}, + {0x9b61, 0x8feac2}, + {0x9b63, 0x8feac3}, + {0x9b65, 0x8feac4}, + {0x9b66, 0x8feac5}, + {0x9b68, 0x8feac6}, + {0x9b6a, 0x8feac7}, + {0x9b6b, 0x8feac8}, + {0x9b6c, 0x8feac9}, + {0x9b6d, 0x8feaca}, + {0x9b6e, 0x8feacb}, + {0x9b6f, 0xcfa5}, + {0x9b73, 0x8feacc}, + {0x9b74, 0xf2b7}, + {0x9b75, 0x8feacd}, + {0x9b77, 0x8feace}, + {0x9b78, 0x8feacf}, + {0x9b79, 0x8fead0}, + {0x9b7f, 0x8fead1}, + {0x9b80, 0x8fead2}, + {0x9b83, 0xf2b9}, + {0x9b84, 0x8fead3}, + {0x9b85, 0x8fead4}, + {0x9b86, 0x8fead5}, + {0x9b87, 0x8fead6}, + {0x9b89, 0x8fead7}, + {0x9b8a, 0x8fead8}, + {0x9b8b, 0x8fead9}, + {0x9b8d, 0x8feada}, + {0x9b8e, 0xb0be}, + {0x9b8f, 0x8feadb}, + {0x9b90, 0x8feadc}, + {0x9b91, 0xf2ba}, + {0x9b92, 0xcaab}, + {0x9b93, 0xf2b8}, + {0x9b94, 0x8feadd}, + {0x9b96, 0xf2bb}, + {0x9b97, 0xf2bc}, + {0x9b9a, 0x8feade}, + {0x9b9d, 0x8feadf}, + {0x9b9e, 0x8feae0}, + {0x9b9f, 0xf2bd}, + {0x9ba0, 0xf2be}, + {0x9ba6, 0x8feae1}, + {0x9ba7, 0x8feae2}, + {0x9ba8, 0xf2bf}, + {0x9ba9, 0x8feae3}, + {0x9baa, 0xcbee}, + {0x9bab, 0xbbad}, + {0x9bac, 0x8feae4}, + {0x9bad, 0xbafa}, + {0x9bae, 0xc1af}, + {0x9bb0, 0x8feae5}, + {0x9bb1, 0x8feae6}, + {0x9bb2, 0x8feae7}, + {0x9bb4, 0xf2c0}, + {0x9bb7, 0x8feae8}, + {0x9bb8, 0x8feae9}, + {0x9bb9, 0xf2c3}, + {0x9bbb, 0x8feaea}, + {0x9bbc, 0x8feaeb}, + {0x9bbe, 0x8feaec}, + {0x9bbf, 0x8feaed}, + {0x9bc0, 0xf2c1}, + {0x9bc1, 0x8feaee}, + {0x9bc6, 0xf2c4}, + {0x9bc7, 0x8feaef}, + {0x9bc8, 0x8feaf0}, + {0x9bc9, 0xb8f1}, + {0x9bca, 0xf2c2}, + {0x9bce, 0x8feaf1}, + {0x9bcf, 0xf2c5}, + {0x9bd0, 0x8feaf2}, + {0x9bd1, 0xf2c6}, + {0x9bd2, 0xf2c7}, + {0x9bd4, 0xf2cb}, + {0x9bd6, 0xbbaa}, + {0x9bd7, 0x8feaf3}, + {0x9bd8, 0x8feaf4}, + {0x9bdb, 0xc2e4}, + {0x9bdd, 0x8feaf5}, + {0x9bdf, 0x8feaf6}, + {0x9be1, 0xf2cc}, + {0x9be2, 0xf2c9}, + {0x9be3, 0xf2c8}, + {0x9be4, 0xf2ca}, + {0x9be5, 0x8feaf7}, + {0x9be7, 0x8feaf8}, + {0x9be8, 0xb7df}, + {0x9bea, 0x8feaf9}, + {0x9beb, 0x8feafa}, + {0x9bef, 0x8feafb}, + {0x9bf0, 0xf2d0}, + {0x9bf1, 0xf2cf}, + {0x9bf2, 0xf2ce}, + {0x9bf3, 0x8feafc}, + {0x9bf5, 0xb0b3}, + {0x9bf7, 0x8feafd}, + {0x9bf8, 0x8feafe}, + {0x9bf9, 0x8feba1}, + {0x9bfa, 0x8feba2}, + {0x9bfd, 0x8feba3}, + {0x9bff, 0x8feba4}, + {0x9c00, 0x8feba5}, + {0x9c02, 0x8feba6}, + {0x9c04, 0xf2da}, + {0x9c06, 0xf2d6}, + {0x9c08, 0xf2d7}, + {0x9c09, 0xf2d3}, + {0x9c0a, 0xf2d9}, + {0x9c0b, 0x8feba7}, + {0x9c0c, 0xf2d5}, + {0x9c0d, 0xb3e2}, + {0x9c0f, 0x8feba8}, + {0x9c10, 0xcfcc}, + {0x9c11, 0x8feba9}, + {0x9c12, 0xf2d8}, + {0x9c13, 0xf2d4}, + {0x9c14, 0xf2d2}, + {0x9c15, 0xf2d1}, + {0x9c16, 0x8febaa}, + {0x9c18, 0x8febab}, + {0x9c19, 0x8febac}, + {0x9c1a, 0x8febad}, + {0x9c1b, 0xf2dc}, + {0x9c1c, 0x8febae}, + {0x9c1e, 0x8febaf}, + {0x9c21, 0xf2df}, + {0x9c22, 0x8febb0}, + {0x9c23, 0x8febb1}, + {0x9c24, 0xf2de}, + {0x9c25, 0xf2dd}, + {0x9c26, 0x8febb2}, + {0x9c27, 0x8febb3}, + {0x9c28, 0x8febb4}, + {0x9c29, 0x8febb5}, + {0x9c2a, 0x8febb6}, + {0x9c2d, 0xc9c9}, + {0x9c2e, 0xf2db}, + {0x9c2f, 0xb0f3}, + {0x9c30, 0xf2e0}, + {0x9c31, 0x8febb7}, + {0x9c32, 0xf2e2}, + {0x9c35, 0x8febb8}, + {0x9c36, 0x8febb9}, + {0x9c37, 0x8febba}, + {0x9c39, 0xb3ef}, + {0x9c3a, 0xf2cd}, + {0x9c3b, 0xb1b7}, + {0x9c3d, 0x8febbb}, + {0x9c3e, 0xf2e4}, + {0x9c41, 0x8febbc}, + {0x9c43, 0x8febbd}, + {0x9c44, 0x8febbe}, + {0x9c45, 0x8febbf}, + {0x9c46, 0xf2e3}, + {0x9c47, 0xf2e1}, + {0x9c48, 0xc3ad}, + {0x9c49, 0x8febc0}, + {0x9c4a, 0x8febc1}, + {0x9c4e, 0x8febc2}, + {0x9c4f, 0x8febc3}, + {0x9c50, 0x8febc4}, + {0x9c52, 0xcbf0}, + {0x9c53, 0x8febc5}, + {0x9c54, 0x8febc6}, + {0x9c56, 0x8febc7}, + {0x9c57, 0xceda}, + {0x9c58, 0x8febc8}, + {0x9c5a, 0xf2e5}, + {0x9c5b, 0x8febc9}, + {0x9c5c, 0x8febd0}, + {0x9c5d, 0x8febca}, + {0x9c5e, 0x8febcb}, + {0x9c5f, 0x8febcc}, + {0x9c60, 0xf2e6}, + {0x9c63, 0x8febcd}, + {0x9c67, 0xf2e7}, + {0x9c68, 0x8febd2}, + {0x9c69, 0x8febce}, + {0x9c6a, 0x8febcf}, + {0x9c6b, 0x8febd1}, + {0x9c6e, 0x8febd3}, + {0x9c70, 0x8febd4}, + {0x9c72, 0x8febd5}, + {0x9c75, 0x8febd6}, + {0x9c76, 0xf2e8}, + {0x9c77, 0x8febd7}, + {0x9c78, 0xf2e9}, + {0x9c7b, 0x8febd8}, + {0x9ce5, 0xc4bb}, + {0x9ce6, 0x8febd9}, + {0x9ce7, 0xf2ea}, + {0x9ce9, 0xc8b7}, + {0x9ceb, 0xf2ef}, + {0x9cec, 0xf2eb}, + {0x9cf0, 0xf2ec}, + {0x9cf2, 0x8febda}, + {0x9cf3, 0xcbb1}, + {0x9cf4, 0xccc4}, + {0x9cf6, 0xc6d0}, + {0x9cf7, 0x8febdb}, + {0x9cf9, 0x8febdc}, + {0x9d02, 0x8febde}, + {0x9d03, 0xf2f0}, + {0x9d06, 0xf2f1}, + {0x9d07, 0xc6be}, + {0x9d08, 0xf2ee}, + {0x9d09, 0xf2ed}, + {0x9d0b, 0x8febdd}, + {0x9d0e, 0xb2aa}, + {0x9d11, 0x8febdf}, + {0x9d12, 0xf2f9}, + {0x9d15, 0xf2f8}, + {0x9d17, 0x8febe0}, + {0x9d18, 0x8febe1}, + {0x9d1b, 0xb1f5}, + {0x9d1c, 0x8febe2}, + {0x9d1d, 0x8febe3}, + {0x9d1e, 0x8febe4}, + {0x9d1f, 0xf2f6}, + {0x9d23, 0xf2f5}, + {0x9d26, 0xf2f3}, + {0x9d28, 0xb3fb}, + {0x9d2a, 0xf2f2}, + {0x9d2b, 0xbcb2}, + {0x9d2c, 0xb2a9}, + {0x9d2f, 0x8febe5}, + {0x9d30, 0x8febe6}, + {0x9d32, 0x8febe7}, + {0x9d33, 0x8febe8}, + {0x9d34, 0x8febe9}, + {0x9d3a, 0x8febea}, + {0x9d3b, 0xb9e3}, + {0x9d3c, 0x8febeb}, + {0x9d3d, 0x8febed}, + {0x9d3e, 0xf2fc}, + {0x9d3f, 0xf2fb}, + {0x9d41, 0xf2fa}, + {0x9d42, 0x8febee}, + {0x9d43, 0x8febef}, + {0x9d44, 0xf2f7}, + {0x9d45, 0x8febec}, + {0x9d46, 0xf2fd}, + {0x9d47, 0x8febf0}, + {0x9d48, 0xf2fe}, + {0x9d4a, 0x8febf1}, + {0x9d50, 0xf3a5}, + {0x9d51, 0xf3a4}, + {0x9d53, 0x8febf2}, + {0x9d54, 0x8febf3}, + {0x9d59, 0xf3a6}, + {0x9d5c, 0xb1ad}, + {0x9d5d, 0xf3a1}, + {0x9d5e, 0xf3a2}, + {0x9d5f, 0x8febf4}, + {0x9d60, 0xb9f4}, + {0x9d61, 0xccb9}, + {0x9d62, 0x8febf6}, + {0x9d63, 0x8febf5}, + {0x9d64, 0xf3a3}, + {0x9d65, 0x8febf7}, + {0x9d69, 0x8febf8}, + {0x9d6a, 0x8febf9}, + {0x9d6b, 0x8febfa}, + {0x9d6c, 0xcbb2}, + {0x9d6f, 0xf3ab}, + {0x9d70, 0x8febfb}, + {0x9d72, 0xf3a7}, + {0x9d76, 0x8febfc}, + {0x9d77, 0x8febfd}, + {0x9d7a, 0xf3ac}, + {0x9d7b, 0x8febfe}, + {0x9d7c, 0x8feca1}, + {0x9d7e, 0x8feca2}, + {0x9d83, 0x8feca3}, + {0x9d84, 0x8feca4}, + {0x9d86, 0x8feca5}, + {0x9d87, 0xf3a9}, + {0x9d89, 0xf3a8}, + {0x9d8a, 0x8feca6}, + {0x9d8d, 0x8feca7}, + {0x9d8e, 0x8feca8}, + {0x9d8f, 0xb7dc}, + {0x9d92, 0x8feca9}, + {0x9d93, 0x8fecaa}, + {0x9d95, 0x8fecab}, + {0x9d96, 0x8fecac}, + {0x9d97, 0x8fecad}, + {0x9d98, 0x8fecae}, + {0x9d9a, 0xf3ad}, + {0x9da1, 0x8fecaf}, + {0x9da4, 0xf3ae}, + {0x9da9, 0xf3af}, + {0x9daa, 0x8fecb0}, + {0x9dab, 0xf3aa}, + {0x9dac, 0x8fecb1}, + {0x9dae, 0x8fecb2}, + {0x9daf, 0xf2f4}, + {0x9db1, 0x8fecb3}, + {0x9db2, 0xf3b0}, + {0x9db4, 0xc4e1}, + {0x9db5, 0x8fecb4}, + {0x9db8, 0xf3b4}, + {0x9db9, 0x8fecb5}, + {0x9dba, 0xf3b5}, + {0x9dbb, 0xf3b3}, + {0x9dbc, 0x8fecb6}, + {0x9dbf, 0x8fecb7}, + {0x9dc1, 0xf3b2}, + {0x9dc2, 0xf3b8}, + {0x9dc3, 0x8fecb8}, + {0x9dc4, 0xf3b1}, + {0x9dc6, 0xf3b6}, + {0x9dc7, 0x8fecb9}, + {0x9dc9, 0x8fecba}, + {0x9dca, 0x8fecbb}, + {0x9dcf, 0xf3b7}, + {0x9dd3, 0xf3ba}, + {0x9dd4, 0x8fecbc}, + {0x9dd5, 0x8fecbd}, + {0x9dd6, 0x8fecbe}, + {0x9dd7, 0x8fecbf}, + {0x9dd9, 0xf3b9}, + {0x9dda, 0x8fecc0}, + {0x9dde, 0x8fecc1}, + {0x9ddf, 0x8fecc2}, + {0x9de0, 0x8fecc3}, + {0x9de5, 0x8fecc4}, + {0x9de6, 0xf3bc}, + {0x9de7, 0x8fecc5}, + {0x9de9, 0x8fecc6}, + {0x9deb, 0x8fecc7}, + {0x9ded, 0xf3bd}, + {0x9dee, 0x8fecc8}, + {0x9def, 0xf3be}, + {0x9df0, 0x8fecc9}, + {0x9df2, 0xcfc9}, + {0x9df3, 0x8fecca}, + {0x9df4, 0x8feccb}, + {0x9df8, 0xf3bb}, + {0x9df9, 0xc2eb}, + {0x9dfa, 0xbaed}, + {0x9dfd, 0xf3bf}, + {0x9dfe, 0x8feccc}, + {0x9e02, 0x8fecce}, + {0x9e07, 0x8feccf}, + {0x9e0a, 0x8feccd}, + {0x9e0e, 0x8fecd0}, + {0x9e10, 0x8fecd1}, + {0x9e11, 0x8fecd2}, + {0x9e12, 0x8fecd3}, + {0x9e15, 0x8fecd4}, + {0x9e16, 0x8fecd5}, + {0x9e19, 0x8fecd6}, + {0x9e1a, 0xf3c0}, + {0x9e1b, 0xf3c1}, + {0x9e1c, 0x8fecd7}, + {0x9e1d, 0x8fecd8}, + {0x9e1e, 0xf3c2}, + {0x9e75, 0xf3c3}, + {0x9e78, 0xb8b4}, + {0x9e79, 0xf3c4}, + {0x9e7a, 0x8fecd9}, + {0x9e7b, 0x8fecda}, + {0x9e7c, 0x8fecdb}, + {0x9e7d, 0xf3c5}, + {0x9e7f, 0xbcaf}, + {0x9e80, 0x8fecdc}, + {0x9e81, 0xf3c6}, + {0x9e82, 0x8fecdd}, + {0x9e83, 0x8fecde}, + {0x9e84, 0x8fecdf}, + {0x9e85, 0x8fece0}, + {0x9e87, 0x8fece1}, + {0x9e88, 0xf3c7}, + {0x9e8b, 0xf3c8}, + {0x9e8c, 0xf3c9}, + {0x9e8e, 0x8fece2}, + {0x9e8f, 0x8fece3}, + {0x9e91, 0xf3cc}, + {0x9e92, 0xf3ca}, + {0x9e93, 0xcfbc}, + {0x9e95, 0xf3cb}, + {0x9e96, 0x8fece4}, + {0x9e97, 0xceef}, + {0x9e98, 0x8fece5}, + {0x9e9b, 0x8fece6}, + {0x9e9d, 0xf3cd}, + {0x9e9e, 0x8fece7}, + {0x9e9f, 0xcedb}, + {0x9ea4, 0x8fece8}, + {0x9ea5, 0xf3ce}, + {0x9ea6, 0xc7fe}, + {0x9ea8, 0x8fece9}, + {0x9ea9, 0xf3cf}, + {0x9eaa, 0xf3d1}, + {0x9eac, 0x8fecea}, + {0x9ead, 0xf3d2}, + {0x9eae, 0x8feceb}, + {0x9eaf, 0x8fecec}, + {0x9eb0, 0x8feced}, + {0x9eb3, 0x8fecee}, + {0x9eb4, 0x8fecef}, + {0x9eb5, 0x8fecf0}, + {0x9eb8, 0xf3d0}, + {0x9eb9, 0xb9ed}, + {0x9eba, 0xcccd}, + {0x9ebb, 0xcbe3}, + {0x9ebc, 0xd6f7}, + {0x9ebe, 0xdde0}, + {0x9ebf, 0xcbfb}, + {0x9ec4, 0xb2ab}, + {0x9ec6, 0x8fecf1}, + {0x9ec8, 0x8fecf2}, + {0x9ecb, 0x8fecf3}, + {0x9ecc, 0xf3d4}, + {0x9ecd, 0xb5d0}, + {0x9ece, 0xf3d5}, + {0x9ecf, 0xf3d6}, + {0x9ed0, 0xf3d7}, + {0x9ed2, 0xb9f5}, + {0x9ed4, 0xf3d8}, + {0x9ed5, 0x8fecf4}, + {0x9ed8, 0xe0d4}, + {0x9ed9, 0xccdb}, + {0x9edb, 0xc2e3}, + {0x9edc, 0xf3d9}, + {0x9edd, 0xf3db}, + {0x9ede, 0xf3da}, + {0x9edf, 0x8fecf5}, + {0x9ee0, 0xf3dc}, + {0x9ee4, 0x8fecf6}, + {0x9ee5, 0xf3dd}, + {0x9ee7, 0x8fecf7}, + {0x9ee8, 0xf3de}, + {0x9eec, 0x8fecf8}, + {0x9eed, 0x8fecf9}, + {0x9eee, 0x8fecfa}, + {0x9eef, 0xf3df}, + {0x9ef0, 0x8fecfb}, + {0x9ef1, 0x8fecfc}, + {0x9ef2, 0x8fecfd}, + {0x9ef4, 0xf3e0}, + {0x9ef5, 0x8fecfe}, + {0x9ef6, 0xf3e1}, + {0x9ef7, 0xf3e2}, + {0x9ef8, 0x8feda1}, + {0x9ef9, 0xf3e3}, + {0x9efb, 0xf3e4}, + {0x9efc, 0xf3e5}, + {0x9efd, 0xf3e6}, + {0x9eff, 0x8feda2}, + {0x9f02, 0x8feda3}, + {0x9f03, 0x8feda4}, + {0x9f07, 0xf3e7}, + {0x9f08, 0xf3e8}, + {0x9f09, 0x8feda5}, + {0x9f0e, 0xc5a4}, + {0x9f0f, 0x8feda6}, + {0x9f10, 0x8feda7}, + {0x9f11, 0x8feda8}, + {0x9f12, 0x8feda9}, + {0x9f13, 0xb8dd}, + {0x9f14, 0x8fedaa}, + {0x9f15, 0xf3ea}, + {0x9f16, 0x8fedab}, + {0x9f17, 0x8fedac}, + {0x9f19, 0x8fedad}, + {0x9f1a, 0x8fedae}, + {0x9f1b, 0x8fedaf}, + {0x9f1f, 0x8fedb0}, + {0x9f20, 0xc1cd}, + {0x9f21, 0xf3eb}, + {0x9f22, 0x8fedb1}, + {0x9f26, 0x8fedb2}, + {0x9f2a, 0x8fedb3}, + {0x9f2b, 0x8fedb4}, + {0x9f2c, 0xf3ec}, + {0x9f2f, 0x8fedb5}, + {0x9f31, 0x8fedb6}, + {0x9f32, 0x8fedb7}, + {0x9f34, 0x8fedb8}, + {0x9f37, 0x8fedb9}, + {0x9f39, 0x8fedba}, + {0x9f3a, 0x8fedbb}, + {0x9f3b, 0xc9a1}, + {0x9f3c, 0x8fedbc}, + {0x9f3d, 0x8fedbd}, + {0x9f3e, 0xf3ed}, + {0x9f3f, 0x8fedbe}, + {0x9f41, 0x8fedbf}, + {0x9f43, 0x8fedc0}, + {0x9f44, 0x8fedc1}, + {0x9f45, 0x8fedc2}, + {0x9f46, 0x8fedc3}, + {0x9f47, 0x8fedc4}, + {0x9f4a, 0xf3ee}, + {0x9f4b, 0xe3b7}, + {0x9f4e, 0xecda}, + {0x9f4f, 0xf0ed}, + {0x9f52, 0xf3ef}, + {0x9f53, 0x8fedc5}, + {0x9f54, 0xf3f0}, + {0x9f55, 0x8fedc6}, + {0x9f56, 0x8fedc7}, + {0x9f57, 0x8fedc8}, + {0x9f58, 0x8fedc9}, + {0x9f5a, 0x8fedca}, + {0x9f5d, 0x8fedcb}, + {0x9f5e, 0x8fedcc}, + {0x9f5f, 0xf3f2}, + {0x9f60, 0xf3f3}, + {0x9f61, 0xf3f4}, + {0x9f62, 0xcef0}, + {0x9f63, 0xf3f1}, + {0x9f66, 0xf3f5}, + {0x9f67, 0xf3f6}, + {0x9f68, 0x8fedcd}, + {0x9f69, 0x8fedce}, + {0x9f6a, 0xf3f8}, + {0x9f6c, 0xf3f7}, + {0x9f6d, 0x8fedcf}, + {0x9f6e, 0x8fedd0}, + {0x9f6f, 0x8fedd1}, + {0x9f70, 0x8fedd2}, + {0x9f71, 0x8fedd3}, + {0x9f72, 0xf3fa}, + {0x9f73, 0x8fedd4}, + {0x9f75, 0x8fedd5}, + {0x9f76, 0xf3fb}, + {0x9f77, 0xf3f9}, + {0x9f7a, 0x8fedd6}, + {0x9f7d, 0x8fedd7}, + {0x9f8d, 0xceb6}, + {0x9f8f, 0x8fedd8}, + {0x9f90, 0x8fedd9}, + {0x9f91, 0x8fedda}, + {0x9f92, 0x8feddb}, + {0x9f94, 0x8feddc}, + {0x9f95, 0xf3fc}, + {0x9f96, 0x8feddd}, + {0x9f97, 0x8fedde}, + {0x9f9c, 0xf3fd}, + {0x9f9d, 0xe3d4}, + {0x9f9e, 0x8feddf}, + {0x9fa0, 0xf3fe}, + {0x9fa1, 0x8fede0}, + {0x9fa2, 0x8fede1}, + {0x9fa3, 0x8fede2}, + {0x9fa5, 0x8fede3}, + {0xff01, 0xa1aa}, + {0xff03, 0xa1f4}, + {0xff04, 0xa1f0}, + {0xff05, 0xa1f3}, + {0xff06, 0xa1f5}, + {0xff08, 0xa1ca}, + {0xff09, 0xa1cb}, + {0xff0a, 0xa1f6}, + {0xff0b, 0xa1dc}, + {0xff0c, 0xa1a4}, + {0xff0e, 0xa1a5}, + {0xff0f, 0xa1bf}, + {0xff10, 0xa3b0}, + {0xff11, 0xa3b1}, + {0xff12, 0xa3b2}, + {0xff13, 0xa3b3}, + {0xff14, 0xa3b4}, + {0xff15, 0xa3b5}, + {0xff16, 0xa3b6}, + {0xff17, 0xa3b7}, + {0xff18, 0xa3b8}, + {0xff19, 0xa3b9}, + {0xff1a, 0xa1a7}, + {0xff1b, 0xa1a8}, + {0xff1c, 0xa1e3}, + {0xff1d, 0xa1e1}, + {0xff1e, 0xa1e4}, + {0xff1f, 0xa1a9}, + {0xff20, 0xa1f7}, + {0xff21, 0xa3c1}, + {0xff22, 0xa3c2}, + {0xff23, 0xa3c3}, + {0xff24, 0xa3c4}, + {0xff25, 0xa3c5}, + {0xff26, 0xa3c6}, + {0xff27, 0xa3c7}, + {0xff28, 0xa3c8}, + {0xff29, 0xa3c9}, + {0xff2a, 0xa3ca}, + {0xff2b, 0xa3cb}, + {0xff2c, 0xa3cc}, + {0xff2d, 0xa3cd}, + {0xff2e, 0xa3ce}, + {0xff2f, 0xa3cf}, + {0xff30, 0xa3d0}, + {0xff31, 0xa3d1}, + {0xff32, 0xa3d2}, + {0xff33, 0xa3d3}, + {0xff34, 0xa3d4}, + {0xff35, 0xa3d5}, + {0xff36, 0xa3d6}, + {0xff37, 0xa3d7}, + {0xff38, 0xa3d8}, + {0xff39, 0xa3d9}, + {0xff3a, 0xa3da}, + {0xff3b, 0xa1ce}, + {0xff3c, 0xa1c0}, /* ¡À */ + {0xff3d, 0xa1cf}, + {0xff3e, 0xa1b0}, + {0xff3f, 0xa1b2}, + {0xff40, 0xa1ae}, + {0xff41, 0xa3e1}, + {0xff42, 0xa3e2}, + {0xff43, 0xa3e3}, + {0xff44, 0xa3e4}, + {0xff45, 0xa3e5}, + {0xff46, 0xa3e6}, + {0xff47, 0xa3e7}, + {0xff48, 0xa3e8}, + {0xff49, 0xa3e9}, + {0xff4a, 0xa3ea}, + {0xff4b, 0xa3eb}, + {0xff4c, 0xa3ec}, + {0xff4d, 0xa3ed}, + {0xff4e, 0xa3ee}, + {0xff4f, 0xa3ef}, + {0xff50, 0xa3f0}, + {0xff51, 0xa3f1}, + {0xff52, 0xa3f2}, + {0xff53, 0xa3f3}, + {0xff54, 0xa3f4}, + {0xff55, 0xa3f5}, + {0xff56, 0xa3f6}, + {0xff57, 0xa3f7}, + {0xff58, 0xa3f8}, + {0xff59, 0xa3f9}, + {0xff5a, 0xa3fa}, + {0xff5b, 0xa1d0}, + {0xff5c, 0xa1c3}, + {0xff5d, 0xa1d1}, + {0xff61, 0x8ea1}, + {0xff62, 0x8ea2}, + {0xff63, 0x8ea3}, + {0xff64, 0x8ea4}, + {0xff65, 0x8ea5}, + {0xff66, 0x8ea6}, + {0xff67, 0x8ea7}, + {0xff68, 0x8ea8}, + {0xff69, 0x8ea9}, + {0xff6a, 0x8eaa}, + {0xff6b, 0x8eab}, + {0xff6c, 0x8eac}, + {0xff6d, 0x8ead}, + {0xff6e, 0x8eae}, + {0xff6f, 0x8eaf}, + {0xff70, 0x8eb0}, + {0xff71, 0x8eb1}, + {0xff72, 0x8eb2}, + {0xff73, 0x8eb3}, + {0xff74, 0x8eb4}, + {0xff75, 0x8eb5}, + {0xff76, 0x8eb6}, + {0xff77, 0x8eb7}, + {0xff78, 0x8eb8}, + {0xff79, 0x8eb9}, + {0xff7a, 0x8eba}, + {0xff7b, 0x8ebb}, + {0xff7c, 0x8ebc}, + {0xff7d, 0x8ebd}, + {0xff7e, 0x8ebe}, + {0xff7f, 0x8ebf}, + {0xff80, 0x8ec0}, + {0xff81, 0x8ec1}, + {0xff82, 0x8ec2}, + {0xff83, 0x8ec3}, + {0xff84, 0x8ec4}, + {0xff85, 0x8ec5}, + {0xff86, 0x8ec6}, + {0xff87, 0x8ec7}, + {0xff88, 0x8ec8}, + {0xff89, 0x8ec9}, + {0xff8a, 0x8eca}, + {0xff8b, 0x8ecb}, + {0xff8c, 0x8ecc}, + {0xff8d, 0x8ecd}, + {0xff8e, 0x8ece}, + {0xff8f, 0x8ecf}, + {0xff90, 0x8ed0}, + {0xff91, 0x8ed1}, + {0xff92, 0x8ed2}, + {0xff93, 0x8ed3}, + {0xff94, 0x8ed4}, + {0xff95, 0x8ed5}, + {0xff96, 0x8ed6}, + {0xff97, 0x8ed7}, + {0xff98, 0x8ed8}, + {0xff99, 0x8ed9}, + {0xff9a, 0x8eda}, + {0xff9b, 0x8edb}, + {0xff9c, 0x8edc}, + {0xff9d, 0x8edd}, + {0xff9e, 0x8ede}, + {0xff9f, 0x8edf}, + {0xffe3, 0xa1b1}, + {0xffe5, 0xa1ef}, + +}; diff --git a/cpan/dist/Jcode/Unicode/uni.c b/cpan/dist/Jcode/Unicode/uni.c new file mode 100644 index 00000000..d099bc18 --- /dev/null +++ b/cpan/dist/Jcode/Unicode/uni.c @@ -0,0 +1,246 @@ +/* + * $Id: uni.c,v 0.61 2000/11/15 05:45:25 dankogai Exp $ + * (c) 1999 Dan Kogai <dankogai@dan.co.jp> + */ + +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <limits.h> +/* +isascii() is no longer used to keep compatible w/ jperl + -- thanks, Hirofumi.Watanabe@jp.sony.com +#include <ctype.h> +*/ +#define IS_ASCII(c) ((unsigned)(c) <= 0x7F) + +#include "table.h" +#include <sys/errno.h> + +#define not_iso646_jp(x) ((x) != '\\' && (x) != '~') + +Octet *q2o(Quad q){ + static Octet buf[8]; + Octet *bufp; + buf[8] = '\0'; + for(bufp = &(buf[7]); q != 0; q >>= 8, bufp--){ + *bufp = q % 256; + } + return ++bufp; +} + +Quad o2q(Octet *o, int nchar){ + Quad result = 0; + do{ + result <<= 8; + result += *o++; + }while(--nchar > 0); + return result; +} + +/*-- UCS2 -> EUC --*/ + +int u_match(const void *key, const void *member){ + Quad x = *((Quad *)key); + Quad y = ((Table_t *)member)->ucs2; + int result = (x > y) ? 1 : (x < y) ? -1 : 0; + return result; +} + +Octet *u2e(Quad *qp, int pedantic){ + Table_t *t; + static Octet buf[4]; + if (IS_ASCII(*qp)){ + if (!pedantic || not_iso646_jp(*qp)){ + return q2o(*qp); + } + } + t = (Table_t *)bsearch(qp, U2E, TABLE_SIZE, sizeof(Table_t), u_match); + if (t != NULL){ + return q2o(t->euc); + }else{ + return "\xa2\xae"; /* ¢® */ + } +} + +size_t _ucs2_euc(Octet *dst, Octet *src, int nchar, int pedantic){ + Quad q; + Octet ebuf[8]; + Octet *o_dst = dst; + size_t result = 0; + + for (nchar /= 2; nchar > 0; nchar--, src += 2) + { + q = o2q(src, 2); + strcpy(ebuf, u2e(&q, pedantic)); + strcpy(dst, ebuf); + dst += strlen(ebuf); + result += strlen(ebuf); + } + return result; +} + +/*-- EUC -> UCS2 --*/ + +int e_cmp(const void *a, const void *b){ + Quad x = ((Table_t *)a)->euc; + Quad y = ((Table_t *)b)->euc; + int result = (x > y) ? 1 : (x < y) ? -1 : 0; + return result; +} + +int e_match(const void *key, const void *member){ + Quad x = *((Quad *)key); + Quad y = ((Table_t *)member)->euc; + int result = (x > y) ? 1 : (x < y) ? -1 : 0; + return result; +} + +Octet *e2u(Quad *qp, int pedantic){ + Table_t *t; + static Octet buf[4]; + if (IS_ASCII(*qp)){ + if (!pedantic || not_iso646_jp(*qp)){ + sprintf(buf, "%c%c", '\0', *qp); + return buf; + } + } + t = (Table_t *)bsearch(qp, E2U, TABLE_SIZE, sizeof(Table_t), e_match); + if (t != NULL){ + sprintf(buf, "%c%c", + ((t->ucs2 & 0xff00) >> 8), (t->ucs2 & 0xff)); + return buf; + }else{ + return "\x30\x13"; /* ¢® */ + } +} + +static int INITED = 0; + +void init(void){ + int i; + if (!INITED){ + memcpy(E2U, U2E, sizeof(U2E)); + qsort(E2U, TABLE_SIZE, sizeof(Table_t), e_cmp); + INITED = 1; + } +} + +size_t _euc_ucs2(Octet *dst, Octet *src, int pedantic){ + Quad q; + size_t nchar; + + init(); + + for (nchar = 0; + *src != '\0'; + src++, dst += 2, nchar++) + { + if (IS_ASCII(*src)){ + q = o2q(src, 1); + } + else if(*src != 0x8f){ + q = o2q(src, 2); src += 1; + }else{ + q = o2q(src, 3); src += 2; + } + memcpy(dst, e2u(&q, pedantic), 2); + } + return nchar * 2; +} + +/*-- UCS2 -> UTF8 --*/ + +size_t _ucs2_utf8(Octet *dst, Octet *src, int nchar){ + Quad ucs2; + Octet ebuf[8]; + Octet *o_dst = dst; + size_t result = 0; + + for (nchar /= 2; nchar > 0; nchar--, src += 2) + { + ucs2 = o2q(src, 2); + if (ucs2 < 0x80){ /* 1 byte */ + sprintf(ebuf, "%c", ucs2); + } + else if(ucs2 < 0x800){ /* 2 bytes */ + sprintf(ebuf, "%c%c", + (0xC0 | (ucs2 >> 6)), + (0x80 | (ucs2 & 0x3F)) + ); + }else{ /* 3 bytes */ + sprintf(ebuf, "%c%c%c", + (0xE0 | (ucs2 >> 12)), + (0x80 | ((ucs2 >> 6) & 0x3F)), + (0x80 | (ucs2 & 0x3F)) + ); + } + strcpy(dst, ebuf); + dst += strlen(ebuf); + result += strlen(ebuf); + } + return result; +} + +/*-- UTF8 -> UCS2 --*/ + +size_t _utf8_ucs2(Octet *dst, Octet *src){ + Quad ucs2; + Octet c1, c2, c3; + size_t nchar = 0; + + for(; *src != '\0'; src++, nchar++){ + if (*src < 0x80) { /* 1 byte */ + ucs2 = *src; + } + else if (*src < 0xE0){ /* 2 bytes */ + c1 = *src++; c2 = *src; + ucs2 = ((c1 & 0x1F) << 6) | (c2 & 0x3F); + }else{ /* 3 bytes */ + c1 = *src++; c2 = *src++; c3 = *src; + ucs2 = ((c1 & 0x0F) << 12) | ((c2 & 0x3F) << 6)| (c3 & 0x3F); + } + *dst++ = (ucs2 & 0xff00) >> 8; /* 1st byte */ + *dst++ = (ucs2 & 0xff); /* 2nd byte */; + } + return nchar * 2; +} + +#ifndef PERL_XS + +int main(int argc, char **argv){ + Octet buf1[1024], buf2[1024]; + int nchar; + + FILE *IN; + if (argc > 1){ + IN = fopen(argv[1], "r"); + if (IN == NULL){ + fprintf(stderr, "Can't open %s; %s\n", argv[1], strerror(errno)); + exit(-1); + } + }else{ + IN = stdin; + } + +#ifdef EUC_UTF8 + + while(fgets(buf2, 256, IN)){ + nchar = _euc_ucs2(buf1, buf2, 0); + nchar = _ucs2_utf8(buf2, buf1, nchar); + fputs(buf2, stdout); + } + +#else + + while(fgets(buf1, 256, IN)){ + nchar = _utf8_ucs2(buf2, buf1); + nchar = _ucs2_euc(buf1, buf2, nchar, 0); + fputs(buf1, stdout); + } + +#endif + +} + +#endif diff --git a/cpan/dist/Jcode/mac_install.pl b/cpan/dist/Jcode/mac_install.pl new file mode 100755 index 00000000..fdd54f69 --- /dev/null +++ b/cpan/dist/Jcode/mac_install.pl @@ -0,0 +1 @@ +#
# Run this script once and you are all set!
#
use strict;
use File::Path;
use File::Basename;
my $install_dir = "";
for my $INC (@INC){
if ($INC =~ /site_perl/io){
$install_dir = $INC;
last;
}
}
unless ($install_dir) {
die qq(Please create 'site_perl' folder in MacPerl App folder!\n);
}else{
warn "Ok. I'll install files in $install_dir folder.\n";
}
my @files = qw(
Jcode.pm
);
# push all files in Jcode directory;
require "find.pl";
&find('Jcode');
sub wanted {
no strict "vars";
my ($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_);
return unless -f _;
push @files, $name;
}
for my $file (@files) {
my $src = $file;
open SRC, $src or die "$src:$!";
my $buffer;
my $dst = $install_dir . $file;
$dst =~ s/:://og;
warn "Installing $src to $dst.\n";
my $dir = dirname($dst);
mkpath([$dir], 0755, 1) or die "$dir:$!" unless -d $dir;
open DST, ">$dst" or die "$dst:$!";
while(read SRC, $buffer, 32768) {
$buffer =~ s/\x0a/\x0d/og;
print DST $buffer;
}
close SRC; close DST;
MacPerl::SetFileInfo('McPL', 'TEXT', $dst);
}
warn "All scripts are installed successfully\n";
__END__
\ No newline at end of file diff --git a/cpan/dist/Jcode/t/ambiguous.pl b/cpan/dist/Jcode/t/ambiguous.pl new file mode 100644 index 00000000..6e2c3444 --- /dev/null +++ b/cpan/dist/Jcode/t/ambiguous.pl @@ -0,0 +1,15 @@ +#!/usr/local/bin/perl +#use Jcode::Constants + +my $n = 0; my $str = ""; +for my $c2 (0340..0374){ + for my $c1 (0200..0374){ + if ($n++ % 32 == 31){ # LF for every 32 zenkaku chars + print $str, "\n"; $str = ""; + }else{ + $str .= chr($c2) . chr($c1); + } + + } +} +warn $n; diff --git a/cpan/dist/Jcode/t/benchmark.pl b/cpan/dist/Jcode/t/benchmark.pl new file mode 100644 index 00000000..86917abd --- /dev/null +++ b/cpan/dist/Jcode/t/benchmark.pl @@ -0,0 +1,44 @@ +#!/usr/local/bin/perl + +use Benchmark; + +my $count = $ARGV[0] || 16; + +open F, "t/table.euc" or die "$!"; +while(<F>){ + push @src, $_; +} + +for $ocode (qw/euc jis sjis/){ + print "euc -> $ocode\n"; + timethese($count, { + "Jcode.pm (OOP) " => \&Jcode_oop, + "Jcode.pm (Trad.)" => \&Jcode_trad, + "jcode.pl " => \&jcode_test, + } + ); +} + +sub jcode_test{ + require "jcode.pl"; + for (@src){ + &jcode::convert(\$_, $ocode, 'euc'); + } +} + +sub Jcode_trad{ + use Jcode; + for (@src){ + &Jcode::convert(\$_, $ocode, 'euc'); + } +} + +sub Jcode_oop{ + use Jcode; + no strict "refs"; + my $j = new Jcode; + for (@src){ + $j->set(\$_, 'euc')->$ocode(); + } +} + diff --git a/cpan/dist/Jcode/t/convert.t b/cpan/dist/Jcode/t/convert.t new file mode 100644 index 00000000..9f8efd4e --- /dev/null +++ b/cpan/dist/Jcode/t/convert.t @@ -0,0 +1,121 @@ +#!/usr/bin/perl -w + +use strict; +use diagnostics; +$| = 1; # autoflush +use vars qw(@ARGV $ARGV); +use Jcode; + +my ($NTESTS, @TESTS) ; + +sub profile { + my $profile = shift; + print $profile if $ARGV[0]; + $profile =~ m/(not ok|ok) (\d+)$/o; + $profile = "$1 $2\n"; + $NTESTS = $2; + push @TESTS, $profile; +} + + +my $n = 0; + +my $file = "t/table.euc"; +open F, $file or die "$file:$!"; +my $euc; +read F, $euc, -s $file; +profile(sprintf("prep: euc ok %d\n", ++$n)); + +my $jis = Jcode::euc_jis($euc); +profile(sprintf("prep: jis ok %d\n", ++$n)) unless $jis eq $euc; + +my $sjis = Jcode::euc_sjis($euc); +profile(sprintf("prep: sjis ok %d\n", ++$n)) unless $sjis eq $euc; + +Jcode::load_module("Jcode::Unicode"); + +my $ucs2 = Jcode::euc_ucs2($euc); +profile(sprintf("prep: ucs2 ok %d\n", ++$n)) unless $ucs2 eq $euc; + +my $utf8 = Jcode::euc_utf8($euc); +profile(sprintf("prep: utf8 ok %d\n", ++$n)) unless $utf8 eq $euc; + +my %code2str = + ( + 'euc' => $euc, + 'jis' => $jis, + 'sjis' => $sjis, + 'ucs2' => $ucs2, + 'utf8' => $utf8, + ); + + +# AUTO & REF + +my $ok; + +for my $ocode (keys %code2str){ + my $str = $euc; + &Jcode::convert(\$str, $ocode); + if ($str eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + } + profile(sprintf("REF: auto -> %4s %s %d\n", + $ocode, $ok, ++$n )); +} + +# by Value + +for my $icode (keys %code2str){ + for my $ocode (keys %code2str){ + if (Jcode::convert($code2str{$icode}, $ocode, $icode) + eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + } + profile(sprintf("ASCII|X201|X208: %4s -> %4s %s %d\n", + $icode, $ocode, $ok, ++$n )); + + } +} + +# x212 + +$file = "t/x0212.euc"; +open F, $file or die "$file:$!"; +read F, $euc, -s $file; +#profile(sprintf("prep: euc ok %d\n", ++$n)); + +$jis = Jcode::euc_jis($euc); +#$ucs2 = Jcode::euc_ucs2($euc); +#$utf8 = Jcode::euc_utf8($euc); + +%code2str = + ( + 'euc' => $euc, + 'jis' => $jis, + #'sjis' => $sjis, + #'ucs2' => $ucs2, + #'utf8' => $utf8, + ); + +for my $icode (keys %code2str){ + for my $ocode (keys %code2str){ + if (Jcode::convert($code2str{$icode}, $ocode, $icode) + eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + } + profile(sprintf("X0212: %4s -> %4s %s %d\n", + $icode, $ocode, $ok, ++$n )); + } +} + +print 1, "..", $NTESTS, "\n"; +for my $TEST (@TESTS){ + print $TEST; +} diff --git a/cpan/dist/Jcode/t/getcode.t b/cpan/dist/Jcode/t/getcode.t new file mode 100644 index 00000000..7aa6f6f7 --- /dev/null +++ b/cpan/dist/Jcode/t/getcode.t @@ -0,0 +1,69 @@ +#!/usr/bin/perl -w + +use strict; +use diagnostics; +$| = 1; # autoflush +use vars qw(@ARGV $ARGV); +use Jcode; + +$Jcode::DEBUG ||= $ARGV[0] ? $ARGV[0] : 0; + +my ($NTESTS, @TESTS) ; + +sub profile { + no strict 'vars'; + my $profile = shift; + print $profile if $ARGV[0]; + $profile =~ m/(not ok|ok) (\d+)$/o; + $profile = "$1 $2\n"; + $NTESTS = $2; + push @TESTS, $profile; +} + + +my $n = 0; + +my $file = "t/table.euc"; +open F, $file or die "$file:$!"; +my $euc; +read F, $euc, -s $file; +profile(sprintf("prep: euc ok %d\n", ++$n)); + +my $jis = Jcode::euc_jis($euc); +profile(sprintf("prep: jis ok %d\n", ++$n)) unless $jis eq $euc; + +my $sjis = Jcode::euc_sjis($euc); +profile(sprintf("prep: sjis ok %d\n", ++$n)) unless $sjis eq $euc; + +Jcode::load_module("Jcode::Unicode"); + +my $ucs2 = Jcode::euc_ucs2($euc); +profile(sprintf("prep: ucs2 ok %d\n", ++$n)) unless $ucs2 eq $euc; + +my $utf8 = Jcode::euc_utf8($euc); +profile(sprintf("prep: utf8 ok %d\n", ++$n)) unless $utf8 eq $euc; + +profile(sprintf("getcode: euc ok %d\n", ++$n)) + unless Jcode::getcode($euc) ne 'euc'; +profile(sprintf("getcode: jis ok %d\n", ++$n)) + unless Jcode::getcode($jis) ne 'jis'; +profile(sprintf("getcode: sjis ok %d\n", ++$n)) + unless Jcode::getcode($sjis) ne 'sjis'; +profile(sprintf("getcode: ucs2 ok %d\n", ++$n)) + unless Jcode::getcode($ucs2) ne 'ucs2'; +profile(sprintf("getcode: utf8 ok %d\n", ++$n)) + unless Jcode::getcode($utf8) ne 'utf8'; + +print 1, "..", $NTESTS, "\n"; +for my $TEST (@TESTS){ + print $TEST; +} + + + + + + + + + diff --git a/cpan/dist/Jcode/t/h2z.t b/cpan/dist/Jcode/t/h2z.t new file mode 100644 index 00000000..df0d6f6b --- /dev/null +++ b/cpan/dist/Jcode/t/h2z.t @@ -0,0 +1,65 @@ +#!/usr/bin/perl -w + +use strict; +use diagnostics; +$| = 1; # autoflush +use vars qw(@ARGV $ARGV); +use Jcode; + +my ($NTESTS, @TESTS) ; + +sub profile { + no strict 'vars'; + my $profile = shift; + print $profile if $ARGV[0]; + $profile =~ m/(not ok|ok) (\d+)$/o; + $profile = "$1 $2\n"; + $NTESTS = $2; + push @TESTS, $profile; +} + + +my $n = 0; +my $file; + +my $hankaku; $file = "t/hankaku.euc"; open F, $file or die "$file:$!"; +read F, $hankaku, -s $file; +profile(sprintf("prep: hankaku ok %d\n", ++$n)); + +my $zenkaku; $file = "t/zenkaku.euc"; open F, $file or die "$file:$!"; +read F, $zenkaku, -s $file; +profile(sprintf("prep: zenkaku ok %d\n", ++$n)); + +my %code2str = + ( + 'h2z' => $zenkaku, + 'z2h' => $hankaku, + ); + +# by Value + +for my $icode (keys %code2str){ + for my $ocode (keys %code2str){ + my $ok; + my $str = $code2str{$icode}; + my $out = jcode(\$str)->$ocode()->euc; + if ($out eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + print $out; + } + profile(sprintf("H2Z: %s -> %s %s %d\n", + $icode, $ocode, $ok, ++$n )); + } +} + +print 1, "..", $NTESTS, "\n"; +for my $TEST (@TESTS){ + print $TEST; +} + + + + + diff --git a/cpan/dist/Jcode/t/hankaku.euc b/cpan/dist/Jcode/t/hankaku.euc new file mode 100644 index 00000000..7e27474e --- /dev/null +++ b/cpan/dist/Jcode/t/hankaku.euc @@ -0,0 +1,6 @@ + ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > + @ A B C D E F G H I J K L M N O _ Q R S T U V W X Y Z [ \ ] ^ + ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ + Ž§Ž±Ž¨Ž²Ž©Ž³ŽªŽ´Ž«ŽµŽ¶Ž¶ŽÞŽ·Ž·ŽÞޏޏŽÞ޹޹ŽÞŽºŽºŽÞ޻޻ŽÞ޼޼ŽÞ޽޽ŽÞ޾޾ŽÞŽ¿Ž¿ŽÞ +ŽÀŽÞŽÁŽÁŽÞޝŽÂŽÂŽÞŽÃŽÃŽÞŽÄŽÄŽÞŽÅŽÆŽÇŽÈŽÉŽÊŽÊŽÞŽÊŽßŽËŽËŽÞŽËŽßŽÌŽÌŽÞŽÌŽßŽÍŽÍŽÞŽÍŽßŽÎŽÎŽÞŽÎŽßŽÏ +ŽÑŽÒŽÓެŽÔŽŽÕŽ®ŽÖŽ×ŽØŽÙŽÚŽÛ¥îŽÜ¥ð¥ñަŽÝ޳ŽÞޢޡޤŽßŽÞŽ£ diff --git a/cpan/dist/Jcode/t/hiragana.euc b/cpan/dist/Jcode/t/hiragana.euc new file mode 100644 index 00000000..d799a0b0 --- /dev/null +++ b/cpan/dist/Jcode/t/hiragana.euc @@ -0,0 +1,6 @@ + ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > + @ a b c d e f g h i j k l m n o _ q r s t u v w x y z [ \ ] ^ + ` A B C D E F G H I J K L M N O P Q R S T U V W X Y Z { | } ~ + ¤¡¤¢¤£¤¤¤¥¤¦¤§¤¨¤©¤ª¤«¤¬¤¤®¤¯¤°¤±¤²¤³¤´¤µ¤¶¤·¤¸¤¹¤º¤»¤¼¤½¤¾ +¤À¤Á¤Â¤Ã¤Ä¤Å¤Æ¤Ç¤È¤É¤Ê¤Ë¤Ì¤Í¤Î¤Ï¤Ð¤Ñ¤Ò¤Ó¤Ô¤Õ¤Ö¤×¤Ø¤Ù¤Ú¤Û¤Ü¤Ý¤Þ +¤à¤á¤â¤ã¤ä¤å¤æ¤ç¤è¤é¤ê¤ë¤ì¤í¤î¤ï¤ð¤ñ¤ò¤ó¥ô¡Ö¡£¡¢¡¬¡«¡× diff --git a/cpan/dist/Jcode/t/mime.t b/cpan/dist/Jcode/t/mime.t new file mode 100644 index 00000000..236e8985 --- /dev/null +++ b/cpan/dist/Jcode/t/mime.t @@ -0,0 +1,102 @@ +#!/usr/bin/perl -w + +use strict; +use diagnostics; +$| = 1; # autoflush +use vars qw(@ARGV $ARGV); +use lib "."; +use Jcode; + +eval { require MIME::Base64 }; +if ($@){ + print "1..0\n"; + exit 0; +} + +my ($NTESTS, @TESTS) ; + +sub profile { + no strict 'vars'; + my $profile = shift; + print $profile if $ARGV[0]; + $profile =~ m/(not ok|ok) (\d+)$/o; + $profile = "$1 $2\n"; + $NTESTS = $2; + push @TESTS, $profile; +} + + +my $n = 0; +my $file; + +my %mime = + ( + "¥Æ¥¹¥Ètest¤Ç¤¹" => + "=?ISO-2022-JP?B?GyRCJUYlOSVIGyhCdGVzdBskQiRHJDkbKEI=?=", + "foo bar" => + "foo bar", + "£°£±£²£³£´£µ£¶£·£¸£¹£°£±£²£³£´£µ£¶£·£¸£¹£°£±£²£³£´£µ£¶£·£¸£¹£°£±£²£³£´£µ£¶£·£¸£¹£°£±£²£³£´£µ£¶£·£¸£¹" => + "=?ISO-2022-JP?B?GyRCIzAjMSMyIzMjNCM1IzYjNyM4IzkjMCMxIzIjMyM0IzUjNiM3GyhC?=\n =?ISO-2022-JP?B?GyRCIzgjOSMwIzEjMiMzIzQjNSM2IzcjOCM5IzAjMSMyIzMjNCM1GyhC?=\n =?ISO-2022-JP?B?GyRCIzYjNyM4IzkjMCMxIzIjMyM0IzUjNiM3IzgjORsoQg==?=", + ); + +for my $k (keys %mime){ + $mime{"$k\n"} = $mime{$k} . "\n"; +} + +for my $decoded (sort keys %mime){ + my ($ok, $out); + my $encoded = $mime{$decoded}; + my $encoded_i = $encoded; $encoded_i =~ s/^(=\?ISO-2022-JP\?B\?)/lc($1)/eo; + my $t_encoded = jcode($decoded)->mime_encode; + my $t_decoded = jcode($encoded)->mime_decode; + my $t_decoded_i = jcode($encoded_i)->mime_decode; + + if ($t_decoded eq $decoded){ + $ok = "ok"; + }else{ + $ok = "not ok"; + print <<"EOF"; +D:>$decoded< +D:>$t_decoded< +EOF +} + + profile(sprintf("MIME decode: %s -> %s %s %d\n", + $decoded, $encoded, $ok, ++$n )); + + if ($t_decoded_i eq $decoded){ + $ok = "ok"; + print $encoded_i, "\n"; + }else{ + $ok = "not ok"; + print <<"EOF"; +D:>$decoded< +D:>$t_decoded< +EOF +} + profile(sprintf("MIME decode: %s -> %s %s %d\n", + $decoded, $encoded_i, $ok, ++$n )); + + if ($t_encoded eq $encoded){ + $ok = "ok"; + }else{ + $ok = "not ok"; + print <<"EOF"; +E>$encoded< +E>$t_encoded< +EOF + } + profile(sprintf("MIME encode: %s -> %s %s %d\n", + $decoded, $encoded, $ok, ++$n )); +} + + +print 1, "..", $NTESTS, "\n"; +for my $TEST (@TESTS){ + print $TEST; +} + + + + + diff --git a/cpan/dist/Jcode/t/new.t b/cpan/dist/Jcode/t/new.t new file mode 100644 index 00000000..ac2bc43c --- /dev/null +++ b/cpan/dist/Jcode/t/new.t @@ -0,0 +1,114 @@ +#!/usr/bin/perl -w + +use strict; +use diagnostics; +$| = 1; # autoflush +use vars qw(@ARGV $ARGV); +use Jcode; + +my ($NTESTS, @TESTS) ; + +sub profile { + no strict 'vars'; + my $profile = shift; + print $profile if $ARGV[0]; + $profile =~ m/(not ok|ok) (\d+)$/o; + $profile = "$1 $2\n"; + $NTESTS = $2; + push @TESTS, $profile; +} + + +my $n = 0; +my $file = "t/table.euc"; +open F, $file or die "$file:$!"; +my $euc; +read F, $euc, -s $file; +profile(sprintf("prep: euc ok %d\n", ++$n)); + +my $jis = Jcode::euc_jis($euc); +profile(sprintf("prep: jis ok %d\n", ++$n)) unless $jis eq $euc; + +my $sjis = Jcode::euc_sjis($euc); +profile(sprintf("prep: sjis ok %d\n", ++$n)) unless $sjis eq $euc; + +Jcode::load_module("Jcode::Unicode"); + +my $ucs2 = Jcode::euc_ucs2($euc); +profile(sprintf("prep: ucs2 ok %d\n", ++$n)) unless $ucs2 eq $euc; + +my $utf8 = Jcode::euc_utf8($euc); +profile(sprintf("prep: utf8 ok %d\n", ++$n)) unless $utf8 eq $euc; + +my %code2str = + ( + 'euc' => $euc, + 'jis' => $jis, + 'sjis' => $sjis, + 'ucs2' => $ucs2, + 'utf8' => $utf8, + ); + +# by Value + +for my $icode (keys %code2str){ + my $ok; + my $j = Jcode->new($code2str{$icode}, $icode); + for my $ocode (keys %code2str){ + if ($j->$ocode() eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + } + profile(sprintf("ASCII|X201|X208: %4s -> %4s %s %d\n", + $icode, $ocode, $ok, ++$n )); + + } +} + +# x212 + +# x212 + +$file = "t/x0212.euc"; +open F, $file or die "$file:$!"; +read F, $euc, -s $file; +#profile(sprintf("prep: euc ok %d\n", ++$n)); +$jis = Jcode::euc_jis($euc); + +%code2str = + ( + 'euc' => $euc, + 'jis' => $jis, + ); + +# by Value + +for my $icode (keys %code2str){ + my $ok; + my $j = Jcode->new($code2str{$icode}, $icode); + for my $ocode (keys %code2str){ + if ($j->$ocode() eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + } + profile(sprintf("X212: %4s -> %4s %s %d\n", + $icode, $ocode, $ok, ++$n )); + + } +} + +print 1, "..", $NTESTS, "\n"; +for my $TEST (@TESTS){ + print $TEST; +} + + + + + + + + + diff --git a/cpan/dist/Jcode/t/table.euc b/cpan/dist/Jcode/t/table.euc new file mode 100644 index 00000000..8178409a --- /dev/null +++ b/cpan/dist/Jcode/t/table.euc @@ -0,0 +1,294 @@ +0x0020: ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > +0x0040: @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ +0x0060: ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ +0x8ea0: Ž¡ Ž¢ Ž£ ޤ Ž¥ ަ ާ ލ Ž© Žª Ž« ެ Ž Ž® ޝ ް ޱ ޲ ޳ Ž´ ޵ ޶ Ž· ޏ ޹ Žº Ž» ޼ ޽ ޾ +0x8ec0: ŽÀ ŽÁ ŽÂ ŽÃ ŽÄ ŽÅ ŽÆ ŽÇ ŽÈ ŽÉ ŽÊ ŽË ŽÌ ŽÍ ŽÎ ŽÏ ŽÐ ŽÑ ŽÒ ŽÓ ŽÔ ŽÕ ŽÖ Ž× ŽØ ŽÙ ŽÚ ŽÛ ŽÜ ŽÝ ŽÞ +0x8ee0: +0xa0a0: +0xa0c0: +0xa0e0: +0xa1a0: ¡¡¡¢¡£¡¤¡¥¡¦¡§¡¨¡©¡ª¡«¡¬¡¡®¡¯¡°¡±¡²¡³¡´¡µ¡¶¡·¡¸¡¹¡º¡»¡¼¡½¡¾ +0xa1c0: ¡À¡Á¡Â¡Ã¡Ä¡Å¡Æ¡Ç¡È¡É¡Ê¡Ë¡Ì¡Í¡Î¡Ï¡Ð¡Ñ¡Ò¡Ó¡Ô¡Õ¡Ö¡×¡Ø¡Ù¡Ú¡Û¡Ü¡Ý¡Þ +0xa1e0: ¡à¡á¡â¡ã¡ä¡å¡æ¡ç¡è¡é¡ê¡ë¡ì¡í¡î¡ï¡ð¡ñ¡ò¡ó¡ô¡õ¡ö¡÷¡ø¡ù¡ú¡û¡ü¡ý¡þ +0xa2a0: ¢¡¢¢¢£¢¤¢¥¢¦¢§¢¨¢©¢ª¢«¢¬¢¢® ¢º¢»¢¼¢½¢¾ +0xa2c0: ¢À¢Á ¢Ê¢Ë¢Ì¢Í¢Î¢Ï¢Ð ¢Ü¢Ý¢Þ +0xa2e0: ¢à¢á¢â¢ã¢ä¢å¢æ¢ç¢è¢é¢ê ¢ò¢ó¢ô¢õ¢ö¢÷¢ø¢ù ¢þ +0xa3a0: £°£±£²£³£´£µ£¶£·£¸£¹ +0xa3c0: £Á£Â£Ã£Ä£Å£Æ£Ç£È£É£Ê£Ë£Ì£Í£Î£Ï£Ð£Ñ£Ò£Ó£Ô£Õ£Ö£×£Ø£Ù£Ú +0xa3e0: £á£â£ã£ä£å£æ£ç£è£é£ê£ë£ì£í£î£ï£ð£ñ£ò£ó£ô£õ£ö£÷£ø£ù£ú +0xa4a0: ¤¡¤¢¤£¤¤¤¥¤¦¤§¤¨¤©¤ª¤«¤¬¤¤®¤¯¤°¤±¤²¤³¤´¤µ¤¶¤·¤¸¤¹¤º¤»¤¼¤½¤¾ +0xa4c0: ¤À¤Á¤Â¤Ã¤Ä¤Å¤Æ¤Ç¤È¤É¤Ê¤Ë¤Ì¤Í¤Î¤Ï¤Ð¤Ñ¤Ò¤Ó¤Ô¤Õ¤Ö¤×¤Ø¤Ù¤Ú¤Û¤Ü¤Ý¤Þ +0xa4e0: ¤à¤á¤â¤ã¤ä¤å¤æ¤ç¤è¤é¤ê¤ë¤ì¤í¤î¤ï¤ð¤ñ¤ò¤ó +0xa5a0: ¥¡¥¢¥£¥¤¥¥¥¦¥§¥¨¥©¥ª¥«¥¬¥¥®¥¯¥°¥±¥²¥³¥´¥µ¥¶¥·¥¸¥¹¥º¥»¥¼¥½¥¾ +0xa5c0: ¥À¥Á¥Â¥Ã¥Ä¥Å¥Æ¥Ç¥È¥É¥Ê¥Ë¥Ì¥Í¥Î¥Ï¥Ð¥Ñ¥Ò¥Ó¥Ô¥Õ¥Ö¥×¥Ø¥Ù¥Ú¥Û¥Ü¥Ý¥Þ +0xa5e0: ¥à¥á¥â¥ã¥ä¥å¥æ¥ç¥è¥é¥ê¥ë¥ì¥í¥î¥ï¥ð¥ñ¥ò¥ó¥ô¥õ¥ö +0xa6a0: ¦¡¦¢¦£¦¤¦¥¦¦¦§¦¨¦©¦ª¦«¦¬¦¦®¦¯¦°¦±¦²¦³¦´¦µ¦¶¦·¦¸ +0xa6c0: ¦Á¦Â¦Ã¦Ä¦Å¦Æ¦Ç¦È¦É¦Ê¦Ë¦Ì¦Í¦Î¦Ï¦Ð¦Ñ¦Ò¦Ó¦Ô¦Õ¦Ö¦×¦Ø +0xa6e0: +0xa7a0: §¡§¢§£§¤§¥§¦§§§¨§©§ª§«§¬§§®§¯§°§±§²§³§´§µ§¶§·§¸§¹§º§»§¼§½§¾ +0xa7c0: §À§Á §Ñ§Ò§Ó§Ô§Õ§Ö§×§Ø§Ù§Ú§Û§Ü§Ý§Þ +0xa7e0: §à§á§â§ã§ä§å§æ§ç§è§é§ê§ë§ì§í§î§ï§ð§ñ +0xa8a0: ¨¡¨¢¨£¨¤¨¥¨¦¨§¨¨¨©¨ª¨«¨¬¨¨®¨¯¨°¨±¨²¨³¨´¨µ¨¶¨·¨¸¨¹¨º¨»¨¼¨½¨¾ +0xa8c0: ¨À +0xa8e0: +0xa9a0: +0xa9c0: +0xa9e0: +0xaaa0: +0xaac0: +0xaae0: +0xaba0: +0xabc0: +0xabe0: +0xaca0: +0xacc0: +0xace0: +0xada0: +0xadc0: +0xade0: +0xaea0: +0xaec0: +0xaee0: +0xafa0: +0xafc0: +0xafe0: +0xb0a0: °¡°¢°£°¤°¥°¦°§°¨°©°ª°«°¬°°®°¯°°°±°²°³°´°µ°¶°·°¸°¹°º°»°¼°½°¾ +0xb0c0: °À°Á°Â°Ã°Ä°Å°Æ°Ç°È°É°Ê°Ë°Ì°Í°Î°Ï°Ð°Ñ°Ò°Ó°Ô°Õ°Ö°×°Ø°Ù°Ú°Û°Ü°Ý°Þ +0xb0e0: °à°á°â°ã°ä°å°æ°ç°è°é°ê°ë°ì°í°î°ï°ð°ñ°ò°ó°ô°õ°ö°÷°ø°ù°ú°û°ü°ý°þ +0xb1a0: ±¡±¢±£±¤±¥±¦±§±¨±©±ª±«±¬±±®±¯±°±±±²±³±´±µ±¶±·±¸±¹±º±»±¼±½±¾ +0xb1c0: ±À±Á±Â±Ã±Ä±Å±Æ±Ç±È±É±Ê±Ë±Ì±Í±Î±Ï±Ð±Ñ±Ò±Ó±Ô±Õ±Ö±×±Ø±Ù±Ú±Û±Ü±Ý±Þ +0xb1e0: ±à±á±â±ã±ä±å±æ±ç±è±é±ê±ë±ì±í±î±ï±ð±ñ±ò±ó±ô±õ±ö±÷±ø±ù±ú±û±ü±ý±þ +0xb2a0: ²¡²¢²£²¤²¥²¦²§²¨²©²ª²«²¬²²®²¯²°²±²²²³²´²µ²¶²·²¸²¹²º²»²¼²½²¾ +0xb2c0: ²À²Á²Â²Ã²Ä²Å²Æ²Ç²È²É²Ê²Ë²Ì²Í²Î²Ï²Ð²Ñ²Ò²Ó²Ô²Õ²Ö²×²Ø²Ù²Ú²Û²Ü²Ý²Þ +0xb2e0: ²à²á²â²ã²ä²å²æ²ç²è²é²ê²ë²ì²í²î²ï²ð²ñ²ò²ó²ô²õ²ö²÷²ø²ù²ú²û²ü²ý²þ +0xb3a0: ³¡³¢³£³¤³¥³¦³§³¨³©³ª³«³¬³³®³¯³°³±³²³³³´³µ³¶³·³¸³¹³º³»³¼³½³¾ +0xb3c0: ³À³Á³Â³Ã³Ä³Å³Æ³Ç³È³É³Ê³Ë³Ì³Í³Î³Ï³Ð³Ñ³Ò³Ó³Ô³Õ³Ö³×³Ø³Ù³Ú³Û³Ü³Ý³Þ +0xb3e0: ³à³á³â³ã³ä³å³æ³ç³è³é³ê³ë³ì³í³î³ï³ð³ñ³ò³ó³ô³õ³ö³÷³ø³ù³ú³û³ü³ý³þ +0xb4a0: ´¡´¢´£´¤´¥´¦´§´¨´©´ª´«´¬´´®´¯´°´±´²´³´´´µ´¶´·´¸´¹´º´»´¼´½´¾ +0xb4c0: ´À´Á´Â´Ã´Ä´Å´Æ´Ç´È´É´Ê´Ë´Ì´Í´Î´Ï´Ð´Ñ´Ò´Ó´Ô´Õ´Ö´×´Ø´Ù´Ú´Û´Ü´Ý´Þ +0xb4e0: ´à´á´â´ã´ä´å´æ´ç´è´é´ê´ë´ì´í´î´ï´ð´ñ´ò´ó´ô´õ´ö´÷´ø´ù´ú´û´ü´ý´þ +0xb5a0: µ¡µ¢µ£µ¤µ¥µ¦µ§µ¨µ©µªµ«µ¬µµ®µ¯µ°µ±µ²µ³µ´µµµ¶µ·µ¸µ¹µºµ»µ¼µ½µ¾ +0xb5c0: µÀµÁµÂµÃµÄµÅµÆµÇµÈµÉµÊµËµÌµÍµÎµÏµÐµÑµÒµÓµÔµÕµÖµ×µØµÙµÚµÛµÜµÝµÞ +0xb5e0: µàµáµâµãµäµåµæµçµèµéµêµëµìµíµîµïµðµñµòµóµôµõµöµ÷µøµùµúµûµüµýµþ +0xb6a0: ¶¡¶¢¶£¶¤¶¥¶¦¶§¶¨¶©¶ª¶«¶¬¶¶®¶¯¶°¶±¶²¶³¶´¶µ¶¶¶·¶¸¶¹¶º¶»¶¼¶½¶¾ +0xb6c0: ¶À¶Á¶Â¶Ã¶Ä¶Å¶Æ¶Ç¶È¶É¶Ê¶Ë¶Ì¶Í¶Î¶Ï¶Ð¶Ñ¶Ò¶Ó¶Ô¶Õ¶Ö¶×¶Ø¶Ù¶Ú¶Û¶Ü¶Ý¶Þ +0xb6e0: ¶à¶á¶â¶ã¶ä¶å¶æ¶ç¶è¶é¶ê¶ë¶ì¶í¶î¶ï¶ð¶ñ¶ò¶ó¶ô¶õ¶ö¶÷¶ø¶ù¶ú¶û¶ü¶ý¶þ +0xb7a0: ·¡·¢·£·¤·¥·¦·§·¨·©·ª·«·¬··®·¯·°·±·²·³·´·µ·¶···¸·¹·º·»·¼·½·¾ +0xb7c0: ·À·Á·Â·Ã·Ä·Å·Æ·Ç·È·É·Ê·Ë·Ì·Í·Î·Ï·Ð·Ñ·Ò·Ó·Ô·Õ·Ö·×·Ø·Ù·Ú·Û·Ü·Ý·Þ +0xb7e0: ·à·á·â·ã·ä·å·æ·ç·è·é·ê·ë·ì·í·î·ï·ð·ñ·ò·ó·ô·õ·ö·÷·ø·ù·ú·û·ü·ý·þ +0xb8a0: ¸¡¸¢¸£¸¤¸¥¸¦¸§¸¨¸©¸ª¸«¸¬¸¸®¸¯¸°¸±¸²¸³¸´¸µ¸¶¸·¸¸¸¹¸º¸»¸¼¸½¸¾ +0xb8c0: ¸À¸Á¸Â¸Ã¸Ä¸Å¸Æ¸Ç¸È¸É¸Ê¸Ë¸Ì¸Í¸Î¸Ï¸Ð¸Ñ¸Ò¸Ó¸Ô¸Õ¸Ö¸×¸Ø¸Ù¸Ú¸Û¸Ü¸Ý¸Þ +0xb8e0: ¸à¸á¸â¸ã¸ä¸å¸æ¸ç¸è¸é¸ê¸ë¸ì¸í¸î¸ï¸ð¸ñ¸ò¸ó¸ô¸õ¸ö¸÷¸ø¸ù¸ú¸û¸ü¸ý¸þ +0xb9a0: ¹¡¹¢¹£¹¤¹¥¹¦¹§¹¨¹©¹ª¹«¹¬¹¹®¹¯¹°¹±¹²¹³¹´¹µ¹¶¹·¹¸¹¹¹º¹»¹¼¹½¹¾ +0xb9c0: ¹À¹Á¹Â¹Ã¹Ä¹Å¹Æ¹Ç¹È¹É¹Ê¹Ë¹Ì¹Í¹Î¹Ï¹Ð¹Ñ¹Ò¹Ó¹Ô¹Õ¹Ö¹×¹Ø¹Ù¹Ú¹Û¹Ü¹Ý¹Þ +0xb9e0: ¹à¹á¹â¹ã¹ä¹å¹æ¹ç¹è¹é¹ê¹ë¹ì¹í¹î¹ï¹ð¹ñ¹ò¹ó¹ô¹õ¹ö¹÷¹ø¹ù¹ú¹û¹ü¹ý¹þ +0xbaa0: º¡º¢º£º¤º¥º¦º§º¨º©ºªº«º¬ºº®º¯º°º±º²º³º´ºµº¶º·º¸º¹ººº»º¼º½º¾ +0xbac0: ºÀºÁºÂºÃºÄºÅºÆºÇºÈºÉºÊºËºÌºÍºÎºÏºÐºÑºÒºÓºÔºÕºÖº×ºØºÙºÚºÛºÜºÝºÞ +0xbae0: ºàºáºâºãºäºåºæºçºèºéºêºëºìºíºîºïºðºñºòºóºôºõºöº÷ºøºùºúºûºüºýºþ +0xbba0: »¡»¢»£»¤»¥»¦»§»¨»©»ª»«»¬»»®»¯»°»±»²»³»´»µ»¶»·»¸»¹»º»»»¼»½»¾ +0xbbc0: »À»Á»Â»Ã»Ä»Å»Æ»Ç»È»É»Ê»Ë»Ì»Í»Î»Ï»Ð»Ñ»Ò»Ó»Ô»Õ»Ö»×»Ø»Ù»Ú»Û»Ü»Ý»Þ +0xbbe0: »à»á»â»ã»ä»å»æ»ç»è»é»ê»ë»ì»í»î»ï»ð»ñ»ò»ó»ô»õ»ö»÷»ø»ù»ú»û»ü»ý»þ +0xbca0: ¼¡¼¢¼£¼¤¼¥¼¦¼§¼¨¼©¼ª¼«¼¬¼¼®¼¯¼°¼±¼²¼³¼´¼µ¼¶¼·¼¸¼¹¼º¼»¼¼¼½¼¾ +0xbcc0: ¼À¼Á¼Â¼Ã¼Ä¼Å¼Æ¼Ç¼È¼É¼Ê¼Ë¼Ì¼Í¼Î¼Ï¼Ð¼Ñ¼Ò¼Ó¼Ô¼Õ¼Ö¼×¼Ø¼Ù¼Ú¼Û¼Ü¼Ý¼Þ +0xbce0: ¼à¼á¼â¼ã¼ä¼å¼æ¼ç¼è¼é¼ê¼ë¼ì¼í¼î¼ï¼ð¼ñ¼ò¼ó¼ô¼õ¼ö¼÷¼ø¼ù¼ú¼û¼ü¼ý¼þ +0xbda0: ½¡½¢½£½¤½¥½¦½§½¨½©½ª½«½¬½½®½¯½°½±½²½³½´½µ½¶½·½¸½¹½º½»½¼½½½¾ +0xbdc0: ½À½Á½Â½Ã½Ä½Å½Æ½Ç½È½É½Ê½Ë½Ì½Í½Î½Ï½Ð½Ñ½Ò½Ó½Ô½Õ½Ö½×½Ø½Ù½Ú½Û½Ü½Ý½Þ +0xbde0: ½à½á½â½ã½ä½å½æ½ç½è½é½ê½ë½ì½í½î½ï½ð½ñ½ò½ó½ô½õ½ö½÷½ø½ù½ú½û½ü½ý½þ +0xbea0: ¾¡¾¢¾£¾¤¾¥¾¦¾§¾¨¾©¾ª¾«¾¬¾¾®¾¯¾°¾±¾²¾³¾´¾µ¾¶¾·¾¸¾¹¾º¾»¾¼¾½¾¾ +0xbec0: ¾À¾Á¾Â¾Ã¾Ä¾Å¾Æ¾Ç¾È¾É¾Ê¾Ë¾Ì¾Í¾Î¾Ï¾Ð¾Ñ¾Ò¾Ó¾Ô¾Õ¾Ö¾×¾Ø¾Ù¾Ú¾Û¾Ü¾Ý¾Þ +0xbee0: ¾à¾á¾â¾ã¾ä¾å¾æ¾ç¾è¾é¾ê¾ë¾ì¾í¾î¾ï¾ð¾ñ¾ò¾ó¾ô¾õ¾ö¾÷¾ø¾ù¾ú¾û¾ü¾ý¾þ +0xbfa0: ¿¡¿¢¿£¿¤¿¥¿¦¿§¿¨¿©¿ª¿«¿¬¿¿®¿¯¿°¿±¿²¿³¿´¿µ¿¶¿·¿¸¿¹¿º¿»¿¼¿½¿¾ +0xbfc0: ¿À¿Á¿Â¿Ã¿Ä¿Å¿Æ¿Ç¿È¿É¿Ê¿Ë¿Ì¿Í¿Î¿Ï¿Ð¿Ñ¿Ò¿Ó¿Ô¿Õ¿Ö¿×¿Ø¿Ù¿Ú¿Û¿Ü¿Ý¿Þ +0xbfe0: ¿à¿á¿â¿ã¿ä¿å¿æ¿ç¿è¿é¿ê¿ë¿ì¿í¿î¿ï¿ð¿ñ¿ò¿ó¿ô¿õ¿ö¿÷¿ø¿ù¿ú¿û¿ü¿ý¿þ +0xc0a0: À¡À¢À£À¤À¥À¦À§À¨À©ÀªÀ«À¬ÀÀ®À¯À°À±À²À³À´ÀµÀ¶À·À¸À¹ÀºÀ»À¼À½À¾ +0xc0c0: ÀÀÀÁÀÂÀÃÀÄÀÅÀÆÀÇÀÈÀÉÀÊÀËÀÌÀÍÀÎÀÏÀÐÀÑÀÒÀÓÀÔÀÕÀÖÀ×ÀØÀÙÀÚÀÛÀÜÀÝÀÞ +0xc0e0: ÀàÀáÀâÀãÀäÀåÀæÀçÀèÀéÀêÀëÀìÀíÀîÀïÀðÀñÀòÀóÀôÀõÀöÀ÷ÀøÀùÀúÀûÀüÀýÀþ +0xc1a0: Á¡Á¢Á£Á¤Á¥Á¦Á§Á¨Á©ÁªÁ«Á¬ÁÁ®Á¯Á°Á±Á²Á³Á´ÁµÁ¶Á·Á¸Á¹ÁºÁ»Á¼Á½Á¾ +0xc1c0: ÁÀÁÁÁÂÁÃÁÄÁÅÁÆÁÇÁÈÁÉÁÊÁËÁÌÁÍÁÎÁÏÁÐÁÑÁÒÁÓÁÔÁÕÁÖÁ×ÁØÁÙÁÚÁÛÁÜÁÝÁÞ +0xc1e0: ÁàÁáÁâÁãÁäÁåÁæÁçÁèÁéÁêÁëÁìÁíÁîÁïÁðÁñÁòÁóÁôÁõÁöÁ÷ÁøÁùÁúÁûÁüÁýÁþ +0xc2a0: ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾ +0xc2c0: ÂÀÂÁÂÂÂÃÂÄÂÅÂÆÂÇÂÈÂÉÂÊÂËÂÌÂÍÂÎÂÏÂÐÂÑÂÒÂÓÂÔÂÕÂÖÂ×ÂØÂÙÂÚÂÛÂÜÂÝÂÞ +0xc2e0: ÂàÂáÂâÂãÂäÂåÂæÂçÂèÂéÂêÂëÂìÂíÂîÂïÂðÂñÂòÂóÂôÂõÂöÂ÷ÂøÂùÂúÂûÂüÂýÂþ +0xc3a0: áâãäåæçèéêëìÃîïðñòóôõö÷øùúûüýþ +0xc3c0: ÃÀÃÁÃÂÃÃÃÄÃÅÃÆÃÇÃÈÃÉÃÊÃËÃÌÃÍÃÎÃÏÃÐÃÑÃÒÃÓÃÔÃÕÃÖÃ×ÃØÃÙÃÚÃÛÃÜÃÝÃÞ +0xc3e0: ÃàÃáÃâÃãÃäÃåÃæÃçÃèÃéÃêÃëÃìÃíÃîÃïÃðÃñÃòÃóÃôÃõÃöÃ÷ÃøÃùÃúÃûÃüÃýÃþ +0xc4a0: ġĢģĤĥĦħĨĩĪīĬÄĮįİıIJijĴĵĶķĸĹĺĻļĽľ +0xc4c0: ÄÀÄÁÄÂÄÃÄÄÄÅÄÆÄÇÄÈÄÉÄÊÄËÄÌÄÍÄÎÄÏÄÐÄÑÄÒÄÓÄÔÄÕÄÖÄ×ÄØÄÙÄÚÄÛÄÜÄÝÄÞ +0xc4e0: ÄàÄáÄâÄãÄäÄåÄæÄçÄèÄéÄêÄëÄìÄíÄîÄïÄðÄñÄòÄóÄôÄõÄöÄ÷ÄøÄùÄúÄûÄüÄýÄþ +0xc5a0: šŢţŤťŦŧŨũŪūŬÅŮůŰűŲųŴŵŶŷŸŹźŻżŽž +0xc5c0: ÅÀÅÁÅÂÅÃÅÄÅÅÅÆÅÇÅÈÅÉÅÊÅËÅÌÅÍÅÎÅÏÅÐÅÑÅÒÅÓÅÔÅÕÅÖÅ×ÅØÅÙÅÚÅÛÅÜÅÝÅÞ +0xc5e0: ÅàÅáÅâÅãÅäÅåÅæÅçÅèÅéÅêÅëÅìÅíÅîÅïÅðÅñÅòÅóÅôÅõÅöÅ÷ÅøÅùÅúÅûÅüÅýÅþ +0xc6a0: Æ¡Æ¢Æ£Æ¤Æ¥Æ¦Æ§Æ¨Æ©ÆªÆ«Æ¬ÆÆ®Æ¯Æ°Æ±Æ²Æ³Æ´ÆµÆ¶Æ·Æ¸Æ¹ÆºÆ»Æ¼Æ½Æ¾ +0xc6c0: ÆÀÆÁÆÂÆÃÆÄÆÅÆÆÆÇÆÈÆÉÆÊÆËÆÌÆÍÆÎÆÏÆÐÆÑÆÒÆÓÆÔÆÕÆÖÆ×ÆØÆÙÆÚÆÛÆÜÆÝÆÞ +0xc6e0: ÆàÆáÆâÆãÆäÆåÆæÆçÆèÆéÆêÆëÆìÆíÆîÆïÆðÆñÆòÆóÆôÆõÆöÆ÷ÆøÆùÆúÆûÆüÆýÆþ +0xc7a0: ǡǢǣǤǥǦǧǨǩǪǫǬÇǮǯǰDZDzdzǴǵǶǷǸǹǺǻǼǽǾ +0xc7c0: ÇÀÇÁÇÂÇÃÇÄÇÅÇÆÇÇÇÈÇÉÇÊÇËÇÌÇÍÇÎÇÏÇÐÇÑÇÒÇÓÇÔÇÕÇÖÇ×ÇØÇÙÇÚÇÛÇÜÇÝÇÞ +0xc7e0: ÇàÇáÇâÇãÇäÇåÇæÇçÇèÇéÇêÇëÇìÇíÇîÇïÇðÇñÇòÇóÇôÇõÇöÇ÷ÇøÇùÇúÇûÇüÇýÇþ +0xc8a0: ȡȢȣȤȥȦȧȨȩȪȫȬÈȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾ +0xc8c0: ÈÀÈÁÈÂÈÃÈÄÈÅÈÆÈÇÈÈÈÉÈÊÈËÈÌÈÍÈÎÈÏÈÐÈÑÈÒÈÓÈÔÈÕÈÖÈ×ÈØÈÙÈÚÈÛÈÜÈÝÈÞ +0xc8e0: ÈàÈáÈâÈãÈäÈåÈæÈçÈèÈéÈêÈëÈìÈíÈîÈïÈðÈñÈòÈóÈôÈõÈöÈ÷ÈøÈùÈúÈûÈüÈýÈþ +0xc9a0: ɡɢɣɤɥɦɧɨɩɪɫɬÉɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾ +0xc9c0: ÉÀÉÁÉÂÉÃÉÄÉÅÉÆÉÇÉÈÉÉÉÊÉËÉÌÉÍÉÎÉÏÉÐÉÑÉÒÉÓÉÔÉÕÉÖÉ×ÉØÉÙÉÚÉÛÉÜÉÝÉÞ +0xc9e0: ÉàÉáÉâÉãÉäÉåÉæÉçÉèÉéÉêÉëÉìÉíÉîÉïÉðÉñÉòÉóÉôÉõÉöÉ÷ÉøÉùÉúÉûÉüÉýÉþ +0xcaa0: ʡʢʣʤʥʦʧʨʩʪʫʬÊʮʯʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾ +0xcac0: ÊÀÊÁÊÂÊÃÊÄÊÅÊÆÊÇÊÈÊÉÊÊÊËÊÌÊÍÊÎÊÏÊÐÊÑÊÒÊÓÊÔÊÕÊÖÊ×ÊØÊÙÊÚÊÛÊÜÊÝÊÞ +0xcae0: ÊàÊáÊâÊãÊäÊåÊæÊçÊèÊéÊêÊëÊìÊíÊîÊïÊðÊñÊòÊóÊôÊõÊöÊ÷ÊøÊùÊúÊûÊüÊýÊþ +0xcba0: ˡˢˣˤ˥˦˧˨˩˪˫ˬËˮ˯˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾ +0xcbc0: ËÀËÁËÂËÃËÄËÅËÆËÇËÈËÉËÊËËËÌËÍËÎËÏËÐËÑËÒËÓËÔËÕËÖË×ËØËÙËÚËÛËÜËÝËÞ +0xcbe0: ËàËáËâËãËäËåËæËçËèËéËêËëËìËíËîËïËðËñËòËóËôËõËöË÷ËøËùËúËûËüËýËþ +0xcca0: ̡̢̧̨̣̤̥̦̩̪̫̬Ì̴̵̶̷̸̮̯̰̱̲̳̹̺̻̼̽̾ +0xccc0: ÌÀÌÁÌÂÌÃÌÄÌÅÌÆÌÇÌÈÌÉÌÊÌËÌÌÌÍÌÎÌÏÌÐÌÑÌÒÌÓÌÔÌÕÌÖÌ×ÌØÌÙÌÚÌÛÌÜÌÝÌÞ +0xcce0: ÌàÌáÌâÌãÌäÌåÌæÌçÌèÌéÌêÌëÌìÌíÌîÌïÌðÌñÌòÌóÌôÌõÌöÌ÷ÌøÌùÌúÌûÌüÌýÌþ +0xcda0: ͣͤͥͦͧͨͩͪͫͬ͢͡ÍͮͯͰͱͲͳʹ͵Ͷͷ͸͹ͺͻͼͽ; +0xcdc0: ÍÀÍÁÍÂÍÃÍÄÍÅÍÆÍÇÍÈÍÉÍÊÍËÍÌÍÍÍÎÍÏÍÐÍÑÍÒÍÓÍÔÍÕÍÖÍ×ÍØÍÙÍÚÍÛÍÜÍÝÍÞ +0xcde0: ÍàÍáÍâÍãÍäÍåÍæÍçÍèÍéÍêÍëÍìÍíÍîÍïÍðÍñÍòÍóÍôÍõÍöÍ÷ÍøÍùÍúÍûÍüÍýÍþ +0xcea0: Ρ΢ΣΤΥΦΧΨΩΪΫάÎήίΰαβγδεζηθικλμνξ +0xcec0: ÎÀÎÁÎÂÎÃÎÄÎÅÎÆÎÇÎÈÎÉÎÊÎËÎÌÎÍÎÎÎÏÎÐÎÑÎÒÎÓÎÔÎÕÎÖÎ×ÎØÎÙÎÚÎÛÎÜÎÝÎÞ +0xcee0: ÎàÎáÎâÎãÎäÎåÎæÎçÎèÎéÎêÎëÎìÎíÎîÎïÎðÎñÎòÎóÎôÎõÎöÎ÷ÎøÎùÎúÎûÎüÎýÎþ +0xcfa0: ϡϢϣϤϥϦϧϨϩϪϫϬÏϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾ +0xcfc0: ÏÀÏÁÏÂÏÃÏÄÏÅÏÆÏÇÏÈÏÉÏÊÏËÏÌÏÍÏÎÏÏÏÐÏÑÏÒÏÓ +0xcfe0: +0xd0a0: СТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмно +0xd0c0: ÐÀÐÁÐÂÐÃÐÄÐÅÐÆÐÇÐÈÐÉÐÊÐËÐÌÐÍÐÎÐÏÐÐÐÑÐÒÐÓÐÔÐÕÐÖÐ×ÐØÐÙÐÚÐÛÐÜÐÝÐÞ +0xd0e0: ÐàÐáÐâÐãÐäÐåÐæÐçÐèÐéÐêÐëÐìÐíÐîÐïÐðÐñÐòÐóÐôÐõÐöÐ÷ÐøÐùÐúÐûÐüÐýÐþ +0xd1a0: ѡѢѣѤѥѦѧѨѩѪѫѬÑѮѯѰѱѲѳѴѵѶѷѸѹѺѻѼѽѾ +0xd1c0: ÑÀÑÁÑÂÑÃÑÄÑÅÑÆÑÇÑÈÑÉÑÊÑËÑÌÑÍÑÎÑÏÑÐÑÑÑÒÑÓÑÔÑÕÑÖÑ×ÑØÑÙÑÚÑÛÑÜÑÝÑÞ +0xd1e0: ÑàÑáÑâÑãÑäÑåÑæÑçÑèÑéÑêÑëÑìÑíÑîÑïÑðÑñÑòÑóÑôÑõÑöÑ÷ÑøÑùÑúÑûÑüÑýÑþ +0xd2a0: Ò¡Ò¢Ò£Ò¤Ò¥Ò¦Ò§Ò¨Ò©ÒªÒ«Ò¬ÒÒ®Ò¯Ò°Ò±Ò²Ò³Ò´ÒµÒ¶Ò·Ò¸Ò¹ÒºÒ»Ò¼Ò½Ò¾ +0xd2c0: ÒÀÒÁÒÂÒÃÒÄÒÅÒÆÒÇÒÈÒÉÒÊÒËÒÌÒÍÒÎÒÏÒÐÒÑÒÒÒÓÒÔÒÕÒÖÒ×ÒØÒÙÒÚÒÛÒÜÒÝÒÞ +0xd2e0: ÒàÒáÒâÒãÒäÒåÒæÒçÒèÒéÒêÒëÒìÒíÒîÒïÒðÒñÒòÒóÒôÒõÒöÒ÷ÒøÒùÒúÒûÒüÒýÒþ +0xd3a0: Ó¡Ó¢Ó£Ó¤Ó¥Ó¦Ó§Ó¨Ó©ÓªÓ«Ó¬ÓÓ®Ó¯Ó°Ó±Ó²Ó³Ó´ÓµÓ¶Ó·Ó¸Ó¹ÓºÓ»Ó¼Ó½Ó¾ +0xd3c0: ÓÀÓÁÓÂÓÃÓÄÓÅÓÆÓÇÓÈÓÉÓÊÓËÓÌÓÍÓÎÓÏÓÐÓÑÓÒÓÓÓÔÓÕÓÖÓ×ÓØÓÙÓÚÓÛÓÜÓÝÓÞ +0xd3e0: ÓàÓáÓâÓãÓäÓåÓæÓçÓèÓéÓêÓëÓìÓíÓîÓïÓðÓñÓòÓóÓôÓõÓöÓ÷ÓøÓùÓúÓûÓüÓýÓþ +0xd4a0: Ô¡Ô¢Ô£Ô¤Ô¥Ô¦Ô§Ô¨Ô©ÔªÔ«Ô¬ÔÔ®Ô¯Ô°Ô±Ô²Ô³Ô´ÔµÔ¶Ô·Ô¸Ô¹ÔºÔ»Ô¼Ô½Ô¾ +0xd4c0: ÔÀÔÁÔÂÔÃÔÄÔÅÔÆÔÇÔÈÔÉÔÊÔËÔÌÔÍÔÎÔÏÔÐÔÑÔÒÔÓÔÔÔÕÔÖÔ×ÔØÔÙÔÚÔÛÔÜÔÝÔÞ +0xd4e0: ÔàÔáÔâÔãÔäÔåÔæÔçÔèÔéÔêÔëÔìÔíÔîÔïÔðÔñÔòÔóÔôÔõÔöÔ÷ÔøÔùÔúÔûÔüÔýÔþ +0xd5a0: Õ¡Õ¢Õ£Õ¤Õ¥Õ¦Õ§Õ¨Õ©ÕªÕ«Õ¬ÕÕ®Õ¯Õ°Õ±Õ²Õ³Õ´ÕµÕ¶Õ·Õ¸Õ¹ÕºÕ»Õ¼Õ½Õ¾ +0xd5c0: ÕÀÕÁÕÂÕÃÕÄÕÅÕÆÕÇÕÈÕÉÕÊÕËÕÌÕÍÕÎÕÏÕÐÕÑÕÒÕÓÕÔÕÕÕÖÕ×ÕØÕÙÕÚÕÛÕÜÕÝÕÞ +0xd5e0: ÕàÕáÕâÕãÕäÕåÕæÕçÕèÕéÕêÕëÕìÕíÕîÕïÕðÕñÕòÕóÕôÕõÕöÕ÷ÕøÕùÕúÕûÕüÕýÕþ +0xd6a0: Ö¡Ö¢Ö£Ö¤Ö¥Ö¦Ö§Ö¨Ö©ÖªÖ«Ö¬ÖÖ®Ö¯Ö°Ö±Ö²Ö³Ö´ÖµÖ¶Ö·Ö¸Ö¹ÖºÖ»Ö¼Ö½Ö¾ +0xd6c0: ÖÀÖÁÖÂÖÃÖÄÖÅÖÆÖÇÖÈÖÉÖÊÖËÖÌÖÍÖÎÖÏÖÐÖÑÖÒÖÓÖÔÖÕÖÖÖ×ÖØÖÙÖÚÖÛÖÜÖÝÖÞ +0xd6e0: ÖàÖáÖâÖãÖäÖåÖæÖçÖèÖéÖêÖëÖìÖíÖîÖïÖðÖñÖòÖóÖôÖõÖöÖ÷ÖøÖùÖúÖûÖüÖýÖþ +0xd7a0: סעףפץצקרשת׫׬×׮ׯװױײ׳״׵׶׷׸׹׺׻׼׽׾ +0xd7c0: ×À×Á×Â×Ã×Ä×Åׯ×Ç×È×É×Ê×Ë×Ì×Í×Î×Ï×Ð×Ñ×Ò×Ó×Ô×Õ×Ö××ר×Ù×Ú×Û×Ü×Ý×Þ +0xd7e0: ×à×á×â×ã×ä×å׿×ç×è×é×ê×ë×ì×í×î×ï×ð×ñ×ò×ó×ô×õ×ö×÷×ø×ù×ú×û×ü×ý×þ +0xd8a0: Ø¡Ø¢Ø£Ø¤Ø¥Ø¦Ø§Ø¨Ø©ØªØ«Ø¬ØØ®Ø¯Ø°Ø±Ø²Ø³Ø´ØµØ¶Ø·Ø¸Ø¹ØºØ»Ø¼Ø½Ø¾ +0xd8c0: ØÀØÁØÂØÃØÄØÅØÆØÇØÈØÉØÊØËØÌØÍØÎØÏØÐØÑØÒØÓØÔØÕØÖØ×ØØØÙØÚØÛØÜØÝØÞ +0xd8e0: ØàØáØâØãØäØåØæØçØèØéØêØëØìØíØîØïØðØñØòØóØôØõØöØ÷ØøØùØúØûØüØýØþ +0xd9a0: ١٢٣٤٥٦٧٨٩٪٫٬Ùٮٯٰٱٲٳٴٵٶٷٸٹٺٻټٽپ +0xd9c0: ÙÀÙÁÙÂÙÃÙÄÙÅÙÆÙÇÙÈÙÉÙÊÙËÙÌÙÍÙÎÙÏÙÐÙÑÙÒÙÓÙÔÙÕÙÖÙ×ÙØÙÙÙÚÙÛÙÜÙÝÙÞ +0xd9e0: ÙàÙáÙâÙãÙäÙåÙæÙçÙèÙéÙêÙëÙìÙíÙîÙïÙðÙñÙòÙóÙôÙõÙöÙ÷ÙøÙùÙúÙûÙüÙýÙþ +0xdaa0: Ú¡Ú¢Ú£Ú¤Ú¥Ú¦Ú§Ú¨Ú©ÚªÚ«Ú¬ÚÚ®Ú¯Ú°Ú±Ú²Ú³Ú´ÚµÚ¶Ú·Ú¸Ú¹ÚºÚ»Ú¼Ú½Ú¾ +0xdac0: ÚÀÚÁÚÂÚÃÚÄÚÅÚÆÚÇÚÈÚÉÚÊÚËÚÌÚÍÚÎÚÏÚÐÚÑÚÒÚÓÚÔÚÕÚÖÚ×ÚØÚÙÚÚÚÛÚÜÚÝÚÞ +0xdae0: ÚàÚáÚâÚãÚäÚåÚæÚçÚèÚéÚêÚëÚìÚíÚîÚïÚðÚñÚòÚóÚôÚõÚöÚ÷ÚøÚùÚúÚûÚüÚýÚþ +0xdba0: Û¡Û¢Û£Û¤Û¥Û¦Û§Û¨Û©ÛªÛ«Û¬ÛÛ®Û¯Û°Û±Û²Û³Û´ÛµÛ¶Û·Û¸Û¹ÛºÛ»Û¼Û½Û¾ +0xdbc0: ÛÀÛÁÛÂÛÃÛÄÛÅÛÆÛÇÛÈÛÉÛÊÛËÛÌÛÍÛÎÛÏÛÐÛÑÛÒÛÓÛÔÛÕÛÖÛ×ÛØÛÙÛÚÛÛÛÜÛÝÛÞ +0xdbe0: ÛàÛáÛâÛãÛäÛåÛæÛçÛèÛéÛêÛëÛìÛíÛîÛïÛðÛñÛòÛóÛôÛõÛöÛ÷ÛøÛùÛúÛûÛüÛýÛþ +0xdca0: ܡܢܣܤܥܦܧܨܩܪܫܬÜܮܯܱܴܷܸܹܻܼܾܰܲܳܵܶܺܽ +0xdcc0: ÜÀÜÁÜÂÜÃÜÄÜÅÜÆÜÇÜÈÜÉÜÊÜËÜÌÜÍÜÎÜÏÜÐÜÑÜÒÜÓÜÔÜÕÜÖÜ×ÜØÜÙÜÚÜÛÜÜÜÝÜÞ +0xdce0: ÜàÜáÜâÜãÜäÜåÜæÜçÜèÜéÜêÜëÜìÜíÜîÜïÜðÜñÜòÜóÜôÜõÜöÜ÷ÜøÜùÜúÜûÜüÜýÜþ +0xdda0: ݡݢݣݤݥݦݧݨݩݪݫݬÝݮݯݰݱݲݳݴݵݶݷݸݹݺݻݼݽݾ +0xddc0: ÝÀÝÁÝÂÝÃÝÄÝÅÝÆÝÇÝÈÝÉÝÊÝËÝÌÝÍÝÎÝÏÝÐÝÑÝÒÝÓÝÔÝÕÝÖÝ×ÝØÝÙÝÚÝÛÝÜÝÝÝÞ +0xdde0: ÝàÝáÝâÝãÝäÝåÝæÝçÝèÝéÝêÝëÝìÝíÝîÝïÝðÝñÝòÝóÝôÝõÝöÝ÷ÝøÝùÝúÝûÝüÝýÝþ +0xdea0: Þ¡Þ¢Þ£Þ¤Þ¥Þ¦Þ§Þ¨Þ©ÞªÞ«Þ¬ÞÞ®Þ¯Þ°Þ±Þ²Þ³Þ´ÞµÞ¶Þ·Þ¸Þ¹ÞºÞ»Þ¼Þ½Þ¾ +0xdec0: ÞÀÞÁÞÂÞÃÞÄÞÅÞÆÞÇÞÈÞÉÞÊÞËÞÌÞÍÞÎÞÏÞÐÞÑÞÒÞÓÞÔÞÕÞÖÞ×ÞØÞÙÞÚÞÛÞÜÞÝÞÞ +0xdee0: ÞàÞáÞâÞãÞäÞåÞæÞçÞèÞéÞêÞëÞìÞíÞîÞïÞðÞñÞòÞóÞôÞõÞöÞ÷ÞøÞùÞúÞûÞüÞýÞþ +0xdfa0: ߡߢߣߤߥߦߧߨߩߪ߫߬ß߲߮߯߰߱߳ߴߵ߶߷߸߹ߺ߻߼߽߾ +0xdfc0: ßÀßÁßÂßÃßÄßÅ߯ßÇßÈßÉßÊßËßÌßÍßÎßÏßÐßÑßÒßÓßÔßÕßÖß×ߨßÙßÚßÛßÜßÝßÞ +0xdfe0: ßàßáßâßãßäßåßæßçßèßéßêßëßìßíßîßïßðßñßòßóßôßõßöß÷ßøßùßúßûßüßýßþ +0xe0a0: à¡à¢à£à¤à¥à¦à§à¨à©àªà«à¬àà®à¯à°à±à²à³à´àµà¶à·à¸à¹àºà»à¼à½à¾ +0xe0c0: àÀàÁàÂàÃàÄàÅàÆàÇàÈàÉàÊàËàÌàÍàÎàÏàÐàÑàÒàÓàÔàÕàÖà×àØàÙàÚàÛàÜàÝàÞ +0xe0e0: àààáàâàãàäàåàæàçàèàéàêàëàìàíàîàïàðàñàòàóàôàõàöà÷àøàùàúàûàüàýàþ +0xe1a0: á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬áá®á¯á°á±á²á³á´áµá¶á·á¸á¹áºá»á¼á½á¾ +0xe1c0: áÀáÁáÂáÃáÄáÅáÆáÇáÈáÉáÊáËáÌáÍáÎáÏáÐáÑáÒáÓáÔáÕáÖá×áØáÙáÚáÛáÜáÝáÞ +0xe1e0: áàáááâáãáäáåáæáçáèáéáêáëáìáíáîáïáðáñáòáóáôáõáöá÷áøáùáúáûáüáýáþ +0xe2a0: â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬ââ®â¯â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½â¾ +0xe2c0: âÀâÁâÂâÃâÄâÅâÆâÇâÈâÉâÊâËâÌâÍâÎâÏâÐâÑâÒâÓâÔâÕâÖâ×âØâÙâÚâÛâÜâÝâÞ +0xe2e0: âàâáâââãâäâåâæâçâèâéâêâëâìâíâîâïâðâñâòâóâôâõâöâ÷âøâùâúâûâüâýâþ +0xe3a0: ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ãã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ +0xe3c0: ãÀãÁãÂãÃãÄãÅãÆãÇãÈãÉãÊãËãÌãÍãÎãÏãÐãÑãÒãÓãÔãÕãÖã×ãØãÙãÚãÛãÜãÝãÞ +0xe3e0: ãàãáãâãããäãåãæãçãèãéãêãëãìãíãîãïãðãñãòãóãôãõãöã÷ãøãùãúãûãüãýãþ +0xe4a0: ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ää®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ +0xe4c0: äÀäÁäÂäÃäÄäÅäÆäÇäÈäÉäÊäËäÌäÍäÎäÏäÐäÑäÒäÓäÔäÕäÖä×äØäÙäÚäÛäÜäÝäÞ +0xe4e0: äàäáäâäãäääåäæäçäèäéäêäëäìäíäîäïäðäñäòäóäôäõäöä÷äøäùäúäûäüäýäþ +0xe5a0: å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬åå®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾ +0xe5c0: åÀåÁåÂåÃåÄåÅåÆåÇåÈåÉåÊåËåÌåÍåÎåÏåÐåÑåÒåÓåÔåÕåÖå×åØåÙåÚåÛåÜåÝåÞ +0xe5e0: åàåáåâåãåäåååæåçåèåéåêåëåìåíåîåïåðåñåòåóåôåõåöå÷åøåùåúåûåüåýåþ +0xe6a0: æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬ææ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾ +0xe6c0: æÀæÁæÂæÃæÄæÅæÆæÇæÈæÉæÊæËæÌæÍæÎæÏæÐæÑæÒæÓæÔæÕæÖæ×æØæÙæÚæÛæÜæÝæÞ +0xe6e0: æàæáæâæãæäæåæææçæèæéæêæëæìæíæîæïæðæñæòæóæôæõæöæ÷æøæùæúæûæüæýæþ +0xe7a0: ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬çç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ +0xe7c0: çÀçÁçÂçÃçÄçÅçÆçÇçÈçÉçÊçËçÌçÍçÎçÏçÐçÑçÒçÓçÔçÕçÖç×çØçÙçÚçÛçÜçÝçÞ +0xe7e0: çàçáçâçãçäçåçæçççèçéçêçëçìçíçîçïçðçñçòçóçôçõçöç÷çøçùçúçûçüçýçþ +0xe8a0: è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬èè®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾ +0xe8c0: èÀèÁèÂèÃèÄèÅèÆèÇèÈèÉèÊèËèÌèÍèÎèÏèÐèÑèÒèÓèÔèÕèÖè×èØèÙèÚèÛèÜèÝèÞ +0xe8e0: èàèáèâèãèäèåèæèçèèèéèêèëèìèíèîèïèðèñèòèóèôèõèöè÷èøèùèúèûèüèýèþ +0xe9a0: é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬éé®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾ +0xe9c0: éÀéÁéÂéÃéÄéÅéÆéÇéÈéÉéÊéËéÌéÍéÎéÏéÐéÑéÒéÓéÔéÕéÖé×éØéÙéÚéÛéÜéÝéÞ +0xe9e0: éàéáéâéãéäéåéæéçéèéééêéëéìéíéîéïéðéñéòéóéôéõéöé÷éøéùéúéûéüéýéþ +0xeaa0: ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬êê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ +0xeac0: êÀêÁêÂêÃêÄêÅêÆêÇêÈêÉêÊêËêÌêÍêÎêÏêÐêÑêÒêÓêÔêÕêÖê×êØêÙêÚêÛêÜêÝêÞ +0xeae0: êàêáêâêãêäêåêæêçêèêéêêêëêìêíêîêïêðêñêòêóêôêõêöê÷êøêùêúêûêüêýêþ +0xeba0: ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ëë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ +0xebc0: ëÀëÁëÂëÃëÄëÅëÆëÇëÈëÉëÊëËëÌëÍëÎëÏëÐëÑëÒëÓëÔëÕëÖë×ëØëÙëÚëÛëÜëÝëÞ +0xebe0: ëàëáëâëãëäëåëæëçëèëéëêëëëìëíëîëïëðëñëòëóëôëõëöë÷ëøëùëúëûëüëýëþ +0xeca0: ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ìì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ +0xecc0: ìÀìÁìÂìÃìÄìÅìÆìÇìÈìÉìÊìËìÌìÍìÎìÏìÐìÑìÒìÓìÔìÕìÖì×ìØìÙìÚìÛìÜìÝìÞ +0xece0: ìàìáìâìãìäìåìæìçìèìéìêìëìììíìîìïìðìñìòìóìôìõìöì÷ìøìùìúìûìüìýìþ +0xeda0: í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬íí®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾ +0xedc0: íÀíÁíÂíÃíÄíÅíÆíÇíÈíÉíÊíËíÌíÍíÎíÏíÐíÑíÒíÓíÔíÕíÖí×íØíÙíÚíÛíÜíÝíÞ +0xede0: íàíáíâíãíäíåíæíçíèíéíêíëíìíííîíïíðíñíòíóíôíõíöí÷íøíùíúíûíüíýíþ +0xeea0: î¡î¢î£î¤î¥î¦î§î¨î©îªî«î¬îî®î¯î°î±î²î³î´îµî¶î·î¸î¹îºî»î¼î½î¾ +0xeec0: îÀîÁîÂîÃîÄîÅîÆîÇîÈîÉîÊîËîÌîÍîÎîÏîÐîÑîÒîÓîÔîÕîÖî×îØîÙîÚîÛîÜîÝîÞ +0xeee0: îàîáîâîãîäîåîæîçîèîéîêîëîìîíîîîïîðîñîòîóîôîõîöî÷îøîùîúîûîüîýîþ +0xefa0: ï¡ï¢ï£ï¤ï¥ï¦ï§ï¨ï©ïªï«ï¬ïï®ï¯ï°ï±ï²ï³ï´ïµï¶ï·ï¸ï¹ïºï»ï¼ï½ï¾ +0xefc0: ïÀïÁïÂïÃïÄïÅïÆïÇïÈïÉïÊïËïÌïÍïÎïÏïÐïÑïÒïÓïÔïÕïÖï×ïØïÙïÚïÛïÜïÝïÞ +0xefe0: ïàïáïâïãïäïåïæïçïèïéïêïëïìïíïîïïïðïñïòïóïôïõïöï÷ïøïùïúïûïüïýïþ +0xf0a0: ð¡ð¢ð£ð¤ð¥ð¦ð§ð¨ð©ðªð«ð¬ðð®ð¯ð°ð±ð²ð³ð´ðµð¶ð·ð¸ð¹ðºð»ð¼ð½ð¾ +0xf0c0: ðÀðÁðÂðÃðÄðÅðÆðÇðÈðÉðÊðËðÌðÍðÎðÏðÐðÑðÒðÓðÔðÕðÖð×ðØðÙðÚðÛðÜðÝðÞ +0xf0e0: ðàðáðâðãðäðåðæðçðèðéðêðëðìðíðîðïðððñðòðóðôðõðöð÷ðøðùðúðûðüðýðþ +0xf1a0: ñ¡ñ¢ñ£ñ¤ñ¥ñ¦ñ§ñ¨ñ©ñªñ«ñ¬ññ®ñ¯ñ°ñ±ñ²ñ³ñ´ñµñ¶ñ·ñ¸ñ¹ñºñ»ñ¼ñ½ñ¾ +0xf1c0: ñÀñÁñÂñÃñÄñÅñÆñÇñÈñÉñÊñËñÌñÍñÎñÏñÐñÑñÒñÓñÔñÕñÖñ×ñØñÙñÚñÛñÜñÝñÞ +0xf1e0: ñàñáñâñãñäñåñæñçñèñéñêñëñìñíñîñïñðñññòñóñôñõñöñ÷ñøñùñúñûñüñýñþ +0xf2a0: ò¡ò¢ò£ò¤ò¥ò¦ò§ò¨ò©òªò«ò¬òò®ò¯ò°ò±ò²ò³ò´òµò¶ò·ò¸ò¹òºò»ò¼ò½ò¾ +0xf2c0: òÀòÁòÂòÃòÄòÅòÆòÇòÈòÉòÊòËòÌòÍòÎòÏòÐòÑòÒòÓòÔòÕòÖò×òØòÙòÚòÛòÜòÝòÞ +0xf2e0: òàòáòâòãòäòåòæòçòèòéòêòëòìòíòîòïòðòñòòòóòôòõòöò÷òøòùòúòûòüòýòþ +0xf3a0: ó¡ó¢ó£ó¤ó¥ó¦ó§ó¨ó©óªó«ó¬óó®ó¯ó°ó±ó²ó³ó´óµó¶ó·ó¸ó¹óºó»ó¼ó½ó¾ +0xf3c0: óÀóÁóÂóÃóÄóÅóÆóÇóÈóÉóÊóËóÌóÍóÎóÏóÐóÑóÒóÓóÔóÕóÖó×óØóÙóÚóÛóÜóÝóÞ +0xf3e0: óàóáóâóãóäóåóæóçóèóéóêóëóìóíóîóïóðóñóòóóóôóõóöó÷óøóùóúóûóüóýóþ +0xf4a0: ô¡ô¢ô£ô¤ô¥ô¦ +0xf4c0: +0xf4e0: +0xf5a0: +0xf5c0: +0xf5e0: +0xf6a0: +0xf6c0: +0xf6e0: +0xf7a0: +0xf7c0: +0xf7e0: +0xf8a0: +0xf8c0: +0xf8e0: +0xf9a0: +0xf9c0: +0xf9e0: +0xfaa0: +0xfac0: +0xfae0: +0xfba0: +0xfbc0: +0xfbe0: +0xfca0: +0xfcc0: +0xfce0: +0xfda0: +0xfdc0: +0xfde0: +0xfea0: +0xfec0: +0xfee0: +0xffa0: +0xffc0: +0xffe0: diff --git a/cpan/dist/Jcode/t/tr.t b/cpan/dist/Jcode/t/tr.t new file mode 100644 index 00000000..497cae92 --- /dev/null +++ b/cpan/dist/Jcode/t/tr.t @@ -0,0 +1,68 @@ +#!/usr/bin/perl -w + +use strict; +use diagnostics; +$| = 1; # autoflush +use vars qw(@ARGV $ARGV); +use Jcode; + +my ($NTESTS, @TESTS) ; + +sub profile { + no strict 'vars'; + my $profile = shift; + print $profile if $ARGV[0]; + $profile =~ m/(not ok|ok) (\d+)$/o; + $profile = "$1 $2\n"; + $NTESTS = $2; + push @TESTS, $profile; +} + + +my $n = 0; +my $file; + +my $hiragana; $file = "t/hiragana.euc"; open F, $file or die "$file:$!"; +read F, $hiragana, -s $file; +profile(sprintf("prep: hiragana ok %d\n", ++$n)); + +my $katakana; $file = "t/zenkaku.euc"; open F, $file or die "$file:$!"; +read F, $katakana, -s $file; +profile(sprintf("prep: katakana ok %d\n", ++$n)); + +#print jcode($katakana)->tr('A-Za-z¥¡-¥óާ-ŽÝ','a-zA-Z¤¡-¤óާ-ŽÝ'); +#__END__ + +my %code2str = + ( + 'A-Za-z¥¡-¥óާ-ŽÝ' => $katakana, + 'a-zA-Z¤¡-¤óާ-ŽÝ' => $hiragana, + ); + +# by Value + +for my $icode (keys %code2str){ + for my $ocode (keys %code2str){ + my $ok; + my $str = $code2str{$icode}; + my $out = jcode(\$str)->tr($icode, $ocode)->euc; + if ($out eq $code2str{$ocode}){ + $ok = "ok"; + }else{ + $ok = "not ok"; + print $out; + } + profile(sprintf("H2Z: %s -> %s %s %d\n", + $icode, $ocode, $ok, ++$n )); + } +} + +print 1, "..", $NTESTS, "\n"; +for my $TEST (@TESTS){ + print $TEST; +} + + + + + diff --git a/cpan/dist/Jcode/t/unibench.pl b/cpan/dist/Jcode/t/unibench.pl new file mode 100644 index 00000000..6a7e084c --- /dev/null +++ b/cpan/dist/Jcode/t/unibench.pl @@ -0,0 +1,47 @@ +#!/usr/local/bin/perl + +use ExtUtils::testlib; +use Benchmark; + +$| = 1; + + +print "Jcode Loading...\n"; +require Jcode; +$Jcode::DEBUG = 1; +print "done.\n"; + +$file = "t/table.euc"; +open F, $file or die "$file:$!"; +my $euc; +read F, $euc, -s $file; + +my $ucs2 = Jcode->new($euc)->ucs2; +my $utf8 = Jcode->new($euc)->utf8; + +my $count = $ARGV[0] || 16; + +timethese($count, { + "utf8->ucs2" => \&utf8_ucs2, + "ucs2->utf8" => \&ucs2_utf8, + "euc->ucs2" => \&euc_ucs2, + "ucs2->euc" => \&ucs2_euc, + } + ); + + +sub utf8_ucs2{ + &Jcode::utf8_ucs2($utf8); +} + +sub ucs2_utf8{ + &Jcode::ucs2_utf8($ucs2); +} + +sub euc_ucs2{ + &Jcode::euc_ucs2($ucs2); +} + +sub ucs2_euc{ + &Jcode::ucs2_euc($ucs2); +} diff --git a/cpan/dist/Jcode/t/x0212.euc b/cpan/dist/Jcode/t/x0212.euc new file mode 100644 index 00000000..b2fcb568 --- /dev/null +++ b/cpan/dist/Jcode/t/x0212.euc @@ -0,0 +1,288 @@ +0x8fa0a0: +0x8fa0c0: +0x8fa0e0: +0x8fa1a0: +0x8fa1c0: +0x8fa1e0: +0x8fa2a0: ¢¯¢°¢±¢²¢³¢´¢µ¢¶¢·¢¸¢¹ +0x8fa2c0: ¢Â¢Ã¢Ä +0x8fa2e0: ¢ë¢ì¢í¢î¢ï¢ð¢ñ +0x8fa3a0: +0x8fa3c0: +0x8fa3e0: +0x8fa4a0: +0x8fa4c0: +0x8fa4e0: +0x8fa5a0: +0x8fa5c0: +0x8fa5e0: +0x8fa6a0: +0x8fa6c0: +0x8fa6e0: ¦á¦â¦ã¦ä¦å ¦ç ¦é¦ê ¦ì ¦ñ¦ò¦ó¦ô¦õ¦ö¦÷¦ø¦ù¦ú¦û¦ü +0x8fa7a0: +0x8fa7c0: §Â§Ã§Ä§Å§Æ§Ç§È§É§Ê§Ë§Ì§Í§Î +0x8fa7e0: §ò§ó§ô§õ§ö§÷§ø§ù§ú§û§ü§ý§þ +0x8fa8a0: +0x8fa8c0: +0x8fa8e0: +0x8fa9a0: ©¡©¢ ©¤ ©¦ ©¨©© ©«©¬© ©¯©° +0x8fa9c0: ©Á©Â©Ã©Ä©Å©Æ©Ç©È©É©Ê©Ë©Ì©Í©Î©Ï©Ð +0x8fa9e0: +0x8faaa0: ª¡ª¢ª£ª¤ª¥ª¦ª§ª¨ª©ªªª«ª¬ªª®ª¯ª°ª±ª²ª³ª´ªµª¶ª·ª¸ ªºª»ª¼ª½ª¾ +0x8faac0: ªÀªÁªÂªÃªÄªÅªÆªÇªÈªÉªÊªËªÌªÍªÎªÏªÐªÑªÒªÓªÔªÕªÖª×ªØªÙªÚªÛªÜªÝªÞ +0x8faae0: ªàªáªâªãªäªåªæªçªèªéªêªëªìªíªîªïªðªñªòªóªôªõªöª÷ +0x8faba0: «¡«¢«£«¤«¥«¦«§«¨«©«ª«««¬««®«¯«°«±«²«³«´«µ«¶«·«¸«¹«º«» «½«¾ +0x8fabc0: «À«Á«Â«Ã «Å«Æ«Ç«È«É«Ê«Ë«Ì«Í«Î«Ï«Ð«Ñ«Ò«Ó«Ô«Õ«Ö«×«Ø«Ù«Ú«Û«Ü«Ý«Þ +0x8fabe0: «à«á«â«ã«ä«å«æ«ç«è«é«ê«ë«ì«í«î«ï«ð«ñ«ò«ó«ô«õ«ö«÷ +0x8faca0: +0x8facc0: +0x8face0: +0x8fada0: +0x8fadc0: +0x8fade0: +0x8faea0: +0x8faec0: +0x8faee0: +0x8fafa0: +0x8fafc0: +0x8fafe0: +0x8fb0a0: °¡°¢°£°¤°¥°¦°§°¨°©°ª°«°¬°°®°¯°°°±°²°³°´°µ°¶°·°¸°¹°º°»°¼°½°¾ +0x8fb0c0: °À°Á°Â°Ã°Ä°Å°Æ°Ç°È°É°Ê°Ë°Ì°Í°Î°Ï°Ð°Ñ°Ò°Ó°Ô°Õ°Ö°×°Ø°Ù°Ú°Û°Ü°Ý°Þ +0x8fb0e0: °à°á°â°ã°ä°å°æ°ç°è°é°ê°ë°ì°í°î°ï°ð°ñ°ò°ó°ô°õ°ö°÷°ø°ù°ú°û°ü°ý°þ +0x8fb1a0: ±¡±¢±£±¤±¥±¦±§±¨±©±ª±«±¬±±®±¯±°±±±²±³±´±µ±¶±·±¸±¹±º±»±¼±½±¾ +0x8fb1c0: ±À±Á±Â±Ã±Ä±Å±Æ±Ç±È±É±Ê±Ë±Ì±Í±Î±Ï±Ð±Ñ±Ò±Ó±Ô±Õ±Ö±×±Ø±Ù±Ú±Û±Ü±Ý±Þ +0x8fb1e0: ±à±á±â±ã±ä±å±æ±ç±è±é±ê±ë±ì±í±î±ï±ð±ñ±ò±ó±ô±õ±ö±÷±ø±ù±ú±û±ü±ý±þ +0x8fb2a0: ²¡²¢²£²¤²¥²¦²§²¨²©²ª²«²¬²²®²¯²°²±²²²³²´²µ²¶²·²¸²¹²º²»²¼²½²¾ +0x8fb2c0: ²À²Á²Â²Ã²Ä²Å²Æ²Ç²È²É²Ê²Ë²Ì²Í²Î²Ï²Ð²Ñ²Ò²Ó²Ô²Õ²Ö²×²Ø²Ù²Ú²Û²Ü²Ý²Þ +0x8fb2e0: ²à²á²â²ã²ä²å²æ²ç²è²é²ê²ë²ì²í²î²ï²ð²ñ²ò²ó²ô²õ²ö²÷²ø²ù²ú²û²ü²ý²þ +0x8fb3a0: ³¡³¢³£³¤³¥³¦³§³¨³©³ª³«³¬³³®³¯³°³±³²³³³´³µ³¶³·³¸³¹³º³»³¼³½³¾ +0x8fb3c0: ³À³Á³Â³Ã³Ä³Å³Æ³Ç³È³É³Ê³Ë³Ì³Í³Î³Ï³Ð³Ñ³Ò³Ó³Ô³Õ³Ö³×³Ø³Ù³Ú³Û³Ü³Ý³Þ +0x8fb3e0: ³à³á³â³ã³ä³å³æ³ç³è³é³ê³ë³ì³í³î³ï³ð³ñ³ò³ó³ô³õ³ö³÷³ø³ù³ú³û³ü³ý³þ +0x8fb4a0: ´¡´¢´£´¤´¥´¦´§´¨´©´ª´«´¬´´®´¯´°´±´²´³´´´µ´¶´·´¸´¹´º´»´¼´½´¾ +0x8fb4c0: ´À´Á´Â´Ã´Ä´Å´Æ´Ç´È´É´Ê´Ë´Ì´Í´Î´Ï´Ð´Ñ´Ò´Ó´Ô´Õ´Ö´×´Ø´Ù´Ú´Û´Ü´Ý´Þ +0x8fb4e0: ´à´á´â´ã´ä´å´æ´ç´è´é´ê´ë´ì´í´î´ï´ð´ñ´ò´ó´ô´õ´ö´÷´ø´ù´ú´û´ü´ý´þ +0x8fb5a0: µ¡µ¢µ£µ¤µ¥µ¦µ§µ¨µ©µªµ«µ¬µµ®µ¯µ°µ±µ²µ³µ´µµµ¶µ·µ¸µ¹µºµ»µ¼µ½µ¾ +0x8fb5c0: µÀµÁµÂµÃµÄµÅµÆµÇµÈµÉµÊµËµÌµÍµÎµÏµÐµÑµÒµÓµÔµÕµÖµ×µØµÙµÚµÛµÜµÝµÞ +0x8fb5e0: µàµáµâµãµäµåµæµçµèµéµêµëµìµíµîµïµðµñµòµóµôµõµöµ÷µøµùµúµûµüµýµþ +0x8fb6a0: ¶¡¶¢¶£¶¤¶¥¶¦¶§¶¨¶©¶ª¶«¶¬¶¶®¶¯¶°¶±¶²¶³¶´¶µ¶¶¶·¶¸¶¹¶º¶»¶¼¶½¶¾ +0x8fb6c0: ¶À¶Á¶Â¶Ã¶Ä¶Å¶Æ¶Ç¶È¶É¶Ê¶Ë¶Ì¶Í¶Î¶Ï¶Ð¶Ñ¶Ò¶Ó¶Ô¶Õ¶Ö¶×¶Ø¶Ù¶Ú¶Û¶Ü¶Ý¶Þ +0x8fb6e0: ¶à¶á¶â¶ã¶ä¶å¶æ¶ç¶è¶é¶ê¶ë¶ì¶í¶î¶ï¶ð¶ñ¶ò¶ó¶ô¶õ¶ö¶÷¶ø¶ù¶ú¶û¶ü¶ý¶þ +0x8fb7a0: ·¡·¢·£·¤·¥·¦·§·¨·©·ª·«·¬··®·¯·°·±·²·³·´·µ·¶···¸·¹·º·»·¼·½·¾ +0x8fb7c0: ·À·Á·Â·Ã·Ä·Å·Æ·Ç·È·É·Ê·Ë·Ì·Í·Î·Ï·Ð·Ñ·Ò·Ó·Ô·Õ·Ö·×·Ø·Ù·Ú·Û·Ü·Ý·Þ +0x8fb7e0: ·à·á·â·ã·ä·å·æ·ç·è·é·ê·ë·ì·í·î·ï·ð·ñ·ò·ó·ô·õ·ö·÷·ø·ù·ú·û·ü·ý·þ +0x8fb8a0: ¸¡¸¢¸£¸¤¸¥¸¦¸§¸¨¸©¸ª¸«¸¬¸¸®¸¯¸°¸±¸²¸³¸´¸µ¸¶¸·¸¸¸¹¸º¸»¸¼¸½¸¾ +0x8fb8c0: ¸À¸Á¸Â¸Ã¸Ä¸Å¸Æ¸Ç¸È¸É¸Ê¸Ë¸Ì¸Í¸Î¸Ï¸Ð¸Ñ¸Ò¸Ó¸Ô¸Õ¸Ö¸×¸Ø¸Ù¸Ú¸Û¸Ü¸Ý¸Þ +0x8fb8e0: ¸à¸á¸â¸ã¸ä¸å¸æ¸ç¸è¸é¸ê¸ë¸ì¸í¸î¸ï¸ð¸ñ¸ò¸ó¸ô¸õ¸ö¸÷¸ø¸ù¸ú¸û¸ü¸ý¸þ +0x8fb9a0: ¹¡¹¢¹£¹¤¹¥¹¦¹§¹¨¹©¹ª¹«¹¬¹¹®¹¯¹°¹±¹²¹³¹´¹µ¹¶¹·¹¸¹¹¹º¹»¹¼¹½¹¾ +0x8fb9c0: ¹À¹Á¹Â¹Ã¹Ä¹Å¹Æ¹Ç¹È¹É¹Ê¹Ë¹Ì¹Í¹Î¹Ï¹Ð¹Ñ¹Ò¹Ó¹Ô¹Õ¹Ö¹×¹Ø¹Ù¹Ú¹Û¹Ü¹Ý¹Þ +0x8fb9e0: ¹à¹á¹â¹ã¹ä¹å¹æ¹ç¹è¹é¹ê¹ë¹ì¹í¹î¹ï¹ð¹ñ¹ò¹ó¹ô¹õ¹ö¹÷¹ø¹ù¹ú¹û¹ü¹ý¹þ +0x8fbaa0: º¡º¢º£º¤º¥º¦º§º¨º©ºªº«º¬ºº®º¯º°º±º²º³º´ºµº¶º·º¸º¹ººº»º¼º½º¾ +0x8fbac0: ºÀºÁºÂºÃºÄºÅºÆºÇºÈºÉºÊºËºÌºÍºÎºÏºÐºÑºÒºÓºÔºÕºÖº×ºØºÙºÚºÛºÜºÝºÞ +0x8fbae0: ºàºáºâºãºäºåºæºçºèºéºêºëºìºíºîºïºðºñºòºóºôºõºöº÷ºøºùºúºûºüºýºþ +0x8fbba0: »¡»¢»£»¤»¥»¦»§»¨»©»ª»«»¬»»®»¯»°»±»²»³»´»µ»¶»·»¸»¹»º»»»¼»½»¾ +0x8fbbc0: »À»Á»Â»Ã»Ä»Å»Æ»Ç»È»É»Ê»Ë»Ì»Í»Î»Ï»Ð»Ñ»Ò»Ó»Ô»Õ»Ö»×»Ø»Ù»Ú»Û»Ü»Ý»Þ +0x8fbbe0: »à»á»â»ã»ä»å»æ»ç»è»é»ê»ë»ì»í»î»ï»ð»ñ»ò»ó»ô»õ»ö»÷»ø»ù»ú»û»ü»ý»þ +0x8fbca0: ¼¡¼¢¼£¼¤¼¥¼¦¼§¼¨¼©¼ª¼«¼¬¼¼®¼¯¼°¼±¼²¼³¼´¼µ¼¶¼·¼¸¼¹¼º¼»¼¼¼½¼¾ +0x8fbcc0: ¼À¼Á¼Â¼Ã¼Ä¼Å¼Æ¼Ç¼È¼É¼Ê¼Ë¼Ì¼Í¼Î¼Ï¼Ð¼Ñ¼Ò¼Ó¼Ô¼Õ¼Ö¼×¼Ø¼Ù¼Ú¼Û¼Ü¼Ý¼Þ +0x8fbce0: ¼à¼á¼â¼ã¼ä¼å¼æ¼ç¼è¼é¼ê¼ë¼ì¼í¼î¼ï¼ð¼ñ¼ò¼ó¼ô¼õ¼ö¼÷¼ø¼ù¼ú¼û¼ü¼ý¼þ +0x8fbda0: ½¡½¢½£½¤½¥½¦½§½¨½©½ª½«½¬½½®½¯½°½±½²½³½´½µ½¶½·½¸½¹½º½»½¼½½½¾ +0x8fbdc0: ½À½Á½Â½Ã½Ä½Å½Æ½Ç½È½É½Ê½Ë½Ì½Í½Î½Ï½Ð½Ñ½Ò½Ó½Ô½Õ½Ö½×½Ø½Ù½Ú½Û½Ü½Ý½Þ +0x8fbde0: ½à½á½â½ã½ä½å½æ½ç½è½é½ê½ë½ì½í½î½ï½ð½ñ½ò½ó½ô½õ½ö½÷½ø½ù½ú½û½ü½ý½þ +0x8fbea0: ¾¡¾¢¾£¾¤¾¥¾¦¾§¾¨¾©¾ª¾«¾¬¾¾®¾¯¾°¾±¾²¾³¾´¾µ¾¶¾·¾¸¾¹¾º¾»¾¼¾½¾¾ +0x8fbec0: ¾À¾Á¾Â¾Ã¾Ä¾Å¾Æ¾Ç¾È¾É¾Ê¾Ë¾Ì¾Í¾Î¾Ï¾Ð¾Ñ¾Ò¾Ó¾Ô¾Õ¾Ö¾×¾Ø¾Ù¾Ú¾Û¾Ü¾Ý¾Þ +0x8fbee0: ¾à¾á¾â¾ã¾ä¾å¾æ¾ç¾è¾é¾ê¾ë¾ì¾í¾î¾ï¾ð¾ñ¾ò¾ó¾ô¾õ¾ö¾÷¾ø¾ù¾ú¾û¾ü¾ý¾þ +0x8fbfa0: ¿¡¿¢¿£¿¤¿¥¿¦¿§¿¨¿©¿ª¿«¿¬¿¿®¿¯¿°¿±¿²¿³¿´¿µ¿¶¿·¿¸¿¹¿º¿»¿¼¿½¿¾ +0x8fbfc0: ¿À¿Á¿Â¿Ã¿Ä¿Å¿Æ¿Ç¿È¿É¿Ê¿Ë¿Ì¿Í¿Î¿Ï¿Ð¿Ñ¿Ò¿Ó¿Ô¿Õ¿Ö¿×¿Ø¿Ù¿Ú¿Û¿Ü¿Ý¿Þ +0x8fbfe0: ¿à¿á¿â¿ã¿ä¿å¿æ¿ç¿è¿é¿ê¿ë¿ì¿í¿î¿ï¿ð¿ñ¿ò¿ó¿ô¿õ¿ö¿÷¿ø¿ù¿ú¿û¿ü¿ý¿þ +0x8fc0a0: À¡À¢À£À¤À¥À¦À§À¨À©ÀªÀ«À¬ÀÀ®À¯À°À±À²À³À´ÀµÀ¶À·À¸À¹ÀºÀ»À¼À½À¾ +0x8fc0c0: ÀÀÀÁÀÂÀÃÀÄÀÅÀÆÀÇÀÈÀÉÀÊÀËÀÌÀÍÀÎÀÏÀÐÀÑÀÒÀÓÀÔÀÕÀÖÀ×ÀØÀÙÀÚÀÛÀÜÀÝÀÞ +0x8fc0e0: ÀàÀáÀâÀãÀäÀåÀæÀçÀèÀéÀêÀëÀìÀíÀîÀïÀðÀñÀòÀóÀôÀõÀöÀ÷ÀøÀùÀúÀûÀüÀýÀþ +0x8fc1a0: Á¡Á¢Á£Á¤Á¥Á¦Á§Á¨Á©ÁªÁ«Á¬ÁÁ®Á¯Á°Á±Á²Á³Á´ÁµÁ¶Á·Á¸Á¹ÁºÁ»Á¼Á½Á¾ +0x8fc1c0: ÁÀÁÁÁÂÁÃÁÄÁÅÁÆÁÇÁÈÁÉÁÊÁËÁÌÁÍÁÎÁÏÁÐÁÑÁÒÁÓÁÔÁÕÁÖÁ×ÁØÁÙÁÚÁÛÁÜÁÝÁÞ +0x8fc1e0: ÁàÁáÁâÁãÁäÁåÁæÁçÁèÁéÁêÁëÁìÁíÁîÁïÁðÁñÁòÁóÁôÁõÁöÁ÷ÁøÁùÁúÁûÁüÁýÁþ +0x8fc2a0: ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾ +0x8fc2c0: ÂÀÂÁÂÂÂÃÂÄÂÅÂÆÂÇÂÈÂÉÂÊÂËÂÌÂÍÂÎÂÏÂÐÂÑÂÒÂÓÂÔÂÕÂÖÂ×ÂØÂÙÂÚÂÛÂÜÂÝÂÞ +0x8fc2e0: ÂàÂáÂâÂãÂäÂåÂæÂçÂèÂéÂêÂëÂìÂíÂîÂïÂðÂñÂòÂóÂôÂõÂöÂ÷ÂøÂùÂúÂûÂüÂýÂþ +0x8fc3a0: áâãäåæçèéêëìÃîïðñòóôõö÷øùúûüýþ +0x8fc3c0: ÃÀÃÁÃÂÃÃÃÄÃÅÃÆÃÇÃÈÃÉÃÊÃËÃÌÃÍÃÎÃÏÃÐÃÑÃÒÃÓÃÔÃÕÃÖÃ×ÃØÃÙÃÚÃÛÃÜÃÝÃÞ +0x8fc3e0: ÃàÃáÃâÃãÃäÃåÃæÃçÃèÃéÃêÃëÃìÃíÃîÃïÃðÃñÃòÃóÃôÃõÃöÃ÷ÃøÃùÃúÃûÃüÃýÃþ +0x8fc4a0: ġĢģĤĥĦħĨĩĪīĬÄĮįİıIJijĴĵĶķĸĹĺĻļĽľ +0x8fc4c0: ÄÀÄÁÄÂÄÃÄÄÄÅÄÆÄÇÄÈÄÉÄÊÄËÄÌÄÍÄÎÄÏÄÐÄÑÄÒÄÓÄÔÄÕÄÖÄ×ÄØÄÙÄÚÄÛÄÜÄÝÄÞ +0x8fc4e0: ÄàÄáÄâÄãÄäÄåÄæÄçÄèÄéÄêÄëÄìÄíÄîÄïÄðÄñÄòÄóÄôÄõÄöÄ÷ÄøÄùÄúÄûÄüÄýÄþ +0x8fc5a0: šŢţŤťŦŧŨũŪūŬÅŮůŰűŲųŴŵŶŷŸŹźŻżŽž +0x8fc5c0: ÅÀÅÁÅÂÅÃÅÄÅÅÅÆÅÇÅÈÅÉÅÊÅËÅÌÅÍÅÎÅÏÅÐÅÑÅÒÅÓÅÔÅÕÅÖÅ×ÅØÅÙÅÚÅÛÅÜÅÝÅÞ +0x8fc5e0: ÅàÅáÅâÅãÅäÅåÅæÅçÅèÅéÅêÅëÅìÅíÅîÅïÅðÅñÅòÅóÅôÅõÅöÅ÷ÅøÅùÅúÅûÅüÅýÅþ +0x8fc6a0: Æ¡Æ¢Æ£Æ¤Æ¥Æ¦Æ§Æ¨Æ©ÆªÆ«Æ¬ÆÆ®Æ¯Æ°Æ±Æ²Æ³Æ´ÆµÆ¶Æ·Æ¸Æ¹ÆºÆ»Æ¼Æ½Æ¾ +0x8fc6c0: ÆÀÆÁÆÂÆÃÆÄÆÅÆÆÆÇÆÈÆÉÆÊÆËÆÌÆÍÆÎÆÏÆÐÆÑÆÒÆÓÆÔÆÕÆÖÆ×ÆØÆÙÆÚÆÛÆÜÆÝÆÞ +0x8fc6e0: ÆàÆáÆâÆãÆäÆåÆæÆçÆèÆéÆêÆëÆìÆíÆîÆïÆðÆñÆòÆóÆôÆõÆöÆ÷ÆøÆùÆúÆûÆüÆýÆþ +0x8fc7a0: ǡǢǣǤǥǦǧǨǩǪǫǬÇǮǯǰDZDzdzǴǵǶǷǸǹǺǻǼǽǾ +0x8fc7c0: ÇÀÇÁÇÂÇÃÇÄÇÅÇÆÇÇÇÈÇÉÇÊÇËÇÌÇÍÇÎÇÏÇÐÇÑÇÒÇÓÇÔÇÕÇÖÇ×ÇØÇÙÇÚÇÛÇÜÇÝÇÞ +0x8fc7e0: ÇàÇáÇâÇãÇäÇåÇæÇçÇèÇéÇêÇëÇìÇíÇîÇïÇðÇñÇòÇóÇôÇõÇöÇ÷ÇøÇùÇúÇûÇüÇýÇþ +0x8fc8a0: ȡȢȣȤȥȦȧȨȩȪȫȬÈȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾ +0x8fc8c0: ÈÀÈÁÈÂÈÃÈÄÈÅÈÆÈÇÈÈÈÉÈÊÈËÈÌÈÍÈÎÈÏÈÐÈÑÈÒÈÓÈÔÈÕÈÖÈ×ÈØÈÙÈÚÈÛÈÜÈÝÈÞ +0x8fc8e0: ÈàÈáÈâÈãÈäÈåÈæÈçÈèÈéÈêÈëÈìÈíÈîÈïÈðÈñÈòÈóÈôÈõÈöÈ÷ÈøÈùÈúÈûÈüÈýÈþ +0x8fc9a0: ɡɢɣɤɥɦɧɨɩɪɫɬÉɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾ +0x8fc9c0: ÉÀÉÁÉÂÉÃÉÄÉÅÉÆÉÇÉÈÉÉÉÊÉËÉÌÉÍÉÎÉÏÉÐÉÑÉÒÉÓÉÔÉÕÉÖÉ×ÉØÉÙÉÚÉÛÉÜÉÝÉÞ +0x8fc9e0: ÉàÉáÉâÉãÉäÉåÉæÉçÉèÉéÉêÉëÉìÉíÉîÉïÉðÉñÉòÉóÉôÉõÉöÉ÷ÉøÉùÉúÉûÉüÉýÉþ +0x8fcaa0: ʡʢʣʤʥʦʧʨʩʪʫʬÊʮʯʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾ +0x8fcac0: ÊÀÊÁÊÂÊÃÊÄÊÅÊÆÊÇÊÈÊÉÊÊÊËÊÌÊÍÊÎÊÏÊÐÊÑÊÒÊÓÊÔÊÕÊÖÊ×ÊØÊÙÊÚÊÛÊÜÊÝÊÞ +0x8fcae0: ÊàÊáÊâÊãÊäÊåÊæÊçÊèÊéÊêÊëÊìÊíÊîÊïÊðÊñÊòÊóÊôÊõÊöÊ÷ÊøÊùÊúÊûÊüÊýÊþ +0x8fcba0: ˡˢˣˤ˥˦˧˨˩˪˫ˬËˮ˯˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾ +0x8fcbc0: ËÀËÁËÂËÃËÄËÅËÆËÇËÈËÉËÊËËËÌËÍËÎËÏËÐËÑËÒËÓËÔËÕËÖË×ËØËÙËÚËÛËÜËÝËÞ +0x8fcbe0: ËàËáËâËãËäËåËæËçËèËéËêËëËìËíËîËïËðËñËòËóËôËõËöË÷ËøËùËúËûËüËýËþ +0x8fcca0: ̡̢̧̨̣̤̥̦̩̪̫̬Ì̴̵̶̷̸̮̯̰̱̲̳̹̺̻̼̽̾ +0x8fccc0: ÌÀÌÁÌÂÌÃÌÄÌÅÌÆÌÇÌÈÌÉÌÊÌËÌÌÌÍÌÎÌÏÌÐÌÑÌÒÌÓÌÔÌÕÌÖÌ×ÌØÌÙÌÚÌÛÌÜÌÝÌÞ +0x8fcce0: ÌàÌáÌâÌãÌäÌåÌæÌçÌèÌéÌêÌëÌìÌíÌîÌïÌðÌñÌòÌóÌôÌõÌöÌ÷ÌøÌùÌúÌûÌüÌýÌþ +0x8fcda0: ͣͤͥͦͧͨͩͪͫͬ͢͡ÍͮͯͰͱͲͳʹ͵Ͷͷ͸͹ͺͻͼͽ; +0x8fcdc0: ÍÀÍÁÍÂÍÃÍÄÍÅÍÆÍÇÍÈÍÉÍÊÍËÍÌÍÍÍÎÍÏÍÐÍÑÍÒÍÓÍÔÍÕÍÖÍ×ÍØÍÙÍÚÍÛÍÜÍÝÍÞ +0x8fcde0: ÍàÍáÍâÍãÍäÍåÍæÍçÍèÍéÍêÍëÍìÍíÍîÍïÍðÍñÍòÍóÍôÍõÍöÍ÷ÍøÍùÍúÍûÍüÍýÍþ +0x8fcea0: Ρ΢ΣΤΥΦΧΨΩΪΫάÎήίΰαβγδεζηθικλμνξ +0x8fcec0: ÎÀÎÁÎÂÎÃÎÄÎÅÎÆÎÇÎÈÎÉÎÊÎËÎÌÎÍÎÎÎÏÎÐÎÑÎÒÎÓÎÔÎÕÎÖÎ×ÎØÎÙÎÚÎÛÎÜÎÝÎÞ +0x8fcee0: ÎàÎáÎâÎãÎäÎåÎæÎçÎèÎéÎêÎëÎìÎíÎîÎïÎðÎñÎòÎóÎôÎõÎöÎ÷ÎøÎùÎúÎûÎüÎýÎþ +0x8fcfa0: ϡϢϣϤϥϦϧϨϩϪϫϬÏϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾ +0x8fcfc0: ÏÀÏÁÏÂÏÃÏÄÏÅÏÆÏÇÏÈÏÉÏÊÏËÏÌÏÍÏÎÏÏÏÐÏÑÏÒÏÓÏÔÏÕÏÖÏ×ÏØÏÙÏÚÏÛÏÜÏÝÏÞ +0x8fcfe0: ÏàÏáÏâÏãÏäÏåÏæÏçÏèÏéÏêÏëÏìÏíÏîÏïÏðÏñÏòÏóÏôÏõÏöÏ÷ÏøÏùÏúÏûÏüÏýÏþ +0x8fd0a0: СТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмно +0x8fd0c0: ÐÀÐÁÐÂÐÃÐÄÐÅÐÆÐÇÐÈÐÉÐÊÐËÐÌÐÍÐÎÐÏÐÐÐÑÐÒÐÓÐÔÐÕÐÖÐ×ÐØÐÙÐÚÐÛÐÜÐÝÐÞ +0x8fd0e0: ÐàÐáÐâÐãÐäÐåÐæÐçÐèÐéÐêÐëÐìÐíÐîÐïÐðÐñÐòÐóÐôÐõÐöÐ÷ÐøÐùÐúÐûÐüÐýÐþ +0x8fd1a0: ѡѢѣѤѥѦѧѨѩѪѫѬÑѮѯѰѱѲѳѴѵѶѷѸѹѺѻѼѽѾ +0x8fd1c0: ÑÀÑÁÑÂÑÃÑÄÑÅÑÆÑÇÑÈÑÉÑÊÑËÑÌÑÍÑÎÑÏÑÐÑÑÑÒÑÓÑÔÑÕÑÖÑ×ÑØÑÙÑÚÑÛÑÜÑÝÑÞ +0x8fd1e0: ÑàÑáÑâÑãÑäÑåÑæÑçÑèÑéÑêÑëÑìÑíÑîÑïÑðÑñÑòÑóÑôÑõÑöÑ÷ÑøÑùÑúÑûÑüÑýÑþ +0x8fd2a0: Ò¡Ò¢Ò£Ò¤Ò¥Ò¦Ò§Ò¨Ò©ÒªÒ«Ò¬ÒÒ®Ò¯Ò°Ò±Ò²Ò³Ò´ÒµÒ¶Ò·Ò¸Ò¹ÒºÒ»Ò¼Ò½Ò¾ +0x8fd2c0: ÒÀÒÁÒÂÒÃÒÄÒÅÒÆÒÇÒÈÒÉÒÊÒËÒÌÒÍÒÎÒÏÒÐÒÑÒÒÒÓÒÔÒÕÒÖÒ×ÒØÒÙÒÚÒÛÒÜÒÝÒÞ +0x8fd2e0: ÒàÒáÒâÒãÒäÒåÒæÒçÒèÒéÒêÒëÒìÒíÒîÒïÒðÒñÒòÒóÒôÒõÒöÒ÷ÒøÒùÒúÒûÒüÒýÒþ +0x8fd3a0: Ó¡Ó¢Ó£Ó¤Ó¥Ó¦Ó§Ó¨Ó©ÓªÓ«Ó¬ÓÓ®Ó¯Ó°Ó±Ó²Ó³Ó´ÓµÓ¶Ó·Ó¸Ó¹ÓºÓ»Ó¼Ó½Ó¾ +0x8fd3c0: ÓÀÓÁÓÂÓÃÓÄÓÅÓÆÓÇÓÈÓÉÓÊÓËÓÌÓÍÓÎÓÏÓÐÓÑÓÒÓÓÓÔÓÕÓÖÓ×ÓØÓÙÓÚÓÛÓÜÓÝÓÞ +0x8fd3e0: ÓàÓáÓâÓãÓäÓåÓæÓçÓèÓéÓêÓëÓìÓíÓîÓïÓðÓñÓòÓóÓôÓõÓöÓ÷ÓøÓùÓúÓûÓüÓýÓþ +0x8fd4a0: Ô¡Ô¢Ô£Ô¤Ô¥Ô¦Ô§Ô¨Ô©ÔªÔ«Ô¬ÔÔ®Ô¯Ô°Ô±Ô²Ô³Ô´ÔµÔ¶Ô·Ô¸Ô¹ÔºÔ»Ô¼Ô½Ô¾ +0x8fd4c0: ÔÀÔÁÔÂÔÃÔÄÔÅÔÆÔÇÔÈÔÉÔÊÔËÔÌÔÍÔÎÔÏÔÐÔÑÔÒÔÓÔÔÔÕÔÖÔ×ÔØÔÙÔÚÔÛÔÜÔÝÔÞ +0x8fd4e0: ÔàÔáÔâÔãÔäÔåÔæÔçÔèÔéÔêÔëÔìÔíÔîÔïÔðÔñÔòÔóÔôÔõÔöÔ÷ÔøÔùÔúÔûÔüÔýÔþ +0x8fd5a0: Õ¡Õ¢Õ£Õ¤Õ¥Õ¦Õ§Õ¨Õ©ÕªÕ«Õ¬ÕÕ®Õ¯Õ°Õ±Õ²Õ³Õ´ÕµÕ¶Õ·Õ¸Õ¹ÕºÕ»Õ¼Õ½Õ¾ +0x8fd5c0: ÕÀÕÁÕÂÕÃÕÄÕÅÕÆÕÇÕÈÕÉÕÊÕËÕÌÕÍÕÎÕÏÕÐÕÑÕÒÕÓÕÔÕÕÕÖÕ×ÕØÕÙÕÚÕÛÕÜÕÝÕÞ +0x8fd5e0: ÕàÕáÕâÕãÕäÕåÕæÕçÕèÕéÕêÕëÕìÕíÕîÕïÕðÕñÕòÕóÕôÕõÕöÕ÷ÕøÕùÕúÕûÕüÕýÕþ +0x8fd6a0: Ö¡Ö¢Ö£Ö¤Ö¥Ö¦Ö§Ö¨Ö©ÖªÖ«Ö¬ÖÖ®Ö¯Ö°Ö±Ö²Ö³Ö´ÖµÖ¶Ö·Ö¸Ö¹ÖºÖ»Ö¼Ö½Ö¾ +0x8fd6c0: ÖÀÖÁÖÂÖÃÖÄÖÅÖÆÖÇÖÈÖÉÖÊÖËÖÌÖÍÖÎÖÏÖÐÖÑÖÒÖÓÖÔÖÕÖÖÖ×ÖØÖÙÖÚÖÛÖÜÖÝÖÞ +0x8fd6e0: ÖàÖáÖâÖãÖäÖåÖæÖçÖèÖéÖêÖëÖìÖíÖîÖïÖðÖñÖòÖóÖôÖõÖöÖ÷ÖøÖùÖúÖûÖüÖýÖþ +0x8fd7a0: סעףפץצקרשת׫׬×׮ׯװױײ׳״׵׶׷׸׹׺׻׼׽׾ +0x8fd7c0: ×À×Á×Â×Ã×Ä×Åׯ×Ç×È×É×Ê×Ë×Ì×Í×Î×Ï×Ð×Ñ×Ò×Ó×Ô×Õ×Ö××ר×Ù×Ú×Û×Ü×Ý×Þ +0x8fd7e0: ×à×á×â×ã×ä×å׿×ç×è×é×ê×ë×ì×í×î×ï×ð×ñ×ò×ó×ô×õ×ö×÷×ø×ù×ú×û×ü×ý×þ +0x8fd8a0: Ø¡Ø¢Ø£Ø¤Ø¥Ø¦Ø§Ø¨Ø©ØªØ«Ø¬ØØ®Ø¯Ø°Ø±Ø²Ø³Ø´ØµØ¶Ø·Ø¸Ø¹ØºØ»Ø¼Ø½Ø¾ +0x8fd8c0: ØÀØÁØÂØÃØÄØÅØÆØÇØÈØÉØÊØËØÌØÍØÎØÏØÐØÑØÒØÓØÔØÕØÖØ×ØØØÙØÚØÛØÜØÝØÞ +0x8fd8e0: ØàØáØâØãØäØåØæØçØèØéØêØëØìØíØîØïØðØñØòØóØôØõØöØ÷ØøØùØúØûØüØýØþ +0x8fd9a0: ١٢٣٤٥٦٧٨٩٪٫٬Ùٮٯٰٱٲٳٴٵٶٷٸٹٺٻټٽپ +0x8fd9c0: ÙÀÙÁÙÂÙÃÙÄÙÅÙÆÙÇÙÈÙÉÙÊÙËÙÌÙÍÙÎÙÏÙÐÙÑÙÒÙÓÙÔÙÕÙÖÙ×ÙØÙÙÙÚÙÛÙÜÙÝÙÞ +0x8fd9e0: ÙàÙáÙâÙãÙäÙåÙæÙçÙèÙéÙêÙëÙìÙíÙîÙïÙðÙñÙòÙóÙôÙõÙöÙ÷ÙøÙùÙúÙûÙüÙýÙþ +0x8fdaa0: Ú¡Ú¢Ú£Ú¤Ú¥Ú¦Ú§Ú¨Ú©ÚªÚ«Ú¬ÚÚ®Ú¯Ú°Ú±Ú²Ú³Ú´ÚµÚ¶Ú·Ú¸Ú¹ÚºÚ»Ú¼Ú½Ú¾ +0x8fdac0: ÚÀÚÁÚÂÚÃÚÄÚÅÚÆÚÇÚÈÚÉÚÊÚËÚÌÚÍÚÎÚÏÚÐÚÑÚÒÚÓÚÔÚÕÚÖÚ×ÚØÚÙÚÚÚÛÚÜÚÝÚÞ +0x8fdae0: ÚàÚáÚâÚãÚäÚåÚæÚçÚèÚéÚêÚëÚìÚíÚîÚïÚðÚñÚòÚóÚôÚõÚöÚ÷ÚøÚùÚúÚûÚüÚýÚþ +0x8fdba0: Û¡Û¢Û£Û¤Û¥Û¦Û§Û¨Û©ÛªÛ«Û¬ÛÛ®Û¯Û°Û±Û²Û³Û´ÛµÛ¶Û·Û¸Û¹ÛºÛ»Û¼Û½Û¾ +0x8fdbc0: ÛÀÛÁÛÂÛÃÛÄÛÅÛÆÛÇÛÈÛÉÛÊÛËÛÌÛÍÛÎÛÏÛÐÛÑÛÒÛÓÛÔÛÕÛÖÛ×ÛØÛÙÛÚÛÛÛÜÛÝÛÞ +0x8fdbe0: ÛàÛáÛâÛãÛäÛåÛæÛçÛèÛéÛêÛëÛìÛíÛîÛïÛðÛñÛòÛóÛôÛõÛöÛ÷ÛøÛùÛúÛûÛüÛýÛþ +0x8fdca0: ܡܢܣܤܥܦܧܨܩܪܫܬÜܮܯܱܴܷܸܹܻܼܾܰܲܳܵܶܺܽ +0x8fdcc0: ÜÀÜÁÜÂÜÃÜÄÜÅÜÆÜÇÜÈÜÉÜÊÜËÜÌÜÍÜÎÜÏÜÐÜÑÜÒÜÓÜÔÜÕÜÖÜ×ÜØÜÙÜÚÜÛÜÜÜÝÜÞ +0x8fdce0: ÜàÜáÜâÜãÜäÜåÜæÜçÜèÜéÜêÜëÜìÜíÜîÜïÜðÜñÜòÜóÜôÜõÜöÜ÷ÜøÜùÜúÜûÜüÜýÜþ +0x8fdda0: ݡݢݣݤݥݦݧݨݩݪݫݬÝݮݯݰݱݲݳݴݵݶݷݸݹݺݻݼݽݾ +0x8fddc0: ÝÀÝÁÝÂÝÃÝÄÝÅÝÆÝÇÝÈÝÉÝÊÝËÝÌÝÍÝÎÝÏÝÐÝÑÝÒÝÓÝÔÝÕÝÖÝ×ÝØÝÙÝÚÝÛÝÜÝÝÝÞ +0x8fdde0: ÝàÝáÝâÝãÝäÝåÝæÝçÝèÝéÝêÝëÝìÝíÝîÝïÝðÝñÝòÝóÝôÝõÝöÝ÷ÝøÝùÝúÝûÝüÝýÝþ +0x8fdea0: Þ¡Þ¢Þ£Þ¤Þ¥Þ¦Þ§Þ¨Þ©ÞªÞ«Þ¬ÞÞ®Þ¯Þ°Þ±Þ²Þ³Þ´ÞµÞ¶Þ·Þ¸Þ¹ÞºÞ»Þ¼Þ½Þ¾ +0x8fdec0: ÞÀÞÁÞÂÞÃÞÄÞÅÞÆÞÇÞÈÞÉÞÊÞËÞÌÞÍÞÎÞÏÞÐÞÑÞÒÞÓÞÔÞÕÞÖÞ×ÞØÞÙÞÚÞÛÞÜÞÝÞÞ +0x8fdee0: ÞàÞáÞâÞãÞäÞåÞæÞçÞèÞéÞêÞëÞìÞíÞîÞïÞðÞñÞòÞóÞôÞõÞöÞ÷ÞøÞùÞúÞûÞüÞýÞþ +0x8fdfa0: ߡߢߣߤߥߦߧߨߩߪ߫߬ß߲߮߯߰߱߳ߴߵ߶߷߸߹ߺ߻߼߽߾ +0x8fdfc0: ßÀßÁßÂßÃßÄßÅ߯ßÇßÈßÉßÊßËßÌßÍßÎßÏßÐßÑßÒßÓßÔßÕßÖß×ߨßÙßÚßÛßÜßÝßÞ +0x8fdfe0: ßàßáßâßãßäßåßæßçßèßéßêßëßìßíßîßïßðßñßòßóßôßõßöß÷ßøßùßúßûßüßýßþ +0x8fe0a0: à¡à¢à£à¤à¥à¦à§à¨à©àªà«à¬àà®à¯à°à±à²à³à´àµà¶à·à¸à¹àºà»à¼à½à¾ +0x8fe0c0: àÀàÁàÂàÃàÄàÅàÆàÇàÈàÉàÊàËàÌàÍàÎàÏàÐàÑàÒàÓàÔàÕàÖà×àØàÙàÚàÛàÜàÝàÞ +0x8fe0e0: àààáàâàãàäàåàæàçàèàéàêàëàìàíàîàïàðàñàòàóàôàõàöà÷àøàùàúàûàüàýàþ +0x8fe1a0: á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬áá®á¯á°á±á²á³á´áµá¶á·á¸á¹áºá»á¼á½á¾ +0x8fe1c0: áÀáÁáÂáÃáÄáÅáÆáÇáÈáÉáÊáËáÌáÍáÎáÏáÐáÑáÒáÓáÔáÕáÖá×áØáÙáÚáÛáÜáÝáÞ +0x8fe1e0: áàáááâáãáäáåáæáçáèáéáêáëáìáíáîáïáðáñáòáóáôáõáöá÷áøáùáúáûáüáýáþ +0x8fe2a0: â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬ââ®â¯â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½â¾ +0x8fe2c0: âÀâÁâÂâÃâÄâÅâÆâÇâÈâÉâÊâËâÌâÍâÎâÏâÐâÑâÒâÓâÔâÕâÖâ×âØâÙâÚâÛâÜâÝâÞ +0x8fe2e0: âàâáâââãâäâåâæâçâèâéâêâëâìâíâîâïâðâñâòâóâôâõâöâ÷âøâùâúâûâüâýâþ +0x8fe3a0: ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ãã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ +0x8fe3c0: ãÀãÁãÂãÃãÄãÅãÆãÇãÈãÉãÊãËãÌãÍãÎãÏãÐãÑãÒãÓãÔãÕãÖã×ãØãÙãÚãÛãÜãÝãÞ +0x8fe3e0: ãàãáãâãããäãåãæãçãèãéãêãëãìãíãîãïãðãñãòãóãôãõãöã÷ãøãùãúãûãüãýãþ +0x8fe4a0: ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ää®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ +0x8fe4c0: äÀäÁäÂäÃäÄäÅäÆäÇäÈäÉäÊäËäÌäÍäÎäÏäÐäÑäÒäÓäÔäÕäÖä×äØäÙäÚäÛäÜäÝäÞ +0x8fe4e0: äàäáäâäãäääåäæäçäèäéäêäëäìäíäîäïäðäñäòäóäôäõäöä÷äøäùäúäûäüäýäþ +0x8fe5a0: å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬åå®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾ +0x8fe5c0: åÀåÁåÂåÃåÄåÅåÆåÇåÈåÉåÊåËåÌåÍåÎåÏåÐåÑåÒåÓåÔåÕåÖå×åØåÙåÚåÛåÜåÝåÞ +0x8fe5e0: åàåáåâåãåäåååæåçåèåéåêåëåìåíåîåïåðåñåòåóåôåõåöå÷åøåùåúåûåüåýåþ +0x8fe6a0: æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬ææ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾ +0x8fe6c0: æÀæÁæÂæÃæÄæÅæÆæÇæÈæÉæÊæËæÌæÍæÎæÏæÐæÑæÒæÓæÔæÕæÖæ×æØæÙæÚæÛæÜæÝæÞ +0x8fe6e0: æàæáæâæãæäæåæææçæèæéæêæëæìæíæîæïæðæñæòæóæôæõæöæ÷æøæùæúæûæüæýæþ +0x8fe7a0: ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬çç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ +0x8fe7c0: çÀçÁçÂçÃçÄçÅçÆçÇçÈçÉçÊçËçÌçÍçÎçÏçÐçÑçÒçÓçÔçÕçÖç×çØçÙçÚçÛçÜçÝçÞ +0x8fe7e0: çàçáçâçãçäçåçæçççèçéçêçëçìçíçîçïçðçñçòçóçôçõçöç÷çøçùçúçûçüçýçþ +0x8fe8a0: è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬èè®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾ +0x8fe8c0: èÀèÁèÂèÃèÄèÅèÆèÇèÈèÉèÊèËèÌèÍèÎèÏèÐèÑèÒèÓèÔèÕèÖè×èØèÙèÚèÛèÜèÝèÞ +0x8fe8e0: èàèáèâèãèäèåèæèçèèèéèêèëèìèíèîèïèðèñèòèóèôèõèöè÷èøèùèúèûèüèýèþ +0x8fe9a0: é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬éé®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾ +0x8fe9c0: éÀéÁéÂéÃéÄéÅéÆéÇéÈéÉéÊéËéÌéÍéÎéÏéÐéÑéÒéÓéÔéÕéÖé×éØéÙéÚéÛéÜéÝéÞ +0x8fe9e0: éàéáéâéãéäéåéæéçéèéééêéëéìéíéîéïéðéñéòéóéôéõéöé÷éøéùéúéûéüéýéþ +0x8feaa0: ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬êê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ +0x8feac0: êÀêÁêÂêÃêÄêÅêÆêÇêÈêÉêÊêËêÌêÍêÎêÏêÐêÑêÒêÓêÔêÕêÖê×êØêÙêÚêÛêÜêÝêÞ +0x8feae0: êàêáêâêãêäêåêæêçêèêéêêêëêìêíêîêïêðêñêòêóêôêõêöê÷êøêùêúêûêüêýêþ +0x8feba0: ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ëë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ +0x8febc0: ëÀëÁëÂëÃëÄëÅëÆëÇëÈëÉëÊëËëÌëÍëÎëÏëÐëÑëÒëÓëÔëÕëÖë×ëØëÙëÚëÛëÜëÝëÞ +0x8febe0: ëàëáëâëãëäëåëæëçëèëéëêëëëìëíëîëïëðëñëòëóëôëõëöë÷ëøëùëúëûëüëýëþ +0x8feca0: ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ìì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ +0x8fecc0: ìÀìÁìÂìÃìÄìÅìÆìÇìÈìÉìÊìËìÌìÍìÎìÏìÐìÑìÒìÓìÔìÕìÖì×ìØìÙìÚìÛìÜìÝìÞ +0x8fece0: ìàìáìâìãìäìåìæìçìèìéìêìëìììíìîìïìðìñìòìóìôìõìöì÷ìøìùìúìûìüìýìþ +0x8feda0: í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬íí®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾ +0x8fedc0: íÀíÁíÂíÃíÄíÅíÆíÇíÈíÉíÊíËíÌíÍíÎíÏíÐíÑíÒíÓíÔíÕíÖí×íØíÙíÚíÛíÜíÝíÞ +0x8fede0: íàíáíâíã +0x8feea0: +0x8feec0: +0x8feee0: +0x8fefa0: +0x8fefc0: +0x8fefe0: +0x8ff0a0: +0x8ff0c0: +0x8ff0e0: +0x8ff1a0: +0x8ff1c0: +0x8ff1e0: +0x8ff2a0: +0x8ff2c0: +0x8ff2e0: +0x8ff3a0: +0x8ff3c0: +0x8ff3e0: +0x8ff4a0: +0x8ff4c0: +0x8ff4e0: +0x8ff5a0: +0x8ff5c0: +0x8ff5e0: +0x8ff6a0: +0x8ff6c0: +0x8ff6e0: +0x8ff7a0: +0x8ff7c0: +0x8ff7e0: +0x8ff8a0: +0x8ff8c0: +0x8ff8e0: +0x8ff9a0: +0x8ff9c0: +0x8ff9e0: +0x8ffaa0: +0x8ffac0: +0x8ffae0: +0x8ffba0: +0x8ffbc0: +0x8ffbe0: +0x8ffca0: +0x8ffcc0: +0x8ffce0: +0x8ffda0: +0x8ffdc0: +0x8ffde0: +0x8ffea0: +0x8ffec0: +0x8ffee0: +0x8fffa0: +0x8fffc0: +0x8fffe0: diff --git a/cpan/dist/Jcode/t/zenkaku.euc b/cpan/dist/Jcode/t/zenkaku.euc new file mode 100644 index 00000000..6fbf0fbd --- /dev/null +++ b/cpan/dist/Jcode/t/zenkaku.euc @@ -0,0 +1,6 @@ + ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > + @ A B C D E F G H I J K L M N O _ Q R S T U V W X Y Z [ \ ] ^ + ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ + ¥¡¥¢¥£¥¤¥¥¥¦¥§¥¨¥©¥ª¥«¥¬¥¥®¥¯¥°¥±¥²¥³¥´¥µ¥¶¥·¥¸¥¹¥º¥»¥¼¥½¥¾ +¥À¥Á¥Â¥Ã¥Ä¥Å¥Æ¥Ç¥È¥É¥Ê¥Ë¥Ì¥Í¥Î¥Ï¥Ð¥Ñ¥Ò¥Ó¥Ô¥Õ¥Ö¥×¥Ø¥Ù¥Ú¥Û¥Ü¥Ý¥Þ +¥à¥á¥â¥ã¥ä¥å¥æ¥ç¥è¥é¥ê¥ë¥ì¥í¥î¥ï¥ð¥ñ¥ò¥ó¥ô¡Ö¡£¡¢¡¬¡«¡× diff --git a/cpan/dist/Jcode/win_install.pl b/cpan/dist/Jcode/win_install.pl new file mode 100644 index 00000000..b388e1d8 --- /dev/null +++ b/cpan/dist/Jcode/win_install.pl @@ -0,0 +1,66 @@ +# +# Run this script once and you are all set! +# + +use strict; +use File::Path; +use File::Basename; + +my $install_dir = ""; + +for my $INC (@INC){ + if ($INC =~ /site/io){ + $install_dir = $INC; + last; + } +} + +unless ($install_dir) { + die qq(Please create 'site/lib' folder in ActivePerl folder!\n); +}else{ + warn "Ok. I'll install files in $install_dir folder.\n"; +} + +my @files = qw( + Jcode.pm + ); + +# push all files in Jcode directory; + +require "find.pl"; +&find('Jcode'); + +sub wanted { + no strict "vars"; + my ($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_); + return unless -f _; + push @files, $name; +} + + +for my $file (@files) { + my $src = $file; + open SRC, $src or die "$src:$!"; + my $buffer; + + my $dst = $install_dir . "/" . $file; + # $dst =~ s/:://og; + warn "Installing $src to $dst.\n"; + + my $dir = dirname($dst); + mkpath([$dir], 0755, 1) or die "$dir:$!" unless -d $dir; + open DST, ">$dst" or die "$dst:$!"; + + while(read SRC, $buffer, 32768) { + $buffer =~ s/\x0a/\x0d\x0a/og; + print DST $buffer; + } + + close SRC; close DST; + # MacPerl::SetFileInfo('McPL', 'TEXT', $dst); + +} + +warn "All scripts are installed successfully\n"; + +__END__ diff --git a/cpan/dist/MIME-Base64/Base64.pm b/cpan/dist/MIME-Base64/Base64.pm new file mode 100644 index 00000000..b1258b4c --- /dev/null +++ b/cpan/dist/MIME-Base64/Base64.pm @@ -0,0 +1,198 @@ +# +# $Id: Base64.pm,v 2.14 1999/02/27 20:40:04 gisle Exp $ + +package MIME::Base64; + +=head1 NAME + +MIME::Base64 - Encoding and decoding of base64 strings + +=head1 SYNOPSIS + + use MIME::Base64; + + $encoded = encode_base64('Aladdin:open sesame'); + $decoded = decode_base64($encoded); + +=head1 DESCRIPTION + +This module provides functions to encode and decode strings into the +Base64 encoding specified in RFC 2045 - I<MIME (Multipurpose Internet +Mail Extensions)>. The Base64 encoding is designed to represent +arbitrary sequences of octets in a form that need not be humanly +readable. A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, +enabling 6 bits to be represented per printable character. + +The following functions are provided: + +=over 4 + +=item encode_base64($str, [$eol]) + +Encode data by calling the encode_base64() function. The first +argument is the string to encode. The second argument is the line +ending sequence to use (it is optional and defaults to C<"\n">). The +returned encoded string is broken into lines of no more than 76 +characters each and it will end with $eol unless it is empty. Pass an +empty string as second argument if you do not want the encoded string +broken into lines. + +=item decode_base64($str) + +Decode a base64 string by calling the decode_base64() function. This +function takes a single argument which is the string to decode and +returns the decoded data. + +Any character not part of the 65-character base64 subset set is +silently ignored. Characters occuring after a '=' padding character +are never decoded. + +If the length of the string to decode (after ignoring +non-base64 chars) is not a multiple of 4 or padding occurs too ealy, +then a warning is generated if perl is running under C<-w>. + +=back + +If you prefer not to import these routines into your namespace you can +call them as: + + use MIME::Base64 (); + $encoded = MIME::Base64::encode($decoded); + $decoded = MIME::Base64::decode($encoded); + +=head1 DIAGNOSTICS + +The following warnings might be generated if perl is invoked with the +C<-w> switch: + +=over 4 + +=item Premature end of base64 data + +The number of characters to decode is not a multiple of 4. Legal +base64 data should be padded with one or two "=" characters to make +its length a multiple of 4. The decoded result will anyway be as if +the padding was there. + +=item Premature padding of base64 data + +The '=' padding character occurs as the first or second character +in a base64 quartet. + +=back + +=head1 EXAMPLES + +If you want to encode a large file, you should encode it in chunks +that are a multiple of 57 bytes. This ensures that the base64 lines +line up and that you do not end up with padding in the middle. 57 +bytes of data fills one complete base64 line (76 == 57*4/3): + + use MIME::Base64 qw(encode_base64); + + open(FILE, "/var/log/wtmp") or die "$!"; + while (read(FILE, $buf, 60*57)) { + print encode_base64($buf); + } + +or if you know you have enough memory + + use MIME::Base64 qw(encode_base64); + local($/) = undef; # slurp + print encode_base64(<STDIN>); + +=head1 COPYRIGHT + +Copyright 1995-1999 Gisle Aas. + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +Distantly based on LWP::Base64 written by Martijn Koster +<m.koster@nexor.co.uk> and Joerg Reichelt <j.reichelt@nexor.co.uk> and +code posted to comp.lang.perl <3pd2lp$6gf@wsinti07.win.tue.nl> by Hans +Mulder <hansm@wsinti07.win.tue.nl> + +The XS implementation use code from metamail. Copyright 1991 Bell +Communications Research, Inc. (Bellcore) + +=cut + +use strict; +use vars qw(@ISA @EXPORT $VERSION $OLD_CODE); + +require Exporter; +require DynaLoader; +@ISA = qw(Exporter DynaLoader); +@EXPORT = qw(encode_base64 decode_base64); + +$VERSION = '2.11'; + +eval { bootstrap MIME::Base64 $VERSION; }; +if ($@) { + # can't bootstrap XS implementation, use perl implementation + *encode_base64 = \&old_encode_base64; + *decode_base64 = \&old_decode_base64; + + $OLD_CODE = $@; + #warn $@ if $^W; +} + +# Historically this module has been implemented as pure perl code. +# The XS implementation runs about 20 times faster, but the Perl +# code might be more portable, so it is still here. + +use integer; + +sub old_encode_base64 ($;$) +{ + my $res = ""; + my $eol = $_[1]; + $eol = "\n" unless defined $eol; + pos($_[0]) = 0; # ensure start at the beginning + while ($_[0] =~ /(.{1,45})/gs) { + $res .= substr(pack('u', $1), 1); + chop($res); + } + $res =~ tr|` -_|AA-Za-z0-9+/|; # `# help emacs + # fix padding at the end + my $padding = (3 - length($_[0]) % 3) % 3; + $res =~ s/.{$padding}$/'=' x $padding/e if $padding; + # break encoded string into lines of no more than 76 characters each + if (length $eol) { + $res =~ s/(.{1,76})/$1$eol/g; + } + $res; +} + + +sub old_decode_base64 ($) +{ + local($^W) = 0; # unpack("u",...) gives bogus warning in 5.00[123] + + my $str = shift; + my $res = ""; + + $str =~ tr|A-Za-z0-9+=/||cd; # remove non-base64 chars + if (length($str) % 4) { + require Carp; + Carp::carp("Length of base64 data not a multiple of 4") + } + $str =~ s/=+$//; # remove padding + $str =~ tr|A-Za-z0-9+/| -_|; # convert to uuencoded format + while ($str =~ /(.{1,60})/gs) { + my $len = chr(32 + length($1)*3/4); # compute length byte + $res .= unpack("u", $len . $1 ); # uudecode + } + $res; +} + +# Set up aliases so that these functions also can be called as +# +# MIME::Base64::encode(); +# MIME::Base64::decode(); + +*encode = \&encode_base64; +*decode = \&decode_base64; + +1; diff --git a/cpan/dist/MIME-Base64/Base64.xs b/cpan/dist/MIME-Base64/Base64.xs new file mode 100644 index 00000000..855d5226 --- /dev/null +++ b/cpan/dist/MIME-Base64/Base64.xs @@ -0,0 +1,215 @@ +/* $Id: Base64.xs,v 1.17 1999/02/27 21:04:13 gisle Exp $ + +Copyright 1997-1998 Gisle Aas + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + + +The tables and some of the code that used to be here was borrowed from +metamail, which comes with this message: + + Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) + + Permission to use, copy, modify, and distribute this material + for any purpose and without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies, and that the name of Bellcore not be + used in advertising or publicity pertaining to this + material without the specific, prior written permission + of an authorized representative of Bellcore. BELLCORE + MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY + OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", + WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. + +*/ + + +#ifdef __cplusplus +extern "C" { +#endif +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" +#ifdef __cplusplus +} +#endif + +#include "patchlevel.h" +#if PATCHLEVEL <= 4 && !defined(PL_dowarn) + #define PL_dowarn dowarn +#endif + +#define MAX_LINE 76 /* size of encoded lines */ + +static char basis_64[] = + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + +#define XX 255 /* illegal base64 char */ +#define EQ 254 /* padding */ +#define INVALID XX + +static unsigned char index_64[256] = { + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,62, XX,XX,XX,63, + 52,53,54,55, 56,57,58,59, 60,61,XX,XX, XX,EQ,XX,XX, + XX, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14, + 15,16,17,18, 19,20,21,22, 23,24,25,XX, XX,XX,XX,XX, + XX,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40, + 41,42,43,44, 45,46,47,48, 49,50,51,XX, XX,XX,XX,XX, + + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, + XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, XX,XX,XX,XX, +}; + + + +MODULE = MIME::Base64 PACKAGE = MIME::Base64 + +SV* +encode_base64(sv,...) + SV* sv + PROTOTYPE: $;$ + + PREINIT: + char *str; /* string to encode */ + SSize_t len; /* length of the string */ + char *eol; /* the end-of-line sequence to use */ + STRLEN eollen; /* length of the EOL sequence */ + char *r; /* result string */ + STRLEN rlen; /* length of result string */ + unsigned char c1, c2, c3; + int chunk; + + CODE: + str = SvPV(sv, rlen); /* SvPV(sv, len) gives warning for signed len */ + len = (SSize_t)rlen; + + /* set up EOL from the second argument if present, default to "\n" */ + if (items > 1 && SvOK(ST(1))) { + eol = SvPV(ST(1), eollen); + } else { + eol = "\n"; + eollen = 1; + } + + /* calculate the length of the result */ + rlen = (len+2) / 3 * 4; /* encoded bytes */ + if (rlen) { + /* add space for EOL */ + rlen += ((rlen-1) / MAX_LINE + 1) * eollen; + } + + /* allocate a result buffer */ + RETVAL = newSV(rlen ? rlen : 1); + SvPOK_on(RETVAL); + SvCUR_set(RETVAL, rlen); + r = SvPVX(RETVAL); + + /* encode */ + for (chunk=0; len > 0; len -= 3, chunk++) { + if (chunk == (MAX_LINE/4)) { + char *c = eol; + char *e = eol + eollen; + while (c < e) + *r++ = *c++; + chunk = 0; + } + c1 = *str++; + c2 = *str++; + *r++ = basis_64[c1>>2]; + *r++ = basis_64[((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4)]; + if (len > 2) { + c3 = *str++; + *r++ = basis_64[((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6)]; + *r++ = basis_64[c3 & 0x3F]; + } else if (len == 2) { + *r++ = basis_64[(c2 & 0xF) << 2]; + *r++ = '='; + } else { /* len == 1 */ + *r++ = '='; + *r++ = '='; + } + } + if (rlen) { + /* append eol to the result string */ + char *c = eol; + char *e = eol + eollen; + while (c < e) + *r++ = *c++; + } + *r = '\0'; /* every SV in perl should be NUL-terminated */ + + OUTPUT: + RETVAL + +SV* +decode_base64(sv) + SV* sv + PROTOTYPE: $ + + PREINIT: + STRLEN len; + register unsigned char *str = (unsigned char*)SvPV(sv, len); + unsigned char const* end = str + len; + char *r; + unsigned char c[4]; + + CODE: + { + /* always enough, but might be too much */ + STRLEN rlen = len * 3 / 4; + RETVAL = newSV(rlen ? rlen : 1); + } + SvPOK_on(RETVAL); + r = SvPVX(RETVAL); + + while (str < end) { + int i = 0; + do { + unsigned char uc = index_64[*str++]; + if (uc != INVALID) + c[i++] = uc; + + if (str == end) { + if (i < 4) { + if (i && PL_dowarn) + warn("Premature end of base64 data"); + if (i < 2) goto thats_it; + if (i == 2) c[2] = EQ; + c[3] = EQ; + } + break; + } + } while (i < 4); + + if (c[0] == EQ || c[1] == EQ) { + if (PL_dowarn) warn("Premature padding of base64 data"); + break; + } + /* printf("c0=%d,c1=%d,c2=%d,c3=%d\n", c[0],c[1],c[2],c[3]);/**/ + + *r++ = (c[0] << 2) | ((c[1] & 0x30) >> 4); + + if (c[2] == EQ) + break; + *r++ = ((c[1] & 0x0F) << 4) | ((c[2] & 0x3C) >> 2); + + if (c[3] == EQ) + break; + *r++ = ((c[2] & 0x03) << 6) | c[3]; + } + + thats_it: + SvCUR_set(RETVAL, r - SvPVX(RETVAL)); + *r = '\0'; + + OUTPUT: + RETVAL diff --git a/cpan/dist/MIME-Base64/Changes b/cpan/dist/MIME-Base64/Changes new file mode 100644 index 00000000..147fcdfc --- /dev/null +++ b/cpan/dist/MIME-Base64/Changes @@ -0,0 +1,119 @@ +1998-02-27 Gisle Aas <gisle@aas.no> + + Release 2.11 + + Fixed bogues "Premature end of base64 data" warning. Bug spotted + by Dwayne Jacques Fontenot. + + Workaround for Redhat shipping trial releases of perl. + + + +1998-12-18 Gisle Aas <aas@sn.no> + + Release 2.10 + + A tweak that should make compilation with some old perl5.00[23] + perls better. + + A cast that make some compilers more happy. + + + +1998-11-13 Gisle Aas <aas@sn.no> + + Release 2.09 + + The 2.08 release did not compile with perl5.005_53, because + all simple globals now need to be prefixed with "PL_". + + + +1998-10-22 Gisle Aas <aas@sn.no> + + Release 2.08 + + Found another tweak to speed up decode_base64() with another 3%. + + Improved MIME::Base64 documentation a little. + + + +1998-10-21 Gisle Aas <aas@sn.no> + + Release 2.07 + + Faster and smarter C implementation of the decode_base64() + function. The new decode_base64() was 25% faster when tested + on Linux, i586, gcc -O2. + + + +1998-07-15 Gisle Aas <aas@sn.no> + + Release 2.06 + + The decode_base64() implemented in pure perl will only carp + (not croak) if length of data to decode is not a multiple 4. This + actually made 'make test' fail after 'rm Base64.xs'. + + + +1998-01-27 Gisle Aas <aas@sn.no> + + Release 2.05 + + The decode_base64() would previously allocate a too short buffer for the + result string when the trailing "==" padding was missing in the string to + be decoded. + + The encode_base64() now allocate one byte less space in the result + strings returned. + + + +1997-12-02 Gisle Aas <aas@sn.no> + + Release 2.04 + + Documentation expanded a bit. + + + +1997-07-10 Gisle Aas <aas@sn.no> + + Release 2.03 + + Decode_base64() doesn't croak on premature ended data any more. + A warning is generated instead if running under -w. + + + +1997-06-27 Gisle Aas <aas@sn.no> + + Release 2.02 + + QuotedPrint fix by Roderick Schertler <roderick@argon.org>: + + - Long lines were not broken unless they're at the beginning + of the text + + - Lines near but not over 76 chars were broken when they + shouldn't be + + + +1997-06-13 Gisle Aas <aas@sn.no> + + Release 2.01 + + Base64.xs: Avoid type convertion warnings with some compilers + + Minor documentation updates + + + +1997-04-24 Gisle Aas <aas@sn.no> + + Release 2.00, based on libwww-perl-5.08. + diff --git a/cpan/dist/MIME-Base64/MANIFEST b/cpan/dist/MIME-Base64/MANIFEST new file mode 100644 index 00000000..2507ac19 --- /dev/null +++ b/cpan/dist/MIME-Base64/MANIFEST @@ -0,0 +1,9 @@ +Base64.pm Bootstrap and perl implementation of MIME::Base64 +Base64.xs Encoder and decoder written in C +Changes What's new +MANIFEST This file +Makefile.PL Writes the Makefile +QuotedPrint.pm MIME::QuotedPrint module, encoder and decoder +README Please do! +t/base64.t Test that it works +t/quoted-print.t diff --git a/cpan/dist/MIME-Base64/Makefile.PL b/cpan/dist/MIME-Base64/Makefile.PL new file mode 100644 index 00000000..f5b4cb9f --- /dev/null +++ b/cpan/dist/MIME-Base64/Makefile.PL @@ -0,0 +1,8 @@ +require 5.002; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'MIME::Base64', + VERSION_FROM => 'Base64.pm', + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, +); diff --git a/cpan/dist/MIME-Base64/QuotedPrint.pm b/cpan/dist/MIME-Base64/QuotedPrint.pm new file mode 100644 index 00000000..ccdee2bb --- /dev/null +++ b/cpan/dist/MIME-Base64/QuotedPrint.pm @@ -0,0 +1,115 @@ +# +# $Id: QuotedPrint.pm,v 2.3 1997/12/02 10:24:27 aas Exp $ + +package MIME::QuotedPrint; + +=head1 NAME + +MIME::QuotedPrint - Encoding and decoding of quoted-printable strings + +=head1 SYNOPSIS + + use MIME::QuotedPrint; + + $encoded = encode_qp($decoded); + $decoded = decode_qp($encoded); + +=head1 DESCRIPTION + +This module provides functions to encode and decode strings into the +Quoted-Printable encoding specified in RFC 2045 - I<MIME (Multipurpose +Internet Mail Extensions)>. The Quoted-Printable encoding is intended +to represent data that largely consists of bytes that correspond to +printable characters in the ASCII character set. Non-printable +characters (as defined by english americans) are represented by a +triplet consisting of the character "=" followed by two hexadecimal +digits. + +The following functions are provided: + +=over 4 + +=item encode_qp($str) + +This function will return an encoded version of the string given as +argument. + +Note that encode_qp() does not change newlines C<"\n"> to the CRLF +sequence even though this might be considered the right thing to do +(RFC 2045 (Q-P Rule #4)). + +=item decode_qp($str); + +This function will return the plain text version of the string given +as argument. + +=back + + +If you prefer not to import these routines into your namespace you can +call them as: + + use MIME::QuotedPrint (); + $encoded = MIME::QuotedPrint::encode($decoded); + $decoded = MIME::QuotedPrint::decode($encoded); + +=head1 COPYRIGHT + +Copyright 1995-1997 Gisle Aas. + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +=cut + +use strict; +use vars qw(@ISA @EXPORT $VERSION); + +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(encode_qp decode_qp); + +$VERSION = sprintf("%d.%02d", q$Revision: 2.3 $ =~ /(\d+)\.(\d+)/); + + +sub encode_qp ($) +{ + my $res = shift; + $res =~ s/([^ \t\n!-<>-~])/sprintf("=%02X", ord($1))/eg; # rule #2,#3 + $res =~ s/([ \t]+)$/ + join('', map { sprintf("=%02X", ord($_)) } + split('', $1) + )/egm; # rule #3 (encode whitespace at eol) + + # rule #5 (lines must be shorter than 76 chars, but we are not allowed + # to break =XX escapes. This makes things complicated :-( ) + my $brokenlines = ""; + $brokenlines .= "$1=\n" + while $res =~ s/(.*?^[^\n]{73} (?: + [^=\n]{2} (?! [^=\n]{0,1} $) # 75 not followed by .?\n + |[^=\n] (?! [^=\n]{0,2} $) # 74 not followed by .?.?\n + | (?! [^=\n]{0,3} $) # 73 not followed by .?.?.?\n + ))//xsm; + + "$brokenlines$res"; +} + + +sub decode_qp ($) +{ + my $res = shift; + $res =~ s/[ \t]+?(\r?\n)/$1/g; # rule #3 (trailing space must be deleted) + $res =~ s/=\r?\n//g; # rule #5 (soft line breaks) + $res =~ s/=([\da-fA-F]{2})/pack("C", hex($1))/ge; + $res; +} + +# Set up aliases so that these functions also can be called as +# +# MIME::QuotedPrint::encode(); +# MIME::QuotedPrint::decode(); + +*encode = \&encode_qp; +*decode = \&decode_qp; + +1; diff --git a/cpan/dist/MIME-Base64/README b/cpan/dist/MIME-Base64/README new file mode 100644 index 00000000..c0919cb4 --- /dev/null +++ b/cpan/dist/MIME-Base64/README @@ -0,0 +1,38 @@ +This package contains a base64 encoder/decoder and a quoted-printable +encoder/decoder. These encoding methods are specified in RFC 2045 - +MIME (Multipurpose Internet Mail Extensions). + +The Base64 encoding is designed to represent arbitrary sequences of +octets in a form that need not be humanly readable. A 65-character +subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6 bits to be +represented per printable character. + +The quoted-printable encoding is intended to represent data that +largely consists of bytes that correspond to printable characters in +the ASCII character set. Non-printable characters are represented by +a triplet consisting of the character "=" followed by two hexadecimal +digits. + +The MIME::Base64 and MIME::QuotedPrint modules used to be part of +libwww-perl package. They are now distributed separately (as this +package). The main improvement is that the base64 encoder/decoder is +implemented by XS functions. This makes it about 20 times faster than +the old implementation as pure Perl. + +In order to install and use this package you will need Perl version +5.002 or better. Installation as usual: + + perl Makefile.PL + make + make test + make install + +The library can also be installed without XS support (for instance because +you don't have a working C compiler installed). Simply remove the Base64.xs +file before running 'perl Makefile.PL' and everything should work the same, +although encoding and decoding will be much slower. + +Copyright 1995-1999 Gisle Aas <gisle@aas.no> + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. diff --git a/cpan/dist/MIME-Base64/t/base64.t b/cpan/dist/MIME-Base64/t/base64.t new file mode 100644 index 00000000..24e00c37 --- /dev/null +++ b/cpan/dist/MIME-Base64/t/base64.t @@ -0,0 +1,362 @@ +use MIME::Base64; + +print "1..282\n"; + +print "Testing MIME::Base64-", $MIME::Base64::VERSION, "\n"; + +$testno = 1; + +encodeTest(); +decodeTest(); + +# This used to generate a warning +print "not " unless decode_base64(encode_base64("foo")) eq "foo"; +print "ok ", $testno++, "\n"; + +sub encodeTest +{ + print "encode test\n"; + + my @encode_tests = ( + ['' => ''], + ['a' => 'YQ=='], + ['aa' => 'YWE='], + ['aaa' => 'YWFh'], + + ['aaa' => 'YWFh'], + ['aaa' => 'YWFh'], + ['aaa' => 'YWFh'], + + ["\000\377" => "AP8="], + ["\377\000" => "/wA="], + ["\000\000\000" => "AAAA"], + + # from HTTP spec + ['Aladdin:open sesame' => 'QWxhZGRpbjpvcGVuIHNlc2FtZQ=='], + + ['a' x 100 => 'YWFh' x 33 . 'YQ=='], + + ['Multipurpose Internet Mail Extensions: The Base64 Content-Transfer-Encoding is designed to represent sequences of octets in a form that is not humanly readable. ' + => "TXVsdGlwdXJwb3NlIEludGVybmV0IE1haWwgRXh0ZW5zaW9uczogVGhlIEJhc2U2NCBDb250ZW50LVRyYW5zZmVyLUVuY29kaW5nIGlzIGRlc2lnbmVkIHRvIHJlcHJlc2VudCBzZXF1ZW5jZXMgb2Ygb2N0ZXRzIGluIGEgZm9ybSB0aGF0IGlzIG5vdCBodW1hbmx5IHJlYWRhYmxlLiA="], + + # All values + ["\000" => "AA=="], + ["\001" => "AQ=="], + ["\002" => "Ag=="], + ["\003" => "Aw=="], + ["\004" => "BA=="], + ["\005" => "BQ=="], + ["\006" => "Bg=="], + ["\007" => "Bw=="], + ["\010" => "CA=="], + ["\011" => "CQ=="], + ["\012" => "Cg=="], + ["\013" => "Cw=="], + ["\014" => "DA=="], + ["\015" => "DQ=="], + ["\016" => "Dg=="], + ["\017" => "Dw=="], + ["\020" => "EA=="], + ["\021" => "EQ=="], + ["\022" => "Eg=="], + ["\023" => "Ew=="], + ["\024" => "FA=="], + ["\025" => "FQ=="], + ["\026" => "Fg=="], + ["\027" => "Fw=="], + ["\030" => "GA=="], + ["\031" => "GQ=="], + ["\032" => "Gg=="], + ["\033" => "Gw=="], + ["\034" => "HA=="], + ["\035" => "HQ=="], + ["\036" => "Hg=="], + ["\037" => "Hw=="], + ["\040" => "IA=="], + ["\041" => "IQ=="], + ["\042" => "Ig=="], + ["\043" => "Iw=="], + ["\044" => "JA=="], + ["\045" => "JQ=="], + ["\046" => "Jg=="], + ["\047" => "Jw=="], + ["\050" => "KA=="], + ["\051" => "KQ=="], + ["\052" => "Kg=="], + ["\053" => "Kw=="], + ["\054" => "LA=="], + ["\055" => "LQ=="], + ["\056" => "Lg=="], + ["\057" => "Lw=="], + ["\060" => "MA=="], + ["\061" => "MQ=="], + ["\062" => "Mg=="], + ["\063" => "Mw=="], + ["\064" => "NA=="], + ["\065" => "NQ=="], + ["\066" => "Ng=="], + ["\067" => "Nw=="], + ["\070" => "OA=="], + ["\071" => "OQ=="], + ["\072" => "Og=="], + ["\073" => "Ow=="], + ["\074" => "PA=="], + ["\075" => "PQ=="], + ["\076" => "Pg=="], + ["\077" => "Pw=="], + ["\100" => "QA=="], + ["\101" => "QQ=="], + ["\102" => "Qg=="], + ["\103" => "Qw=="], + ["\104" => "RA=="], + ["\105" => "RQ=="], + ["\106" => "Rg=="], + ["\107" => "Rw=="], + ["\110" => "SA=="], + ["\111" => "SQ=="], + ["\112" => "Sg=="], + ["\113" => "Sw=="], + ["\114" => "TA=="], + ["\115" => "TQ=="], + ["\116" => "Tg=="], + ["\117" => "Tw=="], + ["\120" => "UA=="], + ["\121" => "UQ=="], + ["\122" => "Ug=="], + ["\123" => "Uw=="], + ["\124" => "VA=="], + ["\125" => "VQ=="], + ["\126" => "Vg=="], + ["\127" => "Vw=="], + ["\130" => "WA=="], + ["\131" => "WQ=="], + ["\132" => "Wg=="], + ["\133" => "Ww=="], + ["\134" => "XA=="], + ["\135" => "XQ=="], + ["\136" => "Xg=="], + ["\137" => "Xw=="], + ["\140" => "YA=="], + ["\141" => "YQ=="], + ["\142" => "Yg=="], + ["\143" => "Yw=="], + ["\144" => "ZA=="], + ["\145" => "ZQ=="], + ["\146" => "Zg=="], + ["\147" => "Zw=="], + ["\150" => "aA=="], + ["\151" => "aQ=="], + ["\152" => "ag=="], + ["\153" => "aw=="], + ["\154" => "bA=="], + ["\155" => "bQ=="], + ["\156" => "bg=="], + ["\157" => "bw=="], + ["\160" => "cA=="], + ["\161" => "cQ=="], + ["\162" => "cg=="], + ["\163" => "cw=="], + ["\164" => "dA=="], + ["\165" => "dQ=="], + ["\166" => "dg=="], + ["\167" => "dw=="], + ["\170" => "eA=="], + ["\171" => "eQ=="], + ["\172" => "eg=="], + ["\173" => "ew=="], + ["\174" => "fA=="], + ["\175" => "fQ=="], + ["\176" => "fg=="], + ["\177" => "fw=="], + ["\200" => "gA=="], + ["\201" => "gQ=="], + ["\202" => "gg=="], + ["\203" => "gw=="], + ["\204" => "hA=="], + ["\205" => "hQ=="], + ["\206" => "hg=="], + ["\207" => "hw=="], + ["\210" => "iA=="], + ["\211" => "iQ=="], + ["\212" => "ig=="], + ["\213" => "iw=="], + ["\214" => "jA=="], + ["\215" => "jQ=="], + ["\216" => "jg=="], + ["\217" => "jw=="], + ["\220" => "kA=="], + ["\221" => "kQ=="], + ["\222" => "kg=="], + ["\223" => "kw=="], + ["\224" => "lA=="], + ["\225" => "lQ=="], + ["\226" => "lg=="], + ["\227" => "lw=="], + ["\230" => "mA=="], + ["\231" => "mQ=="], + ["\232" => "mg=="], + ["\233" => "mw=="], + ["\234" => "nA=="], + ["\235" => "nQ=="], + ["\236" => "ng=="], + ["\237" => "nw=="], + ["\240" => "oA=="], + ["\241" => "oQ=="], + ["\242" => "og=="], + ["\243" => "ow=="], + ["\244" => "pA=="], + ["\245" => "pQ=="], + ["\246" => "pg=="], + ["\247" => "pw=="], + ["\250" => "qA=="], + ["\251" => "qQ=="], + ["\252" => "qg=="], + ["\253" => "qw=="], + ["\254" => "rA=="], + ["\255" => "rQ=="], + ["\256" => "rg=="], + ["\257" => "rw=="], + ["\260" => "sA=="], + ["\261" => "sQ=="], + ["\262" => "sg=="], + ["\263" => "sw=="], + ["\264" => "tA=="], + ["\265" => "tQ=="], + ["\266" => "tg=="], + ["\267" => "tw=="], + ["\270" => "uA=="], + ["\271" => "uQ=="], + ["\272" => "ug=="], + ["\273" => "uw=="], + ["\274" => "vA=="], + ["\275" => "vQ=="], + ["\276" => "vg=="], + ["\277" => "vw=="], + ["\300" => "wA=="], + ["\301" => "wQ=="], + ["\302" => "wg=="], + ["\303" => "ww=="], + ["\304" => "xA=="], + ["\305" => "xQ=="], + ["\306" => "xg=="], + ["\307" => "xw=="], + ["\310" => "yA=="], + ["\311" => "yQ=="], + ["\312" => "yg=="], + ["\313" => "yw=="], + ["\314" => "zA=="], + ["\315" => "zQ=="], + ["\316" => "zg=="], + ["\317" => "zw=="], + ["\320" => "0A=="], + ["\321" => "0Q=="], + ["\322" => "0g=="], + ["\323" => "0w=="], + ["\324" => "1A=="], + ["\325" => "1Q=="], + ["\326" => "1g=="], + ["\327" => "1w=="], + ["\330" => "2A=="], + ["\331" => "2Q=="], + ["\332" => "2g=="], + ["\333" => "2w=="], + ["\334" => "3A=="], + ["\335" => "3Q=="], + ["\336" => "3g=="], + ["\337" => "3w=="], + ["\340" => "4A=="], + ["\341" => "4Q=="], + ["\342" => "4g=="], + ["\343" => "4w=="], + ["\344" => "5A=="], + ["\345" => "5Q=="], + ["\346" => "5g=="], + ["\347" => "5w=="], + ["\350" => "6A=="], + ["\351" => "6Q=="], + ["\352" => "6g=="], + ["\353" => "6w=="], + ["\354" => "7A=="], + ["\355" => "7Q=="], + ["\356" => "7g=="], + ["\357" => "7w=="], + ["\360" => "8A=="], + ["\361" => "8Q=="], + ["\362" => "8g=="], + ["\363" => "8w=="], + ["\364" => "9A=="], + ["\365" => "9Q=="], + ["\366" => "9g=="], + ["\367" => "9w=="], + ["\370" => "+A=="], + ["\371" => "+Q=="], + ["\372" => "+g=="], + ["\373" => "+w=="], + ["\374" => "/A=="], + ["\375" => "/Q=="], + ["\376" => "/g=="], + ["\377" => "/w=="], + ); + + for $test (@encode_tests) { + my($plain, $expected) = ($$test[0], $$test[1]); + + my $encoded = encode_base64($plain, ''); + if ($encoded ne $expected) { + print "test $testno ($plain): expected $expected, got $encoded\n"; + print "not "; + } + my $decoded = decode_base64($encoded); + if ($decoded ne $plain) { + print "test $testno ($plain): expected $expected, got $encoded\n"; + print "not "; + } + + # Try the old C versions too + if ($encoded ne MIME::Base64::old_encode_base64($plain, '')) { + print "old_encode_base64 give different result.\n"; + print "not "; + } + if ($plain ne MIME::Base64::old_decode_base64($encoded)) { + print "old_decode_base64 give different result.\n"; + print "not "; + } + + print "ok $testno\n"; + $testno++; + } +} + +sub decodeTest +{ + print "decode test:\n"; + local $SIG{__WARN__} = sub { print $_[0] }; # avoid warnings on stderr + + my @decode_tests = ( + ['YWE=' => 'aa'], + [' YWE=' => 'aa'], + ['Y WE=' => 'aa'], + ['YWE= ' => 'aa'], + ["Y\nW\r\nE=" => 'aa'], + + # These will generate some warnings + ['YWE=====' => 'aa'], # extra padding + ['YWE' => 'aa'], # missing padding + ['YWFh====' => 'aaa'], + ['YQ' => 'a'], + ['Y' => ''], + ['' => ''], + [undef() => ''], + ); + + for $test (@decode_tests) { + my($encoded, $expected) = ($$test[0], $$test[1]); + + my $decoded = decode_base64($encoded); + if ($decoded ne $expected) { + die "test $testno ($encoded): expected $expected, got $decoded\n"; + } + print "ok $testno\n"; + $testno++; + } +} diff --git a/cpan/dist/MIME-Base64/t/quoted-print.t b/cpan/dist/MIME-Base64/t/quoted-print.t new file mode 100644 index 00000000..178dec49 --- /dev/null +++ b/cpan/dist/MIME-Base64/t/quoted-print.t @@ -0,0 +1,106 @@ +#!/local/bin/perl -w + +use MIME::QuotedPrint; + +$x70 = "x" x 70; + +@tests = + ( + # plain ascii should not be encoded + ["quoted printable" => + "quoted printable"], + + # 8-bit chars should be encoded + ["våre kjære norske tegn bør æres" => + "v=E5re kj=E6re norske tegn b=F8r =E6res"], + + # trailing space should be encoded + [" " => "=20=20"], + ["\tt\t" => "\tt=09"], + ["test \ntest\n\t \t \n" => "test=20=20\ntest\n=09=20=09=20\n"], + + # "=" is special an should be decoded + ["=\n" => "=3D\n"], + ["\0\xff" => "=00=FF"], + + # Very long lines should be broken (not more than 76 chars + ["The Quoted-Printable encoding is intended to represent data that largly consists of octets that correspond to printable characters in the ASCII character set." => + "The Quoted-Printable encoding is intended to represent data that largly con= +sists of octets that correspond to printable characters in the ASCII charac= +ter set." + ], + + # Long lines after short lines were broken through 2.01. + ["short line +In America, any boy may become president and I suppose that's just one of the risks he takes. -- Adlai Stevenson" => + "short line +In America, any boy may become president and I suppose that's just one of t= +he risks he takes. -- Adlai Stevenson"], + + # My (roderick@argon.org) first crack at fixing that bug failed for + # multiple long lines. + ["College football is a game which would be much more interesting if the faculty played instead of the students, and even more interesting if the +trustees played. There would be a great increase in broken arms, legs, and necks, and simultaneously an appreciable diminution in the loss to humanity. -- H. L. Mencken" => + "College football is a game which would be much more interesting if the facu= +lty played instead of the students, and even more interesting if the +trustees played. There would be a great increase in broken arms, legs, and= + necks, and simultaneously an appreciable diminution in the loss to humanit= +y. -- H. L. Mencken"], + + # Don't break a line that's near but not over 76 chars. + ["$x70!23" => "$x70!23"], + ["$x70!234" => "$x70!234"], + ["$x70!2345" => "$x70!2345"], + ["$x70!23456" => "$x70!23456"], + ["$x70!23\n" => "$x70!23\n"], + ["$x70!234\n" => "$x70!234\n"], + ["$x70!2345\n" => "$x70!2345\n"], + ["$x70!23456\n" => "$x70!23456\n"], + + # Not allowed to break =XX escapes using soft line break + ["$x70===xxxx" => "$x70=3D=\n=3D=3Dxxxx"], + ["$x70!===xxx" => "$x70!=3D=\n=3D=3Dxxx"], + ["$x70!!===xx" => "$x70!!=3D=\n=3D=3Dxx"], + ["$x70!!!===x" => "$x70!!!=\n=3D=3D=3Dx"], + # ^ + # 70123456| + # max + # line width +); + +$notests = @tests + 2; +print "1..$notests\n"; + +$testno = 0; +for (@tests) { + $testno++; + ($plain, $encoded) = @$_; + $x = encode_qp($plain); + if ($x ne $encoded) { + print "Encode test failed\n"; + print "Got: '$x'\n"; + print "Expected: '$encoded'\n"; + print "not ok $testno\n"; + next; + } + $x = decode_qp($encoded); + if ($x ne $plain) { + print "Decode test failed\n"; + print "Got: '$x'\n"; + print "Expected: '$plain'\n"; + print "not ok $testno\n"; + next; + } + print "ok $testno\n"; +} + +# Some extra testing for a case that was wrong until libwww-perl-5.09 +print "not " unless decode_qp("foo \n\nfoo =\n\nfoo=20\n\n") eq + "foo\n\nfoo \nfoo \n\n"; +$testno++; print "ok $testno\n"; + +# Same test but with "\r\n" terminated lines +print "not " unless decode_qp("foo \r\n\r\nfoo =\r\n\r\nfoo=20\r\n\r\n") eq + "foo\r\n\r\nfoo \r\nfoo \r\n\r\n"; +$testno++; print "ok $testno\n"; + diff --git a/cpan/dist/Socket6/ChangeLog b/cpan/dist/Socket6/ChangeLog new file mode 100644 index 00000000..d13a0039 --- /dev/null +++ b/cpan/dist/Socket6/ChangeLog @@ -0,0 +1,111 @@ +2000-05-28 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6.pm: Bump version number to 0.07. + + * getaddrinfo.c (getaddrinfo): + - Add support for AI_CANONNAME. + - Our fake version of getaddrinfo() only support IPv4. + +2000-05-27 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6.pm: More description. + + Submitted by: Jun-ichiro itojun Hagino <itojun@iijlab.net> + + * Socket6.xs (inet_ntop): Make inet_ntop() work with AF_INET. + + Submitted by: Jun-ichiro itojun Hagino <itojun@iijlab.net> + +2000-05-01 Hajimu UMEMOTO <ume@mahoroba.org> + + * gailookup.pl.in: Add -c and -s option. + +2000-04-15 Hajimu UMEMOTO <ume@mahoroba.org> + + * Makefile.PL: Cosmetic. + +2000-04-12 Hajimu UMEMOTO <ume@mahoroba.org> + + * aclocal.m4: IPv6 related macros were improved. + + * configure.in: Use new macros. + +2000-03-23 Hajimu UMEMOTO <ume@mahoroba.org> + + * getaddrinfo.c (gai_strerror): Add message for EAI_SERVICE. + +2000-03-20 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6.pm: Bump version number to 0.06. + + * config.pl.in: config.pl did not return a true value at + Makefile.PL line 41. + + Reported by: Paul Schinder <schinder@pobox.com> + + * config.pl.in: Don't use @PERLPATH@ and @CFLAGS@ values returns + from configure. + +2000-03-18 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6.pm: Bump version number to 0.05. + + * Makefile.in: Provide a Makefile.PL that runs configure, so that + things can be done in the usual Perl way. + + Pointed out by: Paul Schinder <schinder@pobox.com> + +2000-03-17 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6.pm: Bump version number to 0.04. I changed convention + of version number to n.nn. + +2000-03-16 Hajimu UMEMOTO <ume@mahoroba.org> + + * acconfig.h: Define HAVE_PL_SV_UNDEF rather than use of CFLAGS. + + * Makefile.in: Added. Now, ExtUtils::MakeMaker generates + Makefile.go. + +2000-03-14 Hajimu UMEMOTO <ume@mahoroba.org> + + * configure.in: Use gcc if available. Cannot compile with + traditional cc on some Linuxes due to illegal `const' definition: + + Debian GNU/Linux 2.1 (slink) : glibc-2.0.7 + Debian GNU/Linux 2.2 (potato) : glibc-2.1.3 + + Submitted by: Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> + + * gailookup.pl.in: Added. Rule for finding Perl and --with-perl + option was also added to configure.in. + + Submitted by: Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> + + * Socket6.xs: Add missing AI_NUMERICHOST. + + * Makefile.PL.in: Pass CFLAGS to C compiler. + + * configure.in: Separate functional blocks into aclocal.m4. + +2000-03-10 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6-0.3 is out. + + * getaddrinfo.c (getaddrinfo): Avoid core dump when protocol is + not found in /etc/protocols or service is not found in + /etc/services. + + * configure.in: Add check rule for PL_sv_undef. Somewhat old + version of Perl5 uses sv_undef. + + * configure.in: Add check rules for sa_len and sin6_scope_id. + Submitted by: Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> + + * acconfig.h: Added to be able to use autoheader. + Submitted by: Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> + +2000-03-09 Hajimu UMEMOTO <ume@mahoroba.org> + + * Socket6-0.2 was released for evaluate. + diff --git a/cpan/dist/Socket6/MANIFEST b/cpan/dist/Socket6/MANIFEST new file mode 100644 index 00000000..de3fd67c --- /dev/null +++ b/cpan/dist/Socket6/MANIFEST @@ -0,0 +1,18 @@ +ChangeLog +MANIFEST +Makefile.PL +README +Socket6.pm +Socket6.xs +acconfig.h +aclocal.m4 +config.h.in +config.pl.in +configure +configure.in +gai.h +gailookup.pl.in +getaddrinfo.c +getnameinfo.c +ftpmirror-1.96.diff +im-140.diff diff --git a/cpan/dist/Socket6/Makefile.PL b/cpan/dist/Socket6/Makefile.PL new file mode 100644 index 00000000..591c2063 --- /dev/null +++ b/cpan/dist/Socket6/Makefile.PL @@ -0,0 +1,47 @@ +# Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + +# $Id: Makefile.PL,v 1.3 2000/04/15 07:26:44 ume Exp $ + +use ExtUtils::MakeMaker; + +my $path_perl = ($^X =~ m!^/!o) ? $^X : `which $^X`; +my $cmd = './configure'; +$cmd .= " --with-perl=$path_perl" if ($path_perl); +system($cmd); +require 'config.pl'; + +WriteMakefile( + NAME => 'Socket6', + VERSION_FROM => 'Socket6.pm', + MAN3PODS => {}, # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? + PM => {'Socket6.pm' => '$(INST_LIBDIR)/Socket6.pm'}, + CC => "${cc}", + LIBS => ["${libs}"], + realclean => {FILES => 'config.cache config.h config.log config.pl config.status gailookup.pl'}, +); diff --git a/cpan/dist/Socket6/README b/cpan/dist/Socket6/README new file mode 100644 index 00000000..60566e4e --- /dev/null +++ b/cpan/dist/Socket6/README @@ -0,0 +1,68 @@ +Socket6 + +$Id: README,v 1.7 2000/05/27 08:21:37 ume Exp $ + +1. Abstract + +This module supports getaddrinfo() and getnameinfo() to intend to +enable protocol independent programing. +If your environment supports IPv6, IPv6 related defines such as +AF_INET6 are included. + +2. Install + +Extract archive file. +Change current directory to Socket6-x.xx ("x.xx" is version number). +Type "perl Makefile.PL" to create Makefile. +Type "make" to build. +Type "make install" to install. + +3. How to use + +See "perldoc Socket6". + +4. Acknowledgments + +This package is mainly depend on perl5.005_55-v6-19990721 and +ssh-1.2.27-IPv6-1.5. perl5.005_55-v6-19990721 was written by KAME +Project and ssh-1.2.27-IPv6-1.5 was written by KIKUCHI Takahiro +<kick@kyoto.wide.ad.jp>. Thank you very much. + +5. Copyright + +Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. +All rights reserved. + +Socket6.pm and Socket6.xs are based on perl5.005_55-v6-19990721 +written by KAME Project. + +gai.h, getaddrinfo.c and getnameinfo.c are based on +ssh-1.2.27-IPv6-1.5 written by KIKUCHI Takahiro +<kick@kyoto.wide.ad.jp>. + +Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the project nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff --git a/cpan/dist/Socket6/Socket6.pm b/cpan/dist/Socket6/Socket6.pm new file mode 100644 index 00000000..e39cfb49 --- /dev/null +++ b/cpan/dist/Socket6/Socket6.pm @@ -0,0 +1,185 @@ +# Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. +# All rights reserved. +# +# This module is besed on perl5.005_55-v6-19990721 written by KAME +# Project. +# +# Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + +# $Id: Socket6.pm,v 1.13 2000/05/27 10:54:08 ume Exp $ + +package Socket6; + +use vars qw($VERSION @ISA @EXPORT %EXPORT_TAGS); +$VERSION = "0.07"; + +=head1 NAME + +Socket6, sockaddr_in6, inet_pton, inet_ntop - load IPv6 related part of the C socket.h defines and structure manipulators + +=head1 SYNOPSIS + + use Socket; + use Socket6; + + @res = getaddrinfo('hishost.com', 'daytime', AF_UNSPEC, SOCK_STREAM); + $family = -1; + while (scalar(@res) >= 5) { + ($family, $socktype, $proto, $saddr, $canonname, @res) = @res; + + ($host, $port) = getnameinfo($saddr, NI_NUMERICHOST | NI_NUMERICSERV); + print STDERR "Trying to connect to $host port port $port...\n"; + + socket(Socket_Handle, $family, $saddr, $proto) || next; + connect(Socket_Handle, $saddr) && last; + + close(Socket_Handle); + $family = -1; + } + + if ($family != -1) { + print STDERR "connected to $host port port $port\n"; + } else { + die "connect attempt failed\n"; + } + +=head1 DESCRIPTION + +This module supports getaddrinfo() and getnameinfo() to intend to +enable protocol independent programing. +If your environment supports IPv6, IPv6 related defines such as +AF_INET6 are included. + +If you use Socket6 module, be sure to specify "use Socket" as well as +"use Socket6". + +Functions supplied are: + +=item inet_pton AF HOST + +=item inet_ntop AF ADDR + +=item pack_sockaddr_in6 PORT ADDR + +=item pack_sockaddr_in6_all PORT FLOWINFO ADDR SCOPEID + +=item unpack_sockaddr_in6 NAME + +=item unpack_sockaddr_in6_all NAME + +=item gethostbyname2 HOSTNAME, SERVNAME + +=item getaddrinfo HOSTNAME, SERVNAME, FAMILY, SOCKTYPE, PROTOCOL, FLAGS + + Arguments from FAMILY to FLAGS are optional. + +=item getnameinfo NAME, FLAGS + + FLAGS argument is optional. + +=over + +=back + +=cut + +use Carp; + +require Exporter; +require DynaLoader; +@ISA = qw(Exporter DynaLoader); +@EXPORT = qw( + inet_pton inet_ntop pack_sockaddr_in6 pack_sockaddr_in6_all + unpack_sockaddr_in6 unpack_sockaddr_in6_all sockaddr_in6 + gethostbyname2 getaddrinfo getnameinfo + in6addr_any in6addr_loopback + AF_INET6 + AI_ADDRCONFIG + AI_ALL + AI_CANONNAME + AI_NUMERICHOST + AI_DEFAULT + AI_MASK + AI_PASSIVE + AI_V4MAPPED + AI_V4MAPPED_CFG + IP_AUTH_TRANS_LEVEL + IP_AUTH_NETWORK_LEVEL + IP_ESP_TRANS_LEVEL + IP_ESP_NETWORK_LEVEL + IPPROTO_IP + IPPROTO_IPV6 + IPSEC_LEVEL_AVAIL + IPSEC_LEVEL_BYPASS + IPSEC_LEVEL_DEFAULT + IPSEC_LEVEL_NONE + IPSEC_LEVEL_REQUIRE + IPSEC_LEVEL_UNIQUE + IPSEC_LEVEL_USE + IPV6_AUTH_TRANS_LEVEL + IPV6_AUTH_NETWORK_LEVEL + IPV6_ESP_NETWORK_LEVEL + IPV6_ESP_TRANS_LEVEL + NI_NOFQDN + NI_NUMERICHOST + NI_NAMEREQD + NI_NUMERICSERV + NI_DGRAM + NI_WITHSCOPEID + PF_INET6 +); + +%EXPORT_TAGS = ( + all => [@EXPORT], +); + +sub sockaddr_in6 { + if (wantarray) { + croak "usage: (port,iaddr) = sockaddr_in6(sin_sv)" unless @_ == 1; + unpack_sockaddr_in6(@_); + } else { + croak "usage: sin_sv = sockaddr_in6(port,iaddr))" unless @_ == 2; + pack_sockaddr_in6(@_); + } +} + +sub AUTOLOAD { + my($constname); + ($constname = $AUTOLOAD) =~ s/.*:://o; + my $val = constant($constname, @_ ? $_[0] : 0); + if ($! != 0) { + my ($pack, $file, $line) = caller; + croak "Your vendor has not defined Socket macro $constname, used"; + } + eval "sub $AUTOLOAD { $val }"; + goto &$AUTOLOAD; +} + +bootstrap Socket6 $VERSION; + +1; diff --git a/cpan/dist/Socket6/Socket6.xs b/cpan/dist/Socket6/Socket6.xs new file mode 100644 index 00000000..c231e6b4 --- /dev/null +++ b/cpan/dist/Socket6/Socket6.xs @@ -0,0 +1,668 @@ +/* + * Socket6.xs + * $Id: Socket6.xs,v 1.8 2000/05/27 07:44:14 ume Exp $ + * + * Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. + * All rights reserved. + * + * This moduled is besed on perl5.005_55-v6-19990721 written by KAME + * Project. + * + * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the project nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" + +#include <sys/types.h> +#include <sys/socket.h> +#include <netinet/in.h> +#ifdef __KAME__ +# include <net/route.h> +# include <netinet6/ipsec.h> +#endif +#include <netdb.h> + +#include "config.h" + +#ifndef HAVE_GETADDRINFO +#include "getaddrinfo.c" +#define NI_MAXHOST 1025 +#define NI_MAXSERV 32 +#define HAVE_GETADDRINFO +#endif +#ifndef HAVE_GETNAMEINFO +#include "getnameinfo.c" +#define HAVE_GETNAMEINFO +#endif + +#ifndef HAVE_PL_SV_UNDEF +#define PL_sv_undef sv_undef +#endif + +static int +not_here(char *s) +{ + croak("Socket6::%s not implemented on this architecture", s); + return -1; +} + +static double +constant(char *name, int arg) +{ + errno = 0; + switch (*name) { + case 'A': + if (strEQ(name, "AF_INET6")) +#ifdef AF_INET6 + return AF_INET6; +#else + goto not_there; +#endif + if (strEQ(name, "AI_ADDRCONFIG")) +#ifdef AI_ADDRCONFIG + return AI_ADDRCONFIG; +#else + goto not_there; +#endif + if (strEQ(name, "AI_ALL")) +#ifdef AI_ALL + return AI_ALL; +#else + goto not_there; +#endif + if (strEQ(name, "AI_CANONNAME")) +#ifdef AI_CANONNAME + return AI_CANONNAME; +#else + goto not_there; +#endif + if (strEQ(name, "AI_NUMERICHOST")) +#ifdef AI_NUMERICHOST + return AI_NUMERICHOST; +#else + goto not_there; +#endif + if (strEQ(name, "AI_DEFAULT")) +#ifdef AI_DEFAULT + return AI_DEFAULT; +#else + goto not_there; +#endif + if (strEQ(name, "AI_MASK")) +#ifdef AI_MASK + return AI_MASK; +#else + goto not_there; +#endif + if (strEQ(name, "AI_PASSIVE")) +#ifdef AI_PASSIVE + return AI_PASSIVE; +#else + goto not_there; +#endif + if (strEQ(name, "AI_V4MAPPED")) +#ifdef AI_V4MAPPED + return AI_V4MAPPED; +#else + goto not_there; +#endif + if (strEQ(name, "AI_V4MAPPED_CFG")) +#ifdef AI_V4MAPPED_CFG + return AI_V4MAPPED_CFG; +#else + goto not_there; +#endif + break; + case 'I': + if (strEQ(name, "IP_AUTH_TRANS_LEVEL")) +#ifdef IP_AUTH_TRANS_LEVEL + return IP_AUTH_TRANS_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IP_AUTH_NETWORK_LEVEL")) +#ifdef IP_AUTH_NETWORK_LEVEL + return IP_AUTH_NETWORK_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IP_ESP_TRANS_LEVEL")) +#ifdef IP_ESP_TRANS_LEVEL + return IP_ESP_TRANS_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IP_EPS_NETWORK_LEVEL")) +#ifdef IP_EPS_NETWORK_LEVEL + return IP_EPS_NETWORK_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IPPROTO_IP")) +#ifdef IPPROTO_IP + return IPPROTO_IP; +#else + goto not_there; +#endif + if (strEQ(name, "IPPROTO_IPV6")) +#ifdef IPPROTO_IPV6 + return IPPROTO_IPV6; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_AVAIL")) +#ifdef IPSEC_LEVEL_AVAIL + return IPSEC_LEVEL_AVAIL; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_BYPASS")) +#ifdef IPSEC_LEVEL_BYPASS + return IPSEC_LEVEL_BYPASS; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_DEFAULT")) +#ifdef IPSEC_LEVEL_DEFAULT + return IPSEC_LEVEL_DEFAULT; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_NONE")) +#ifdef IPSEC_LEVEL_NONE + return IPSEC_LEVEL_NONE; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_REQUIRE")) +#ifdef IPSEC_LEVEL_REQUIRE + return IPSEC_LEVEL_REQUIRE; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_UNIQUE")) +#ifdef IPSEC_LEVEL_UNIQUE + return IPSEC_LEVEL_UNIQUE; +#else + goto not_there; +#endif + if (strEQ(name, "IPSEC_LEVEL_USE")) +#ifdef IPSEC_LEVEL_USE + return IPSEC_LEVEL_USE; +#else + goto not_there; +#endif + if (strEQ(name, "IPV6_AUTH_TRANS_LEVEL")) +#ifdef IPV6_AUTH_TRANS_LEVEL + return IPV6_AUTH_TRANS_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IPV6_AUTH_NETWORK_LEVEL")) +#ifdef IPV6_AUTH_NETWORK_LEVEL + return IPV6_AUTH_NETWORK_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IPV6_ESP_TRANS_LEVEL")) +#ifdef IPV6_ESP_TRANS_LEVEL + return IPV6_ESP_TRANS_LEVEL; +#else + goto not_there; +#endif + if (strEQ(name, "IPV6_EPS_NETWORK_LEVEL")) +#ifdef IPV6_EPS_NETWORK_LEVEL + return IPV6_EPS_NETWORK_LEVEL; +#else + goto not_there; +#endif + break; + case 'N': + if (strEQ(name, "NI_NOFQDN")) +#ifdef NI_NOFQDN + return NI_NOFQDN; +#else + goto not_there; +#endif + if (strEQ(name, "NI_NUMERICHOST")) +#ifdef NI_NUMERICHOST + return NI_NUMERICHOST; +#else + goto not_there; +#endif + if (strEQ(name, "NI_NAMEREQD")) +#ifdef NI_NAMEREQD + return NI_NAMEREQD; +#else + goto not_there; +#endif + if (strEQ(name, "NI_NUMERICSERV")) +#ifdef NI_NUMERICSERV + return NI_NUMERICSERV; +#else + goto not_there; +#endif + if (strEQ(name, "NI_DGRAM")) +#ifdef NI_DGRAM + return NI_DGRAM; +#else + goto not_there; +#endif + if (strEQ(name, "NI_WITHSCOPEID")) +#ifdef NI_WITHSCOPEID + return NI_WITHSCOPEID; +#else + goto not_there; +#endif + break; + case 'P': + if (strEQ(name, "PF_INET6")) +#ifdef PF_INET6 + return PF_INET6; +#else + goto not_there; +#endif + break; + } + errno = EINVAL; + return 0; + +not_there: + errno = ENOENT; + return 0; +} + + +MODULE = Socket6 PACKAGE = Socket6 + +double +constant(name,arg) + char * name + int arg + +void +gethostbyname2(host, af) + char * host; + int af; + PPCODE: +{ +#ifdef HAVE_GETHOSTBYNAME2 + struct hostent *phe; + int count, i; + + if (phe = gethostbyname2(host, af)) { + for (count = 0; phe->h_addr_list[count]; ++count); + EXTEND(sp, 4 + count); + PUSHs(sv_2mortal(newSVpv((char *) phe->h_name, + strlen(phe->h_name)))); + PUSHs(sv_2mortal(newSVpv((char *) phe->h_aliases, + sizeof(char *)))); + PUSHs(sv_2mortal(newSViv((IV) phe->h_addrtype))); + PUSHs(sv_2mortal(newSViv((IV) phe->h_length))); + for (i = 0; i < count; ++i) { + PUSHs(sv_2mortal(newSVpv((char *)phe->h_addr_list[i], + phe->h_length))); + } + } +#else + ST(0) = (SV *) not_here("gethostbyname2"); +#endif +} + +void +inet_pton(af, host) + int af + char * host + CODE: +{ +#ifdef HAVE_INET_PTON + union { +#ifdef INET6_ADDRSTRLEN + struct in6_addr addr6; +#endif + struct in_addr addr4; + } ip_address; + int len; + struct hostent * phe; + int ok; + + if (phe = gethostbyname2(host, af)) { + Copy( phe->h_addr, &ip_address, phe->h_length, char ); + len = phe->h_length; + ok = 1; + } else { + switch (af) { +#ifdef INET6_ADDRSTRLEN + case AF_INET6: + len = sizeof(struct sockaddr_in6); + break; +#endif + case AF_INET: + len = sizeof(struct sockaddr_in); + break; + default: + croak("Bad address family for %s, got %d", + "Socket6::inet_pton", af); + break; + } + ok = inet_pton(af, host, &ip_address); + } + + ST(0) = sv_newmortal(); + if (ok == 1) { + sv_setpvn( ST(0), (char *)&ip_address, len ); + } +#else + ST(0) = (SV *) not_here("inet_pton"); +#endif +} + +void +inet_ntop(af, address_sv) + int af + SV * address_sv + CODE: +{ +#ifdef HAVE_INET_NTOP + STRLEN addrlen; +#ifdef INET6_ADDRSTRLEN + struct in6_addr addr; + char addr_str[INET6_ADDRSTRLEN]; +#else + struct in_addr addr; + char addr_str[16]; +#endif + char * address = SvPV(address_sv,addrlen); + int alen; + + switch (af) { + case AF_INET: + alen = sizeof(struct in_addr); + break; +#ifdef INET6_ADDRSTRLEN + case AF_INET6: + alen = sizeof(struct in6_addr); + break; +#endif + default: + croak("Unsupported address family for %s, af is %d", + "Socket6::inet_ntop", af); + } + + /* with sanity check, just in case */ + if (alen > sizeof(addr) || alen != addrlen) { + croak("Bad arg length for %s, length is %d, should be %d", + "Socket6::inet_ntop", + addrlen, alen); + } + + Copy( address, &addr, sizeof addr, char ); + addr_str[0] = 0; + inet_ntop(af, &addr, addr_str, sizeof addr_str); + + ST(0) = sv_2mortal(newSVpv(addr_str, strlen(addr_str))); +#else + ST(0) = (SV *) not_here("inet_ntop"); +#endif +} + +void +pack_sockaddr_in6(port,ip6_address) + unsigned short port + char * ip6_address + CODE: +{ +#ifdef INET6_ADDRSTRLEN + struct sockaddr_in6 sin; + + Zero( &sin, sizeof sin, char ); + sin.sin6_family = AF_INET6; + sin.sin6_port = htons(port); + Copy( ip6_address, &sin.sin6_addr, sizeof sin.sin6_addr, char ); + + ST(0) = sv_2mortal(newSVpv((char *)&sin, sizeof sin)); +#else + ST(0) = (SV *) not_here("pack_sockaddr_in6"); +#endif +} + +void +pack_sockaddr_in6_all(port,flowinfo,ip6_address,scope_id) + unsigned short port + unsigned long flowinfo + char * ip6_address + unsigned long scope_id + CODE: +{ +#ifdef INET6_ADDRSTRLEN + struct sockaddr_in6 sin; + + Zero( &sin, sizeof sin, char ); + sin.sin6_family = AF_INET6; + sin.sin6_port = htons(port); + sin.sin6_flowinfo = htonl(flowinfo); + Copy( ip6_address, &sin.sin6_addr, sizeof sin.sin6_addr, char ); +#ifdef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID + sin.sin6_scope_id = htonl(scope_id); +#endif + + ST(0) = sv_2mortal(newSVpv((char *)&sin, sizeof sin)); +#else + ST(0) = (SV *) not_here("pack_sockaddr_in6_all"); +#endif +} + +void +unpack_sockaddr_in6(sin_sv) + SV * sin_sv + PPCODE: +{ +#ifdef INET6_ADDRSTRLEN + STRLEN sockaddrlen; + struct sockaddr_in6 addr; + unsigned short port; + struct in6_addr ip6_address; + char * sin = SvPV(sin_sv,sockaddrlen); + if (sockaddrlen != sizeof(addr)) { + croak("Bad arg length for %s, length is %d, should be %d", + "Socket6::unpack_sockaddr_in6", + sockaddrlen, sizeof(addr)); + } + Copy( sin, &addr,sizeof addr, char ); + if ( addr.sin6_family != AF_INET6 ) { + croak("Bad address family for %s, got %d, should be %d", + "Socket6::unpack_sockaddr_in6", + addr.sin6_family, + AF_INET6); + } + port = ntohs(addr.sin6_port); + ip6_address = addr.sin6_addr; + + EXTEND(sp, 2); + PUSHs(sv_2mortal(newSViv((IV) port))); + PUSHs(sv_2mortal(newSVpv((char *)&ip6_address,sizeof ip6_address))); +#else + ST(0) = (SV *) not_here("unpack_sockaddr_in6"); +#endif +} + +void +unpack_sockaddr_in6_all(sin_sv) + SV * sin_sv + PPCODE: +{ +#ifdef INET6_ADDRSTRLEN + STRLEN sockaddrlen; + struct sockaddr_in6 addr; + unsigned short port; + unsigned long flowinfo; + struct in6_addr ip6_address; + unsigned long scope_id; + char * sin = SvPV(sin_sv,sockaddrlen); + if (sockaddrlen != sizeof(addr)) { + croak("Bad arg length for %s, length is %d, should be %d", + "Socket6::unpack_sockaddr_in6", + sockaddrlen, sizeof(addr)); + } + Copy( sin, &addr,sizeof addr, char ); + if ( addr.sin6_family != AF_INET6 ) { + croak("Bad address family for %s, got %d, should be %d", + "Socket6::unpack_sockaddr_in6", + addr.sin6_family, + AF_INET6); + } + port = ntohs(addr.sin6_port); + flowinfo = ntohl(addr.sin6_flowinfo); + ip6_address = addr.sin6_addr; +#ifdef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID + scope_id = ntohl(addr.sin6_scope_id); +#else + scope_id = 0; +#endif + + EXTEND(sp, 5); + PUSHs(sv_2mortal(newSViv((IV) port))); + PUSHs(sv_2mortal(newSViv((IV) flowinfo))); + PUSHs(sv_2mortal(newSVpv((char *)&ip6_address,sizeof ip6_address))); + PUSHs(sv_2mortal(newSViv((IV) scope_id))); +#else + ST(0) = (SV *) not_here("unpack_sockaddr_in6_all"); +#endif +} + +void +in6addr_any() + CODE: +{ +#ifdef INET6_ADDRSTRLEN + ST(0) = sv_2mortal(newSVpv((char *)&in6addr_any, sizeof in6addr_any)); +#else + ST(0) = (SV *) not_here("in6addr_any"); +#endif +} + +void +in6addr_loopback() + CODE: +{ +#ifdef INET6_ADDRSTRLEN + ST(0) = sv_2mortal(newSVpv((char *)&in6addr_loopback, + sizeof in6addr_loopback)); +#else + ST(0) = (SV *) not_here("in6addr_loopback"); +#endif +} + +void +getaddrinfo(host,port,family=0,socktype=0,protocol=0,flags=0) + char * host + char * port + int family + int socktype + int protocol + int flags + PPCODE: +{ +#ifdef HAVE_GETADDRINFO + struct addrinfo hints, * res; + int err; + int count; + + Zero( &hints, sizeof hints, char ); + hints.ai_flags = flags; + hints.ai_family = family; + hints.ai_socktype = socktype; + hints.ai_protocol = protocol; + err = getaddrinfo(*host ? host : 0, *port ? port : 0, &hints, &res); + + if (err == 0) { + struct addrinfo * p; + count = 0; + for (p = res; p; p = p->ai_next) + ++count; + EXTEND(sp, 5 * count); + for (p = res; p; p = p->ai_next) { + PUSHs(sv_2mortal(newSViv((IV) p->ai_family))); + PUSHs(sv_2mortal(newSViv((IV) p->ai_socktype))); + PUSHs(sv_2mortal(newSViv((IV) p->ai_protocol))); + PUSHs(sv_2mortal(newSVpv((char *)p->ai_addr, + p->ai_addrlen))); + if (p->ai_canonname) + PUSHs(sv_2mortal(newSVpv((char *)p->ai_canonname, + strlen(p->ai_canonname)))); + else + PUSHs(&PL_sv_undef); + } + freeaddrinfo(res); + } +#else + ST(0) = (SV *) not_here("getaddrinfo"); +#endif +} + +void +getnameinfo(sin_sv, flags = 0) + SV * sin_sv + int flags; + PPCODE: +{ +#ifdef HAVE_GETNAMEINFO + STRLEN sockaddrlen; + struct sockaddr * sin = (struct sockaddr *)SvPV(sin_sv,sockaddrlen); + char host[NI_MAXHOST]; + char port[NI_MAXSERV]; + int err; + + if (items < 2) { + err = getnameinfo(sin, sockaddrlen, host, sizeof host, + port, sizeof port, 0); + if (err) + err = getnameinfo(sin, sockaddrlen, host, sizeof host, + port, sizeof port, NI_NUMERICSERV); + if (err) + err = getnameinfo(sin, sockaddrlen, host, sizeof host, + port, sizeof port, NI_NUMERICHOST); + if (err) + err = getnameinfo(sin, sockaddrlen, host, sizeof host, + port, sizeof port, + NI_NUMERICHOST|NI_NUMERICSERV); + } else + err = getnameinfo(sin, sockaddrlen, host, sizeof host, + port, sizeof port, flags); + + if (err == 0) { + EXTEND(sp, 2); + PUSHs(sv_2mortal(newSVpv(host, strlen(host)))); + PUSHs(sv_2mortal(newSVpv(port, strlen(port)))); + } +#else + ST(0) = (SV *) not_here("getnameinfo"); +#endif +} diff --git a/cpan/dist/Socket6/acconfig.h b/cpan/dist/Socket6/acconfig.h new file mode 100644 index 00000000..5e944546 --- /dev/null +++ b/cpan/dist/Socket6/acconfig.h @@ -0,0 +1,41 @@ +/* + * $Id: acconfig.h,v 1.2 2000/03/15 19:08:18 ume Exp $ + * + * Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the project nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#undef HAVE_PL_SV_UNDEF + +#undef HAVE_GETADDRINFO +#undef HAVE_GETHOSTBYNAME2 +#undef HAVE_GETNAMEINFO +#undef HAVE_INET_NTOP +#undef HAVE_INET_PTON + +#undef HAVE_SOCKADDR_SA_LEN +#undef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID diff --git a/cpan/dist/Socket6/aclocal.m4 b/cpan/dist/Socket6/aclocal.m4 new file mode 100644 index 00000000..49bbc793 --- /dev/null +++ b/cpan/dist/Socket6/aclocal.m4 @@ -0,0 +1,167 @@ +dnl Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. +dnl All rights reserved. +dnl +dnl Redistribution and use in source and binary forms, with or without +dnl modification, are permitted provided that the following conditions +dnl are met: +dnl 1. Redistributions of source code must retain the above copyright +dnl notice, this list of conditions and the following disclaimer. +dnl 2. Redistributions in binary form must reproduce the above copyright +dnl notice, this list of conditions and the following disclaimer in the +dnl documentation and/or other materials provided with the distribution. +dnl 3. Neither the name of the project nor the names of its contributors +dnl may be used to endorse or promote products derived from this software +dnl without specific prior written permission. +dnl +dnl THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +dnl ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +dnl IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +dnl ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +dnl FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +dnl DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +dnl OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +dnl HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +dnl LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +dnl OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +dnl SUCH DAMAGE. + +dnl $Id: aclocal.m4,v 1.3 2000/04/15 07:25:36 ume Exp $ + +dnl SOCKET6_CHECK_PL_SV_UNDEF(VALUE-IF-FOUND , VALUE-IF-NOT-FOUND +dnl [, PERL-PATH]) +AC_DEFUN(SOCKET6_CHECK_PL_SV_UNDEF, [ +AC_MSG_CHECKING([whether your Perl5 have PL_sv_undef]) +AC_CACHE_VAL(socket6_cv_pl_sv_undef,[ +rm -rf conftest +mkdir conftest +cd conftest +cat >Makefile.PL <<EOF +use ExtUtils::MakeMaker; +WriteMakefile( + NAME => 'conftest', + VERSION_FROM => 'conftest.pm', + XSPROTOARG => '-noprototypes', +); +EOF +cat > conftest.pm <<EOF +package conftest; +use vars qw(\$VERSION); +\$VERSION = "0.0"; +EOF +cat > conftest.xs <<EOF +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" +MODULE = conftest PACKAGE = conftest +void +conftest() + CODE: + ST(0) = &PL_sv_undef; +EOF +ifelse([$3], , socket6_cv_perl_path='perl', socket6_cv_perl_path=$3) +if { (eval $socket6_cv_perl_path Makefile.PL) 2>&5 >/dev/null; (eval make) 2>&5 >/dev/null; }; then + socket6_cv_pl_sv_undef='yes' +else + socket6_cv_pl_sv_undef='no' +fi +cd .. +rm -rf conftest +]) +if test $socket6_cv_pl_sv_undef = 'yes'; then + AC_MSG_RESULT(yes) + ifelse([$1], , :, [$1]) +else + AC_MSG_RESULT(no) + ifelse([$2], , :, [$2]) +fi +]) + +dnl IPv6_CHECK_SIN6_SCOPE_ID(VALUE-IF-FOUND , VALUE-IF-NOT-FOUND) +AC_DEFUN(IPv6_CHECK_SIN6_SCOPE_ID, [ +AC_MSG_CHECKING([whether you have sin6_scope_id in struct sockaddr_in6]) +AC_CACHE_VAL(ipv6_cv_sin6_scope_id, [dnl +AC_TRY_COMPILE([#include <sys/types.h> +#include <sys/socket.h> +#include <netinet/in.h>], + [struct sockaddr_in6 sin6; int i = sin6.sin6_scope_id;], + [ipv6_cv_sin6_scope_id=yes], [ipv6_cv_sin6_scope_id=no])])dnl +if test $ipv6_cv_sin6_scope_id = yes; then + ifelse([$1], , AC_DEFINE(HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID), [$1]) +else + ifelse([$2], , :, [$2]) +fi +AC_MSG_RESULT($ipv6_cv_sin6_scope_id)]) +dnl +dnl whether you have sa_len in struct sockaddr +AC_DEFUN(IPv6_CHECK_SA_LEN, [ +AC_MSG_CHECKING([whether you have sa_len in struct sockaddr]) +AC_CACHE_VAL(ipv6_cv_sa_len, [dnl +AC_TRY_COMPILE([#include <sys/types.h> +#include <sys/socket.h>], + [struct sockaddr sa; int i = sa.sa_len;], + [ipv6_cv_sa_len=yes], [ipv6_cv_sa_len=no])])dnl +if test $ipv6_cv_sa_len = yes; then + ifelse([$1], , AC_DEFINE(HAVE_SOCKADDR_SA_LEN), [$1]) +else + ifelse([$2], , :, [$2]) +fi +AC_MSG_RESULT($ipv6_cv_sa_len)]) +dnl +dnl See whether we can use IPv6 related functions +AC_DEFUN(IPv6_CHECK_FUNC, [ +changequote(, )dnl +ac_tr_lib=HAVE_`echo $1 | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` +changequote([, ])dnl +AC_CHECK_FUNC($1, [dnl + AC_DEFINE_UNQUOTED($ac_tr_lib) + ac_cv_lib_inet6_$1=no], [dnl + AC_MSG_CHECKING([whether your system has IPv6 directory]) + AC_CACHE_VAL(ipv6_cv_dir, [dnl + for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do + if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then + break + fi + done])dnl + AC_MSG_RESULT($ipv6_cv_dir) + if test $ipv6_cv_dir = no; then + ac_cv_lib_inet6_$1=no + else + if test x$ipv6_libinet6 = x; then + ipv6_libinet6=no + SAVELDFLAGS="$LDFLAGS" + LDFLAGS="-L$ipv6_cv_dir/lib" + fi + AC_CHECK_LIB(inet6, $1, [dnl + AC_DEFINE_UNQUOTED($ac_tr_lib) + if test $ipv6_libinet6 = no; then + ipv6_libinet6=yes + LIBS="$LIBS -linet6" + fi],)dnl + if test $ipv6_libinet6 = no; then + LDFLAGS="$SAVELDFLAGS" + fi + fi])dnl +if test $ac_cv_func_$1 = yes -o $ac_cv_lib_inet6_$1 = yes +then + ipv6_cv_$1=yes + ifelse([$2], , :, [$2]) +else + ipv6_cv_$1=no + ifelse([$3], , :, [$3]) +fi]) +dnl +dnl See whether sys/socket.h has socklen_t +AC_DEFUN(IPv6_CHECK_SOCKLEN_T, [ +AC_MSG_CHECKING(for socklen_t) +AC_CACHE_VAL(ipv6_cv_socklen_t, [dnl +AC_TRY_LINK([#include <sys/types.h> +#include <sys/socket.h>], + [socklen_t len = 0;], + [ipv6_cv_socklen_t=yes], [ipv6_cv_socklen_t=no])])dnl +if test $ipv6_cv_socklen_t = yes; then + ifelse([$1], , AC_DEFINE(HAVE_SOCKLEN_T), [$1]) +else + ifelse([$2], , :, [$2]) +fi +AC_MSG_RESULT($ipv6_cv_socklen_t)]) diff --git a/cpan/dist/Socket6/config.h.in b/cpan/dist/Socket6/config.h.in new file mode 100644 index 00000000..8e7d90ee --- /dev/null +++ b/cpan/dist/Socket6/config.h.in @@ -0,0 +1,12 @@ +/* config.h.in. Generated automatically from configure.in by autoheader. */ + +#undef HAVE_PL_SV_UNDEF + +#undef HAVE_GETADDRINFO +#undef HAVE_GETHOSTBYNAME2 +#undef HAVE_GETNAMEINFO +#undef HAVE_INET_NTOP +#undef HAVE_INET_PTON + +#undef HAVE_SOCKADDR_SA_LEN +#undef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID diff --git a/cpan/dist/Socket6/config.pl.in b/cpan/dist/Socket6/config.pl.in new file mode 100644 index 00000000..59b4334e --- /dev/null +++ b/cpan/dist/Socket6/config.pl.in @@ -0,0 +1,33 @@ +# Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + +# $Id: config.pl.in,v 1.4 2000/03/19 17:52:34 ume Exp $ + +$cc = '@CC@'; +$libs = '@INET6LIBS@'; + +1; diff --git a/cpan/dist/Socket6/configure b/cpan/dist/Socket6/configure new file mode 100755 index 00000000..c9aadfa3 --- /dev/null +++ b/cpan/dist/Socket6/configure @@ -0,0 +1,1957 @@ +#! /bin/sh + +# Guess values for system-dependent variables and create Makefiles. +# Generated automatically using autoconf version 2.13 +# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. + +# Defaults: +ac_help= +ac_default_prefix=/usr/local +# Any additions from configure.in: +ac_help="$ac_help + --with-perl=path-to-perl" + +# Initialize some variables set by options. +# The variables have the same names as the options, with +# dashes changed to underlines. +build=NONE +cache_file=./config.cache +exec_prefix=NONE +host=NONE +no_create= +nonopt=NONE +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +target=NONE +verbose= +x_includes=NONE +x_libraries=NONE +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datadir='${prefix}/share' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +libdir='${exec_prefix}/lib' +includedir='${prefix}/include' +oldincludedir='/usr/include' +infodir='${prefix}/info' +mandir='${prefix}/man' + +# Initialize some other variables. +subdirs= +MFLAGS= MAKEFLAGS= +SHELL=${CONFIG_SHELL-/bin/sh} +# Maximum number of lines to put in a shell here document. +ac_max_here_lines=12 + +ac_prev= +for ac_option +do + + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval "$ac_prev=\$ac_option" + ac_prev= + continue + fi + + case "$ac_option" in + -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) ac_optarg= ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case "$ac_option" in + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir="$ac_optarg" ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build="$ac_optarg" ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file="$ac_optarg" ;; + + -datadir | --datadir | --datadi | --datad | --data | --dat | --da) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ + | --da=*) + datadir="$ac_optarg" ;; + + -disable-* | --disable-*) + ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } + fi + ac_feature=`echo $ac_feature| sed 's/-/_/g'` + eval "enable_${ac_feature}=no" ;; + + -enable-* | --enable-*) + ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } + fi + ac_feature=`echo $ac_feature| sed 's/-/_/g'` + case "$ac_option" in + *=*) ;; + *) ac_optarg=yes ;; + esac + eval "enable_${ac_feature}='$ac_optarg'" ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix="$ac_optarg" ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he) + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat << EOF +Usage: configure [options] [host] +Options: [defaults in brackets after descriptions] +Configuration: + --cache-file=FILE cache test results in FILE + --help print this message + --no-create do not create output files + --quiet, --silent do not print \`checking...' messages + --version print the version of autoconf that created configure +Directory and file names: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [same as prefix] + --bindir=DIR user executables in DIR [EPREFIX/bin] + --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] + --libexecdir=DIR program executables in DIR [EPREFIX/libexec] + --datadir=DIR read-only architecture-independent data in DIR + [PREFIX/share] + --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data in DIR + [PREFIX/com] + --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] + --libdir=DIR object code libraries in DIR [EPREFIX/lib] + --includedir=DIR C header files in DIR [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] + --infodir=DIR info documentation in DIR [PREFIX/info] + --mandir=DIR man documentation in DIR [PREFIX/man] + --srcdir=DIR find the sources in DIR [configure dir or ..] + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM + run sed PROGRAM on installed program names +EOF + cat << EOF +Host type: + --build=BUILD configure for building on BUILD [BUILD=HOST] + --host=HOST configure for HOST [guessed] + --target=TARGET configure for TARGET [TARGET=HOST] +Features and packages: + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --x-includes=DIR X include files are in DIR + --x-libraries=DIR X library files are in DIR +EOF + if test -n "$ac_help"; then + echo "--enable and --with options recognized:$ac_help" + fi + exit 0 ;; + + -host | --host | --hos | --ho) + ac_prev=host ;; + -host=* | --host=* | --hos=* | --ho=*) + host="$ac_optarg" ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir="$ac_optarg" ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir="$ac_optarg" ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir="$ac_optarg" ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir="$ac_optarg" ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst \ + | --locals | --local | --loca | --loc | --lo) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* \ + | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) + localstatedir="$ac_optarg" ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir="$ac_optarg" ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir="$ac_optarg" ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix="$ac_optarg" ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix="$ac_optarg" ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix="$ac_optarg" ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name="$ac_optarg" ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir="$ac_optarg" ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir="$ac_optarg" ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site="$ac_optarg" ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir="$ac_optarg" ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir="$ac_optarg" ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target="$ac_optarg" ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers) + echo "configure generated by autoconf version 2.13" + exit 0 ;; + + -with-* | --with-*) + ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then + { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } + fi + ac_package=`echo $ac_package| sed 's/-/_/g'` + case "$ac_option" in + *=*) ;; + *) ac_optarg=yes ;; + esac + eval "with_${ac_package}='$ac_optarg'" ;; + + -without-* | --without-*) + ac_package=`echo $ac_option|sed -e 's/-*without-//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then + { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } + fi + ac_package=`echo $ac_package| sed 's/-/_/g'` + eval "with_${ac_package}=no" ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes="$ac_optarg" ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries="$ac_optarg" ;; + + -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } + ;; + + *) + if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then + echo "configure: warning: $ac_option: invalid host type" 1>&2 + fi + if test "x$nonopt" != xNONE; then + { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } + fi + nonopt="$ac_option" + ;; + + esac +done + +if test -n "$ac_prev"; then + { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; } +fi + +trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 + +# File descriptor usage: +# 0 standard input +# 1 file creation +# 2 errors and warnings +# 3 some systems may open it to /dev/tty +# 4 used on the Kubota Titan +# 6 checking for... messages and results +# 5 compiler messages saved in config.log +if test "$silent" = yes; then + exec 6>/dev/null +else + exec 6>&1 +fi +exec 5>./config.log + +echo "\ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. +" 1>&5 + +# Strip out --no-create and --no-recursion so they do not pile up. +# Also quote any args containing shell metacharacters. +ac_configure_args= +for ac_arg +do + case "$ac_arg" in + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c) ;; + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;; + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) + ac_configure_args="$ac_configure_args '$ac_arg'" ;; + *) ac_configure_args="$ac_configure_args $ac_arg" ;; + esac +done + +# NLS nuisances. +# Only set these to C if already set. These must not be set unconditionally +# because not all systems understand e.g. LANG=C (notably SCO). +# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! +# Non-C LC_CTYPE values break the ctype check. +if test "${LANG+set}" = set; then LANG=C; export LANG; fi +if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi +if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi +if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -rf conftest* confdefs.h +# AIX cpp loses on an empty file, so make sure it contains at least a newline. +echo > confdefs.h + +# A filename unique to this package, relative to the directory that +# configure is in, which we can look for to find out if srcdir is correct. +ac_unique_file=Socket6.pm + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then its parent. + ac_prog=$0 + ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` + test "x$ac_confdir" = "x$ac_prog" && ac_confdir=. + srcdir=$ac_confdir + if test ! -r $srcdir/$ac_unique_file; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r $srcdir/$ac_unique_file; then + if test "$ac_srcdir_defaulted" = yes; then + { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; } + else + { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; } + fi +fi +srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` + +# Prefer explicitly selected file to automatically selected ones. +if test -z "$CONFIG_SITE"; then + if test "x$prefix" != xNONE; then + CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" + else + CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" + fi +fi +for ac_site_file in $CONFIG_SITE; do + if test -r "$ac_site_file"; then + echo "loading site script $ac_site_file" + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + echo "loading cache $cache_file" + . $cache_file +else + echo "creating cache $cache_file" + > $cache_file +fi + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +ac_exeext= +ac_objext=o +if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then + # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. + if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then + ac_n= ac_c=' +' ac_t=' ' + else + ac_n=-n ac_c= ac_t= + fi +else + ac_n= ac_c='\c' ac_t= +fi + + + + +# Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:532: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="gcc" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:562: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_prog_rejected=no + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + break + fi + done + IFS="$ac_save_ifs" +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# -gt 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + set dummy "$ac_dir/$ac_word" "$@" + shift + ac_cv_prog_CC="$@" + fi +fi +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -z "$CC"; then + case "`uname -s`" in + *win32* | *WIN32*) + # Extract the first word of "cl", so it can be a program name with args. +set dummy cl; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:613: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="cl" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + ;; + esac + fi + test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } +fi + +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:645: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +cat > conftest.$ac_ext << EOF + +#line 656 "configure" +#include "confdefs.h" + +main(){return(0);} +EOF +if { (eval echo configure:661: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then + ac_cv_prog_cc_cross=no + else + ac_cv_prog_cc_cross=yes + fi +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + ac_cv_prog_cc_works=no +fi +rm -fr conftest* +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 +if test $ac_cv_prog_cc_works = no; then + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } +fi +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:687: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +echo "configure:692: checking whether we are using GNU C" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.c <<EOF +#ifdef __GNUC__ + yes; +#endif +EOF +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:701: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes +else + ac_cv_prog_gcc=no +fi +fi + +echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +if test $ac_cv_prog_gcc = yes; then + GCC=yes +else + GCC= +fi + +ac_test_CFLAGS="${CFLAGS+set}" +ac_save_CFLAGS="$CFLAGS" +CFLAGS= +echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +echo "configure:720: checking whether ${CC-cc} accepts -g" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + echo 'void f(){}' > conftest.c +if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes +else + ac_cv_prog_cc_g=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS="$ac_save_CFLAGS" +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi + + + +default_perl_path=`which perl | sed -e 's/\/\/*[^\/]*$//'` + + +# Check whether --with-perl or --without-perl was given. +if test "${with_perl+set}" = set; then + withval="$with_perl" + ac_cv_path_perl=$withval + +else + +for ac_prog in perl5 jperl5 perl jperl +do +# Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:768: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_path_perl'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + case "$perl" in + /*) + ac_cv_path_perl="$perl" # Let the user override the test with a path. + ;; + ?:/*) + ac_cv_path_perl="$perl" # Let the user override the test with a dos path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="/usr/local/bin:/opt/local/bin:/usr/bin:$default_perl_path:." + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_path_perl="$ac_dir/$ac_word" + break + fi + done + IFS="$ac_save_ifs" + ;; +esac +fi +perl="$ac_cv_path_perl" +if test -n "$perl"; then + echo "$ac_t""$perl" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +test -n "$perl" && break +done + + +fi + + +if test x"$ac_cv_path_perl" = x""; then + { echo "configure: error: Cannot find perl; please use --with-perl=/path/to/perl option." 1>&2; exit 1; } +fi +PERLPATH=$ac_cv_path_perl + + +echo $ac_n "checking whether your Perl5 have PL_sv_undef""... $ac_c" 1>&6 +echo "configure:814: checking whether your Perl5 have PL_sv_undef" >&5 +if eval "test \"`echo '$''{'socket6_cv_pl_sv_undef'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + +rm -rf conftest +mkdir conftest +cd conftest +cat >Makefile.PL <<EOF +use ExtUtils::MakeMaker; +WriteMakefile( + NAME => 'conftest', + VERSION_FROM => 'conftest.pm', + XSPROTOARG => '-noprototypes', +); +EOF +cat > conftest.pm <<EOF +package conftest; +use vars qw(\$VERSION); +\$VERSION = "0.0"; +EOF +cat > conftest.xs <<EOF +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" +MODULE = conftest PACKAGE = conftest +void +conftest() + CODE: + ST(0) = &PL_sv_undef; +EOF +socket6_cv_perl_path=$ac_cv_path_perl +if { (eval $socket6_cv_perl_path Makefile.PL) 2>&5 >/dev/null; (eval make) 2>&5 >/dev/null; }; then + socket6_cv_pl_sv_undef='yes' +else + socket6_cv_pl_sv_undef='no' +fi +cd .. +rm -rf conftest + +fi + +if test $socket6_cv_pl_sv_undef = 'yes'; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<\EOF +#define HAVE_PL_SV_UNDEF 1 +EOF + +else + echo "$ac_t""no" 1>&6 + : +fi + + + +ac_tr_lib=HAVE_`echo getaddrinfo | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` +echo $ac_n "checking for getaddrinfo""... $ac_c" 1>&6 +echo "configure:872: checking for getaddrinfo" >&5 +if eval "test \"`echo '$''{'ac_cv_func_getaddrinfo'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 877 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char getaddrinfo(); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char getaddrinfo(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_getaddrinfo) || defined (__stub___getaddrinfo) +choke me +#else +getaddrinfo(); +#endif + +; return 0; } +EOF +if { (eval echo configure:900: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_getaddrinfo=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_getaddrinfo=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'getaddrinfo`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + ac_cv_lib_inet6_getaddrinfo=no +else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking whether your system has IPv6 directory""... $ac_c" 1>&6 +echo "configure:922: checking whether your system has IPv6 directory" >&5 + if eval "test \"`echo '$''{'ipv6_cv_dir'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do + if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then + break + fi + done +fi + echo "$ac_t""$ipv6_cv_dir" 1>&6 + if test $ipv6_cv_dir = no; then + ac_cv_lib_inet6_getaddrinfo=no + else + if test x$ipv6_libinet6 = x; then + ipv6_libinet6=no + SAVELDFLAGS="$LDFLAGS" + LDFLAGS="-L$ipv6_cv_dir/lib" + fi + echo $ac_n "checking for getaddrinfo in -linet6""... $ac_c" 1>&6 +echo "configure:942: checking for getaddrinfo in -linet6" >&5 +ac_lib_var=`echo inet6'_'getaddrinfo | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-linet6 $LIBS" +cat > conftest.$ac_ext <<EOF +#line 950 "configure" +#include "confdefs.h" +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char getaddrinfo(); + +int main() { +getaddrinfo() +; return 0; } +EOF +if { (eval echo configure:961: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + if test $ipv6_libinet6 = no; then + ipv6_libinet6=yes + LIBS="$LIBS -linet6" + fi +else + echo "$ac_t""no" 1>&6 +fi + if test $ipv6_libinet6 = no; then + LDFLAGS="$SAVELDFLAGS" + fi + fi +fi +if test $ac_cv_func_getaddrinfo = yes -o $ac_cv_lib_inet6_getaddrinfo = yes +then + ipv6_cv_getaddrinfo=yes + : +else + ipv6_cv_getaddrinfo=no + : +fi + +ac_tr_lib=HAVE_`echo getnameinfo | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` +echo $ac_n "checking for getnameinfo""... $ac_c" 1>&6 +echo "configure:1004: checking for getnameinfo" >&5 +if eval "test \"`echo '$''{'ac_cv_func_getnameinfo'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 1009 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char getnameinfo(); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char getnameinfo(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_getnameinfo) || defined (__stub___getnameinfo) +choke me +#else +getnameinfo(); +#endif + +; return 0; } +EOF +if { (eval echo configure:1032: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_getnameinfo=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_getnameinfo=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'getnameinfo`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + ac_cv_lib_inet6_getnameinfo=no +else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking whether your system has IPv6 directory""... $ac_c" 1>&6 +echo "configure:1054: checking whether your system has IPv6 directory" >&5 + if eval "test \"`echo '$''{'ipv6_cv_dir'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do + if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then + break + fi + done +fi + echo "$ac_t""$ipv6_cv_dir" 1>&6 + if test $ipv6_cv_dir = no; then + ac_cv_lib_inet6_getnameinfo=no + else + if test x$ipv6_libinet6 = x; then + ipv6_libinet6=no + SAVELDFLAGS="$LDFLAGS" + LDFLAGS="-L$ipv6_cv_dir/lib" + fi + echo $ac_n "checking for getnameinfo in -linet6""... $ac_c" 1>&6 +echo "configure:1074: checking for getnameinfo in -linet6" >&5 +ac_lib_var=`echo inet6'_'getnameinfo | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-linet6 $LIBS" +cat > conftest.$ac_ext <<EOF +#line 1082 "configure" +#include "confdefs.h" +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char getnameinfo(); + +int main() { +getnameinfo() +; return 0; } +EOF +if { (eval echo configure:1093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + if test $ipv6_libinet6 = no; then + ipv6_libinet6=yes + LIBS="$LIBS -linet6" + fi +else + echo "$ac_t""no" 1>&6 +fi + if test $ipv6_libinet6 = no; then + LDFLAGS="$SAVELDFLAGS" + fi + fi +fi +if test $ac_cv_func_getnameinfo = yes -o $ac_cv_lib_inet6_getnameinfo = yes +then + ipv6_cv_getnameinfo=yes + : +else + ipv6_cv_getnameinfo=no + : +fi + +ac_tr_lib=HAVE_`echo gethostbyname2 | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` +echo $ac_n "checking for gethostbyname2""... $ac_c" 1>&6 +echo "configure:1136: checking for gethostbyname2" >&5 +if eval "test \"`echo '$''{'ac_cv_func_gethostbyname2'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 1141 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char gethostbyname2(); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char gethostbyname2(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_gethostbyname2) || defined (__stub___gethostbyname2) +choke me +#else +gethostbyname2(); +#endif + +; return 0; } +EOF +if { (eval echo configure:1164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_gethostbyname2=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_gethostbyname2=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'gethostbyname2`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + ac_cv_lib_inet6_gethostbyname2=no +else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking whether your system has IPv6 directory""... $ac_c" 1>&6 +echo "configure:1186: checking whether your system has IPv6 directory" >&5 + if eval "test \"`echo '$''{'ipv6_cv_dir'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do + if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then + break + fi + done +fi + echo "$ac_t""$ipv6_cv_dir" 1>&6 + if test $ipv6_cv_dir = no; then + ac_cv_lib_inet6_gethostbyname2=no + else + if test x$ipv6_libinet6 = x; then + ipv6_libinet6=no + SAVELDFLAGS="$LDFLAGS" + LDFLAGS="-L$ipv6_cv_dir/lib" + fi + echo $ac_n "checking for gethostbyname2 in -linet6""... $ac_c" 1>&6 +echo "configure:1206: checking for gethostbyname2 in -linet6" >&5 +ac_lib_var=`echo inet6'_'gethostbyname2 | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-linet6 $LIBS" +cat > conftest.$ac_ext <<EOF +#line 1214 "configure" +#include "confdefs.h" +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char gethostbyname2(); + +int main() { +gethostbyname2() +; return 0; } +EOF +if { (eval echo configure:1225: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + if test $ipv6_libinet6 = no; then + ipv6_libinet6=yes + LIBS="$LIBS -linet6" + fi +else + echo "$ac_t""no" 1>&6 +fi + if test $ipv6_libinet6 = no; then + LDFLAGS="$SAVELDFLAGS" + fi + fi +fi +if test $ac_cv_func_gethostbyname2 = yes -o $ac_cv_lib_inet6_gethostbyname2 = yes +then + ipv6_cv_gethostbyname2=yes + : +else + ipv6_cv_gethostbyname2=no + : +fi + +ac_tr_lib=HAVE_`echo inet_pton | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` +echo $ac_n "checking for inet_pton""... $ac_c" 1>&6 +echo "configure:1268: checking for inet_pton" >&5 +if eval "test \"`echo '$''{'ac_cv_func_inet_pton'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 1273 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char inet_pton(); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char inet_pton(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_inet_pton) || defined (__stub___inet_pton) +choke me +#else +inet_pton(); +#endif + +; return 0; } +EOF +if { (eval echo configure:1296: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_inet_pton=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_inet_pton=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'inet_pton`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + ac_cv_lib_inet6_inet_pton=no +else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking whether your system has IPv6 directory""... $ac_c" 1>&6 +echo "configure:1318: checking whether your system has IPv6 directory" >&5 + if eval "test \"`echo '$''{'ipv6_cv_dir'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do + if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then + break + fi + done +fi + echo "$ac_t""$ipv6_cv_dir" 1>&6 + if test $ipv6_cv_dir = no; then + ac_cv_lib_inet6_inet_pton=no + else + if test x$ipv6_libinet6 = x; then + ipv6_libinet6=no + SAVELDFLAGS="$LDFLAGS" + LDFLAGS="-L$ipv6_cv_dir/lib" + fi + echo $ac_n "checking for inet_pton in -linet6""... $ac_c" 1>&6 +echo "configure:1338: checking for inet_pton in -linet6" >&5 +ac_lib_var=`echo inet6'_'inet_pton | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-linet6 $LIBS" +cat > conftest.$ac_ext <<EOF +#line 1346 "configure" +#include "confdefs.h" +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char inet_pton(); + +int main() { +inet_pton() +; return 0; } +EOF +if { (eval echo configure:1357: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + if test $ipv6_libinet6 = no; then + ipv6_libinet6=yes + LIBS="$LIBS -linet6" + fi +else + echo "$ac_t""no" 1>&6 +fi + if test $ipv6_libinet6 = no; then + LDFLAGS="$SAVELDFLAGS" + fi + fi +fi +if test $ac_cv_func_inet_pton = yes -o $ac_cv_lib_inet6_inet_pton = yes +then + ipv6_cv_inet_pton=yes + : +else + ipv6_cv_inet_pton=no + : +fi + +ac_tr_lib=HAVE_`echo inet_ntop | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` +echo $ac_n "checking for inet_ntop""... $ac_c" 1>&6 +echo "configure:1400: checking for inet_ntop" >&5 +if eval "test \"`echo '$''{'ac_cv_func_inet_ntop'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 1405 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char inet_ntop(); below. */ +#include <assert.h> +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char inet_ntop(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_inet_ntop) || defined (__stub___inet_ntop) +choke me +#else +inet_ntop(); +#endif + +; return 0; } +EOF +if { (eval echo configure:1428: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_inet_ntop=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_inet_ntop=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'inet_ntop`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + ac_cv_lib_inet6_inet_ntop=no +else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking whether your system has IPv6 directory""... $ac_c" 1>&6 +echo "configure:1450: checking whether your system has IPv6 directory" >&5 + if eval "test \"`echo '$''{'ipv6_cv_dir'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do + if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then + break + fi + done +fi + echo "$ac_t""$ipv6_cv_dir" 1>&6 + if test $ipv6_cv_dir = no; then + ac_cv_lib_inet6_inet_ntop=no + else + if test x$ipv6_libinet6 = x; then + ipv6_libinet6=no + SAVELDFLAGS="$LDFLAGS" + LDFLAGS="-L$ipv6_cv_dir/lib" + fi + echo $ac_n "checking for inet_ntop in -linet6""... $ac_c" 1>&6 +echo "configure:1470: checking for inet_ntop in -linet6" >&5 +ac_lib_var=`echo inet6'_'inet_ntop | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-linet6 $LIBS" +cat > conftest.$ac_ext <<EOF +#line 1478 "configure" +#include "confdefs.h" +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char inet_ntop(); + +int main() { +inet_ntop() +; return 0; } +EOF +if { (eval echo configure:1489: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + if test $ipv6_libinet6 = no; then + ipv6_libinet6=yes + LIBS="$LIBS -linet6" + fi +else + echo "$ac_t""no" 1>&6 +fi + if test $ipv6_libinet6 = no; then + LDFLAGS="$SAVELDFLAGS" + fi + fi +fi +if test $ac_cv_func_inet_ntop = yes -o $ac_cv_lib_inet6_inet_ntop = yes +then + ipv6_cv_inet_ntop=yes + : +else + ipv6_cv_inet_ntop=no + : +fi + +if test $ac_cv_lib_inet6_getaddrinfo = yes; then + INET6LIBS="-L$ipv6_cv_dir/lib -linet6" +fi + + +echo $ac_n "checking whether you have sa_len in struct sockaddr""... $ac_c" 1>&6 +echo "configure:1535: checking whether you have sa_len in struct sockaddr" >&5 +if eval "test \"`echo '$''{'ipv6_cv_sa_len'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 1540 "configure" +#include "confdefs.h" +#include <sys/types.h> +#include <sys/socket.h> +int main() { +struct sockaddr sa; int i = sa.sa_len; +; return 0; } +EOF +if { (eval echo configure:1548: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ipv6_cv_sa_len=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + ipv6_cv_sa_len=no +fi +rm -f conftest* +fi +if test $ipv6_cv_sa_len = yes; then + cat >> confdefs.h <<\EOF +#define HAVE_SOCKADDR_SA_LEN 1 +EOF + +else + : +fi +echo "$ac_t""$ipv6_cv_sa_len" 1>&6 + +echo $ac_n "checking whether you have sin6_scope_id in struct sockaddr_in6""... $ac_c" 1>&6 +echo "configure:1570: checking whether you have sin6_scope_id in struct sockaddr_in6" >&5 +if eval "test \"`echo '$''{'ipv6_cv_sin6_scope_id'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext <<EOF +#line 1575 "configure" +#include "confdefs.h" +#include <sys/types.h> +#include <sys/socket.h> +#include <netinet/in.h> +int main() { +struct sockaddr_in6 sin6; int i = sin6.sin6_scope_id; +; return 0; } +EOF +if { (eval echo configure:1584: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ipv6_cv_sin6_scope_id=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + ipv6_cv_sin6_scope_id=no +fi +rm -f conftest* +fi +if test $ipv6_cv_sin6_scope_id = yes; then + cat >> confdefs.h <<\EOF +#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1 +EOF + +else + : +fi +echo "$ac_t""$ipv6_cv_sin6_scope_id" 1>&6 + + + + +trap '' 1 2 15 +cat > confcache <<\EOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs. It is not useful on other systems. +# If it contains results you don't want to keep, you may remove or edit it. +# +# By default, configure uses ./config.cache as the cache file, +# creating it if it does not exist already. You can give configure +# the --cache-file=FILE option to use a different cache file; that is +# what configure does when it calls configure scripts in +# subdirectories, so they share the cache. +# Giving --cache-file=/dev/null disables caching, for debugging configure. +# config.status only pays attention to the cache file if you give it the +# --recheck option to rerun configure. +# +EOF +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, don't put newlines in cache variables' values. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +(set) 2>&1 | + case `(ac_space=' '; set | grep ac_space) 2>&1` in + *ac_space=\ *) + # `set' does not quote correctly, so add quotes (double-quote substitution + # turns \\\\ into \\, and sed turns \\ into \). + sed -n \ + -e "s/'/'\\\\''/g" \ + -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" + ;; + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' + ;; + esac >> confcache +if cmp -s $cache_file confcache; then + : +else + if test -w $cache_file; then + echo "updating cache $cache_file" + cat confcache > $cache_file + else + echo "not updating unwritable cache $cache_file" + fi +fi +rm -f confcache + +trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +# Any assignment to VPATH causes Sun make to only execute +# the first set of double-colon rules, so remove it if not needed. +# If there is a colon in the path, we need to keep it. +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d' +fi + +trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15 + +DEFS=-DHAVE_CONFIG_H + +# Without the "./", some shells look in PATH for config.status. +: ${CONFIG_STATUS=./config.status} + +echo creating $CONFIG_STATUS +rm -f $CONFIG_STATUS +cat > $CONFIG_STATUS <<EOF +#! /bin/sh +# Generated automatically by configure. +# Run this file to recreate the current configuration. +# This directory was configured as follows, +# on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# +# $0 $ac_configure_args +# +# Compiler output produced by configure, useful for debugging +# configure, is in ./config.log if it exists. + +ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]" +for ac_option +do + case "\$ac_option" in + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" + exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; + -version | --version | --versio | --versi | --vers | --ver | --ve | --v) + echo "$CONFIG_STATUS generated by autoconf version 2.13" + exit 0 ;; + -help | --help | --hel | --he | --h) + echo "\$ac_cs_usage"; exit 0 ;; + *) echo "\$ac_cs_usage"; exit 1 ;; + esac +done + +ac_given_srcdir=$srcdir + +trap 'rm -fr `echo "config.pl gailookup.pl config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 +EOF +cat >> $CONFIG_STATUS <<EOF + +# Protect against being on the right side of a sed subst in config.status. +sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g; + s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF +$ac_vpsub +$extrasub +s%@SHELL@%$SHELL%g +s%@CFLAGS@%$CFLAGS%g +s%@CPPFLAGS@%$CPPFLAGS%g +s%@CXXFLAGS@%$CXXFLAGS%g +s%@FFLAGS@%$FFLAGS%g +s%@DEFS@%$DEFS%g +s%@LDFLAGS@%$LDFLAGS%g +s%@LIBS@%$LIBS%g +s%@exec_prefix@%$exec_prefix%g +s%@prefix@%$prefix%g +s%@program_transform_name@%$program_transform_name%g +s%@bindir@%$bindir%g +s%@sbindir@%$sbindir%g +s%@libexecdir@%$libexecdir%g +s%@datadir@%$datadir%g +s%@sysconfdir@%$sysconfdir%g +s%@sharedstatedir@%$sharedstatedir%g +s%@localstatedir@%$localstatedir%g +s%@libdir@%$libdir%g +s%@includedir@%$includedir%g +s%@oldincludedir@%$oldincludedir%g +s%@infodir@%$infodir%g +s%@mandir@%$mandir%g +s%@CC@%$CC%g +s%@perl@%$perl%g +s%@DEFINES@%$DEFINES%g +s%@INET6LIBS@%$INET6LIBS%g +s%@PERLPATH@%$PERLPATH%g + +CEOF +EOF + +cat >> $CONFIG_STATUS <<\EOF + +# Split the substitutions into bite-sized pieces for seds with +# small command number limits, like on Digital OSF/1 and HP-UX. +ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. +ac_file=1 # Number of current file. +ac_beg=1 # First line for current file. +ac_end=$ac_max_sed_cmds # Line after last line for current file. +ac_more_lines=: +ac_sed_cmds="" +while $ac_more_lines; do + if test $ac_beg -gt 1; then + sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file + else + sed "${ac_end}q" conftest.subs > conftest.s$ac_file + fi + if test ! -s conftest.s$ac_file; then + ac_more_lines=false + rm -f conftest.s$ac_file + else + if test -z "$ac_sed_cmds"; then + ac_sed_cmds="sed -f conftest.s$ac_file" + else + ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" + fi + ac_file=`expr $ac_file + 1` + ac_beg=$ac_end + ac_end=`expr $ac_end + $ac_max_sed_cmds` + fi +done +if test -z "$ac_sed_cmds"; then + ac_sed_cmds=cat +fi +EOF + +cat >> $CONFIG_STATUS <<EOF + +CONFIG_FILES=\${CONFIG_FILES-"config.pl gailookup.pl"} +EOF +cat >> $CONFIG_STATUS <<\EOF +for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then + # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". + case "$ac_file" in + *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` + ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; + *) ac_file_in="${ac_file}.in" ;; + esac + + # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. + + # Remove last slash and all that follows it. Not all systems have dirname. + ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` + if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then + # The file is in a subdirectory. + test ! -d "$ac_dir" && mkdir "$ac_dir" + ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" + # A "../" for each directory in $ac_dir_suffix. + ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` + else + ac_dir_suffix= ac_dots= + fi + + case "$ac_given_srcdir" in + .) srcdir=. + if test -z "$ac_dots"; then top_srcdir=. + else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; + /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; + *) # Relative path. + srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" + top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + + + echo creating "$ac_file" + rm -f "$ac_file" + configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." + case "$ac_file" in + *Makefile*) ac_comsub="1i\\ +# $configure_input" ;; + *) ac_comsub= ;; + esac + + ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` + sed -e "$ac_comsub +s%@configure_input@%$configure_input%g +s%@srcdir@%$srcdir%g +s%@top_srcdir@%$top_srcdir%g +" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file +fi; done +rm -f conftest.s* + +# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where +# NAME is the cpp macro being defined and VALUE is the value it is being given. +# +# ac_d sets the value in "#define NAME VALUE" lines. +ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)' +ac_dB='\([ ][ ]*\)[^ ]*%\1#\2' +ac_dC='\3' +ac_dD='%g' +# ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE". +ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' +ac_uB='\([ ]\)%\1#\2define\3' +ac_uC=' ' +ac_uD='\4%g' +# ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE". +ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' +ac_eB='$%\1#\2define\3' +ac_eC=' ' +ac_eD='%g' + +if test "${CONFIG_HEADERS+set}" != set; then +EOF +cat >> $CONFIG_STATUS <<EOF + CONFIG_HEADERS="config.h" +EOF +cat >> $CONFIG_STATUS <<\EOF +fi +for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then + # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". + case "$ac_file" in + *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` + ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; + *) ac_file_in="${ac_file}.in" ;; + esac + + echo creating $ac_file + + rm -f conftest.frag conftest.in conftest.out + ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` + cat $ac_file_inputs > conftest.in + +EOF + +# Transform confdefs.h into a sed script conftest.vals that substitutes +# the proper values into config.h.in to produce config.h. And first: +# Protect against being on the right side of a sed subst in config.status. +# Protect against being in an unquoted here document in config.status. +rm -f conftest.vals +cat > conftest.hdr <<\EOF +s/[\\&%]/\\&/g +s%[\\$`]%\\&%g +s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp +s%ac_d%ac_u%gp +s%ac_u%ac_e%gp +EOF +sed -n -f conftest.hdr confdefs.h > conftest.vals +rm -f conftest.hdr + +# This sed command replaces #undef with comments. This is necessary, for +# example, in the case of _POSIX_SOURCE, which is predefined and required +# on some systems where configure will not decide to define it. +cat >> conftest.vals <<\EOF +s%^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */% +EOF + +# Break up conftest.vals because some shells have a limit on +# the size of here documents, and old seds have small limits too. + +rm -f conftest.tail +while : +do + ac_lines=`grep -c . conftest.vals` + # grep -c gives empty output for an empty file on some AIX systems. + if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi + # Write a limited-size here document to conftest.frag. + echo ' cat > conftest.frag <<CEOF' >> $CONFIG_STATUS + sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS + echo 'CEOF + sed -f conftest.frag conftest.in > conftest.out + rm -f conftest.in + mv conftest.out conftest.in +' >> $CONFIG_STATUS + sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail + rm -f conftest.vals + mv conftest.tail conftest.vals +done +rm -f conftest.vals + +cat >> $CONFIG_STATUS <<\EOF + rm -f conftest.frag conftest.h + echo "/* $ac_file. Generated automatically by configure. */" > conftest.h + cat conftest.in >> conftest.h + rm -f conftest.in + if cmp -s $ac_file conftest.h 2>/dev/null; then + echo "$ac_file is unchanged" + rm -f conftest.h + else + # Remove last slash and all that follows it. Not all systems have dirname. + ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` + if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then + # The file is in a subdirectory. + test ! -d "$ac_dir" && mkdir "$ac_dir" + fi + rm -f $ac_file + mv conftest.h $ac_file + fi +fi; done + +EOF +cat >> $CONFIG_STATUS <<EOF + +EOF +cat >> $CONFIG_STATUS <<\EOF + +exit 0 +EOF +chmod +x $CONFIG_STATUS +rm -fr confdefs* $ac_clean_files +test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + diff --git a/cpan/dist/Socket6/configure.in b/cpan/dist/Socket6/configure.in new file mode 100644 index 00000000..88906dc7 --- /dev/null +++ b/cpan/dist/Socket6/configure.in @@ -0,0 +1,68 @@ +# Copyright (C) 2000 Hajimu UMEMOTO <ume@mahoroba.org>. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + +# $Id: configure.in,v 1.14 2000/04/15 07:25:37 ume Exp $ + +AC_INIT(Socket6.pm) +AC_CONFIG_HEADER(config.h) + +AC_PROG_CC + +changequote(<<, >>) +default_perl_path=`which perl | sed -e 's/\/\/*[^\/]*$//'` +changequote([,]) + +AC_ARG_WITH(perl,[ --with-perl=path-to-perl], +[ ac_cv_path_perl=$withval +],[ +AC_PATH_PROGS(perl,perl5 jperl5 perl jperl,,/usr/local/bin:/opt/local/bin:/usr/bin:$default_perl_path:.) +]) + +if test x"$ac_cv_path_perl" = x""; then + AC_MSG_ERROR([Cannot find perl; please use --with-perl=/path/to/perl option.]) +fi +PERLPATH=$ac_cv_path_perl + +SOCKET6_CHECK_PL_SV_UNDEF(AC_DEFINE(HAVE_PL_SV_UNDEF), , $ac_cv_path_perl) + +IPv6_CHECK_FUNC(getaddrinfo) +IPv6_CHECK_FUNC(getnameinfo) +IPv6_CHECK_FUNC(gethostbyname2) +IPv6_CHECK_FUNC(inet_pton) +IPv6_CHECK_FUNC(inet_ntop) + +if test $ac_cv_lib_inet6_getaddrinfo = yes; then + INET6LIBS="-L$ipv6_cv_dir/lib -linet6" +fi + +IPv6_CHECK_SA_LEN() +IPv6_CHECK_SIN6_SCOPE_ID() + +AC_SUBST(DEFINES) +AC_SUBST(INET6LIBS) +AC_SUBST(PERLPATH) +AC_OUTPUT(config.pl gailookup.pl) diff --git a/cpan/dist/Socket6/ftpmirror-1.96.diff b/cpan/dist/Socket6/ftpmirror-1.96.diff new file mode 100644 index 00000000..25ff52c6 --- /dev/null +++ b/cpan/dist/Socket6/ftpmirror-1.96.diff @@ -0,0 +1,262 @@ +Index: Fan/FTP/FTP.pm +=================================================================== +RCS file: /usr/home/ume/ncvs/src/ftpmirror/Fan/FTP/FTP.pm,v +retrieving revision 1.1.1.2 +retrieving revision 1.6 +diff -u -r1.1.1.2 -r1.6 +--- Fan/FTP/FTP.pm 2000/03/03 07:35:58 1.1.1.2 ++++ Fan/FTP/FTP.pm 2000/03/09 13:32:04 1.6 +@@ -60,6 +60,9 @@ + + use Carp; + use Socket; ++BEGIN { ++ eval 'use Socket6' unless (eval '&AF_INET6'); # IPv6 patched Perl ++} + use Fan::TCP; + use AutoLoader 'AUTOLOAD'; + +@@ -390,7 +393,7 @@ + $self->clearerror || return undef; + $self->cleardataconn; # always success + +- my($port, $addr) = $self->sockname; ++ my ($port, $addr, $family) = $self->sockname; + + my $acpt = Fan::TCP->new(); + unless (defined($acpt)) { +@@ -398,20 +401,28 @@ + return undef; + } + +- unless ($acpt->do_server(tcp_bindaddr => $addr)) { ++ unless ($acpt->do_server(tcp_family => $family, ++ tcp_bindaddr => $addr)) { + warn("Fan::TCP->do_server failed"); + return undef; + } + +- ($port, $addr) = $acpt->sockname; +- unless ($addr =~ tr/./,/ == 3) { +- warn("ADDRESS=$addr must have just 3 dots"); +- return undef; ++ ($port, $addr, $family) = $acpt->sockname; ++ my $command; ++ if ($family == AF_INET) { ++ unless ($addr =~ tr/./,/ == 3) { ++ warn("ADDRESS=$addr must have just 3 dots"); ++ return undef; ++ } ++ $addr .= sprintf(",%d,%d", ($port >> 8) & 0xff, $port & 0xff); ++ $command = 'PORT'; ++ } else { ++ $addr = "|2|$addr|$port|"; ++ $command = 'EPRT'; + } +- $addr .= sprintf(",%d,%d", ($port >> 8) & 0xff, $port & 0xff); + +- unless ($self->putreq("PORT $addr") =~ /^2/) { +- warn("PORT command failed\n") if $LOG > 5; ++ unless ($self->putreq("$command $addr") =~ /^2/) { ++ warn("$command command failed\n") if $LOG > 5; + $self->error($self->{lastmesg}); + return undef; + } +@@ -437,12 +448,20 @@ + ;# + sub pasv ($) { + my $self = shift; +- my $a_regexp = '\((\d+),(\d+),(\d+),(\d+),(\d+),(\d+)\)'; + + $self->clearerror && + $self->cleardataconn || return undef; + +- if ($self->putreq("PASV") !~ /^2/) { ++ my $family = ($self->sockname)[2]; ++ my ($a_regexp, $command); ++ if ($family == AF_INET) { ++ $a_regexp = '\((\d+),(\d+),(\d+),(\d+),(\d+),(\d+)\)'; ++ $command = 'PASV'; ++ } else { ++ $a_regexp = '\([^\d\s]{3}(\d+)[^\d\s]\)'; ++ $command = 'EPSV'; ++ } ++ if ($self->putreq($command) !~ /^2/) { + $self->error($self->{lastmesg}); + return undef; + } +@@ -452,11 +471,18 @@ + } + + my $bindaddr = $self->{ftp_bindaddr}; +- my $port = $5 * 256 + $6; +- my $addr = join('.', $1, $2, $3, $4); ++ my ($port, $addr); ++ if ($family == AF_INET) { ++ $port = $5 * 256 + $6; ++ $addr = join('.', $1, $2, $3, $4); ++ } else { ++ $port = $1; ++ $addr = ($self->peername)[1]; ++ } + my $data = Fan::TCP->new(); + + $data && $data->do_client( ++ tcp_family => $family, + tcp_bindaddr => $bindaddr, + tcp_host => $addr, + tcp_port => $port +Index: Fan/TCP/TCP.pm +=================================================================== +RCS file: /usr/home/ume/ncvs/src/ftpmirror/Fan/TCP/TCP.pm,v +retrieving revision 1.1.1.1 +retrieving revision 1.12 +diff -u -r1.1.1.1 -r1.12 +--- Fan/TCP/TCP.pm 1999/10/24 10:28:15 1.1.1.1 ++++ Fan/TCP/TCP.pm 2000/03/09 13:32:06 1.12 +@@ -35,15 +35,16 @@ + package Fan::TCP; + + use strict; +-use vars qw($VERSION $LOG +- $tcp_proto $seq_id $sent_octets $recv_octets); ++use vars qw($VERSION $LOG $seq_id $sent_octets $recv_octets); + + use Carp; + use Socket; ++BEGIN { ++ eval 'use Socket6' unless (eval '&AF_INET6'); # IPv6 patched Perl ++} + use AutoLoader 'AUTOLOAD'; + + $VERSION = '0.03'; +-$tcp_proto = (getprotobyname('tcp'))[2]; + + ;# + BEGIN { +@@ -463,27 +464,21 @@ + + # check local side port #. + my $port = $params{tcp_bindport} || $self->{tcp_bindport} || 0; +- if ($port !~ /^\d+$/) { +- if (!defined($port = getservbyname($port, 'tcp'))) { +- my $e = $!.''; +- $self->error($e, &FATAL); +- carp("$self: getservbyname($port) - $e"); +- return undef; +- } +- } + + # define local side address if bindaddr is not null string. +- my $addr = inet_aton( +- $params{tcp_bindaddr} || $self->{tcp_bindaddr} || '0.0.0.0'); +- +- # parameter for bind. +- my $me = sockaddr_in($port, $addr); ++ my $family = $params{tcp_family} ? $params{tcp_family} : AF_INET; ++ my $tcp_bindaddr = $params{tcp_bindaddr} || $self->{tcp_bindaddr} || ++ (($family == AF_INET) ? '0.0.0.0' : '::'); ++ ++ my ($socktype, $proto, $me, $canonname); ++ ($family, $socktype, $proto, $me, $canonname) ++ = getaddrinfo($tcp_bindaddr, $port, $family, SOCK_STREAM); + + # local file handle... + local *SOCKET; + + # creating a stream socket. +- unless (socket(SOCKET, PF_INET, SOCK_STREAM, $tcp_proto)) { ++ unless (socket(SOCKET, $family, $socktype, $proto)) { + my $e = $!.''; + $self->error($e, &FATAL); + carp("$self: socket - $e") if $LOG >= 5; +@@ -539,41 +534,27 @@ + return undef; + } + +- # try to parse port number +- if ($port !~ /^\d+$/) { +- if (!defined($port = getservbyname($port, 'tcp'))) { +- my $e = $!.''; +- $self->error($e, &FATAL); +- carp("$self: getservbyname($port) - $e"); +- return undef; +- } +- } +- +- # check server name +- my @addr; +- if ($host =~ /^(\d+)\.(\d+)\.(\d+).(\d+)$/) { +- @addr = (pack('C4', $1, $2, $3, $4)); +- } else { +- if ((@addr = gethostbyname($host)) < 5) { +- carp("$self: gethostbyname - $?"); +- my $e = $?.''; +- $self->error($e, &FATAL); +- carp("$self: gethostbyname - $e"); +- return undef; +- } +- splice(@addr, 0, 4); ++ # check server name and try to parse port number ++ my @infos = getaddrinfo($host, $port, AF_UNSPEC, SOCK_STREAM); ++ if ($#infos < 0) { ++ carp("$self: getaddrinfo($host, $port) - $?"); ++ my $e = $?.''; ++ $self->error($e, &FATAL); ++ carp("$self: getaddrinfo($host, $port) - $e"); ++ return undef; + } + + # Perl's bug? once connect fails, we could not any more + # connect (connect returns "Invalid Argument"). So we + # create/close a socket in each iteration. +- for my $i (@addr) { ++ while ($#infos >= 0) { ++ my ($family, $socktype, $proto, $peer, $canonname) ++ = splice(@infos, 0, 5); + + # open socket stores any error ++ $params{tcp_family} = $family; + $self->open_socket(%params) || return undef; + +- # target address. +- my $peer = sockaddr_in($port, $i); + my $result = undef; + + # do real work. +@@ -758,10 +739,13 @@ + my $sock = $self->handle; + + if (defined($sock)) { +- my($port, $a) = sockaddr_in(getsockname($sock)); +- my $addr = join('.', unpack('C4', $a)); +-carp("$self sockname=$addr:$port") if $LOG > 7; +- return wantarray ? ($port, $addr) : "$addr:$port"; ++ my $sa = getsockname($sock); ++ my $family = (unpack('CC', $sa))[1]; ++ my ($addr, $port) = getnameinfo($sa, NI_NUMERICHOST | ++ NI_NUMERICSERV); ++ carp("$self sockname=$addr|$port|$family") if $LOG > 7; ++ return wantarray ? ($port, $addr, $family) ++ : "$addr|$port|$family"; + } + return wantarray ? () : undef; + } +@@ -772,10 +756,13 @@ + my $sock = $self->handle; + + if (defined($sock)) { +- my($port, $a) = sockaddr_in(getpeername($sock)); +- my $addr = join('.', unpack('C4', $a)); +-carp("$self sockpeer=$addr:$port") if $LOG > 7; +- return wantarray ? ($port, $addr) : "$addr:$port"; ++ my $sa = getpeername($sock); ++ my $family = (unpack('CC', $sa))[1]; ++ my ($addr, $port) = getnameinfo($sa, NI_NUMERICHOST | ++ NI_NUMERICSERV); ++ carp("$self sockpeer=$addr|$port|$family") if $LOG > 7; ++ return wantarray ? ($port, $addr, $family) ++ : "$addr|$port|$family"; + } + return wantarray ? () : undef; + } diff --git a/cpan/dist/Socket6/gai.h b/cpan/dist/Socket6/gai.h new file mode 100644 index 00000000..ea661c5e --- /dev/null +++ b/cpan/dist/Socket6/gai.h @@ -0,0 +1,40 @@ +/* + * Mar 8, 2000 by Hajimu UMEMOTO <ume@mahoroba.org> + * $Id: gai.h,v 1.4 2000/05/27 19:16:43 ume Exp $ + * + * This module is besed on ssh-1.2.27-IPv6-1.5 written by + * KIKUCHI Takahiro <kick@kyoto.wide.ad.jp> + */ +/* + * fake library for ssh + * + * This file is included in getaddrinfo.c and getnameinfo.c. + * See getaddrinfo.c and getnameinfo.c. + */ + +/* for old netdb.h */ +#ifndef EAI_NODATA +#define EAI_NODATA 1 +#define EAI_MEMORY 2 +#define EAI_FAMILY 5 /* ai_family not supported */ +#define EAI_SERVICE 9 /* servname not supported for ai_socktype */ +#endif + +/* dummy value for old netdb.h */ +#ifndef AI_PASSIVE +#define AI_PASSIVE 1 +#define AI_CANONNAME 2 +#define NI_NUMERICHOST 2 +#define NI_NAMEREQD 4 +#define NI_NUMERICSERV 8 +struct addrinfo { + int ai_flags; /* AI_PASSIVE, AI_CANONNAME */ + int ai_family; /* PF_xxx */ + int ai_socktype; /* SOCK_xxx */ + int ai_protocol; /* 0 or IPPROTO_xxx for IPv4 and IPv6 */ + size_t ai_addrlen; /* length of ai_addr */ + char *ai_canonname; /* canonical name for hostname */ + struct sockaddr *ai_addr; /* binary address */ + struct addrinfo *ai_next; /* next structure in linked list */ +}; +#endif diff --git a/cpan/dist/Socket6/gailookup.pl.in b/cpan/dist/Socket6/gailookup.pl.in new file mode 100644 index 00000000..5ce7ab8f --- /dev/null +++ b/cpan/dist/Socket6/gailookup.pl.in @@ -0,0 +1,82 @@ +#! @PERLPATH@ + +;# Copyright (C)2000 Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp> +;# All rights reserved. +;# +;# Redistribution and use in source and binary forms, with or without +;# modification, are permitted provided that the following conditions +;# are met: +;# 1. Redistributions of source code must retain the above copyright +;# notice, this list of conditions and the following disclaimer. +;# 2. Redistributions in binary form must reproduce the above copyright +;# notice, this list of conditions and the following disclaimer in the +;# documentation and/or other materials provided with the distribution. +;# 3. Neither the name of the project nor the names of its contributors +;# may be used to endorse or promote products derived from this software +;# without specific prior written permission. +;# +;# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +;# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +;# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +;# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +;# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +;# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +;# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +;# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +;# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +;# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +;# SUCH DAMAGE. + +;# $Id: gailookup.pl.in,v 1.5 2000/05/03 14:20:41 ume Exp $ + +use Getopt::Std; +use Socket; +use Socket6; +use strict; + +my $inet6 = defined(eval 'PF_INET6'); + +my %opt; +getopts(($inet6 ? 'chpsn46' : 'chpsn4'), \%opt); + +if ($opt{'h'}){ + print STDERR ("Usage: $0 [-h | [-c] [-n] [-p] [-s] [-4" . + ($inet6 && "|-6") . "] [host [serv]]]\n" . + "-h : help\n" . + "-c : AI_CANONNAME flag\n" . + "-n : AI_NUMERICHOST flag\n" . + "-p : AI_PASSIVE flag\n" . + "-s : NI_WITHSCOPEID flag\n" . + ($inet6 ? "-4|-6: PF_INET | PF_INET6" : "-4 : PF_INET") . + "\n"); + exit(4); +} + +my $host = shift(@ARGV) if (@ARGV); +my $serv = shift(@ARGV) if (@ARGV); +die("Too many arguments\n") if (@ARGV); +die("Either -4 or -6, not both should be specified\n") if ($opt{'4'} && $opt{'6'}); + +my $af = PF_UNSPEC; +$af = PF_INET if ($opt{'4'}); +$af = PF_INET6 if ($inet6 && $opt{'6'}); + +my $flags = 0; +$flags |= AI_PASSIVE if ($opt{'p'}); +$flags |= AI_NUMERICHOST if ($opt{'n'}); +$flags |= AI_CANONNAME if ($opt{'c'}); + +my $nflags = NI_NUMERICHOST | NI_NUMERICSERV; +$nflags |= NI_WITHSCOPEID if ($opt{'s'}); + + +my $socktype = SOCK_STREAM; +my $protocol = 0; + +my @tmp = getaddrinfo($host, $serv, $af, $socktype, $protocol, $flags); +while (my($family,$socktype,$protocol,$sin,$canonname) = splice(@tmp, $[, 5)){ + my($addr, $port) = getnameinfo($sin, $nflags); + print("family=$family, socktype=$socktype, protocol=$protocol, addr=$addr, port=$port"); + print(" canonname=$canonname") if ($opt{'c'}); + print("\n"); +} diff --git a/cpan/dist/Socket6/getaddrinfo.c b/cpan/dist/Socket6/getaddrinfo.c new file mode 100644 index 00000000..7765fb86 --- /dev/null +++ b/cpan/dist/Socket6/getaddrinfo.c @@ -0,0 +1,172 @@ +/* + * Mar 8, 2000 by Hajimu UMEMOTO <ume@mahoroba.org> + * $Id: getaddrinfo.c,v 1.6 2000/05/27 19:16:43 ume Exp $ + * + * This module is besed on ssh-1.2.27-IPv6-1.5 written by + * KIKUCHI Takahiro <kick@kyoto.wide.ad.jp> + */ +/* + * fake library for ssh + * + * This file includes getaddrinfo(), freeaddrinfo() and gai_strerror(). + * These funtions are defined in rfc2133. + * + * But these functions are not implemented correctly. The minimum subset + * is implemented for ssh use only. For exapmle, this routine assumes + * that ai_family is AF_INET. Don't use it for another purpose. + * + * In the case not using 'configure --enable-ipv6', this getaddrinfo.c + * will be used if you have broken getaddrinfo or no getaddrinfo. + */ + +#include <sys/param.h> +#include "gai.h" + +static struct addrinfo * +malloc_ai(int port, u_long addr, int socktype, int proto) +{ + struct addrinfo *ai; + + if (ai = (struct addrinfo *)malloc(sizeof(struct addrinfo) + + sizeof(struct sockaddr_in))) { + memset(ai, 0, sizeof(struct addrinfo) + sizeof(struct sockaddr_in)); + ai->ai_addr = (struct sockaddr *)(ai + 1); + /* XXX -- ssh doesn't use sa_len */ + ai->ai_addrlen = sizeof(struct sockaddr_in); +#ifdef HAVE_SOCKADDR_SA_LEN + ai->ai_addr->sa_len = sizeof(struct sockaddr_in); +#endif + ai->ai_addr->sa_family = ai->ai_family = AF_INET; + ((struct sockaddr_in *)(ai)->ai_addr)->sin_port = port; + ((struct sockaddr_in *)(ai)->ai_addr)->sin_addr.s_addr = addr; + ai->ai_socktype = socktype; + ai->ai_protocol = proto; + return ai; + } else { + return NULL; + } +} + +char * +gai_strerror(int ecode) +{ + switch (ecode) { + case EAI_NODATA: + return "no address associated with hostname."; + case EAI_MEMORY: + return "memory allocation failure."; + case EAI_FAMILY: + return "ai_family not supported."; + case EAI_SERVICE: + return "servname not supported for ai_socktype."; + default: + return "unknown error."; + } +} + +void +freeaddrinfo(struct addrinfo *ai) +{ + struct addrinfo *next; + + if (ai->ai_canonname) + free(ai->ai_canonname); + do { + next = ai->ai_next; + free(ai); + } while (ai = next); +} + +int +getaddrinfo(const char *hostname, const char *servname, + const struct addrinfo *hints, struct addrinfo **res) +{ + struct addrinfo *cur, *prev = NULL; + struct hostent *hp; + int i, port = 0, socktype, proto; + char *pe_proto; + + if (hints && hints->ai_family != PF_INET && hints->ai_family != PF_UNSPEC) + return EAI_FAMILY; + + socktype = (hints && hints->ai_socktype) ? hints->ai_socktype + : SOCK_STREAM; + if (hints && hints->ai_protocol) + proto = hints->ai_protocol; + else { + switch (socktype) { + case SOCK_DGRAM: + proto = IPPROTO_UDP; + break; + case SOCK_STREAM: + proto = IPPROTO_TCP; + break; + default: + proto = 0; + break; + } + } + if (servname) { + if (isdigit(*servname)) + port = htons(atoi(servname)); + else { + struct servent *se; + char *pe_proto; + + switch (socktype) { + case SOCK_DGRAM: + pe_proto = "udp"; + break; + case SOCK_STREAM: + pe_proto = "tcp"; + break; + default: + pe_proto = NULL; + break; + } + if ((se = getservbyname(servname, pe_proto)) == NULL) + return EAI_SERVICE; + port = se->s_port; + } + } + if (hints && hints->ai_flags & AI_PASSIVE) + if (*res = malloc_ai(port, htonl(0x00000000), socktype, proto)) + return 0; + else + return EAI_MEMORY; + if (!hostname) + if (*res = malloc_ai(port, htonl(0x7f000001), socktype, proto)) + return 0; + else + return EAI_MEMORY; + if (inet_addr(hostname) != -1) + if (*res = malloc_ai(port, inet_addr(hostname), socktype, proto)) + return 0; + else + return EAI_MEMORY; + if ((hp = gethostbyname(hostname)) && + hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) { + for (i = 0; hp->h_addr_list[i]; i++) { + if ((cur = malloc_ai(port, + ((struct in_addr *)hp->h_addr_list[i])->s_addr, + socktype, proto)) == NULL) { + if (*res) + freeaddrinfo(*res); + return EAI_MEMORY; + } + if (prev) + prev->ai_next = cur; + else + *res = cur; + prev = cur; + } + if (hints && hints->ai_flags & AI_CANONNAME && *res) { + if (((*res)->ai_canonname = strdup(hp->h_name)) == NULL) { + freeaddrinfo(*res); + return EAI_MEMORY; + } + } + return 0; + } + return EAI_NODATA; +} diff --git a/cpan/dist/Socket6/getnameinfo.c b/cpan/dist/Socket6/getnameinfo.c new file mode 100644 index 00000000..f06236d8 --- /dev/null +++ b/cpan/dist/Socket6/getnameinfo.c @@ -0,0 +1,60 @@ +/* + * Mar 8, 2000 by Hajimu UMEMOTO <ume@mahoroba.org> + * $Id: getnameinfo.c,v 1.3 2000/03/09 19:31:23 ume Exp $ + * + * This module is besed on ssh-1.2.27-IPv6-1.5 written by + * KIKUCHI Takahiro <kick@kyoto.wide.ad.jp> + */ +/* + * fake library for ssh + * + * This file includes getnameinfo(). + * These funtions are defined in rfc2133. + * + * But these functions are not implemented correctly. The minimum subset + * is implemented for ssh use only. For exapmle, this routine assumes + * that ai_family is AF_INET. Don't use it for another purpose. + * + * In the case not using 'configure --enable-ipv6', this getnameinfo.c + * will be used if you have broken getnameinfo or no getnameinfo. + */ + +#include <string.h> +#include "gai.h" + +int +getnameinfo(const struct sockaddr *sa, size_t salen, + char *host, size_t hostlen, char *serv, size_t servlen, int flags) +{ + struct sockaddr_in *sin = (struct sockaddr_in *)sa; + struct hostent *hp; + char tmpserv[16]; + + if (serv) { + sprintf(tmpserv, "%d", ntohs(sin->sin_port)); + if (strlen(tmpserv) > servlen) + return EAI_MEMORY; + else + strcpy(serv, tmpserv); + } + if (host) + if (flags & NI_NUMERICHOST) + if (strlen(inet_ntoa(sin->sin_addr)) > hostlen) + return EAI_MEMORY; + else { + strcpy(host, inet_ntoa(sin->sin_addr)); + return 0; + } + else + if (hp = gethostbyaddr((char *)&sin->sin_addr, + sizeof(struct in_addr), AF_INET)) + if (strlen(hp->h_name) > hostlen) + return EAI_MEMORY; + else { + strcpy(host, hp->h_name); + return 0; + } + else + return EAI_NODATA; + return 0; +} diff --git a/cpan/dist/Socket6/im-140.diff b/cpan/dist/Socket6/im-140.diff new file mode 100644 index 00000000..c3e64c47 --- /dev/null +++ b/cpan/dist/Socket6/im-140.diff @@ -0,0 +1,150 @@ +--- im-140/IM/TcpTransaction.pm.orig Mon Mar 6 19:39:35 2000 ++++ im-140/IM/TcpTransaction.pm Wed Mar 8 22:16:24 2000 +@@ -15,6 +15,9 @@ + require Exporter; + use IM::Config qw(dns_timeout connect_timeout command_timeout rcv_buf_siz); + use Socket; ++BEGIN { ++ eval 'use Socket6' unless (eval '&AF_INET6'); # IPv6 patched Perl ++} + use IM::Util; + use IM::Ssh; + use integer; +@@ -120,8 +123,8 @@ + $remoteport = $serv; + $Cur_server = $s; + } +- $0 = progname() . ": im_getaddrinfo($s)"; +- @he_infos = im_getaddrinfo($s, $remoteport, AF_UNSPEC, SOCK_STREAM); ++ $0 = progname() . ": getaddrinfo($s)"; ++ @he_infos = getaddrinfo($s, $remoteport, AF_UNSPEC, SOCK_STREAM); + if ($#he_infos < 0) { + im_warn("address unknown for $s\n"); + @Response = ("address unknown for $s"); +@@ -147,7 +150,7 @@ + if ($family == AF_INET) { + $port = (unpack_sockaddr_in($sin))[0]; + } else { +- $port = (inet6_unpack_sockaddr_in6($sin))[0]; ++ $port = (unpack_sockaddr_in6($sin))[0]; + } + *SOCK = \*{$name}; + $SOCK = $port; +@@ -364,7 +367,9 @@ + my $count = shift; + + pool_priv_sock_af($count, AF_INET); +- pool_priv_sock_af($count, inet6_family()) if (eval '&AF_INET6'); ++ if (eval 'pack_sockaddr_in6(110, pack("N4", 0, 0, 0, 0))') { ++ pool_priv_sock_af($count, AF_INET6); ++ } + } + + sub pool_priv_sock_af ($$) { +@@ -391,7 +396,7 @@ + $psin = pack_sockaddr_in($privport, $ANYADDR); + } else { + $ANYADDR = pack('N4', 0, 0, 0, 0); +- $psin = inet6_pack_sockaddr_in6($privport, $ANYADDR); ++ $psin = pack_sockaddr_in6($privport, $ANYADDR); + } + last if (bind (*{$TcpSockName}, $psin)); + im_warn("privileged socket binding failed: $!.\n") +@@ -432,68 +437,6 @@ + im_die("connection error\n"); + } + +-sub im_getaddrinfo ($$;$$$$) { +- return getaddrinfo(@_) if (defined &getaddrinfo); +- +- my ($node, $serv, $family, $socktype, $proto, $flags) = @_; +- +- my ($pe_name, $pe_aliases, $pe_proto, $se_port); +- if (unixp()) { +- $proto = 'tcp' unless ($proto); +- ($pe_name, $pe_aliases, $pe_proto) = getprotobyname($proto); +- } +- $pe_proto = 6 unless ($pe_name); +- return unless ($se_port = getserv($serv, $proto)); +- +- my ($he_name, $he_alias, $he_type, $he_len, @he_addrs); +- if ($node =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/) { +- @he_addrs = (pack('C4', $1, $2, $3, $4)); +- $family = AF_INET; +- } elsif ($node =~ /^[\da-f:]+$/i) { +- if ($node =~ /::.*::/) { +- im_err("bad server address in IPv6 format: $node\n"); +- return; +- } +- if ($node =~ /::/) { +- (my $t = $node) =~ s/[^:]//g; +- my $n = 7 - length($t); +- $t = ':0:'; +- while ($n--) { +- $t .= '0:'; +- } +- $node =~ s/::/$t/; +- } +- if ($node =~ /^([\da-f]*):([\da-f]*):([\da-f]*):([\da-f]*):([\da-f]*):([\da-f]*):([\da-f]*):([\da-f]*)$/i) { +- @he_addrs = (pack('n8', +- hex("0x$1"), hex("0x$2"), hex("0x$3"), hex("0x$4"), +- hex("0x$5"), hex("0x$6"), hex("0x$7"), hex("0x$8"))); +- $family = inet6_family(); # AF_INET6 +- } else { +- im_err("bad server address in IPv6 format: $node\n"); +- return; +- } +- } else { +- alarm(dns_timeout()) unless win95p(); +- ($he_name, $he_alias, $he_type, $he_len, @he_addrs) +- = gethostbyname($node); +- alarm(0) unless win95p(); +- return unless ($he_name); +- $family = $he_type; +- } +- +- my ($he_addr, @infos); +- foreach $he_addr (@he_addrs) { +- my $sin; +- if ($family == AF_INET) { +- $sin = pack_sockaddr_in($se_port, $he_addr); +- } else { +- $sin = inet6_pack_sockaddr_in6($se_port, $he_addr); +- } +- push(@infos, $family, $socktype, $pe_proto, $sin, $he_name); +- } +- @infos; +-} +- + sub getserv($$) { + my ($serv, $proto) = @_; + +@@ -522,28 +465,6 @@ + } + } + $se_port; +-} +- +-sub inet6_pack_sockaddr_in6 ($;$) { +- return pack_sockaddr_in6(@_) if (defined &pack_sockaddr_in6); +- +- my ($port, $he_addr) = @_; +- pack('CCnN', 1+1+2+4+16+4, inet6_family(), $port, 0) . $he_addr . +- pack('N', 0); +-} +- +-sub inet6_unpack_sockaddr_in6 ($) { +- return unpack_sockaddr_in6(@_) if (defined &unpack_sockaddr_in6); +- +- my $sock = shift; +- my ($len, $family, $port, $flow, $a1, $a2, $a3, $a4) +- = unpack('CCnNN4', $sock); +- my $addr = pack('N4', $a1, $a2, $a3, $a4); +- ($port, $addr); +-} +- +-sub inet6_family () { +- return eval '&AF_INET6' || 24; + } + + 1; diff --git a/cpan/lib/Jcode/Jcode.pm b/cpan/lib/Jcode/Jcode.pm new file mode 100644 index 00000000..317bb34a --- /dev/null +++ b/cpan/lib/Jcode/Jcode.pm @@ -0,0 +1,754 @@ +# +# $Id: Jcode.pm,v 0.66 2000/12/21 12:04:40 dankogai Exp dankogai $ +# + +=head1 NAME + +Jcode - Japanese Charset Handler + +=head1 SYNOPSIS + + use Jcode; + + # traditional + Jcode::convert(\$str, $ocode, $icode, "z"); + # or OOP! + print Jcode->new($str)->h2z->tr($from, $to)->utf8; + +=cut + +=head1 DESCRIPTION + +Jcode.pm supports both object and traditional approach. +With object approach, you can go like; + +$iso_2022_jp = Jcode->new($str)->h2z->jis; + +Which is more elegant than; + +$iso_2022_jp = &jcode::convert(\$str,'jis',jcode::getcode(\str), "z"); + +For those unfamiliar with objects, Jcode.pm still supports getcode() +and convert(). + +=cut + +package Jcode; +require 5.004; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: Jcode.pm,v 0.66 2000/12/21 12:04:40 dankogai Exp dankogai $; +$VERSION = do { my @r = (q$Revision: 0.66 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +BEGIN { + use Exporter; + use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); + @ISA = qw(Exporter); + @EXPORT = qw(jcode getcode); + @EXPORT_OK = qw($RCSID $VERSION $DEBUG $USE_CACHE); + %EXPORT_TAGS = ( all => [ @EXPORT_OK, @EXPORT ] ); +} + +use vars @EXPORT_OK; + +$DEBUG = 0; +$USE_CACHE = 1; + +print $RCSID, "\n" if $DEBUG; + +use Jcode::Constants qw(:all); + +=head1 Methods + +Methods mentioned here all return Jcode object unless otherwise mentioned. + +=over 4 + +=cut + +use overload + '""' => sub { ${$_[0]->[0]} }, + '==' => sub {overload::StrVal($_[0]) eq overload::StrVal($_[1])}, + fallback => 1, + ; + +=item $j = Jcode->new($str [, $icode]); + +Creates Jcode object $j from $str. Input code is automatically checked +unless you explicitly set $icode. For available charset, see L<getcode()> +below. + +The object keeps the string in EUC format enternaly. When the object +itself is evaluated, it returns the EUC-converted string so you can +"print $j;" without calling access method if you are using EUC +(thanks to function overload). + +=item Passing Reference + +Instead of scalar value, You can use reference as + +Jcode->new(\$str); + +This saves time a little bit. In exchange of the value of $str being +converted. (In a way, $str is now "tied" to jcode object). + +=cut + +sub new { + my $class = shift; + my ($thingy, $icode) = @_; + my $r_str = _mkbuf($thingy); + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + convert($r_str, 'euc', $icode); + my $self = [ + $r_str, + $icode, + $nmatch, + ]; + carp "Object of class $class created" if $DEBUG >= 2; + bless $self, $class; +} + +sub r_str { $_[0]->[0] } +sub icode { $_[0]->[1] } +sub nmatch { $_[0]->[2] } + +=item $j->set($str [, $icode]); + +Sets $j's internal string to $str. Handy when you use Jcode object repeatedly +(saves time and memory to create object). + + # converts mailbox to SJIS format + my $jconv = new Jcode; + while(<>){ + print $jconv->set(\$_)->mime_decode->sjis; + } + +=cut + +sub set { + my $self = shift; + my ($thingy, $icode) = @_; + my $r_str = _mkbuf($thingy); + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + convert($r_str, 'euc', $icode); + $self->[0] = $r_str; + $self->[1] = $icode; + $self->[2] = $nmatch; + return $self; +} + +=item $j->append($str [, $icode]); + +Appends $str to $j's internal string. + +=cut + +sub append { + my $self = shift; + my ($thingy, $icode) = @_; + my $r_str = _mkbuf($thingy); + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + convert($r_str, 'euc', $icode); + ${$self->[0]} .= $$r_str; + $self->[1] = $icode; + $self->[2] = $nmatch; + return $self; +} + + +=item $j = jcode($str [, $icode]); + +shortcut for Jcode->new() so you can go like; + +$sjis = jcode($str)->sjis; + +=item $euc = $j->euc; + +=item $jis = $j->jis; + +=item $sjis = $j->sjis; + +What you code is what you get :) + +=cut + +sub jcode { return Jcode->new(@_) } +sub euc { return ${$_[0]->[0]} } +sub jis { return &euc_jis(${$_[0]->[0]})} +sub sjis { return &euc_sjis(${$_[0]->[0]})} + +=item $iso_2022_jp = $j->iso_2022_jp + +Same as $j->z2h->jis. +Hankaku Kanas are forcibly converted to Zenkaku. + +=cut + +sub iso_2022_jp{return $_[0]->h2z->jis} + +=item [@lines =] $jcode->jfold([$bytes_per_line, $newline_str]); + +folds lines in jcode string every $bytes_per_line (default: 72) +in a way that does not clobber the multibyte string. +(Sorry, no Kinsoku done!) +with a newline string spified by $newline_str (default: \n). + +=cut + +sub jfold{ + my $self = shift; + my ($bpl, $nl) = @_; + $bpl ||= 72; + $nl ||= "\n"; + my $r_str = $self->[0]; + my (@lines, $len, $i); + while ($$r_str =~ m/([\x8f\x8e]$RE{EUC_C}|$RE{EUC_C}|[\x00-\xff])/sgo){ + if ($len + length($1) > $bpl){ # fold! + $i++; + $len = 0; + } + $lines[$i] .= $1; + $len += length($1); + } + $lines[$i] or pop @lines; + $$r_str = join($nl, @lines); + return wantarray ? @lines : $self; +} + + +=head2 Methods that use MIME::Base64 + +To use methods below, you need MIME::Base64. To install, simply + + perl -MCPAN -e 'CPAN::Shell->install("MIME::Base64")' + +=item $mime_header = $j->mime_encode([$lf, $bpl]); + +Converts $str to MIME-Header documented in RFC1522. +When $lf is specified, it uses $lf to fold line (default: \n); +When $bpl is specified, it uses $bpl for the number of bytes (default: 76); + +=cut + +sub mime_encode{ + my $self = shift; + my $r_str = $self->[0]; + my $lf = shift || "\n"; + my $bpl = shift || 76; + + my ($trailing_crlf) = ($$r_str =~ /(\n|\r|\x0d\x0a)$/o); + my $str = _mime_unstructured_header($$r_str, $lf, $bpl); + not $trailing_crlf and $str =~ s/(\n|\r|\x0d\x0a)$//o; + $str; +} + +# +# shamelessly stolen from +# http://www.din.or.jp/~ohzaki/perl.htm#JP_Base64 +# + +sub _add_encoded_word { + require MIME::Base64; + my($str, $line) = @_; + my $result = ''; + while (length($str)) { + my $target = $str; + $str = ''; + if (length($line) + 22 + + ($target =~ /^(?:$RE{EUC_0212}|$RE{EUC_C})/o) * 8 > 76) { + $line =~ s/[ \t\n\r]*$/\n/; + $result .= $line; + $line = ' '; + } + while (1) { + my $encoded = '=?ISO-2022-JP?B?' . + MIME::Base64::encode_base64( + jcode($target, 'euc')->iso_2022_jp, '') + . '?='; + if (length($encoded) + length($line) > 76) { + $target =~ s/(RE{EUC_0212}|$RE{EUC_C}|$RE{ASCII})$//o; + $str = $1 . $str; + } else { + $line .= $encoded; + last; + } + } + } + return $result . $line; +} + + +sub _mime_unstructured_header { + my ($oldheader, $lf, $bpl) = @_; + my(@words, @wordstmp, $i); + my $header = ''; + $oldheader =~ s/\s+$//; + @wordstmp = split /\s+/, $oldheader; + for ($i = 0; $i < $#wordstmp; $i++) { + if ($wordstmp[$i] !~ /^[\x21-\x7E]+$/ and + $wordstmp[$i + 1] !~ /^[\x21-\x7E]+$/) { + $wordstmp[$i + 1] = "$wordstmp[$i] $wordstmp[$i + 1]"; + } else { + push(@words, $wordstmp[$i]); + } + } + push(@words, $wordstmp[-1]); + for my $word (@words) { + if ($word =~ /^[\x21-\x7E]+$/) { + $header =~ /(?:.*\n)?(.*)/; + if (length($1) + length($word) > $bpl) { + $header .= "$lf $word"; + } else { + $header .= $word; + } + } else { + $header = _add_encoded_word($word, $header); + } + $header =~ /(?:.*\n)?(.*)/; + if (length($1) == $bpl) { + $header .= "$lf "; + } else { + $header .= ' '; + } + } + $header =~ s/\n? $/\n/; + $header; +} + +=item $j->mime_decode; + +Decodes MIME-Header in Jcode object. + +You can retrieve the number of matches via $j->nmatch; + +=cut + +# see http://www.din.or.jp/~ohzaki/perl.htm#JP_Base64 +#$lws = '(?:(?:\x0d\x0a)?[ \t])+'; +#$ew_regex = '=\?ISO-2022-JP\?B\?([A-Za-z0-9+/]+=*)\?='; +#$str =~ s/($ew_regex)$lws(?=$ew_regex)/$1/gio; +#$str =~ s/$lws/ /go; $str =~ s/$ew_regex/decode_base64($1)/egio; + +sub mime_decode{ + require MIME::Base64; # not use + my $self = shift; + my $r_str = $self->[0]; + my $re_lws = '(?:(?:\r|\n|\x0d\x0a)?[ \t])+'; + my $re_ew = '(?i:=\?ISO-2022-JP\?B\?)([A-Za-z0-9+/]+=*)\?='; + $$r_str =~ s/($re_ew)$re_lws(?=$re_ew)/$1/sgo; + $$r_str =~ s/$re_lws/ /go; + $self->[2] = + ($$r_str =~ + s/$re_ew/jis_euc(MIME::Base64::decode_base64($1))/ego + ); + $self; +} + +=head2 Methods implemented by Jcode::H2Z + +Methods below are actually implemented in Jcode::H2Z. + +=item $j->h2z([$keep_dakuten]); + +Converts X201 kana (Hankaku) to X208 kana (Zenkaku). +When $keep_dakuten is set, it leaves dakuten as is +(That is, "ka + dakuten" is left as is instead of +being converted to "ga") + +You can retrieve the number of matches via $j->nmatch; + +=cut + +sub h2z { + require Jcode::H2Z; # not use + my $self = shift; + $self->[2] = Jcode::H2Z::h2z($self->[0], @_); + return $self; +} + +=item $j->z2h; + +Converts X208 kana (Zenkaku) to X201 kana (Hankazu). + +You can retrieve the number of matches via $j->nmatch; + +=cut + +sub z2h { + require Jcode::H2Z; # not use + my $self = shift; + $self->[2] = &Jcode::H2Z::z2h($self->[0], @_); + return $self; +} + +=head2 Methods implemented in Jcode::Tr + +Methods here are actually implemented in Jcode::Tr. + +=item $j->tr($from, $to); + +Applies tr on Jcode object. $from and $to can contain EUC Japanese. + +You can retrieve the number of matches via $j->nmatch; + +=cut + +sub tr{ + require Jcode::Tr; # not use + my $self = shift; + $self->[2] = Jcode::Tr::tr($self->[0], @_); + return $self; +} + +# +# load needed module depending on the configuration just once! +# + +use vars qw(%PKG_LOADED); +sub load_module{ + my $pkg = shift; + return $pkg if $PKG_LOADED{$pkg}++; + eval qq( require $pkg; ); + unless ($@){ + carp "$pkg loaded." if $DEBUG; + }else{ + $pkg .= "::NoXS"; + eval qq( require $pkg; ); + unless ($@){ + carp "$pkg loaded" if $DEBUG; + }else{ + croak "Loading $pkg failed!"; + } + } + $pkg; +} + +=head2 Methods implemented in Jcode::Unicode + +If your perl does not support XS (or you can't C<perl Makefile.PL>, +Jcode::Unicode::NoXS will be used. + +See L<Jcode::Unicode> and L<Jcode::Unicode::NoXS> for details + +=item $ucs2 = $j->ucs2; + +Returns UCS2 (Raw Unicode) string. + +=cut + +sub ucs2{ + load_module("Jcode::Unicode"); + euc_ucs2(${$_[0]->[0]}); +} + +=item $ucs2 = $j->utf8; + +Returns utf8 String. + +=cut + +sub utf8{ + load_module("Jcode::Unicode"); + euc_utf8(${$_[0]->[0]}); +} + +=head2 Instance Variables + +If you need to access instance variables of Jcode object, use access +methods below instead of directly accessing them (That's what OOP +is all about) + +FYI, Jcode uses a ref to array instead of ref to hash (common way) to +optimize speed (Actually you don't have to know as long as you use +access methods instead; Once again, that's OOP) + +=item $j->r_str + +Reference to the EUC-coded String. + +=item $j->icode + +Input charcode in recent operation. + +=item $j->nmatch + +Number of matches (Used in $j->tr, etc.) + +=cut + +=head1 Subroutines + +=item ($code, [$nmatch]) = getcode($str); + +Returns char code of $str. Return codes are as follows + + ascii Ascii (Contains no Japanese Code) + binary Binary (Not Text File) + euc EUC-JP + sjis SHIFT_JIS + jis JIS (ISO-2022-JP) + ucs2 UCS2 (Raw Unicode) + utf8 UTF8 + +When array context is used instead of scaler, it also returns how many +character codes are found. As mentioned above, $str can be \$str +instead. + +=item jcode.pl Users: + +This function is 100% upper-conpatible with jcode::getcode() -- well, almost; + + * When its return value is an array, the order is the opposite; + jcode::getcode() returns $nmatch first. + + * jcode::getcode() returns 'undef' when the number of EUC characters + is equal to that of SJIS. Jcode::getcode() returns EUC. for + Jcode.pm is no in-betweens. + +=cut + +sub getcode { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my ($code, $nmatch, $sjis, $euc, $utf8) = ("", 0, 0, 0, 0); + + if ($$r_str =~ /$RE{BIN}/o) { # 'binary' + my $ucs2; + $ucs2 += length($1) + while $$r_str =~ /(\x00$RE{ASCII})+/go; + if ($ucs2){ # smells like raw unicode + ($code, $nmatch) = ('ucs2', $ucs2); + }else{ + ($code, $nmatch) = ('binary', 0); + } + } + elsif ($$r_str !~ /[\e\x80-\xff]/o) { # not Japanese + ($code, $nmatch) = ('ascii', 1); + } # 'jis' + elsif ($$r_str =~ + m[ + $RE{JIS_0208}|$RE{JIS_0212}|$RE{JIS_ASC}|$RE{JIS_KANA} + ]ox) + { + ($code, $nmatch) = ('jis', 1); + } + else { # should be euc|sjis|utf8 + # use of (?:) by Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp> + $sjis += length($1) + while $$r_str =~ /((?:$RE{SJIS_C})+)/go; + $euc += length($1) + while $$r_str =~ /((?:$RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212})+)/go; + $utf8 += length($1) + while $$r_str =~ /((?:$RE{UTF8})+)/go; + $nmatch = _max($utf8, $sjis, $euc); + carp ">DEBUG:sjis = $sjis, euc = $euc, utf8 = $utf8" if $DEBUG >= 3; + $code = + ($euc > $sjis and $euc > $utf8) ? 'euc' : + ($sjis > $euc and $sjis > $utf8) ? 'sjis' : + ($utf8 > $euc and $utf8 > $sjis) ? 'utf8' : undef; + } + return wantarray ? ($code, $nmatch) : $code; +} + +=item Jcode::convert($str, [$ocode, $icode, $opt]); + +Converts $str to char code specified by $ocode. When $icode is specified +also, it assumes $icode for input string instead of the one checked by +getcode(). As mentioned above, $str can be \$str instead. + +=item jcode.pl Users: + +This function is 100% upper-conpatible with jcode::convert() ! + +=cut + +sub convert{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my ($ocode, $icode, $opt) = @_; + + my $nmatch; + ($icode, $nmatch) = getcode($r_str) unless $icode; + + return $$r_str if $icode eq $ocode; # do nothin' + + no strict qw(refs); + my $method; + + # convert to EUC + + load_module("Jcode::Unicode") if $icode =~ /ucs2|utf8/o; + if ($icode and defined &{$method = $icode . "_euc"}){ + carp "Dispatching \&$method" if $DEBUG >= 2; + &{$method}($r_str) ; + } + + # h2z or z2h + + if ($opt){ + my $cmd = ($opt =~ /^z/o) ? "h2z" : ($opt =~ /^h/o) ? "z2h" : undef; + if ($cmd){ + require Jcode::H2Z; + &{'Jcode::H2Z::' . $cmd}($r_str); + } + } + + # convert to $ocode + + load_module("Jcode::Unicode") if $ocode =~ /ucs2|utf8/o; + if ($ocode and defined &{$method = "euc_" . $ocode}){ + carp "Dispatching \&$method" if $DEBUG >= 2; + &{$method}($r_str) ; + } + $$r_str; +} + +# JIS<->EUC + +sub jis_euc { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s( + ($RE{JIS_0212}|$RE{JIS_0208}|$RE{JIS_ASC}|$RE{JIS_KANA}) + ([^\e]*) + ) + { + my ($esc, $str) = ($1, $2); + if ($esc !~ /$RE{JIS_ASC}/o) { + $str =~ tr/\x21-\x7e/\xa1-\xfe/; + if ($esc =~ /$RE{JIS_KANA}/o) { + $str =~ s/([\xa1-\xdf])/\x8e$1/og; + } + elsif ($esc =~ /$RE{JIS_0212}/o) { + $str =~ s/([\xa1-\xfe][\xa1-\xfe])/\x8f$1/og; + } + } + $str; + }geox; + $$r_str; +} + +# +sub euc_jis { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s{ + (($RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212})+) + } + { + my $str = $1; + my $esc = ($str =~ tr/\x8e//d) ? $ESC{KANA} : + ($str =~ tr/\x8f//d) ? $ESC{JIS_0212} : $ESC{JIS_0208}; + $str =~ tr/\xa1-\xfe/\x21-\x7e/; + $esc . $str . $ESC{ASC} + }geox; + $$r_str; +} + +# EUC<->SJIS + +my %_S2E = (); +my %_E2S = (); + +sub sjis_euc { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s( + ($RE{SJIS_C}|$RE{SJIS_KANA}) + ) + { + my $str = $1; + unless ($_S2E{$1}){ + my ($c1, $c2) = unpack('CC', $str); + if (0xa1 <= $c1 && $c1 <= 0xdf) { + $c2 = $c1; + $c1 = 0x8e; + } elsif (0x9f <= $c2) { + $c1 = $c1 * 2 - ($c1 >= 0xe0 ? 0xe0 : 0x60); + $c2 += 2; + } else { + $c1 = $c1 * 2 - ($c1 >= 0xe0 ? 0xe1 : 0x61); + $c2 += 0x60 + ($c2 < 0x7f); + } + $_S2E{$str} = pack('CC', $c1, $c2); + } + $_S2E{$str}; + }geox; + $$r_str; +} + +# + +sub euc_sjis { + my $thingy = shift; + my $r_str = _mkbuf($thingy); + $$r_str =~ s( + ($RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212}) + ) + { + my $str = $1; + unless ($_E2S{$str}){ + my ($c1, $c2) = unpack('CC', $str); + if ($c1 == 0x8e) { # SS2 + $_E2S{$str} = chr($c2); + } elsif ($c1 == 0x8f) { # SS3 + $_E2S{$str} = $CHARCODE{UNDEF_SJIS}; + }else { #SS1 or X0208 + if ($c1 % 2) { + $c1 = ($c1>>1) + ($c1 < 0xdf ? 0x31 : 0x71); + $c2 -= 0x60 + ($c2 < 0xe0); + } else { + $c1 = ($c1>>1) + ($c1 < 0xdf ? 0x30 : 0x70); + $c2 -= 2; + } + $_E2S{$str} = pack('CC', $c1, $c2); + } + } + $_E2S{$str}; + }geox; + $$r_str; +} + +# + +1; + +__END__ + +=head1 BUGS + +=item Unicode support by Jcode is far from efficient! + +=head1 ACKNOWLEDGEMENTS + +This package owes a lot in motivation, design, and code, to the jcode.pl +for Perl4 by Kazumasa Utashiro <utashiro@iij.ad.jp>. + +Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp> has helped me polish regexp from the +very first stage of development. + +And folks at Jcode Mailing list <jcode5@ring.gr.jp>. Without them, I +couldn't have coded this far. + +=head1 SEE ALSO + +=item L<Jcode::Unicode> + +=item L<Jcode::Unicode::NoXS> + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +=cut diff --git a/cpan/lib/Jcode/Jcode/Constants.pm b/cpan/lib/Jcode/Jcode/Constants.pm new file mode 100644 index 00000000..7bce2ea0 --- /dev/null +++ b/cpan/lib/Jcode/Jcode/Constants.pm @@ -0,0 +1,88 @@ +# +# $Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $ +# + +package Jcode::Constants; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +BEGIN { + use Exporter; + use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); + @ISA = qw(Exporter); + @EXPORT = qw(); + @EXPORT_OK = qw(&_max &_mkbuf %CHARCODE %ESC %RE); + %EXPORT_TAGS = ( 'all' => [ @EXPORT_OK, @EXPORT ] ); +} + +use vars @EXPORT_OK; + +my %_0208 = ( + 1978 => '\e\$\@', + 1983 => '\e\$B', + 1990 => '\e&\@\e\$B', + ); + +%CHARCODE = ( + UNDEF_EUC => "\xa2\xae", # ¢® in EUC + UNDEF_SJIS => "\x81\xac", # ¢® in SJIS + UNDEF_JIS => "\xa2\xf7", # ¢÷ -- used in unicode + UNDEF_UNICODE => "\x20\x20", # ¢÷ -- used in unicode + ); + +%ESC = ( + JIS_0208 => "\e\$B", + JIS_0212 => "\e\$(D", + ASC => "\e\(B", + KANA => "\e\(I", + ); + +%RE = + ( + ASCII => '[\x00-\x7f]', + BIN => '[\x00-\x06\x7f\xff]', + EUC_0212 => '\x8f[\xa1-\xfe][\xa1-\xfe]', + EUC_C => '[\xa1-\xfe][\xa1-\xfe]', + EUC_KANA => '\x8e[\xa1-\xdf]', + JIS_0208 => "$_0208{1978}|$_0208{1983}|$_0208{1990}", + JIS_0212 => "\e" . '\$\(D', + JIS_ASC => "\e" . '\([BJ]', + JIS_KANA => "\e" . '\(I', + SJIS_C => '[\x81-\x9f\xe0-\xfc][\x40-\x7e\x80-\xfc]', + SJIS_KANA => '[\xa1-\xdf]', + UTF8 => '[\xc0-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf][\x80-\xbf]' + ); + +# +# Util. Functions +# + +# Make buffer when and only when necessary + +sub _mkbuf { + my $thingy = shift; + if (ref $thingy){ + return $thingy; + } + else{ + my $buf = $thingy; + return \$buf; + } +} + +sub _max { + my $result = shift; + for my $n (@_){ + $result = $n if $n > $result; + } + return $result; +} + +1; + diff --git a/cpan/lib/Jcode/Jcode/H2Z.pm b/cpan/lib/Jcode/Jcode/H2Z.pm new file mode 100644 index 00000000..79aa3794 --- /dev/null +++ b/cpan/lib/Jcode/Jcode/H2Z.pm @@ -0,0 +1,168 @@ +# +# $Id: H2Z.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +package Jcode::H2Z; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: H2Z.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 0.61 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +use Jcode::Constants qw(:all); + +use vars qw(%_D2Z $_PAT_D2Z + %_Z2D $_PAT_Z2D + %_H2Z $_PAT_H2Z + %_Z2H $_PAT_Z2H); + +%_H2Z = ( + "\x8e\xa1" => "\xa1\xa3", #¡£ + "\x8e\xa2" => "\xa1\xd6", #¡Ö + "\x8e\xa3" => "\xa1\xd7", #¡× + "\x8e\xa4" => "\xa1\xa2", #¡¢ + "\x8e\xa5" => "\xa1\xa6", #¡¦ + "\x8e\xa6" => "\xa5\xf2", #¥ò + "\x8e\xa7" => "\xa5\xa1", #¥¡ + "\x8e\xa8" => "\xa5\xa3", #¥£ + "\x8e\xa9" => "\xa5\xa5", #¥¥ + "\x8e\xaa" => "\xa5\xa7", #¥§ + "\x8e\xab" => "\xa5\xa9", #¥© + "\x8e\xac" => "\xa5\xe3", #¥ã + "\x8e\xad" => "\xa5\xe5", #¥å + "\x8e\xae" => "\xa5\xe7", #¥ç + "\x8e\xaf" => "\xa5\xc3", #¥Ã + "\x8e\xb0" => "\xa1\xbc", #¡¼ + "\x8e\xb1" => "\xa5\xa2", #¥¢ + "\x8e\xb2" => "\xa5\xa4", #¥¤ + "\x8e\xb3" => "\xa5\xa6", #¥¦ + "\x8e\xb4" => "\xa5\xa8", #¥¨ + "\x8e\xb5" => "\xa5\xaa", #¥ª + "\x8e\xb6" => "\xa5\xab", #¥« + "\x8e\xb7" => "\xa5\xad", #¥ + "\x8e\xb8" => "\xa5\xaf", #¥¯ + "\x8e\xb9" => "\xa5\xb1", #¥± + "\x8e\xba" => "\xa5\xb3", #¥³ + "\x8e\xbb" => "\xa5\xb5", #¥µ + "\x8e\xbc" => "\xa5\xb7", #¥· + "\x8e\xbd" => "\xa5\xb9", #¥¹ + "\x8e\xbe" => "\xa5\xbb", #¥» + "\x8e\xbf" => "\xa5\xbd", #¥½ + "\x8e\xc0" => "\xa5\xbf", #¥¿ + "\x8e\xc1" => "\xa5\xc1", #¥Á + "\x8e\xc2" => "\xa5\xc4", #¥Ä + "\x8e\xc3" => "\xa5\xc6", #¥Æ + "\x8e\xc4" => "\xa5\xc8", #¥È + "\x8e\xc5" => "\xa5\xca", #¥Ê + "\x8e\xc6" => "\xa5\xcb", #¥Ë + "\x8e\xc7" => "\xa5\xcc", #¥Ì + "\x8e\xc8" => "\xa5\xcd", #¥Í + "\x8e\xc9" => "\xa5\xce", #¥Î + "\x8e\xca" => "\xa5\xcf", #¥Ï + "\x8e\xcb" => "\xa5\xd2", #¥Ò + "\x8e\xcc" => "\xa5\xd5", #¥Õ + "\x8e\xcd" => "\xa5\xd8", #¥Ø + "\x8e\xce" => "\xa5\xdb", #¥Û + "\x8e\xcf" => "\xa5\xde", #¥Þ + "\x8e\xd0" => "\xa5\xdf", #¥ß + "\x8e\xd1" => "\xa5\xe0", #¥à + "\x8e\xd2" => "\xa5\xe1", #¥á + "\x8e\xd3" => "\xa5\xe2", #¥â + "\x8e\xd4" => "\xa5\xe4", #¥ä + "\x8e\xd5" => "\xa5\xe6", #¥æ + "\x8e\xd6" => "\xa5\xe8", #¥è + "\x8e\xd7" => "\xa5\xe9", #¥é + "\x8e\xd8" => "\xa5\xea", #¥ê + "\x8e\xd9" => "\xa5\xeb", #¥ë + "\x8e\xda" => "\xa5\xec", #¥ì + "\x8e\xdb" => "\xa5\xed", #¥í + "\x8e\xdc" => "\xa5\xef", #¥ï + "\x8e\xdd" => "\xa5\xf3", #¥ó + "\x8e\xde" => "\xa1\xab", #¡« + "\x8e\xdf" => "\xa1\xac", #¡¬ +); + +%_D2Z = ( + "\x8e\xb6\x8e\xde" => "\xa5\xac", #¥¬ + "\x8e\xb7\x8e\xde" => "\xa5\xae", #¥® + "\x8e\xb8\x8e\xde" => "\xa5\xb0", #¥° + "\x8e\xb9\x8e\xde" => "\xa5\xb2", #¥² + "\x8e\xba\x8e\xde" => "\xa5\xb4", #¥´ + "\x8e\xbb\x8e\xde" => "\xa5\xb6", #¥¶ + "\x8e\xbc\x8e\xde" => "\xa5\xb8", #¥¸ + "\x8e\xbd\x8e\xde" => "\xa5\xba", #¥º + "\x8e\xbe\x8e\xde" => "\xa5\xbc", #¥¼ + "\x8e\xbf\x8e\xde" => "\xa5\xbe", #¥¾ + "\x8e\xc0\x8e\xde" => "\xa5\xc0", #¥À + "\x8e\xc1\x8e\xde" => "\xa5\xc2", #¥Â + "\x8e\xc2\x8e\xde" => "\xa5\xc5", #¥Å + "\x8e\xc3\x8e\xde" => "\xa5\xc7", #¥Ç + "\x8e\xc4\x8e\xde" => "\xa5\xc9", #¥É + "\x8e\xca\x8e\xde" => "\xa5\xd0", #¥Ð + "\x8e\xcb\x8e\xde" => "\xa5\xd3", #¥Ó + "\x8e\xcc\x8e\xde" => "\xa5\xd6", #¥Ö + "\x8e\xcd\x8e\xde" => "\xa5\xd9", #¥Ù + "\x8e\xce\x8e\xde" => "\xa5\xdc", #¥Ü + "\x8e\xca\x8e\xdf" => "\xa5\xd1", #¥Ñ + "\x8e\xcb\x8e\xdf" => "\xa5\xd4", #¥Ô + "\x8e\xcc\x8e\xdf" => "\xa5\xd7", #¥× + "\x8e\xcd\x8e\xdf" => "\xa5\xda", #¥Ú + "\x8e\xce\x8e\xdf" => "\xa5\xdd", #¥Ý + "\x8e\xb3\x8e\xde" => "\xa5\xf4", #¥ô +); + +# init only once; + +$_PAT_D2Z = join("|", keys %_D2Z); +$_PAT_H2Z = join("|", keys %_H2Z); + +%_Z2H = reverse %_H2Z; +%_Z2D = reverse %_D2Z; + +$_PAT_Z2H = join("|", keys %_Z2H); +$_PAT_Z2D = join("|", keys %_Z2D); + +sub h2z { + my $r_str = shift; + my ($keep_dakuten) = @_; + my $n = 0; + unless ($keep_dakuten){ + $n = ( + $$r_str =~ s( + ($RE{EUC_KANA} + (:?\x8e[\xde\xdf])?) + ){ + my $str = $1; + $_D2Z{$str} || $_H2Z{$str} || + # in case dakuten and handakuten are side-by-side! + $_H2Z{substr($str,0,2)} . $_H2Z{substr($str,2,2)}; + }eogx + ); + }else{ + $n = ( + $$r_str =~ s( + ($RE{EUC_KANA}) + ){ + $_H2Z{$1}; + }eogx + ); + } + $n; +} + +sub z2h { + my $r_str = shift; + my $n = ( + $$r_str =~ s( + ($RE{EUC_C}|$RE{EUC_KANA}) + ){ + $_Z2D{$1} || $_Z2H{$1} || $1; + }eogx + ); + $n; +} + +1; diff --git a/cpan/lib/Jcode/Jcode/Tr.pm b/cpan/lib/Jcode/Jcode/Tr.pm new file mode 100644 index 00000000..4d8ee1ff --- /dev/null +++ b/cpan/lib/Jcode/Jcode/Tr.pm @@ -0,0 +1,87 @@ +# +# $Id: Tr.pm,v 0.63 2000/11/22 09:05:01 dankogai Exp dankogai $ +# + +package Jcode::Tr; + +use strict; +use vars qw($VERSION $RCSID); + +$RCSID = q$Id: Tr.pm,v 0.63 2000/11/22 09:05:01 dankogai Exp dankogai $; +$VERSION = do { my @r = (q$Revision: 0.63 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +use Jcode::Constants qw(:all); +use vars qw(%_TABLE); + +sub tr { + # $prev_from, $prev_to, %table are persistent variables + my ($r_str, $from, $to, $opt) = @_; + my (@from, @to); + my $n = 0; + + undef %_TABLE; + &_maketable($from, $to, $opt); + + $$r_str =~ s( + ([\x80-\xff][\x00-\xff]|[\x00-\xff]) + ) + {defined($_TABLE{$1}) && ++$n ? + $_TABLE{$1} : $1}ogex; + + return $n; +} + +sub _maketable { + my ($from, $to, $opt) = @_; + + grep(s/([\x8e\x8f]$RE{EUC_C}-[\x8e\x8f]$RE{EUC_C})/&_expnd3($1)/geo, + $from,$to); + grep(s/($RE{EUC_C}-$RE{EUC_C})/&_expnd2($1)/geo, + $from,$to); + grep(s/($RE{ASCII}-$RE{ASCII})/&_expnd1($1)/geo, + $from,$to); + + my @to = $to =~ /[\x8e\x8f]$RE{EUC_C}|$RE{EUC_C}|[\x00-\xff]/go; + my @from = $from =~ /[\x8e\x8f]$RE{EUC_C}|$RE{EUC_C}|[\x00-\xff]/go; + + push(@to, ($opt =~ /d/ ? '' : $to[$#to]) x (@from - @to)) if @to < @from; + @_TABLE{@from} = @to; +} + +sub _expnd1 { + my ($str) = @_; + s/\\(.)/$1/og; + my($c1, $c2) = unpack('CxC', $str); + if ($c1 <= $c2) { + for ($str = ''; $c1 <= $c2; $c1++) { + $str .= pack('C', $c1); + } + } + return $str; +} + +sub _expnd2 { + my ($str) = @_; + my ($c1, $c2, $c3, $c4) = unpack('CCxCC', $str); + if ($c1 == $c3 && $c2 <= $c4) { + for ($str = ''; $c2 <= $c4; $c2++) { + $str .= pack('CC', $c1, $c2); + } + } + return $str; +} + +sub _expnd3 { + my ($str) = @_; + my ($c1, $c2, $c3, $c4) = unpack('CCCxCCC', $str); + if ($c1 == $c3 && $c2 <= $c4) { + for ($str = ''; $c2 <= $c4; $c2++) { + $str .= pack('CCC', $c1, $c2); + } + } + return $str; +} + +1; diff --git a/cpan/lib/Jcode/Jcode/Unicode/Constants.pm b/cpan/lib/Jcode/Jcode/Unicode/Constants.pm new file mode 100644 index 00000000..4538da03 --- /dev/null +++ b/cpan/lib/Jcode/Jcode/Unicode/Constants.pm @@ -0,0 +1,13075 @@ +# +# $Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $ +# + +package Jcode::Unicode::Constants; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: Constants.pm,v 1.1 2000/11/15 05:44:53 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +# Exporter is not used to optimize speed + +package Jcode::Unicode::Constants; + +use vars qw(%_U2E %_E2U); + +# Ugly S.O.B Here! +%_U2E = ( +"\x00\xa1" => "\x8f\xa2\xc2", +"\x00\xa2" => "\xa1\xf1", +"\x00\xa3" => "\xa1\xf2", +"\x00\xa4" => "\x8f\xa2\xf0", +"\x00\xa5" => "\x5c", +"\x00\xa6" => "\x8f\xa2\xc3", +"\x00\xa7" => "\xa1\xf8", +"\x00\xa8" => "\xa1\xaf", +"\x00\xa9" => "\x8f\xa2\xed", +"\x00\xaa" => "\x8f\xa2\xec", +"\x00\xac" => "\xa2\xcc", +"\x00\xae" => "\x8f\xa2\xee", +"\x00\xaf" => "\x8f\xa2\xb4", +"\x00\xb0" => "\xa1\xeb", +"\x00\xb1" => "\xa1\xde", +"\x00\xb4" => "\xa1\xad", +"\x00\xb6" => "\xa2\xf9", +"\x00\xb8" => "\x8f\xa2\xb1", +"\x00\xba" => "\x8f\xa2\xeb", +"\x00\xbf" => "\x8f\xa2\xc4", +"\x00\xc0" => "\x8f\xaa\xa2", +"\x00\xc1" => "\x8f\xaa\xa1", +"\x00\xc2" => "\x8f\xaa\xa4", +"\x00\xc3" => "\x8f\xaa\xaa", +"\x00\xc4" => "\x8f\xaa\xa3", +"\x00\xc5" => "\x8f\xaa\xa9", +"\x00\xc6" => "\x8f\xa9\xa1", +"\x00\xc7" => "\x8f\xaa\xae", +"\x00\xc8" => "\x8f\xaa\xb2", +"\x00\xc9" => "\x8f\xaa\xb1", +"\x00\xca" => "\x8f\xaa\xb4", +"\x00\xcb" => "\x8f\xaa\xb3", +"\x00\xcc" => "\x8f\xaa\xc0", +"\x00\xcd" => "\x8f\xaa\xbf", +"\x00\xce" => "\x8f\xaa\xc2", +"\x00\xcf" => "\x8f\xaa\xc1", +"\x00\xd1" => "\x8f\xaa\xd0", +"\x00\xd2" => "\x8f\xaa\xd2", +"\x00\xd3" => "\x8f\xaa\xd1", +"\x00\xd4" => "\x8f\xaa\xd4", +"\x00\xd5" => "\x8f\xaa\xd8", +"\x00\xd6" => "\x8f\xaa\xd3", +"\x00\xd7" => "\xa1\xdf", +"\x00\xd8" => "\x8f\xa9\xac", +"\x00\xd9" => "\x8f\xaa\xe3", +"\x00\xda" => "\x8f\xaa\xe2", +"\x00\xdb" => "\x8f\xaa\xe5", +"\x00\xdc" => "\x8f\xaa\xe4", +"\x00\xdd" => "\x8f\xaa\xf2", +"\x00\xde" => "\x8f\xa9\xb0", +"\x00\xdf" => "\x8f\xa9\xce", +"\x00\xe0" => "\x8f\xab\xa2", +"\x00\xe1" => "\x8f\xab\xa1", +"\x00\xe2" => "\x8f\xab\xa4", +"\x00\xe3" => "\x8f\xab\xaa", +"\x00\xe4" => "\x8f\xab\xa3", +"\x00\xe5" => "\x8f\xab\xa9", +"\x00\xe6" => "\x8f\xa9\xc1", +"\x00\xe7" => "\x8f\xab\xae", +"\x00\xe8" => "\x8f\xab\xb2", +"\x00\xe9" => "\x8f\xab\xb1", +"\x00\xea" => "\x8f\xab\xb4", +"\x00\xeb" => "\x8f\xab\xb3", +"\x00\xec" => "\x8f\xab\xc0", +"\x00\xed" => "\x8f\xab\xbf", +"\x00\xee" => "\x8f\xab\xc2", +"\x00\xef" => "\x8f\xab\xc1", +"\x00\xf0" => "\x8f\xa9\xc3", +"\x00\xf1" => "\x8f\xab\xd0", +"\x00\xf2" => "\x8f\xab\xd2", +"\x00\xf3" => "\x8f\xab\xd1", +"\x00\xf4" => "\x8f\xab\xd4", +"\x00\xf5" => "\x8f\xab\xd8", +"\x00\xf6" => "\x8f\xab\xd3", +"\x00\xf7" => "\xa1\xe0", +"\x00\xf8" => "\x8f\xa9\xcc", +"\x00\xf9" => "\x8f\xab\xe3", +"\x00\xfa" => "\x8f\xab\xe2", +"\x00\xfb" => "\x8f\xab\xe5", +"\x00\xfc" => "\x8f\xab\xe4", +"\x00\xfd" => "\x8f\xab\xf2", +"\x00\xfe" => "\x8f\xa9\xd0", +"\x00\xff" => "\x8f\xab\xf3", +"\x01\x00" => "\x8f\xaa\xa7", +"\x01\x01" => "\x8f\xab\xa7", +"\x01\x02" => "\x8f\xaa\xa5", +"\x01\x03" => "\x8f\xab\xa5", +"\x01\x04" => "\x8f\xaa\xa8", +"\x01\x05" => "\x8f\xab\xa8", +"\x01\x06" => "\x8f\xaa\xab", +"\x01\x07" => "\x8f\xab\xab", +"\x01\x08" => "\x8f\xaa\xac", +"\x01\x09" => "\x8f\xab\xac", +"\x01\x0a" => "\x8f\xaa\xaf", +"\x01\x0b" => "\x8f\xab\xaf", +"\x01\x0c" => "\x8f\xaa\xad", +"\x01\x0d" => "\x8f\xab\xad", +"\x01\x0e" => "\x8f\xaa\xb0", +"\x01\x0f" => "\x8f\xab\xb0", +"\x01\x10" => "\x8f\xa9\xa2", +"\x01\x11" => "\x8f\xa9\xc2", +"\x01\x12" => "\x8f\xaa\xb7", +"\x01\x13" => "\x8f\xab\xb7", +"\x01\x16" => "\x8f\xaa\xb6", +"\x01\x17" => "\x8f\xab\xb6", +"\x01\x18" => "\x8f\xaa\xb8", +"\x01\x19" => "\x8f\xab\xb8", +"\x01\x1a" => "\x8f\xaa\xb5", +"\x01\x1b" => "\x8f\xab\xb5", +"\x01\x1c" => "\x8f\xaa\xba", +"\x01\x1d" => "\x8f\xab\xba", +"\x01\x1e" => "\x8f\xaa\xbb", +"\x01\x1f" => "\x8f\xab\xbb", +"\x01\x20" => "\x8f\xaa\xbd", +"\x01\x21" => "\x8f\xab\xbd", +"\x01\x22" => "\x8f\xaa\xbc", +"\x01\x24" => "\x8f\xaa\xbe", +"\x01\x25" => "\x8f\xab\xbe", +"\x01\x26" => "\x8f\xa9\xa4", +"\x01\x27" => "\x8f\xa9\xc4", +"\x01\x28" => "\x8f\xaa\xc7", +"\x01\x29" => "\x8f\xab\xc7", +"\x01\x2a" => "\x8f\xaa\xc5", +"\x01\x2b" => "\x8f\xab\xc5", +"\x01\x2e" => "\x8f\xaa\xc6", +"\x01\x2f" => "\x8f\xab\xc6", +"\x01\x30" => "\x8f\xaa\xc4", +"\x01\x31" => "\x8f\xa9\xc5", +"\x01\x32" => "\x8f\xa9\xa6", +"\x01\x33" => "\x8f\xa9\xc6", +"\x01\x34" => "\x8f\xaa\xc8", +"\x01\x35" => "\x8f\xab\xc8", +"\x01\x36" => "\x8f\xaa\xc9", +"\x01\x37" => "\x8f\xab\xc9", +"\x01\x38" => "\x8f\xa9\xc7", +"\x01\x39" => "\x8f\xaa\xca", +"\x01\x3a" => "\x8f\xab\xca", +"\x01\x3b" => "\x8f\xaa\xcc", +"\x01\x3c" => "\x8f\xab\xcc", +"\x01\x3d" => "\x8f\xaa\xcb", +"\x01\x3e" => "\x8f\xab\xcb", +"\x01\x3f" => "\x8f\xa9\xa9", +"\x01\x40" => "\x8f\xa9\xc9", +"\x01\x41" => "\x8f\xa9\xa8", +"\x01\x42" => "\x8f\xa9\xc8", +"\x01\x43" => "\x8f\xaa\xcd", +"\x01\x44" => "\x8f\xab\xcd", +"\x01\x45" => "\x8f\xaa\xcf", +"\x01\x46" => "\x8f\xab\xcf", +"\x01\x47" => "\x8f\xaa\xce", +"\x01\x48" => "\x8f\xab\xce", +"\x01\x49" => "\x8f\xa9\xca", +"\x01\x4a" => "\x8f\xa9\xab", +"\x01\x4b" => "\x8f\xa9\xcb", +"\x01\x4c" => "\x8f\xaa\xd7", +"\x01\x4d" => "\x8f\xab\xd7", +"\x01\x50" => "\x8f\xaa\xd6", +"\x01\x51" => "\x8f\xab\xd6", +"\x01\x52" => "\x8f\xa9\xad", +"\x01\x53" => "\x8f\xa9\xcd", +"\x01\x54" => "\x8f\xaa\xd9", +"\x01\x55" => "\x8f\xab\xd9", +"\x01\x56" => "\x8f\xaa\xdb", +"\x01\x57" => "\x8f\xab\xdb", +"\x01\x58" => "\x8f\xaa\xda", +"\x01\x59" => "\x8f\xab\xda", +"\x01\x5a" => "\x8f\xaa\xdc", +"\x01\x5b" => "\x8f\xab\xdc", +"\x01\x5c" => "\x8f\xaa\xdd", +"\x01\x5d" => "\x8f\xab\xdd", +"\x01\x5e" => "\x8f\xaa\xdf", +"\x01\x5f" => "\x8f\xab\xdf", +"\x01\x60" => "\x8f\xaa\xde", +"\x01\x61" => "\x8f\xab\xde", +"\x01\x62" => "\x8f\xaa\xe1", +"\x01\x63" => "\x8f\xab\xe1", +"\x01\x64" => "\x8f\xaa\xe0", +"\x01\x65" => "\x8f\xab\xe0", +"\x01\x66" => "\x8f\xa9\xaf", +"\x01\x67" => "\x8f\xa9\xcf", +"\x01\x68" => "\x8f\xaa\xec", +"\x01\x69" => "\x8f\xab\xec", +"\x01\x6a" => "\x8f\xaa\xe9", +"\x01\x6b" => "\x8f\xab\xe9", +"\x01\x6c" => "\x8f\xaa\xe6", +"\x01\x6d" => "\x8f\xab\xe6", +"\x01\x6e" => "\x8f\xaa\xeb", +"\x01\x6f" => "\x8f\xab\xeb", +"\x01\x70" => "\x8f\xaa\xe8", +"\x01\x71" => "\x8f\xab\xe8", +"\x01\x72" => "\x8f\xaa\xea", +"\x01\x73" => "\x8f\xab\xea", +"\x01\x74" => "\x8f\xaa\xf1", +"\x01\x75" => "\x8f\xab\xf1", +"\x01\x76" => "\x8f\xaa\xf4", +"\x01\x77" => "\x8f\xab\xf4", +"\x01\x78" => "\x8f\xaa\xf3", +"\x01\x79" => "\x8f\xaa\xf5", +"\x01\x7a" => "\x8f\xab\xf5", +"\x01\x7b" => "\x8f\xaa\xf7", +"\x01\x7c" => "\x8f\xab\xf7", +"\x01\x7d" => "\x8f\xaa\xf6", +"\x01\x7e" => "\x8f\xab\xf6", +"\x01\xcd" => "\x8f\xaa\xa6", +"\x01\xce" => "\x8f\xab\xa6", +"\x01\xcf" => "\x8f\xaa\xc3", +"\x01\xd0" => "\x8f\xab\xc3", +"\x01\xd1" => "\x8f\xaa\xd5", +"\x01\xd2" => "\x8f\xab\xd5", +"\x01\xd3" => "\x8f\xaa\xe7", +"\x01\xd4" => "\x8f\xab\xe7", +"\x01\xd5" => "\x8f\xaa\xf0", +"\x01\xd6" => "\x8f\xab\xf0", +"\x01\xd7" => "\x8f\xaa\xed", +"\x01\xd8" => "\x8f\xab\xed", +"\x01\xd9" => "\x8f\xaa\xef", +"\x01\xda" => "\x8f\xab\xef", +"\x01\xdb" => "\x8f\xaa\xee", +"\x01\xdc" => "\x8f\xab\xee", +"\x01\xf5" => "\x8f\xab\xb9", +"\x02\xc7" => "\x8f\xa2\xb0", +"\x02\xd8" => "\x8f\xa2\xaf", +"\x02\xd9" => "\x8f\xa2\xb2", +"\x02\xda" => "\x8f\xa2\xb6", +"\x02\xdb" => "\x8f\xa2\xb5", +"\x02\xdd" => "\x8f\xa2\xb3", +"\x03\x84" => "\x8f\xa2\xb8", +"\x03\x85" => "\x8f\xa2\xb9", +"\x03\x86" => "\x8f\xa6\xe1", +"\x03\x88" => "\x8f\xa6\xe2", +"\x03\x89" => "\x8f\xa6\xe3", +"\x03\x8a" => "\x8f\xa6\xe4", +"\x03\x8c" => "\x8f\xa6\xe7", +"\x03\x8e" => "\x8f\xa6\xe9", +"\x03\x8f" => "\x8f\xa6\xec", +"\x03\x90" => "\x8f\xa6\xf6", +"\x03\x91" => "\xa6\xa1", +"\x03\x92" => "\xa6\xa2", +"\x03\x93" => "\xa6\xa3", +"\x03\x94" => "\xa6\xa4", +"\x03\x95" => "\xa6\xa5", +"\x03\x96" => "\xa6\xa6", +"\x03\x97" => "\xa6\xa7", +"\x03\x98" => "\xa6\xa8", +"\x03\x99" => "\xa6\xa9", +"\x03\x9a" => "\xa6\xaa", +"\x03\x9b" => "\xa6\xab", +"\x03\x9c" => "\xa6\xac", +"\x03\x9d" => "\xa6\xad", +"\x03\x9e" => "\xa6\xae", +"\x03\x9f" => "\xa6\xaf", +"\x03\xa0" => "\xa6\xb0", +"\x03\xa1" => "\xa6\xb1", +"\x03\xa3" => "\xa6\xb2", +"\x03\xa4" => "\xa6\xb3", +"\x03\xa5" => "\xa6\xb4", +"\x03\xa6" => "\xa6\xb5", +"\x03\xa7" => "\xa6\xb6", +"\x03\xa8" => "\xa6\xb7", +"\x03\xa9" => "\xa6\xb8", +"\x03\xaa" => "\x8f\xa6\xe5", +"\x03\xab" => "\x8f\xa6\xea", +"\x03\xac" => "\x8f\xa6\xf1", +"\x03\xad" => "\x8f\xa6\xf2", +"\x03\xae" => "\x8f\xa6\xf3", +"\x03\xaf" => "\x8f\xa6\xf4", +"\x03\xb0" => "\x8f\xa6\xfb", +"\x03\xb1" => "\xa6\xc1", +"\x03\xb2" => "\xa6\xc2", +"\x03\xb3" => "\xa6\xc3", +"\x03\xb4" => "\xa6\xc4", +"\x03\xb5" => "\xa6\xc5", +"\x03\xb6" => "\xa6\xc6", +"\x03\xb7" => "\xa6\xc7", +"\x03\xb8" => "\xa6\xc8", +"\x03\xb9" => "\xa6\xc9", +"\x03\xba" => "\xa6\xca", +"\x03\xbb" => "\xa6\xcb", +"\x03\xbc" => "\xa6\xcc", +"\x03\xbd" => "\xa6\xcd", +"\x03\xbe" => "\xa6\xce", +"\x03\xbf" => "\xa6\xcf", +"\x03\xc0" => "\xa6\xd0", +"\x03\xc1" => "\xa6\xd1", +"\x03\xc2" => "\x8f\xa6\xf8", +"\x03\xc3" => "\xa6\xd2", +"\x03\xc4" => "\xa6\xd3", +"\x03\xc5" => "\xa6\xd4", +"\x03\xc6" => "\xa6\xd5", +"\x03\xc7" => "\xa6\xd6", +"\x03\xc8" => "\xa6\xd7", +"\x03\xc9" => "\xa6\xd8", +"\x03\xca" => "\x8f\xa6\xf5", +"\x03\xcb" => "\x8f\xa6\xfa", +"\x03\xcc" => "\x8f\xa6\xf7", +"\x03\xcd" => "\x8f\xa6\xf9", +"\x03\xce" => "\x8f\xa6\xfc", +"\x04\x01" => "\xa7\xa7", +"\x04\x02" => "\x8f\xa7\xc2", +"\x04\x03" => "\x8f\xa7\xc3", +"\x04\x04" => "\x8f\xa7\xc4", +"\x04\x05" => "\x8f\xa7\xc5", +"\x04\x06" => "\x8f\xa7\xc6", +"\x04\x07" => "\x8f\xa7\xc7", +"\x04\x08" => "\x8f\xa7\xc8", +"\x04\x09" => "\x8f\xa7\xc9", +"\x04\x0a" => "\x8f\xa7\xca", +"\x04\x0b" => "\x8f\xa7\xcb", +"\x04\x0c" => "\x8f\xa7\xcc", +"\x04\x0e" => "\x8f\xa7\xcd", +"\x04\x0f" => "\x8f\xa7\xce", +"\x04\x10" => "\xa7\xa1", +"\x04\x11" => "\xa7\xa2", +"\x04\x12" => "\xa7\xa3", +"\x04\x13" => "\xa7\xa4", +"\x04\x14" => "\xa7\xa5", +"\x04\x15" => "\xa7\xa6", +"\x04\x16" => "\xa7\xa8", +"\x04\x17" => "\xa7\xa9", +"\x04\x18" => "\xa7\xaa", +"\x04\x19" => "\xa7\xab", +"\x04\x1a" => "\xa7\xac", +"\x04\x1b" => "\xa7\xad", +"\x04\x1c" => "\xa7\xae", +"\x04\x1d" => "\xa7\xaf", +"\x04\x1e" => "\xa7\xb0", +"\x04\x1f" => "\xa7\xb1", +"\x04\x20" => "\xa7\xb2", +"\x04\x21" => "\xa7\xb3", +"\x04\x22" => "\xa7\xb4", +"\x04\x23" => "\xa7\xb5", +"\x04\x24" => "\xa7\xb6", +"\x04\x25" => "\xa7\xb7", +"\x04\x26" => "\xa7\xb8", +"\x04\x27" => "\xa7\xb9", +"\x04\x28" => "\xa7\xba", +"\x04\x29" => "\xa7\xbb", +"\x04\x2a" => "\xa7\xbc", +"\x04\x2b" => "\xa7\xbd", +"\x04\x2c" => "\xa7\xbe", +"\x04\x2d" => "\xa7\xbf", +"\x04\x2e" => "\xa7\xc0", +"\x04\x2f" => "\xa7\xc1", +"\x04\x30" => "\xa7\xd1", +"\x04\x31" => "\xa7\xd2", +"\x04\x32" => "\xa7\xd3", +"\x04\x33" => "\xa7\xd4", +"\x04\x34" => "\xa7\xd5", +"\x04\x35" => "\xa7\xd6", +"\x04\x36" => "\xa7\xd8", +"\x04\x37" => "\xa7\xd9", +"\x04\x38" => "\xa7\xda", +"\x04\x39" => "\xa7\xdb", +"\x04\x3a" => "\xa7\xdc", +"\x04\x3b" => "\xa7\xdd", +"\x04\x3c" => "\xa7\xde", +"\x04\x3d" => "\xa7\xdf", +"\x04\x3e" => "\xa7\xe0", +"\x04\x3f" => "\xa7\xe1", +"\x04\x40" => "\xa7\xe2", +"\x04\x41" => "\xa7\xe3", +"\x04\x42" => "\xa7\xe4", +"\x04\x43" => "\xa7\xe5", +"\x04\x44" => "\xa7\xe6", +"\x04\x45" => "\xa7\xe7", +"\x04\x46" => "\xa7\xe8", +"\x04\x47" => "\xa7\xe9", +"\x04\x48" => "\xa7\xea", +"\x04\x49" => "\xa7\xeb", +"\x04\x4a" => "\xa7\xec", +"\x04\x4b" => "\xa7\xed", +"\x04\x4c" => "\xa7\xee", +"\x04\x4d" => "\xa7\xef", +"\x04\x4e" => "\xa7\xf0", +"\x04\x4f" => "\xa7\xf1", +"\x04\x51" => "\xa7\xd7", +"\x04\x52" => "\x8f\xa7\xf2", +"\x04\x53" => "\x8f\xa7\xf3", +"\x04\x54" => "\x8f\xa7\xf4", +"\x04\x55" => "\x8f\xa7\xf5", +"\x04\x56" => "\x8f\xa7\xf6", +"\x04\x57" => "\x8f\xa7\xf7", +"\x04\x58" => "\x8f\xa7\xf8", +"\x04\x59" => "\x8f\xa7\xf9", +"\x04\x5a" => "\x8f\xa7\xfa", +"\x04\x5b" => "\x8f\xa7\xfb", +"\x04\x5c" => "\x8f\xa7\xfc", +"\x04\x5e" => "\x8f\xa7\xfd", +"\x04\x5f" => "\x8f\xa7\xfe", +"\x20\x10" => "\xa1\xbe", +"\x20\x15" => "\xa1\xbd", +"\x20\x16" => "\xa1\xc2", +"\x20\x18" => "\xa1\xc6", +"\x20\x19" => "\xa1\xc7", +"\x20\x1c" => "\xa1\xc8", +"\x20\x1d" => "\xa1\xc9", +"\x20\x20" => "\xa2\xf7", +"\x20\x21" => "\xa2\xf8", +"\x20\x25" => "\xa1\xc5", +"\x20\x26" => "\xa1\xc4", +"\x20\x30" => "\xa2\xf3", +"\x20\x32" => "\xa1\xec", +"\x20\x33" => "\xa1\xed", +"\x20\x3b" => "\xa2\xa8", +"\x20\x3e" => "\x7e", +"\x21\x03" => "\xa1\xee", +"\x21\x16" => "\x8f\xa2\xf1", +"\x21\x22" => "\x8f\xa2\xef", +"\x21\x2b" => "\xa2\xf2", +"\x21\x90" => "\xa2\xab", +"\x21\x91" => "\xa2\xac", +"\x21\x92" => "\xa2\xaa", +"\x21\x93" => "\xa2\xad", +"\x21\xd2" => "\xa2\xcd", +"\x21\xd4" => "\xa2\xce", +"\x22\x00" => "\xa2\xcf", +"\x22\x02" => "\xa2\xdf", +"\x22\x03" => "\xa2\xd0", +"\x22\x07" => "\xa2\xe0", +"\x22\x08" => "\xa2\xba", +"\x22\x0b" => "\xa2\xbb", +"\x22\x12" => "\xa1\xdd", +"\x22\x1a" => "\xa2\xe5", +"\x22\x1d" => "\xa2\xe7", +"\x22\x1e" => "\xa1\xe7", +"\x22\x20" => "\xa2\xdc", +"\x22\x27" => "\xa2\xca", +"\x22\x28" => "\xa2\xcb", +"\x22\x29" => "\xa2\xc1", +"\x22\x2a" => "\xa2\xc0", +"\x22\x2b" => "\xa2\xe9", +"\x22\x2c" => "\xa2\xea", +"\x22\x34" => "\xa1\xe8", +"\x22\x35" => "\xa2\xe8", +"\x22\x3d" => "\xa2\xe6", +"\x22\x52" => "\xa2\xe2", +"\x22\x60" => "\xa1\xe2", +"\x22\x61" => "\xa2\xe1", +"\x22\x66" => "\xa1\xe5", +"\x22\x67" => "\xa1\xe6", +"\x22\x6a" => "\xa2\xe3", +"\x22\x6b" => "\xa2\xe4", +"\x22\x82" => "\xa2\xbe", +"\x22\x83" => "\xa2\xbf", +"\x22\x86" => "\xa2\xbc", +"\x22\x87" => "\xa2\xbd", +"\x22\xa5" => "\xa2\xdd", +"\x23\x12" => "\xa2\xde", +"\x25\x00" => "\xa8\xa1", +"\x25\x01" => "\xa8\xac", +"\x25\x02" => "\xa8\xa2", +"\x25\x03" => "\xa8\xad", +"\x25\x0c" => "\xa8\xa3", +"\x25\x0f" => "\xa8\xae", +"\x25\x10" => "\xa8\xa4", +"\x25\x13" => "\xa8\xaf", +"\x25\x14" => "\xa8\xa6", +"\x25\x17" => "\xa8\xb1", +"\x25\x18" => "\xa8\xa5", +"\x25\x1b" => "\xa8\xb0", +"\x25\x1c" => "\xa8\xa7", +"\x25\x1d" => "\xa8\xbc", +"\x25\x20" => "\xa8\xb7", +"\x25\x23" => "\xa8\xb2", +"\x25\x24" => "\xa8\xa9", +"\x25\x25" => "\xa8\xbe", +"\x25\x28" => "\xa8\xb9", +"\x25\x2b" => "\xa8\xb4", +"\x25\x2c" => "\xa8\xa8", +"\x25\x2f" => "\xa8\xb8", +"\x25\x30" => "\xa8\xbd", +"\x25\x33" => "\xa8\xb3", +"\x25\x34" => "\xa8\xaa", +"\x25\x37" => "\xa8\xba", +"\x25\x38" => "\xa8\xbf", +"\x25\x3b" => "\xa8\xb5", +"\x25\x3c" => "\xa8\xab", +"\x25\x3f" => "\xa8\xbb", +"\x25\x42" => "\xa8\xc0", +"\x25\x4b" => "\xa8\xb6", +"\x25\xa0" => "\xa2\xa3", +"\x25\xa1" => "\xa2\xa2", +"\x25\xb2" => "\xa2\xa5", +"\x25\xb3" => "\xa2\xa4", +"\x25\xbc" => "\xa2\xa7", +"\x25\xbd" => "\xa2\xa6", +"\x25\xc6" => "\xa2\xa1", +"\x25\xc7" => "\xa1\xfe", +"\x25\xcb" => "\xa1\xfb", +"\x25\xce" => "\xa1\xfd", +"\x25\xcf" => "\xa1\xfc", +"\x25\xef" => "\xa2\xfe", +"\x26\x05" => "\xa1\xfa", +"\x26\x06" => "\xa1\xf9", +"\x26\x40" => "\xa1\xea", +"\x26\x42" => "\xa1\xe9", +"\x26\x6a" => "\xa2\xf6", +"\x26\x6d" => "\xa2\xf5", +"\x26\x6f" => "\xa2\xf4", +"\x30\x00" => "\xa1\xa1", +"\x30\x01" => "\xa1\xa2", +"\x30\x02" => "\xa1\xa3", +"\x30\x03" => "\xa1\xb7", +"\x30\x05" => "\xa1\xb9", +"\x30\x06" => "\xa1\xba", +"\x30\x07" => "\xa1\xbb", +"\x30\x08" => "\xa1\xd2", +"\x30\x09" => "\xa1\xd3", +"\x30\x0a" => "\xa1\xd4", +"\x30\x0b" => "\xa1\xd5", +"\x30\x0c" => "\xa1\xd6", +"\x30\x0d" => "\xa1\xd7", +"\x30\x0e" => "\xa1\xd8", +"\x30\x0f" => "\xa1\xd9", +"\x30\x10" => "\xa1\xda", +"\x30\x11" => "\xa1\xdb", +"\x30\x12" => "\xa2\xa9", +"\x30\x13" => "\xa2\xae", +"\x30\x14" => "\xa1\xcc", +"\x30\x15" => "\xa1\xcd", +"\x30\x1c" => "\xa1\xc1", +"\x30\x41" => "\xa4\xa1", +"\x30\x42" => "\xa4\xa2", +"\x30\x43" => "\xa4\xa3", +"\x30\x44" => "\xa4\xa4", +"\x30\x45" => "\xa4\xa5", +"\x30\x46" => "\xa4\xa6", +"\x30\x47" => "\xa4\xa7", +"\x30\x48" => "\xa4\xa8", +"\x30\x49" => "\xa4\xa9", +"\x30\x4a" => "\xa4\xaa", +"\x30\x4b" => "\xa4\xab", +"\x30\x4c" => "\xa4\xac", +"\x30\x4d" => "\xa4\xad", +"\x30\x4e" => "\xa4\xae", +"\x30\x4f" => "\xa4\xaf", +"\x30\x50" => "\xa4\xb0", +"\x30\x51" => "\xa4\xb1", +"\x30\x52" => "\xa4\xb2", +"\x30\x53" => "\xa4\xb3", +"\x30\x54" => "\xa4\xb4", +"\x30\x55" => "\xa4\xb5", +"\x30\x56" => "\xa4\xb6", +"\x30\x57" => "\xa4\xb7", +"\x30\x58" => "\xa4\xb8", +"\x30\x59" => "\xa4\xb9", +"\x30\x5a" => "\xa4\xba", +"\x30\x5b" => "\xa4\xbb", +"\x30\x5c" => "\xa4\xbc", +"\x30\x5d" => "\xa4\xbd", +"\x30\x5e" => "\xa4\xbe", +"\x30\x5f" => "\xa4\xbf", +"\x30\x60" => "\xa4\xc0", +"\x30\x61" => "\xa4\xc1", +"\x30\x62" => "\xa4\xc2", +"\x30\x63" => "\xa4\xc3", +"\x30\x64" => "\xa4\xc4", +"\x30\x65" => "\xa4\xc5", +"\x30\x66" => "\xa4\xc6", +"\x30\x67" => "\xa4\xc7", +"\x30\x68" => "\xa4\xc8", +"\x30\x69" => "\xa4\xc9", +"\x30\x6a" => "\xa4\xca", +"\x30\x6b" => "\xa4\xcb", +"\x30\x6c" => "\xa4\xcc", +"\x30\x6d" => "\xa4\xcd", +"\x30\x6e" => "\xa4\xce", +"\x30\x6f" => "\xa4\xcf", +"\x30\x70" => "\xa4\xd0", +"\x30\x71" => "\xa4\xd1", +"\x30\x72" => "\xa4\xd2", +"\x30\x73" => "\xa4\xd3", +"\x30\x74" => "\xa4\xd4", +"\x30\x75" => "\xa4\xd5", +"\x30\x76" => "\xa4\xd6", +"\x30\x77" => "\xa4\xd7", +"\x30\x78" => "\xa4\xd8", +"\x30\x79" => "\xa4\xd9", +"\x30\x7a" => "\xa4\xda", +"\x30\x7b" => "\xa4\xdb", +"\x30\x7c" => "\xa4\xdc", +"\x30\x7d" => "\xa4\xdd", +"\x30\x7e" => "\xa4\xde", +"\x30\x7f" => "\xa4\xdf", +"\x30\x80" => "\xa4\xe0", +"\x30\x81" => "\xa4\xe1", +"\x30\x82" => "\xa4\xe2", +"\x30\x83" => "\xa4\xe3", +"\x30\x84" => "\xa4\xe4", +"\x30\x85" => "\xa4\xe5", +"\x30\x86" => "\xa4\xe6", +"\x30\x87" => "\xa4\xe7", +"\x30\x88" => "\xa4\xe8", +"\x30\x89" => "\xa4\xe9", +"\x30\x8a" => "\xa4\xea", +"\x30\x8b" => "\xa4\xeb", +"\x30\x8c" => "\xa4\xec", +"\x30\x8d" => "\xa4\xed", +"\x30\x8e" => "\xa4\xee", +"\x30\x8f" => "\xa4\xef", +"\x30\x90" => "\xa4\xf0", +"\x30\x91" => "\xa4\xf1", +"\x30\x92" => "\xa4\xf2", +"\x30\x93" => "\xa4\xf3", +"\x30\x9b" => "\xa1\xab", +"\x30\x9c" => "\xa1\xac", +"\x30\x9d" => "\xa1\xb5", +"\x30\x9e" => "\xa1\xb6", +"\x30\xa1" => "\xa5\xa1", +"\x30\xa2" => "\xa5\xa2", +"\x30\xa3" => "\xa5\xa3", +"\x30\xa4" => "\xa5\xa4", +"\x30\xa5" => "\xa5\xa5", +"\x30\xa6" => "\xa5\xa6", +"\x30\xa7" => "\xa5\xa7", +"\x30\xa8" => "\xa5\xa8", +"\x30\xa9" => "\xa5\xa9", +"\x30\xaa" => "\xa5\xaa", +"\x30\xab" => "\xa5\xab", +"\x30\xac" => "\xa5\xac", +"\x30\xad" => "\xa5\xad", +"\x30\xae" => "\xa5\xae", +"\x30\xaf" => "\xa5\xaf", +"\x30\xb0" => "\xa5\xb0", +"\x30\xb1" => "\xa5\xb1", +"\x30\xb2" => "\xa5\xb2", +"\x30\xb3" => "\xa5\xb3", +"\x30\xb4" => "\xa5\xb4", +"\x30\xb5" => "\xa5\xb5", +"\x30\xb6" => "\xa5\xb6", +"\x30\xb7" => "\xa5\xb7", +"\x30\xb8" => "\xa5\xb8", +"\x30\xb9" => "\xa5\xb9", +"\x30\xba" => "\xa5\xba", +"\x30\xbb" => "\xa5\xbb", +"\x30\xbc" => "\xa5\xbc", +"\x30\xbd" => "\xa5\xbd", +"\x30\xbe" => "\xa5\xbe", +"\x30\xbf" => "\xa5\xbf", +"\x30\xc0" => "\xa5\xc0", +"\x30\xc1" => "\xa5\xc1", +"\x30\xc2" => "\xa5\xc2", +"\x30\xc3" => "\xa5\xc3", +"\x30\xc4" => "\xa5\xc4", +"\x30\xc5" => "\xa5\xc5", +"\x30\xc6" => "\xa5\xc6", +"\x30\xc7" => "\xa5\xc7", +"\x30\xc8" => "\xa5\xc8", +"\x30\xc9" => "\xa5\xc9", +"\x30\xca" => "\xa5\xca", +"\x30\xcb" => "\xa5\xcb", +"\x30\xcc" => "\xa5\xcc", +"\x30\xcd" => "\xa5\xcd", +"\x30\xce" => "\xa5\xce", +"\x30\xcf" => "\xa5\xcf", +"\x30\xd0" => "\xa5\xd0", +"\x30\xd1" => "\xa5\xd1", +"\x30\xd2" => "\xa5\xd2", +"\x30\xd3" => "\xa5\xd3", +"\x30\xd4" => "\xa5\xd4", +"\x30\xd5" => "\xa5\xd5", +"\x30\xd6" => "\xa5\xd6", +"\x30\xd7" => "\xa5\xd7", +"\x30\xd8" => "\xa5\xd8", +"\x30\xd9" => "\xa5\xd9", +"\x30\xda" => "\xa5\xda", +"\x30\xdb" => "\xa5\xdb", +"\x30\xdc" => "\xa5\xdc", +"\x30\xdd" => "\xa5\xdd", +"\x30\xde" => "\xa5\xde", +"\x30\xdf" => "\xa5\xdf", +"\x30\xe0" => "\xa5\xe0", +"\x30\xe1" => "\xa5\xe1", +"\x30\xe2" => "\xa5\xe2", +"\x30\xe3" => "\xa5\xe3", +"\x30\xe4" => "\xa5\xe4", +"\x30\xe5" => "\xa5\xe5", +"\x30\xe6" => "\xa5\xe6", +"\x30\xe7" => "\xa5\xe7", +"\x30\xe8" => "\xa5\xe8", +"\x30\xe9" => "\xa5\xe9", +"\x30\xea" => "\xa5\xea", +"\x30\xeb" => "\xa5\xeb", +"\x30\xec" => "\xa5\xec", +"\x30\xed" => "\xa5\xed", +"\x30\xee" => "\xa5\xee", +"\x30\xef" => "\xa5\xef", +"\x30\xf0" => "\xa5\xf0", +"\x30\xf1" => "\xa5\xf1", +"\x30\xf2" => "\xa5\xf2", +"\x30\xf3" => "\xa5\xf3", +"\x30\xf4" => "\xa5\xf4", +"\x30\xf5" => "\xa5\xf5", +"\x30\xf6" => "\xa5\xf6", +"\x30\xfb" => "\xa1\xa6", +"\x30\xfc" => "\xa1\xbc", +"\x30\xfd" => "\xa1\xb3", +"\x30\xfe" => "\xa1\xb4", +"\x4e\x00" => "\xb0\xec", +"\x4e\x01" => "\xc3\xfa", +"\x4e\x02" => "\x8f\xb0\xa1", +"\x4e\x03" => "\xbc\xb7", +"\x4e\x04" => "\x8f\xb0\xa2", +"\x4e\x05" => "\x8f\xb0\xa3", +"\x4e\x07" => "\xcb\xfc", +"\x4e\x08" => "\xbe\xe6", +"\x4e\x09" => "\xbb\xb0", +"\x4e\x0a" => "\xbe\xe5", +"\x4e\x0b" => "\xb2\xbc", +"\x4e\x0c" => "\x8f\xb0\xa4", +"\x4e\x0d" => "\xc9\xd4", +"\x4e\x0e" => "\xcd\xbf", +"\x4e\x10" => "\xd0\xa2", +"\x4e\x11" => "\xb1\xaf", +"\x4e\x12" => "\x8f\xb0\xa5", +"\x4e\x14" => "\xb3\xee", +"\x4e\x15" => "\xd0\xa3", +"\x4e\x16" => "\xc0\xa4", +"\x4e\x17" => "\xd2\xc2", +"\x4e\x18" => "\xb5\xd6", +"\x4e\x19" => "\xca\xba", +"\x4e\x1e" => "\xbe\xe7", +"\x4e\x1f" => "\x8f\xb0\xa6", +"\x4e\x21" => "\xce\xbe", +"\x4e\x23" => "\x8f\xb0\xa7", +"\x4e\x24" => "\x8f\xb0\xa8", +"\x4e\x26" => "\xca\xc2", +"\x4e\x28" => "\x8f\xb0\xa9", +"\x4e\x2a" => "\xd0\xa4", +"\x4e\x2b" => "\x8f\xb0\xaa", +"\x4e\x2d" => "\xc3\xe6", +"\x4e\x2e" => "\x8f\xb0\xab", +"\x4e\x2f" => "\x8f\xb0\xac", +"\x4e\x30" => "\x8f\xb0\xad", +"\x4e\x31" => "\xd0\xa5", +"\x4e\x32" => "\xb6\xfa", +"\x4e\x35" => "\x8f\xb0\xae", +"\x4e\x36" => "\xd0\xa6", +"\x4e\x38" => "\xb4\xdd", +"\x4e\x39" => "\xc3\xb0", +"\x4e\x3b" => "\xbc\xe7", +"\x4e\x3c" => "\xd0\xa7", +"\x4e\x3f" => "\xd0\xa8", +"\x4e\x40" => "\x8f\xb0\xaf", +"\x4e\x41" => "\x8f\xb0\xb0", +"\x4e\x42" => "\xd0\xa9", +"\x4e\x43" => "\xc7\xb5", +"\x4e\x44" => "\x8f\xb0\xb1", +"\x4e\x45" => "\xb5\xd7", +"\x4e\x47" => "\x8f\xb0\xb2", +"\x4e\x4b" => "\xc7\xb7", +"\x4e\x4d" => "\xc6\xe3", +"\x4e\x4e" => "\xb8\xc3", +"\x4e\x4f" => "\xcb\xb3", +"\x4e\x51" => "\x8f\xb0\xb3", +"\x4e\x55" => "\xe9\xc9", +"\x4e\x56" => "\xd0\xaa", +"\x4e\x57" => "\xbe\xe8", +"\x4e\x58" => "\xd0\xab", +"\x4e\x59" => "\xb2\xb5", +"\x4e\x5a" => "\x8f\xb0\xb4", +"\x4e\x5c" => "\x8f\xb0\xb5", +"\x4e\x5d" => "\xb6\xe5", +"\x4e\x5e" => "\xb8\xf0", +"\x4e\x5f" => "\xcc\xe9", +"\x4e\x62" => "\xd6\xa6", +"\x4e\x63" => "\x8f\xb0\xb6", +"\x4e\x68" => "\x8f\xb0\xb7", +"\x4e\x69" => "\x8f\xb0\xb8", +"\x4e\x71" => "\xcd\xf0", +"\x4e\x73" => "\xc6\xfd", +"\x4e\x74" => "\x8f\xb0\xb9", +"\x4e\x75" => "\x8f\xb0\xba", +"\x4e\x79" => "\x8f\xb0\xbb", +"\x4e\x7e" => "\xb4\xa5", +"\x4e\x7f" => "\x8f\xb0\xbc", +"\x4e\x80" => "\xb5\xb5", +"\x4e\x82" => "\xd0\xac", +"\x4e\x85" => "\xd0\xad", +"\x4e\x86" => "\xce\xbb", +"\x4e\x88" => "\xcd\xbd", +"\x4e\x89" => "\xc1\xe8", +"\x4e\x8a" => "\xd0\xaf", +"\x4e\x8b" => "\xbb\xf6", +"\x4e\x8c" => "\xc6\xf3", +"\x4e\x8d" => "\x8f\xb0\xbd", +"\x4e\x8e" => "\xd0\xb2", +"\x4e\x91" => "\xb1\xbe", +"\x4e\x92" => "\xb8\xdf", +"\x4e\x94" => "\xb8\xde", +"\x4e\x95" => "\xb0\xe6", +"\x4e\x96" => "\x8f\xb0\xbe", +"\x4e\x97" => "\x8f\xb0\xbf", +"\x4e\x98" => "\xcf\xcb", +"\x4e\x99" => "\xcf\xca", +"\x4e\x9b" => "\xba\xb3", +"\x4e\x9c" => "\xb0\xa1", +"\x4e\x9d" => "\x8f\xb0\xc0", +"\x4e\x9e" => "\xd0\xb3", +"\x4e\x9f" => "\xd0\xb4", +"\x4e\xa0" => "\xd0\xb5", +"\x4e\xa1" => "\xcb\xb4", +"\x4e\xa2" => "\xd0\xb6", +"\x4e\xa4" => "\xb8\xf2", +"\x4e\xa5" => "\xb0\xe7", +"\x4e\xa6" => "\xcb\xf2", +"\x4e\xa8" => "\xb5\xfc", +"\x4e\xab" => "\xb5\xfd", +"\x4e\xac" => "\xb5\xfe", +"\x4e\xad" => "\xc4\xe2", +"\x4e\xae" => "\xce\xbc", +"\x4e\xaf" => "\x8f\xb0\xc1", +"\x4e\xb0" => "\xd0\xb7", +"\x4e\xb3" => "\xd0\xb8", +"\x4e\xb6" => "\xd0\xb9", +"\x4e\xb9" => "\x8f\xb0\xc2", +"\x4e\xba" => "\xbf\xcd", +"\x4e\xc0" => "\xbd\xba", +"\x4e\xc1" => "\xbf\xce", +"\x4e\xc2" => "\xd0\xbe", +"\x4e\xc3" => "\x8f\xb0\xc3", +"\x4e\xc4" => "\xd0\xbc", +"\x4e\xc6" => "\xd0\xbd", +"\x4e\xc7" => "\xb5\xd8", +"\x4e\xca" => "\xba\xa3", +"\x4e\xcb" => "\xb2\xf0", +"\x4e\xcd" => "\xd0\xbb", +"\x4e\xce" => "\xd0\xba", +"\x4e\xcf" => "\xca\xa9", +"\x4e\xd0" => "\x8f\xb0\xc4", +"\x4e\xd4" => "\xbb\xc6", +"\x4e\xd5" => "\xbb\xc5", +"\x4e\xd6" => "\xc2\xbe", +"\x4e\xd7" => "\xd0\xbf", +"\x4e\xd8" => "\xc9\xd5", +"\x4e\xd9" => "\xc0\xe7", +"\x4e\xda" => "\x8f\xb0\xc5", +"\x4e\xdb" => "\x8f\xb0\xc6", +"\x4e\xdd" => "\xa1\xb8", +"\x4e\xde" => "\xd0\xc0", +"\x4e\xdf" => "\xd0\xc2", +"\x4e\xe0" => "\x8f\xb0\xc7", +"\x4e\xe1" => "\x8f\xb0\xc8", +"\x4e\xe2" => "\x8f\xb0\xc9", +"\x4e\xe3" => "\xc2\xe5", +"\x4e\xe4" => "\xce\xe1", +"\x4e\xe5" => "\xb0\xca", +"\x4e\xe8" => "\x8f\xb0\xca", +"\x4e\xed" => "\xd0\xc1", +"\x4e\xee" => "\xb2\xbe", +"\x4e\xef" => "\x8f\xb0\xcb", +"\x4e\xf0" => "\xb6\xc4", +"\x4e\xf1" => "\x8f\xb0\xcc", +"\x4e\xf2" => "\xc3\xe7", +"\x4e\xf3" => "\x8f\xb0\xcd", +"\x4e\xf5" => "\x8f\xb0\xce", +"\x4e\xf6" => "\xb7\xef", +"\x4e\xf7" => "\xd0\xc3", +"\x4e\xfb" => "\xc7\xa4", +"\x4e\xfd" => "\x8f\xb0\xcf", +"\x4e\xfe" => "\x8f\xb0\xd0", +"\x4e\xff" => "\x8f\xb0\xd1", +"\x4f\x00" => "\x8f\xb0\xd2", +"\x4f\x01" => "\xb4\xeb", +"\x4f\x02" => "\x8f\xb0\xd3", +"\x4f\x03" => "\x8f\xb0\xd4", +"\x4f\x08" => "\x8f\xb0\xd5", +"\x4f\x09" => "\xd0\xc4", +"\x4f\x0a" => "\xb0\xcb", +"\x4f\x0b" => "\x8f\xb0\xd6", +"\x4f\x0c" => "\x8f\xb0\xd7", +"\x4f\x0d" => "\xb8\xe0", +"\x4f\x0e" => "\xb4\xec", +"\x4f\x0f" => "\xc9\xfa", +"\x4f\x10" => "\xc8\xb2", +"\x4f\x11" => "\xb5\xd9", +"\x4f\x12" => "\x8f\xb0\xd8", +"\x4f\x15" => "\x8f\xb0\xd9", +"\x4f\x16" => "\x8f\xb0\xda", +"\x4f\x17" => "\x8f\xb0\xdb", +"\x4f\x19" => "\x8f\xb0\xdc", +"\x4f\x1a" => "\xb2\xf1", +"\x4f\x1c" => "\xd0\xe7", +"\x4f\x1d" => "\xc5\xc1", +"\x4f\x2e" => "\x8f\xb0\xdd", +"\x4f\x2f" => "\xc7\xec", +"\x4f\x30" => "\xd0\xc6", +"\x4f\x31" => "\x8f\xb0\xde", +"\x4f\x33" => "\x8f\xb0\xe0", +"\x4f\x34" => "\xc8\xbc", +"\x4f\x35" => "\x8f\xb0\xe1", +"\x4f\x36" => "\xce\xe2", +"\x4f\x37" => "\x8f\xb0\xe2", +"\x4f\x38" => "\xbf\xad", +"\x4f\x39" => "\x8f\xb0\xe3", +"\x4f\x3a" => "\xbb\xc7", +"\x4f\x3b" => "\x8f\xb0\xe4", +"\x4f\x3c" => "\xbb\xf7", +"\x4f\x3d" => "\xb2\xc0", +"\x4f\x3e" => "\x8f\xb0\xe5", +"\x4f\x40" => "\x8f\xb0\xe6", +"\x4f\x42" => "\x8f\xb0\xe7", +"\x4f\x43" => "\xc4\xd1", +"\x4f\x46" => "\xc3\xa2", +"\x4f\x47" => "\xd0\xca", +"\x4f\x48" => "\x8f\xb0\xe8", +"\x4f\x49" => "\x8f\xb0\xe9", +"\x4f\x4b" => "\x8f\xb0\xea", +"\x4f\x4c" => "\x8f\xb0\xeb", +"\x4f\x4d" => "\xb0\xcc", +"\x4f\x4e" => "\xc4\xe3", +"\x4f\x4f" => "\xbd\xbb", +"\x4f\x50" => "\xba\xb4", +"\x4f\x51" => "\xcd\xa4", +"\x4f\x52" => "\x8f\xb0\xec", +"\x4f\x53" => "\xc2\xce", +"\x4f\x54" => "\x8f\xb0\xed", +"\x4f\x55" => "\xb2\xbf", +"\x4f\x56" => "\x8f\xb0\xee", +"\x4f\x57" => "\xd0\xc9", +"\x4f\x58" => "\x8f\xb0\xef", +"\x4f\x59" => "\xcd\xbe", +"\x4f\x5a" => "\xd0\xc5", +"\x4f\x5b" => "\xd0\xc7", +"\x4f\x5c" => "\xba\xee", +"\x4f\x5d" => "\xd0\xc8", +"\x4f\x5e" => "\xd5\xa4", +"\x4f\x5f" => "\x8f\xb0\xf0", +"\x4f\x60" => "\x8f\xb0\xdf", +"\x4f\x63" => "\x8f\xb0\xf1", +"\x4f\x69" => "\xd0\xd0", +"\x4f\x6a" => "\x8f\xb0\xf2", +"\x4f\x6c" => "\x8f\xb0\xf3", +"\x4f\x6e" => "\x8f\xb0\xf4", +"\x4f\x6f" => "\xd0\xd3", +"\x4f\x70" => "\xd0\xd1", +"\x4f\x71" => "\x8f\xb0\xf5", +"\x4f\x73" => "\xb2\xc2", +"\x4f\x75" => "\xca\xbb", +"\x4f\x76" => "\xd0\xcb", +"\x4f\x77" => "\x8f\xb0\xf6", +"\x4f\x78" => "\x8f\xb0\xf7", +"\x4f\x79" => "\x8f\xb0\xf8", +"\x4f\x7a" => "\x8f\xb0\xf9", +"\x4f\x7b" => "\xd0\xcf", +"\x4f\x7c" => "\xb8\xf3", +"\x4f\x7d" => "\x8f\xb0\xfa", +"\x4f\x7e" => "\x8f\xb0\xfb", +"\x4f\x7f" => "\xbb\xc8", +"\x4f\x81" => "\x8f\xb0\xfc", +"\x4f\x82" => "\x8f\xb0\xfd", +"\x4f\x83" => "\xb4\xa6", +"\x4f\x84" => "\x8f\xb0\xfe", +"\x4f\x85" => "\x8f\xb1\xa1", +"\x4f\x86" => "\xd0\xd4", +"\x4f\x88" => "\xd0\xcc", +"\x4f\x89" => "\x8f\xb1\xa2", +"\x4f\x8a" => "\x8f\xb1\xa3", +"\x4f\x8b" => "\xce\xe3", +"\x4f\x8c" => "\x8f\xb1\xa4", +"\x4f\x8d" => "\xbb\xf8", +"\x4f\x8e" => "\x8f\xb1\xa5", +"\x4f\x8f" => "\xd0\xcd", +"\x4f\x90" => "\x8f\xb1\xa6", +"\x4f\x91" => "\xd0\xd2", +"\x4f\x92" => "\x8f\xb1\xa7", +"\x4f\x93" => "\x8f\xb1\xa8", +"\x4f\x94" => "\x8f\xb1\xa9", +"\x4f\x96" => "\xd0\xd5", +"\x4f\x97" => "\x8f\xb1\xaa", +"\x4f\x98" => "\xd0\xce", +"\x4f\x99" => "\x8f\xb1\xab", +"\x4f\x9a" => "\x8f\xb1\xac", +"\x4f\x9b" => "\xb6\xa1", +"\x4f\x9d" => "\xb0\xcd", +"\x4f\x9e" => "\x8f\xb1\xad", +"\x4f\x9f" => "\x8f\xb1\xae", +"\x4f\xa0" => "\xb6\xa2", +"\x4f\xa1" => "\xb2\xc1", +"\x4f\xab" => "\xd5\xa5", +"\x4f\xad" => "\xcb\xf9", +"\x4f\xae" => "\xc9\xee", +"\x4f\xaf" => "\xb8\xf4", +"\x4f\xb2" => "\x8f\xb1\xaf", +"\x4f\xb5" => "\xbf\xaf", +"\x4f\xb6" => "\xce\xb7", +"\x4f\xb7" => "\x8f\xb1\xb0", +"\x4f\xb9" => "\x8f\xb1\xb1", +"\x4f\xbb" => "\x8f\xb1\xb2", +"\x4f\xbc" => "\x8f\xb1\xb3", +"\x4f\xbd" => "\x8f\xb1\xb4", +"\x4f\xbe" => "\x8f\xb1\xb5", +"\x4f\xbf" => "\xca\xd8", +"\x4f\xc0" => "\x8f\xb1\xb6", +"\x4f\xc1" => "\x8f\xb1\xb7", +"\x4f\xc2" => "\xb7\xb8", +"\x4f\xc3" => "\xc2\xa5", +"\x4f\xc4" => "\xb2\xe4", +"\x4f\xc5" => "\x8f\xb1\xb8", +"\x4f\xc6" => "\x8f\xb1\xb9", +"\x4f\xc8" => "\x8f\xb1\xba", +"\x4f\xc9" => "\x8f\xb1\xbb", +"\x4f\xca" => "\xbd\xd3", +"\x4f\xcb" => "\x8f\xb1\xbc", +"\x4f\xcc" => "\x8f\xb1\xbd", +"\x4f\xcd" => "\x8f\xb1\xbe", +"\x4f\xce" => "\xd0\xd9", +"\x4f\xcf" => "\x8f\xb1\xbf", +"\x4f\xd0" => "\xd0\xde", +"\x4f\xd1" => "\xd0\xdc", +"\x4f\xd2" => "\x8f\xb1\xc0", +"\x4f\xd4" => "\xd0\xd7", +"\x4f\xd7" => "\xc2\xaf", +"\x4f\xd8" => "\xd0\xda", +"\x4f\xda" => "\xd0\xdd", +"\x4f\xdb" => "\xd0\xdb", +"\x4f\xdc" => "\x8f\xb1\xc1", +"\x4f\xdd" => "\xca\xdd", +"\x4f\xdf" => "\xd0\xd8", +"\x4f\xe0" => "\x8f\xb1\xc2", +"\x4f\xe1" => "\xbf\xae", +"\x4f\xe2" => "\x8f\xb1\xc3", +"\x4f\xe3" => "\xcb\xf3", +"\x4f\xe4" => "\xd0\xdf", +"\x4f\xe5" => "\xd0\xe0", +"\x4f\xee" => "\xbd\xa4", +"\x4f\xef" => "\xd0\xed", +"\x4f\xf0" => "\x8f\xb1\xc4", +"\x4f\xf2" => "\x8f\xb1\xc5", +"\x4f\xf3" => "\xc7\xd0", +"\x4f\xf5" => "\xc9\xb6", +"\x4f\xf6" => "\xd0\xe8", +"\x4f\xf8" => "\xca\xf0", +"\x4f\xfa" => "\xb2\xb6", +"\x4f\xfc" => "\x8f\xb1\xc6", +"\x4f\xfd" => "\x8f\xb1\xc7", +"\x4f\xfe" => "\xd0\xec", +"\x4f\xff" => "\x8f\xb1\xc8", +"\x50\x00" => "\x8f\xb1\xc9", +"\x50\x01" => "\x8f\xb1\xca", +"\x50\x04" => "\x8f\xb1\xcb", +"\x50\x05" => "\xd0\xe6", +"\x50\x06" => "\xd0\xef", +"\x50\x07" => "\x8f\xb1\xcc", +"\x50\x09" => "\xc1\xd2", +"\x50\x0a" => "\x8f\xb1\xcd", +"\x50\x0b" => "\xb8\xc4", +"\x50\x0c" => "\x8f\xb1\xce", +"\x50\x0d" => "\xc7\xdc", +"\x50\x0e" => "\x8f\xb1\xcf", +"\x50\x0f" => "\xe0\xc7", +"\x50\x10" => "\x8f\xb1\xd0", +"\x50\x11" => "\xd0\xee", +"\x50\x12" => "\xc5\xdd", +"\x50\x13" => "\x8f\xb1\xd1", +"\x50\x14" => "\xd0\xe3", +"\x50\x16" => "\xb8\xf6", +"\x50\x17" => "\x8f\xb1\xd2", +"\x50\x18" => "\x8f\xb1\xd3", +"\x50\x19" => "\xb8\xf5", +"\x50\x1a" => "\xd0\xe1", +"\x50\x1b" => "\x8f\xb1\xd4", +"\x50\x1c" => "\x8f\xb1\xd5", +"\x50\x1d" => "\x8f\xb1\xd6", +"\x50\x1e" => "\x8f\xb1\xd7", +"\x50\x1f" => "\xbc\xda", +"\x50\x21" => "\xd0\xe9", +"\x50\x22" => "\x8f\xb1\xd8", +"\x50\x23" => "\xca\xef", +"\x50\x24" => "\xc3\xcd", +"\x50\x25" => "\xd0\xe5", +"\x50\x26" => "\xb7\xf1", +"\x50\x27" => "\x8f\xb1\xd9", +"\x50\x28" => "\xd0\xe2", +"\x50\x29" => "\xd0\xea", +"\x50\x2a" => "\xd0\xe4", +"\x50\x2b" => "\xce\xd1", +"\x50\x2c" => "\xd0\xeb", +"\x50\x2d" => "\xcf\xc1", +"\x50\x2e" => "\x8f\xb1\xda", +"\x50\x30" => "\x8f\xb1\xdb", +"\x50\x32" => "\x8f\xb1\xdc", +"\x50\x33" => "\x8f\xb1\xdd", +"\x50\x35" => "\x8f\xb1\xde", +"\x50\x36" => "\xb6\xe6", +"\x50\x39" => "\xb7\xf0", +"\x50\x3b" => "\x8f\xb1\xf6", +"\x50\x40" => "\x8f\xb1\xdf", +"\x50\x41" => "\x8f\xb1\xe0", +"\x50\x42" => "\x8f\xb1\xe1", +"\x50\x43" => "\xd0\xf0", +"\x50\x45" => "\x8f\xb1\xe2", +"\x50\x46" => "\x8f\xb1\xe3", +"\x50\x47" => "\xd0\xf1", +"\x50\x48" => "\xd0\xf5", +"\x50\x49" => "\xb0\xce", +"\x50\x4a" => "\x8f\xb1\xe4", +"\x50\x4c" => "\x8f\xb1\xe5", +"\x50\x4e" => "\x8f\xb1\xe6", +"\x50\x4f" => "\xca\xd0", +"\x50\x50" => "\xd0\xf4", +"\x50\x51" => "\x8f\xb1\xe7", +"\x50\x52" => "\x8f\xb1\xe8", +"\x50\x53" => "\x8f\xb1\xe9", +"\x50\x55" => "\xd0\xf3", +"\x50\x56" => "\xd0\xf7", +"\x50\x57" => "\x8f\xb1\xea", +"\x50\x59" => "\x8f\xb1\xeb", +"\x50\x5a" => "\xd0\xf6", +"\x50\x5c" => "\xc4\xe4", +"\x50\x5f" => "\x8f\xb1\xec", +"\x50\x60" => "\x8f\xb1\xed", +"\x50\x62" => "\x8f\xb1\xee", +"\x50\x63" => "\x8f\xb1\xef", +"\x50\x65" => "\xb7\xf2", +"\x50\x66" => "\x8f\xb1\xf0", +"\x50\x67" => "\x8f\xb1\xf1", +"\x50\x6a" => "\x8f\xb1\xf2", +"\x50\x6c" => "\xd0\xf8", +"\x50\x6d" => "\x8f\xb1\xf3", +"\x50\x70" => "\x8f\xb1\xf4", +"\x50\x71" => "\x8f\xb1\xf5", +"\x50\x72" => "\xbc\xc5", +"\x50\x74" => "\xc2\xa6", +"\x50\x75" => "\xc4\xe5", +"\x50\x76" => "\xb6\xf6", +"\x50\x78" => "\xd0\xf9", +"\x50\x7d" => "\xb5\xb6", +"\x50\x80" => "\xd0\xfa", +"\x50\x81" => "\x8f\xb1\xf7", +"\x50\x83" => "\x8f\xb1\xf8", +"\x50\x84" => "\x8f\xb1\xf9", +"\x50\x85" => "\xd0\xfc", +"\x50\x86" => "\x8f\xb1\xfa", +"\x50\x8a" => "\x8f\xb1\xfb", +"\x50\x8d" => "\xcb\xb5", +"\x50\x8e" => "\x8f\xb1\xfc", +"\x50\x8f" => "\x8f\xb1\xfd", +"\x50\x90" => "\x8f\xb1\xfe", +"\x50\x91" => "\xb7\xe6", +"\x50\x92" => "\x8f\xb2\xa1", +"\x50\x93" => "\x8f\xb2\xa2", +"\x50\x94" => "\x8f\xb2\xa3", +"\x50\x96" => "\x8f\xb2\xa4", +"\x50\x98" => "\xbb\xb1", +"\x50\x99" => "\xc8\xf7", +"\x50\x9a" => "\xd0\xfb", +"\x50\x9b" => "\x8f\xb2\xa5", +"\x50\x9c" => "\x8f\xb2\xa6", +"\x50\x9e" => "\x8f\xb2\xa7", +"\x50\x9f" => "\x8f\xb2\xa8", +"\x50\xa0" => "\x8f\xb2\xa9", +"\x50\xa1" => "\x8f\xb2\xaa", +"\x50\xa2" => "\x8f\xb2\xab", +"\x50\xaa" => "\x8f\xb2\xac", +"\x50\xac" => "\xba\xc5", +"\x50\xad" => "\xcd\xc3", +"\x50\xaf" => "\x8f\xb2\xad", +"\x50\xb0" => "\x8f\xb2\xae", +"\x50\xb2" => "\xd0\xfe", +"\x50\xb3" => "\xd1\xa3", +"\x50\xb4" => "\xd0\xfd", +"\x50\xb5" => "\xba\xc4", +"\x50\xb7" => "\xbd\xfd", +"\x50\xb9" => "\x8f\xb2\xaf", +"\x50\xba" => "\x8f\xb2\xb0", +"\x50\xbd" => "\x8f\xb2\xb1", +"\x50\xbe" => "\xb7\xb9", +"\x50\xc0" => "\x8f\xb2\xb2", +"\x50\xc2" => "\xd1\xa4", +"\x50\xc3" => "\x8f\xb2\xb3", +"\x50\xc4" => "\x8f\xb2\xb4", +"\x50\xc5" => "\xb6\xcf", +"\x50\xc7" => "\x8f\xb2\xb5", +"\x50\xc9" => "\xd1\xa1", +"\x50\xca" => "\xd1\xa2", +"\x50\xcc" => "\x8f\xb2\xb6", +"\x50\xcd" => "\xc6\xaf", +"\x50\xce" => "\x8f\xb2\xb7", +"\x50\xcf" => "\xc1\xfc", +"\x50\xd0" => "\x8f\xb2\xb8", +"\x50\xd1" => "\xb6\xa3", +"\x50\xd3" => "\x8f\xb2\xb9", +"\x50\xd4" => "\x8f\xb2\xba", +"\x50\xd5" => "\xcb\xcd", +"\x50\xd6" => "\xd1\xa5", +"\x50\xd8" => "\x8f\xb2\xbb", +"\x50\xda" => "\xce\xbd", +"\x50\xdc" => "\x8f\xb2\xbc", +"\x50\xdd" => "\x8f\xb2\xbd", +"\x50\xde" => "\xd1\xa6", +"\x50\xdf" => "\x8f\xb2\xbe", +"\x50\xe2" => "\x8f\xb2\xbf", +"\x50\xe3" => "\xd1\xa9", +"\x50\xe4" => "\x8f\xb2\xc0", +"\x50\xe5" => "\xd1\xa7", +"\x50\xe6" => "\x8f\xb2\xc1", +"\x50\xe7" => "\xc1\xce", +"\x50\xe8" => "\x8f\xb2\xc2", +"\x50\xe9" => "\x8f\xb2\xc3", +"\x50\xed" => "\xd1\xa8", +"\x50\xee" => "\xd1\xaa", +"\x50\xef" => "\x8f\xb2\xc4", +"\x50\xf1" => "\x8f\xb2\xc5", +"\x50\xf2" => "\x8f\xb2\xd1", +"\x50\xf5" => "\xd1\xac", +"\x50\xf6" => "\x8f\xb2\xc6", +"\x50\xf9" => "\xd1\xab", +"\x50\xfa" => "\x8f\xb2\xc7", +"\x50\xfb" => "\xca\xc8", +"\x50\xfe" => "\x8f\xb2\xc8", +"\x51\x00" => "\xb5\xb7", +"\x51\x01" => "\xd1\xae", +"\x51\x02" => "\xd1\xaf", +"\x51\x03" => "\x8f\xb2\xc9", +"\x51\x04" => "\xb2\xaf", +"\x51\x06" => "\x8f\xb2\xca", +"\x51\x07" => "\x8f\xb2\xcb", +"\x51\x08" => "\x8f\xb2\xcc", +"\x51\x09" => "\xd1\xad", +"\x51\x0b" => "\x8f\xb2\xcd", +"\x51\x0c" => "\x8f\xb2\xce", +"\x51\x0d" => "\x8f\xb2\xcf", +"\x51\x0e" => "\x8f\xb2\xd0", +"\x51\x10" => "\x8f\xb2\xd2", +"\x51\x12" => "\xbc\xf4", +"\x51\x14" => "\xd1\xb2", +"\x51\x15" => "\xd1\xb1", +"\x51\x16" => "\xd1\xb0", +"\x51\x17" => "\x8f\xb2\xd3", +"\x51\x18" => "\xd0\xd6", +"\x51\x19" => "\x8f\xb2\xd4", +"\x51\x1a" => "\xd1\xb3", +"\x51\x1b" => "\x8f\xb2\xd5", +"\x51\x1c" => "\x8f\xb2\xd6", +"\x51\x1d" => "\x8f\xb2\xd7", +"\x51\x1e" => "\x8f\xb2\xd8", +"\x51\x1f" => "\xbd\xfe", +"\x51\x21" => "\xd1\xb4", +"\x51\x23" => "\x8f\xb2\xd9", +"\x51\x27" => "\x8f\xb2\xda", +"\x51\x28" => "\x8f\xb2\xdb", +"\x51\x2a" => "\xcd\xa5", +"\x51\x2c" => "\x8f\xb2\xdc", +"\x51\x2d" => "\x8f\xb2\xdd", +"\x51\x2f" => "\x8f\xb2\xde", +"\x51\x31" => "\x8f\xb2\xdf", +"\x51\x32" => "\xcc\xd9", +"\x51\x33" => "\x8f\xb2\xe0", +"\x51\x34" => "\x8f\xb2\xe1", +"\x51\x35" => "\x8f\xb2\xe2", +"\x51\x37" => "\xd1\xb6", +"\x51\x38" => "\x8f\xb2\xe3", +"\x51\x39" => "\x8f\xb2\xe4", +"\x51\x3a" => "\xd1\xb5", +"\x51\x3b" => "\xd1\xb8", +"\x51\x3c" => "\xd1\xb7", +"\x51\x3f" => "\xd1\xb9", +"\x51\x40" => "\xd1\xba", +"\x51\x41" => "\xb0\xf4", +"\x51\x42" => "\x8f\xb2\xe5", +"\x51\x43" => "\xb8\xb5", +"\x51\x44" => "\xb7\xbb", +"\x51\x45" => "\xbd\xbc", +"\x51\x46" => "\xc3\xfb", +"\x51\x47" => "\xb6\xa4", +"\x51\x48" => "\xc0\xe8", +"\x51\x49" => "\xb8\xf7", +"\x51\x4a" => "\x8f\xb2\xe6", +"\x51\x4b" => "\xb9\xee", +"\x51\x4c" => "\xd1\xbc", +"\x51\x4d" => "\xcc\xc8", +"\x51\x4e" => "\xc5\xc6", +"\x51\x4f" => "\x8f\xb2\xe7", +"\x51\x50" => "\xbb\xf9", +"\x51\x52" => "\xd1\xbb", +"\x51\x53" => "\x8f\xb2\xe8", +"\x51\x54" => "\xd1\xbd", +"\x51\x55" => "\x8f\xb2\xe9", +"\x51\x57" => "\x8f\xb2\xea", +"\x51\x58" => "\x8f\xb2\xeb", +"\x51\x5a" => "\xc5\xde", +"\x51\x5c" => "\xb3\xf5", +"\x51\x5f" => "\x8f\xb2\xec", +"\x51\x62" => "\xd1\xbe", +"\x51\x64" => "\x8f\xb2\xed", +"\x51\x65" => "\xc6\xfe", +"\x51\x66" => "\x8f\xb2\xee", +"\x51\x68" => "\xc1\xb4", +"\x51\x69" => "\xd1\xc0", +"\x51\x6a" => "\xd1\xc1", +"\x51\x6b" => "\xc8\xac", +"\x51\x6c" => "\xb8\xf8", +"\x51\x6d" => "\xcf\xbb", +"\x51\x6e" => "\xd1\xc2", +"\x51\x71" => "\xb6\xa6", +"\x51\x75" => "\xca\xbc", +"\x51\x76" => "\xc2\xb6", +"\x51\x77" => "\xb6\xf1", +"\x51\x78" => "\xc5\xb5", +"\x51\x7c" => "\xb7\xf3", +"\x51\x7e" => "\x8f\xb2\xef", +"\x51\x80" => "\xd1\xc3", +"\x51\x82" => "\xd1\xc4", +"\x51\x83" => "\x8f\xb2\xf0", +"\x51\x84" => "\x8f\xb2\xf1", +"\x51\x85" => "\xc6\xe2", +"\x51\x86" => "\xb1\xdf", +"\x51\x89" => "\xd1\xc7", +"\x51\x8a" => "\xba\xfd", +"\x51\x8b" => "\x8f\xb2\xf2", +"\x51\x8c" => "\xd1\xc6", +"\x51\x8d" => "\xba\xc6", +"\x51\x8e" => "\x8f\xb2\xf3", +"\x51\x8f" => "\xd1\xc8", +"\x51\x90" => "\xe6\xee", +"\x51\x91" => "\xd1\xc9", +"\x51\x92" => "\xcb\xc1", +"\x51\x93" => "\xd1\xca", +"\x51\x95" => "\xd1\xcb", +"\x51\x96" => "\xd1\xcc", +"\x51\x97" => "\xbe\xe9", +"\x51\x98" => "\x8f\xb2\xf4", +"\x51\x99" => "\xbc\xcc", +"\x51\x9d" => "\x8f\xb2\xf5", +"\x51\xa0" => "\xb4\xa7", +"\x51\xa1" => "\x8f\xb2\xf6", +"\x51\xa2" => "\xd1\xcf", +"\x51\xa3" => "\x8f\xb2\xf7", +"\x51\xa4" => "\xd1\xcd", +"\x51\xa5" => "\xcc\xbd", +"\x51\xa6" => "\xd1\xce", +"\x51\xa8" => "\xc9\xda", +"\x51\xa9" => "\xd1\xd0", +"\x51\xaa" => "\xd1\xd1", +"\x51\xab" => "\xd1\xd2", +"\x51\xac" => "\xc5\xdf", +"\x51\xad" => "\x8f\xb2\xf8", +"\x51\xb0" => "\xd1\xd6", +"\x51\xb1" => "\xd1\xd4", +"\x51\xb2" => "\xd1\xd5", +"\x51\xb3" => "\xd1\xd3", +"\x51\xb4" => "\xba\xe3", +"\x51\xb5" => "\xd1\xd7", +"\x51\xb6" => "\xcc\xea", +"\x51\xb7" => "\xce\xe4", +"\x51\xb8" => "\x8f\xb2\xf9", +"\x51\xba" => "\x8f\xb2\xfa", +"\x51\xbc" => "\x8f\xb2\xfb", +"\x51\xbd" => "\xd1\xd8", +"\x51\xbe" => "\x8f\xb2\xfc", +"\x51\xbf" => "\x8f\xb2\xfd", +"\x51\xc2" => "\x8f\xb2\xfe", +"\x51\xc4" => "\xc0\xa8", +"\x51\xc5" => "\xd1\xd9", +"\x51\xc6" => "\xbd\xda", +"\x51\xc8" => "\x8f\xb3\xa1", +"\x51\xc9" => "\xd1\xda", +"\x51\xcb" => "\xc3\xfc", +"\x51\xcc" => "\xce\xbf", +"\x51\xcd" => "\xc5\xe0", +"\x51\xcf" => "\x8f\xb3\xa2", +"\x51\xd1" => "\x8f\xb3\xa3", +"\x51\xd2" => "\x8f\xb3\xa4", +"\x51\xd3" => "\x8f\xb3\xa5", +"\x51\xd5" => "\x8f\xb3\xa6", +"\x51\xd6" => "\xd2\xc5", +"\x51\xd8" => "\x8f\xb3\xa7", +"\x51\xdb" => "\xd1\xdb", +"\x51\xdc" => "\xf4\xa5", +"\x51\xdd" => "\xb6\xc5", +"\x51\xde" => "\x8f\xb3\xa8", +"\x51\xe0" => "\xd1\xdc", +"\x51\xe1" => "\xcb\xde", +"\x51\xe2" => "\x8f\xb3\xa9", +"\x51\xe5" => "\x8f\xb3\xaa", +"\x51\xe6" => "\xbd\xe8", +"\x51\xe7" => "\xc2\xfc", +"\x51\xe9" => "\xd1\xde", +"\x51\xea" => "\xc6\xe4", +"\x51\xed" => "\xd1\xdf", +"\x51\xee" => "\x8f\xb3\xab", +"\x51\xf0" => "\xd1\xe0", +"\x51\xf1" => "\xb3\xae", +"\x51\xf2" => "\x8f\xb3\xac", +"\x51\xf3" => "\x8f\xb3\xad", +"\x51\xf4" => "\x8f\xb3\xae", +"\x51\xf5" => "\xd1\xe1", +"\x51\xf6" => "\xb6\xa7", +"\x51\xf7" => "\x8f\xb3\xaf", +"\x51\xf8" => "\xc6\xcc", +"\x51\xf9" => "\xb1\xfa", +"\x51\xfa" => "\xbd\xd0", +"\x51\xfd" => "\xc8\xa1", +"\x51\xfe" => "\xd1\xe2", +"\x52\x00" => "\xc5\xe1", +"\x52\x01" => "\x8f\xb3\xb0", +"\x52\x02" => "\x8f\xb3\xb1", +"\x52\x03" => "\xbf\xcf", +"\x52\x04" => "\xd1\xe3", +"\x52\x05" => "\x8f\xb3\xb2", +"\x52\x06" => "\xca\xac", +"\x52\x07" => "\xc0\xda", +"\x52\x08" => "\xb4\xa2", +"\x52\x0a" => "\xb4\xa9", +"\x52\x0b" => "\xd1\xe4", +"\x52\x0e" => "\xd1\xe6", +"\x52\x11" => "\xb7\xba", +"\x52\x12" => "\x8f\xb3\xb3", +"\x52\x13" => "\x8f\xb3\xb4", +"\x52\x14" => "\xd1\xe5", +"\x52\x15" => "\x8f\xb3\xb5", +"\x52\x16" => "\x8f\xb3\xb6", +"\x52\x17" => "\xce\xf3", +"\x52\x18" => "\x8f\xb3\xb7", +"\x52\x1d" => "\xbd\xe9", +"\x52\x22" => "\x8f\xb3\xb8", +"\x52\x24" => "\xc8\xbd", +"\x52\x25" => "\xca\xcc", +"\x52\x27" => "\xd1\xe7", +"\x52\x28" => "\x8f\xb3\xb9", +"\x52\x29" => "\xcd\xf8", +"\x52\x2a" => "\xd1\xe8", +"\x52\x2e" => "\xd1\xe9", +"\x52\x30" => "\xc5\xfe", +"\x52\x31" => "\x8f\xb3\xba", +"\x52\x32" => "\x8f\xb3\xbb", +"\x52\x33" => "\xd1\xea", +"\x52\x35" => "\x8f\xb3\xbc", +"\x52\x36" => "\xc0\xa9", +"\x52\x37" => "\xba\xfe", +"\x52\x38" => "\xb7\xf4", +"\x52\x39" => "\xd1\xeb", +"\x52\x3a" => "\xbb\xc9", +"\x52\x3b" => "\xb9\xef", +"\x52\x3c" => "\x8f\xb3\xbd", +"\x52\x43" => "\xc4\xe6", +"\x52\x44" => "\xd1\xed", +"\x52\x45" => "\x8f\xb3\xbe", +"\x52\x47" => "\xc2\xa7", +"\x52\x49" => "\x8f\xb3\xbf", +"\x52\x4a" => "\xba\xef", +"\x52\x4b" => "\xd1\xee", +"\x52\x4c" => "\xd1\xef", +"\x52\x4d" => "\xc1\xb0", +"\x52\x4f" => "\xd1\xec", +"\x52\x54" => "\xd1\xf1", +"\x52\x55" => "\x8f\xb3\xc0", +"\x52\x56" => "\xcb\xb6", +"\x52\x57" => "\x8f\xb3\xc1", +"\x52\x58" => "\x8f\xb3\xc2", +"\x52\x5a" => "\x8f\xb3\xc3", +"\x52\x5b" => "\xb9\xe4", +"\x52\x5c" => "\x8f\xb3\xc4", +"\x52\x5e" => "\xd1\xf0", +"\x52\x5f" => "\x8f\xb3\xc5", +"\x52\x60" => "\x8f\xb3\xc6", +"\x52\x61" => "\x8f\xb3\xc7", +"\x52\x63" => "\xb7\xf5", +"\x52\x64" => "\xba\xde", +"\x52\x65" => "\xc7\xed", +"\x52\x66" => "\x8f\xb3\xc8", +"\x52\x69" => "\xd1\xf4", +"\x52\x6a" => "\xd1\xf2", +"\x52\x6e" => "\x8f\xb3\xc9", +"\x52\x6f" => "\xc9\xfb", +"\x52\x70" => "\xbe\xea", +"\x52\x71" => "\xd1\xfb", +"\x52\x72" => "\xb3\xe4", +"\x52\x73" => "\xd1\xf5", +"\x52\x74" => "\xd1\xf3", +"\x52\x75" => "\xc1\xcf", +"\x52\x77" => "\x8f\xb3\xca", +"\x52\x78" => "\x8f\xb3\xcb", +"\x52\x79" => "\x8f\xb3\xcc", +"\x52\x7d" => "\xd1\xf7", +"\x52\x7f" => "\xd1\xf6", +"\x52\x80" => "\x8f\xb3\xcd", +"\x52\x82" => "\x8f\xb3\xce", +"\x52\x83" => "\xb3\xc4", +"\x52\x85" => "\x8f\xb3\xcf", +"\x52\x87" => "\xb7\xe0", +"\x52\x88" => "\xd1\xfc", +"\x52\x89" => "\xce\xad", +"\x52\x8a" => "\x8f\xb3\xd0", +"\x52\x8c" => "\x8f\xb3\xd1", +"\x52\x8d" => "\xd1\xf8", +"\x52\x91" => "\xd1\xfd", +"\x52\x92" => "\xd1\xfa", +"\x52\x93" => "\x8f\xb3\xd2", +"\x52\x94" => "\xd1\xf9", +"\x52\x95" => "\x8f\xb3\xd3", +"\x52\x96" => "\x8f\xb3\xd4", +"\x52\x97" => "\x8f\xb3\xd5", +"\x52\x98" => "\x8f\xb3\xd6", +"\x52\x9a" => "\x8f\xb3\xd7", +"\x52\x9b" => "\xce\xcf", +"\x52\x9c" => "\x8f\xb3\xd8", +"\x52\x9f" => "\xb8\xf9", +"\x52\xa0" => "\xb2\xc3", +"\x52\xa3" => "\xce\xf4", +"\x52\xa4" => "\x8f\xb3\xd9", +"\x52\xa5" => "\x8f\xb3\xda", +"\x52\xa6" => "\x8f\xb3\xdb", +"\x52\xa7" => "\x8f\xb3\xdc", +"\x52\xa9" => "\xbd\xf5", +"\x52\xaa" => "\xc5\xd8", +"\x52\xab" => "\xb9\xe5", +"\x52\xac" => "\xd2\xa2", +"\x52\xad" => "\xd2\xa3", +"\x52\xaf" => "\x8f\xb3\xdd", +"\x52\xb0" => "\x8f\xb3\xde", +"\x52\xb1" => "\xce\xe5", +"\x52\xb4" => "\xcf\xab", +"\x52\xb5" => "\xd2\xa5", +"\x52\xb6" => "\x8f\xb3\xdf", +"\x52\xb7" => "\x8f\xb3\xe0", +"\x52\xb8" => "\x8f\xb3\xe1", +"\x52\xb9" => "\xb8\xfa", +"\x52\xba" => "\x8f\xb3\xe2", +"\x52\xbb" => "\x8f\xb3\xe3", +"\x52\xbc" => "\xd2\xa4", +"\x52\xbd" => "\x8f\xb3\xe4", +"\x52\xbe" => "\xb3\xaf", +"\x52\xc0" => "\x8f\xb3\xe5", +"\x52\xc1" => "\xd2\xa6", +"\x52\xc3" => "\xcb\xd6", +"\x52\xc4" => "\x8f\xb3\xe6", +"\x52\xc5" => "\xc4\xbc", +"\x52\xc6" => "\x8f\xb3\xe7", +"\x52\xc7" => "\xcd\xa6", +"\x52\xc8" => "\x8f\xb3\xe8", +"\x52\xc9" => "\xca\xd9", +"\x52\xcc" => "\x8f\xb3\xe9", +"\x52\xcd" => "\xd2\xa7", +"\x52\xcf" => "\x8f\xb3\xea", +"\x52\xd1" => "\x8f\xb3\xeb", +"\x52\xd2" => "\xf0\xd5", +"\x52\xd4" => "\x8f\xb3\xec", +"\x52\xd5" => "\xc6\xb0", +"\x52\xd6" => "\x8f\xb3\xed", +"\x52\xd7" => "\xd2\xa8", +"\x52\xd8" => "\xb4\xaa", +"\x52\xd9" => "\xcc\xb3", +"\x52\xdb" => "\x8f\xb3\xee", +"\x52\xdc" => "\x8f\xb3\xef", +"\x52\xdd" => "\xbe\xa1", +"\x52\xde" => "\xd2\xa9", +"\x52\xdf" => "\xca\xe7", +"\x52\xe0" => "\xd2\xad", +"\x52\xe1" => "\x8f\xb3\xf0", +"\x52\xe2" => "\xc0\xaa", +"\x52\xe3" => "\xd2\xaa", +"\x52\xe4" => "\xb6\xd0", +"\x52\xe5" => "\x8f\xb3\xf1", +"\x52\xe6" => "\xd2\xab", +"\x52\xe7" => "\xb4\xab", +"\x52\xe8" => "\x8f\xb3\xf2", +"\x52\xe9" => "\x8f\xb3\xf3", +"\x52\xea" => "\x8f\xb3\xf4", +"\x52\xec" => "\x8f\xb3\xf5", +"\x52\xf0" => "\x8f\xb3\xf6", +"\x52\xf1" => "\x8f\xb3\xf7", +"\x52\xf2" => "\xb7\xae", +"\x52\xf3" => "\xd2\xae", +"\x52\xf4" => "\x8f\xb3\xf8", +"\x52\xf5" => "\xd2\xaf", +"\x52\xf6" => "\x8f\xb3\xf9", +"\x52\xf7" => "\x8f\xb3\xfa", +"\x52\xf8" => "\xd2\xb0", +"\x52\xf9" => "\xd2\xb1", +"\x52\xfa" => "\xbc\xdb", +"\x52\xfe" => "\xb8\xfb", +"\x52\xff" => "\xcc\xde", +"\x53\x00" => "\x8f\xb3\xfb", +"\x53\x01" => "\xcc\xe8", +"\x53\x02" => "\xc6\xf7", +"\x53\x03" => "\x8f\xb3\xfc", +"\x53\x05" => "\xca\xf1", +"\x53\x06" => "\xd2\xb2", +"\x53\x08" => "\xd2\xb3", +"\x53\x0a" => "\x8f\xb3\xfd", +"\x53\x0b" => "\x8f\xb3\xfe", +"\x53\x0c" => "\x8f\xb4\xa1", +"\x53\x0d" => "\xd2\xb5", +"\x53\x0f" => "\xd2\xb7", +"\x53\x10" => "\xd2\xb6", +"\x53\x11" => "\x8f\xb4\xa2", +"\x53\x13" => "\x8f\xb4\xa3", +"\x53\x15" => "\xd2\xb8", +"\x53\x16" => "\xb2\xbd", +"\x53\x17" => "\xcb\xcc", +"\x53\x18" => "\x8f\xb4\xa4", +"\x53\x19" => "\xba\xfc", +"\x53\x1a" => "\xd2\xb9", +"\x53\x1b" => "\x8f\xb4\xa5", +"\x53\x1c" => "\x8f\xb4\xa6", +"\x53\x1d" => "\xc1\xd9", +"\x53\x1e" => "\x8f\xb4\xa7", +"\x53\x1f" => "\x8f\xb4\xa8", +"\x53\x20" => "\xbe\xa2", +"\x53\x21" => "\xb6\xa9", +"\x53\x23" => "\xd2\xba", +"\x53\x25" => "\x8f\xb4\xa9", +"\x53\x27" => "\x8f\xb4\xaa", +"\x53\x28" => "\x8f\xb4\xab", +"\x53\x29" => "\x8f\xb4\xac", +"\x53\x2a" => "\xc8\xdb", +"\x53\x2b" => "\x8f\xb4\xad", +"\x53\x2c" => "\x8f\xb4\xae", +"\x53\x2d" => "\x8f\xb4\xaf", +"\x53\x2f" => "\xd2\xbb", +"\x53\x30" => "\x8f\xb4\xb0", +"\x53\x31" => "\xd2\xbc", +"\x53\x32" => "\x8f\xb4\xb1", +"\x53\x33" => "\xd2\xbd", +"\x53\x35" => "\x8f\xb4\xb2", +"\x53\x38" => "\xd2\xbe", +"\x53\x39" => "\xc9\xa4", +"\x53\x3a" => "\xb6\xe8", +"\x53\x3b" => "\xb0\xe5", +"\x53\x3c" => "\x8f\xb4\xb3", +"\x53\x3d" => "\x8f\xb4\xb4", +"\x53\x3e" => "\x8f\xb4\xb5", +"\x53\x3f" => "\xc6\xbf", +"\x53\x40" => "\xd2\xbf", +"\x53\x41" => "\xbd\xbd", +"\x53\x42" => "\x8f\xb4\xb6", +"\x53\x43" => "\xc0\xe9", +"\x53\x45" => "\xd2\xc1", +"\x53\x46" => "\xd2\xc0", +"\x53\x47" => "\xbe\xa3", +"\x53\x48" => "\xb8\xe1", +"\x53\x49" => "\xd2\xc3", +"\x53\x4a" => "\xc8\xbe", +"\x53\x4b" => "\x8f\xb4\xb8", +"\x53\x4c" => "\x8f\xb4\xb7", +"\x53\x4d" => "\xd2\xc4", +"\x53\x51" => "\xc8\xdc", +"\x53\x52" => "\xc2\xb4", +"\x53\x53" => "\xc2\xee", +"\x53\x54" => "\xb6\xa8", +"\x53\x57" => "\xc6\xee", +"\x53\x58" => "\xc3\xb1", +"\x53\x59" => "\x8f\xb4\xb9", +"\x53\x5a" => "\xc7\xee", +"\x53\x5b" => "\x8f\xb4\xba", +"\x53\x5c" => "\xcb\xce", +"\x53\x5e" => "\xd2\xc6", +"\x53\x60" => "\xc0\xea", +"\x53\x61" => "\x8f\xb4\xbb", +"\x53\x63" => "\x8f\xb4\xbc", +"\x53\x65" => "\x8f\xb4\xbd", +"\x53\x66" => "\xb7\xb5", +"\x53\x69" => "\xd2\xc7", +"\x53\x6c" => "\x8f\xb4\xbe", +"\x53\x6d" => "\x8f\xb4\xbf", +"\x53\x6e" => "\xd2\xc8", +"\x53\x6f" => "\xb1\xac", +"\x53\x70" => "\xb0\xf5", +"\x53\x71" => "\xb4\xed", +"\x53\x72" => "\x8f\xb4\xc0", +"\x53\x73" => "\xc2\xa8", +"\x53\x74" => "\xb5\xd1", +"\x53\x75" => "\xcd\xf1", +"\x53\x77" => "\xd2\xcb", +"\x53\x78" => "\xb2\xb7", +"\x53\x79" => "\x8f\xb4\xc1", +"\x53\x7b" => "\xd2\xca", +"\x53\x7e" => "\x8f\xb4\xc2", +"\x53\x7f" => "\xb6\xaa", +"\x53\x82" => "\xd2\xcc", +"\x53\x83" => "\x8f\xb4\xc3", +"\x53\x84" => "\xcc\xf1", +"\x53\x87" => "\x8f\xb4\xc4", +"\x53\x88" => "\x8f\xb4\xc5", +"\x53\x8e" => "\x8f\xb4\xc6", +"\x53\x93" => "\x8f\xb4\xc7", +"\x53\x94" => "\x8f\xb4\xc8", +"\x53\x96" => "\xd2\xcd", +"\x53\x98" => "\xce\xd2", +"\x53\x99" => "\x8f\xb4\xc9", +"\x53\x9a" => "\xb8\xfc", +"\x53\x9d" => "\x8f\xb4\xca", +"\x53\x9f" => "\xb8\xb6", +"\x53\xa0" => "\xd2\xce", +"\x53\xa1" => "\x8f\xb4\xcb", +"\x53\xa4" => "\x8f\xb4\xcc", +"\x53\xa5" => "\xd2\xd0", +"\x53\xa6" => "\xd2\xcf", +"\x53\xa8" => "\xbf\xdf", +"\x53\xa9" => "\xb1\xb9", +"\x53\xaa" => "\x8f\xb4\xcd", +"\x53\xab" => "\x8f\xb4\xce", +"\x53\xad" => "\xb1\xde", +"\x53\xae" => "\xd2\xd1", +"\x53\xaf" => "\x8f\xb4\xcf", +"\x53\xb0" => "\xd2\xd2", +"\x53\xb2" => "\x8f\xb4\xd0", +"\x53\xb3" => "\xb8\xb7", +"\x53\xb4" => "\x8f\xb4\xd1", +"\x53\xb5" => "\x8f\xb4\xd2", +"\x53\xb6" => "\xd2\xd3", +"\x53\xb7" => "\x8f\xb4\xd3", +"\x53\xb8" => "\x8f\xb4\xd4", +"\x53\xba" => "\x8f\xb4\xd5", +"\x53\xbb" => "\xb5\xee", +"\x53\xbd" => "\x8f\xb4\xd6", +"\x53\xc0" => "\x8f\xb4\xd7", +"\x53\xc2" => "\xbb\xb2", +"\x53\xc3" => "\xd2\xd4", +"\x53\xc5" => "\x8f\xb4\xd8", +"\x53\xc8" => "\xcb\xf4", +"\x53\xc9" => "\xba\xb5", +"\x53\xca" => "\xb5\xda", +"\x53\xcb" => "\xcd\xa7", +"\x53\xcc" => "\xc1\xd0", +"\x53\xcd" => "\xc8\xbf", +"\x53\xce" => "\xbc\xfd", +"\x53\xcf" => "\x8f\xb4\xd9", +"\x53\xd2" => "\x8f\xb4\xda", +"\x53\xd3" => "\x8f\xb4\xdb", +"\x53\xd4" => "\xbd\xc7", +"\x53\xd5" => "\x8f\xb4\xdc", +"\x53\xd6" => "\xbc\xe8", +"\x53\xd7" => "\xbc\xf5", +"\x53\xd9" => "\xbd\xf6", +"\x53\xda" => "\x8f\xb4\xdd", +"\x53\xdb" => "\xc8\xc0", +"\x53\xdd" => "\x8f\xb4\xde", +"\x53\xde" => "\x8f\xb4\xdf", +"\x53\xdf" => "\xd2\xd7", +"\x53\xe0" => "\x8f\xb4\xe0", +"\x53\xe1" => "\xb1\xc3", +"\x53\xe2" => "\xc1\xd1", +"\x53\xe3" => "\xb8\xfd", +"\x53\xe4" => "\xb8\xc5", +"\x53\xe5" => "\xb6\xe7", +"\x53\xe6" => "\x8f\xb4\xe1", +"\x53\xe7" => "\x8f\xb4\xe2", +"\x53\xe8" => "\xd2\xdb", +"\x53\xe9" => "\xc3\xa1", +"\x53\xea" => "\xc2\xfe", +"\x53\xeb" => "\xb6\xab", +"\x53\xec" => "\xbe\xa4", +"\x53\xed" => "\xd2\xdc", +"\x53\xee" => "\xd2\xda", +"\x53\xef" => "\xb2\xc4", +"\x53\xf0" => "\xc2\xe6", +"\x53\xf1" => "\xbc\xb8", +"\x53\xf2" => "\xbb\xcb", +"\x53\xf3" => "\xb1\xa6", +"\x53\xf5" => "\x8f\xb4\xe3", +"\x53\xf6" => "\xb3\xf0", +"\x53\xf7" => "\xb9\xe6", +"\x53\xf8" => "\xbb\xca", +"\x53\xfa" => "\xd2\xdd", +"\x54\x01" => "\xd2\xde", +"\x54\x02" => "\x8f\xb4\xe4", +"\x54\x03" => "\xb5\xc9", +"\x54\x04" => "\xb3\xc6", +"\x54\x08" => "\xb9\xe7", +"\x54\x09" => "\xb5\xc8", +"\x54\x0a" => "\xc4\xdf", +"\x54\x0b" => "\xb1\xa5", +"\x54\x0c" => "\xc6\xb1", +"\x54\x0d" => "\xcc\xbe", +"\x54\x0e" => "\xb9\xa1", +"\x54\x0f" => "\xcd\xf9", +"\x54\x10" => "\xc5\xc7", +"\x54\x11" => "\xb8\xfe", +"\x54\x13" => "\x8f\xb4\xe5", +"\x54\x1a" => "\x8f\xb4\xe6", +"\x54\x1b" => "\xb7\xaf", +"\x54\x1d" => "\xd2\xe7", +"\x54\x1f" => "\xb6\xe3", +"\x54\x20" => "\xcb\xca", +"\x54\x21" => "\x8f\xb4\xe7", +"\x54\x26" => "\xc8\xdd", +"\x54\x27" => "\x8f\xb4\xe8", +"\x54\x28" => "\x8f\xb4\xe9", +"\x54\x29" => "\xd2\xe6", +"\x54\x2a" => "\x8f\xb4\xea", +"\x54\x2b" => "\xb4\xde", +"\x54\x2c" => "\xd2\xe1", +"\x54\x2d" => "\xd2\xe2", +"\x54\x2e" => "\xd2\xe4", +"\x54\x2f" => "\x8f\xb4\xeb", +"\x54\x31" => "\x8f\xb4\xec", +"\x54\x34" => "\x8f\xb4\xed", +"\x54\x35" => "\x8f\xb4\xee", +"\x54\x36" => "\xd2\xe5", +"\x54\x38" => "\xb5\xdb", +"\x54\x39" => "\xbf\xe1", +"\x54\x3b" => "\xca\xad", +"\x54\x3c" => "\xd2\xe3", +"\x54\x3d" => "\xd2\xdf", +"\x54\x3e" => "\xb8\xe3", +"\x54\x40" => "\xd2\xe0", +"\x54\x42" => "\xcf\xa4", +"\x54\x43" => "\x8f\xb4\xef", +"\x54\x44" => "\x8f\xb4\xf0", +"\x54\x46" => "\xca\xf2", +"\x54\x47" => "\x8f\xb4\xf1", +"\x54\x48" => "\xc4\xe8", +"\x54\x49" => "\xb8\xe2", +"\x54\x4a" => "\xb9\xf0", +"\x54\x4d" => "\x8f\xb4\xf2", +"\x54\x4e" => "\xd2\xe8", +"\x54\x4f" => "\x8f\xb4\xf3", +"\x54\x51" => "\xc6\xdd", +"\x54\x5e" => "\x8f\xb4\xf4", +"\x54\x5f" => "\xd2\xec", +"\x54\x62" => "\x8f\xb4\xf5", +"\x54\x64" => "\x8f\xb4\xf6", +"\x54\x66" => "\x8f\xb4\xf7", +"\x54\x67" => "\x8f\xb4\xf8", +"\x54\x68" => "\xbc\xfe", +"\x54\x69" => "\x8f\xb4\xf9", +"\x54\x6a" => "\xbc\xf6", +"\x54\x6b" => "\x8f\xb4\xfa", +"\x54\x6d" => "\x8f\xb4\xfb", +"\x54\x6e" => "\x8f\xb4\xfc", +"\x54\x70" => "\xd2\xef", +"\x54\x71" => "\xd2\xed", +"\x54\x73" => "\xcc\xa3", +"\x54\x74" => "\x8f\xb4\xfd", +"\x54\x75" => "\xd2\xea", +"\x54\x76" => "\xd2\xf3", +"\x54\x77" => "\xd2\xee", +"\x54\x7b" => "\xd2\xf1", +"\x54\x7c" => "\xb8\xc6", +"\x54\x7d" => "\xcc\xbf", +"\x54\x7f" => "\x8f\xb4\xfe", +"\x54\x80" => "\xd2\xf2", +"\x54\x81" => "\x8f\xb5\xa1", +"\x54\x83" => "\x8f\xb5\xa2", +"\x54\x84" => "\xd2\xf4", +"\x54\x85" => "\x8f\xb5\xa3", +"\x54\x86" => "\xd2\xf6", +"\x54\x88" => "\x8f\xb5\xa4", +"\x54\x89" => "\x8f\xb5\xa5", +"\x54\x8b" => "\xba\xf0", +"\x54\x8c" => "\xcf\xc2", +"\x54\x8d" => "\x8f\xb5\xa6", +"\x54\x8e" => "\xd2\xeb", +"\x54\x8f" => "\xd2\xe9", +"\x54\x90" => "\xd2\xf5", +"\x54\x91" => "\x8f\xb5\xa7", +"\x54\x92" => "\xd2\xf0", +"\x54\x95" => "\x8f\xb5\xa8", +"\x54\x96" => "\x8f\xb5\xa9", +"\x54\x9c" => "\x8f\xb5\xaa", +"\x54\x9f" => "\x8f\xb5\xab", +"\x54\xa1" => "\x8f\xb5\xac", +"\x54\xa2" => "\xd2\xf8", +"\x54\xa4" => "\xd3\xa3", +"\x54\xa5" => "\xd2\xfa", +"\x54\xa6" => "\x8f\xb5\xad", +"\x54\xa7" => "\x8f\xb5\xae", +"\x54\xa8" => "\xd2\xfe", +"\x54\xa9" => "\x8f\xb5\xaf", +"\x54\xaa" => "\x8f\xb5\xb0", +"\x54\xab" => "\xd3\xa1", +"\x54\xac" => "\xd2\xfb", +"\x54\xad" => "\x8f\xb5\xb1", +"\x54\xae" => "\x8f\xb5\xb2", +"\x54\xaf" => "\xd3\xbe", +"\x54\xb1" => "\x8f\xb5\xb3", +"\x54\xb2" => "\xba\xe9", +"\x54\xb3" => "\xb3\xb1", +"\x54\xb7" => "\x8f\xb5\xb4", +"\x54\xb8" => "\xd2\xf9", +"\x54\xb9" => "\x8f\xb5\xb5", +"\x54\xba" => "\x8f\xb5\xb6", +"\x54\xbb" => "\x8f\xb5\xb7", +"\x54\xbc" => "\xd3\xa5", +"\x54\xbd" => "\xb0\xf6", +"\x54\xbe" => "\xd3\xa4", +"\x54\xbf" => "\x8f\xb5\xb8", +"\x54\xc0" => "\xb0\xa5", +"\x54\xc1" => "\xc9\xca", +"\x54\xc2" => "\xd3\xa2", +"\x54\xc4" => "\xd2\xfc", +"\x54\xc6" => "\x8f\xb5\xb9", +"\x54\xc7" => "\xd2\xf7", +"\x54\xc8" => "\xd2\xfd", +"\x54\xc9" => "\xba\xc8", +"\x54\xca" => "\x8f\xb5\xba", +"\x54\xcd" => "\x8f\xb5\xbb", +"\x54\xce" => "\x8f\xb5\xbc", +"\x54\xd8" => "\xd3\xa6", +"\x54\xe0" => "\x8f\xb5\xbd", +"\x54\xe1" => "\xb0\xf7", +"\x54\xe2" => "\xd3\xaf", +"\x54\xe5" => "\xd3\xa7", +"\x54\xe6" => "\xd3\xa8", +"\x54\xe8" => "\xbe\xa5", +"\x54\xe9" => "\xcb\xe9", +"\x54\xea" => "\x8f\xb5\xbe", +"\x54\xec" => "\x8f\xb5\xbf", +"\x54\xed" => "\xd3\xad", +"\x54\xee" => "\xd3\xac", +"\x54\xef" => "\x8f\xb5\xc0", +"\x54\xf2" => "\xc5\xaf", +"\x54\xf6" => "\x8f\xb5\xc1", +"\x54\xfa" => "\xd3\xae", +"\x54\xfc" => "\x8f\xb5\xc2", +"\x54\xfd" => "\xd3\xab", +"\x54\xfe" => "\x8f\xb5\xc3", +"\x54\xff" => "\x8f\xb5\xc4", +"\x55\x00" => "\x8f\xb5\xc5", +"\x55\x01" => "\x8f\xb5\xc6", +"\x55\x04" => "\xb1\xb4", +"\x55\x05" => "\x8f\xb5\xc7", +"\x55\x06" => "\xba\xb6", +"\x55\x07" => "\xbf\xb0", +"\x55\x08" => "\x8f\xb5\xc8", +"\x55\x09" => "\x8f\xb5\xc9", +"\x55\x0c" => "\x8f\xb5\xca", +"\x55\x0d" => "\x8f\xb5\xcb", +"\x55\x0e" => "\x8f\xb5\xcc", +"\x55\x0f" => "\xd3\xa9", +"\x55\x10" => "\xc5\xe2", +"\x55\x14" => "\xd3\xaa", +"\x55\x15" => "\x8f\xb5\xcd", +"\x55\x16" => "\xb0\xa2", +"\x55\x2a" => "\x8f\xb5\xce", +"\x55\x2b" => "\x8f\xb5\xcf", +"\x55\x2e" => "\xd3\xb4", +"\x55\x2f" => "\xcd\xa3", +"\x55\x31" => "\xbe\xa7", +"\x55\x32" => "\x8f\xb5\xd0", +"\x55\x33" => "\xd3\xba", +"\x55\x35" => "\x8f\xb5\xd1", +"\x55\x36" => "\x8f\xb5\xd2", +"\x55\x38" => "\xd3\xb9", +"\x55\x39" => "\xd3\xb0", +"\x55\x3b" => "\x8f\xb5\xd3", +"\x55\x3c" => "\x8f\xb5\xd4", +"\x55\x3d" => "\x8f\xb5\xd5", +"\x55\x3e" => "\xc2\xc3", +"\x55\x40" => "\xd3\xb1", +"\x55\x41" => "\x8f\xb5\xd6", +"\x55\x44" => "\xc2\xef", +"\x55\x45" => "\xd3\xb6", +"\x55\x46" => "\xbe\xa6", +"\x55\x47" => "\x8f\xb5\xd7", +"\x55\x49" => "\x8f\xb5\xd8", +"\x55\x4a" => "\x8f\xb5\xd9", +"\x55\x4c" => "\xd3\xb3", +"\x55\x4d" => "\x8f\xb5\xda", +"\x55\x4f" => "\xcc\xe4", +"\x55\x50" => "\x8f\xb5\xdb", +"\x55\x51" => "\x8f\xb5\xdc", +"\x55\x53" => "\xb7\xbc", +"\x55\x56" => "\xd3\xb7", +"\x55\x57" => "\xd3\xb8", +"\x55\x58" => "\x8f\xb5\xdd", +"\x55\x5a" => "\x8f\xb5\xde", +"\x55\x5b" => "\x8f\xb5\xdf", +"\x55\x5c" => "\xd3\xb5", +"\x55\x5d" => "\xd3\xbb", +"\x55\x5e" => "\x8f\xb5\xe0", +"\x55\x60" => "\x8f\xb5\xe1", +"\x55\x61" => "\x8f\xb5\xe2", +"\x55\x63" => "\xd3\xb2", +"\x55\x64" => "\x8f\xb5\xe3", +"\x55\x66" => "\x8f\xb5\xe4", +"\x55\x7b" => "\xd3\xc1", +"\x55\x7c" => "\xd3\xc6", +"\x55\x7e" => "\xd3\xc2", +"\x55\x7f" => "\x8f\xb5\xe5", +"\x55\x80" => "\xd3\xbd", +"\x55\x81" => "\x8f\xb5\xe6", +"\x55\x82" => "\x8f\xb5\xe7", +"\x55\x83" => "\xd3\xc7", +"\x55\x84" => "\xc1\xb1", +"\x55\x86" => "\x8f\xb5\xe8", +"\x55\x87" => "\xd3\xc9", +"\x55\x88" => "\x8f\xb5\xe9", +"\x55\x89" => "\xb9\xa2", +"\x55\x8a" => "\xd3\xbf", +"\x55\x8b" => "\xc3\xfd", +"\x55\x8e" => "\x8f\xb5\xea", +"\x55\x8f" => "\x8f\xb5\xeb", +"\x55\x91" => "\x8f\xb5\xec", +"\x55\x92" => "\x8f\xb5\xed", +"\x55\x93" => "\x8f\xb5\xee", +"\x55\x94" => "\x8f\xb5\xef", +"\x55\x97" => "\x8f\xb5\xf0", +"\x55\x98" => "\xd3\xc3", +"\x55\x99" => "\xd3\xbc", +"\x55\x9a" => "\xb4\xad", +"\x55\x9c" => "\xb4\xee", +"\x55\x9d" => "\xb3\xe5", +"\x55\x9e" => "\xd3\xc4", +"\x55\x9f" => "\xd3\xc0", +"\x55\xa3" => "\x8f\xb5\xf1", +"\x55\xa4" => "\x8f\xb5\xf2", +"\x55\xa7" => "\xb7\xf6", +"\x55\xa8" => "\xd3\xca", +"\x55\xa9" => "\xd3\xc8", +"\x55\xaa" => "\xc1\xd3", +"\x55\xab" => "\xb5\xca", +"\x55\xac" => "\xb6\xac", +"\x55\xad" => "\x8f\xb5\xf3", +"\x55\xae" => "\xd3\xc5", +"\x55\xb0" => "\xb6\xf4", +"\x55\xb2" => "\x8f\xb5\xf4", +"\x55\xb6" => "\xb1\xc4", +"\x55\xbf" => "\x8f\xb5\xf5", +"\x55\xc1" => "\x8f\xb5\xf6", +"\x55\xc3" => "\x8f\xb5\xf7", +"\x55\xc4" => "\xd3\xce", +"\x55\xc5" => "\xd3\xcc", +"\x55\xc6" => "\x8f\xb5\xf8", +"\x55\xc7" => "\xd4\xa7", +"\x55\xc9" => "\x8f\xb5\xf9", +"\x55\xcb" => "\x8f\xb5\xfa", +"\x55\xcc" => "\x8f\xb5\xfb", +"\x55\xce" => "\x8f\xb5\xfc", +"\x55\xd1" => "\x8f\xb5\xfd", +"\x55\xd2" => "\x8f\xb5\xfe", +"\x55\xd3" => "\x8f\xb6\xa1", +"\x55\xd4" => "\xd3\xd1", +"\x55\xd7" => "\x8f\xb6\xa2", +"\x55\xd8" => "\x8f\xb6\xa3", +"\x55\xda" => "\xd3\xcb", +"\x55\xdb" => "\x8f\xb6\xa4", +"\x55\xdc" => "\xd3\xcf", +"\x55\xde" => "\x8f\xb6\xa5", +"\x55\xdf" => "\xd3\xcd", +"\x55\xe2" => "\x8f\xb6\xa6", +"\x55\xe3" => "\xbb\xcc", +"\x55\xe4" => "\xd3\xd0", +"\x55\xe9" => "\x8f\xb6\xa7", +"\x55\xf6" => "\x8f\xb6\xa8", +"\x55\xf7" => "\xd3\xd3", +"\x55\xf9" => "\xd3\xd8", +"\x55\xfd" => "\xd3\xd6", +"\x55\xfe" => "\xd3\xd5", +"\x55\xff" => "\x8f\xb6\xa9", +"\x56\x05" => "\x8f\xb6\xaa", +"\x56\x06" => "\xc3\xb2", +"\x56\x08" => "\x8f\xb6\xab", +"\x56\x09" => "\xb2\xc5", +"\x56\x0a" => "\x8f\xb6\xac", +"\x56\x0d" => "\x8f\xb6\xad", +"\x56\x0e" => "\x8f\xb6\xae", +"\x56\x0f" => "\x8f\xb6\xaf", +"\x56\x10" => "\x8f\xb6\xb0", +"\x56\x11" => "\x8f\xb6\xb1", +"\x56\x12" => "\x8f\xb6\xb2", +"\x56\x14" => "\xd3\xd2", +"\x56\x16" => "\xd3\xd4", +"\x56\x17" => "\xbe\xa8", +"\x56\x18" => "\xb1\xb3", +"\x56\x19" => "\x8f\xb6\xb3", +"\x56\x1b" => "\xd3\xd7", +"\x56\x29" => "\xb2\xde", +"\x56\x2c" => "\x8f\xb6\xb4", +"\x56\x2f" => "\xd3\xe2", +"\x56\x30" => "\x8f\xb6\xb5", +"\x56\x31" => "\xbe\xfc", +"\x56\x32" => "\xd3\xde", +"\x56\x33" => "\x8f\xb6\xb6", +"\x56\x34" => "\xd3\xdc", +"\x56\x35" => "\x8f\xb6\xb7", +"\x56\x36" => "\xd3\xdd", +"\x56\x37" => "\x8f\xb6\xb8", +"\x56\x38" => "\xd3\xdf", +"\x56\x39" => "\x8f\xb6\xb9", +"\x56\x3b" => "\x8f\xb6\xba", +"\x56\x3c" => "\x8f\xb6\xbb", +"\x56\x3d" => "\x8f\xb6\xbc", +"\x56\x3f" => "\x8f\xb6\xbd", +"\x56\x40" => "\x8f\xb6\xbe", +"\x56\x41" => "\x8f\xb6\xbf", +"\x56\x42" => "\xb1\xbd", +"\x56\x43" => "\x8f\xb6\xc0", +"\x56\x44" => "\x8f\xb6\xc1", +"\x56\x46" => "\x8f\xb6\xc2", +"\x56\x49" => "\x8f\xb6\xc3", +"\x56\x4b" => "\x8f\xb6\xc4", +"\x56\x4c" => "\xc1\xb9", +"\x56\x4d" => "\x8f\xb6\xc5", +"\x56\x4e" => "\xd3\xd9", +"\x56\x4f" => "\x8f\xb6\xc6", +"\x56\x50" => "\xd3\xda", +"\x56\x54" => "\x8f\xb6\xc7", +"\x56\x5b" => "\xb3\xfa", +"\x56\x5e" => "\x8f\xb6\xc8", +"\x56\x60" => "\x8f\xb6\xc9", +"\x56\x61" => "\x8f\xb6\xca", +"\x56\x62" => "\x8f\xb6\xcb", +"\x56\x63" => "\x8f\xb6\xcc", +"\x56\x64" => "\xd3\xe1", +"\x56\x66" => "\x8f\xb6\xcd", +"\x56\x68" => "\xb4\xef", +"\x56\x69" => "\x8f\xb6\xce", +"\x56\x6a" => "\xd3\xe4", +"\x56\x6b" => "\xd3\xe0", +"\x56\x6c" => "\xd3\xe3", +"\x56\x6d" => "\x8f\xb6\xcf", +"\x56\x6f" => "\x8f\xb6\xd0", +"\x56\x71" => "\x8f\xb6\xd1", +"\x56\x72" => "\x8f\xb6\xd2", +"\x56\x74" => "\xca\xae", +"\x56\x75" => "\x8f\xb6\xd3", +"\x56\x78" => "\xc6\xd5", +"\x56\x7a" => "\xc8\xb8", +"\x56\x80" => "\xd3\xe6", +"\x56\x84" => "\x8f\xb6\xd4", +"\x56\x85" => "\x8f\xb6\xd5", +"\x56\x86" => "\xd3\xe5", +"\x56\x87" => "\xb3\xc5", +"\x56\x88" => "\x8f\xb6\xd6", +"\x56\x8a" => "\xd3\xe7", +"\x56\x8b" => "\x8f\xb6\xd7", +"\x56\x8c" => "\x8f\xb6\xd8", +"\x56\x8f" => "\xd3\xea", +"\x56\x94" => "\xd3\xe9", +"\x56\x95" => "\x8f\xb6\xd9", +"\x56\x99" => "\x8f\xb6\xda", +"\x56\x9a" => "\x8f\xb6\xdb", +"\x56\x9d" => "\x8f\xb6\xdc", +"\x56\x9e" => "\x8f\xb6\xdd", +"\x56\x9f" => "\x8f\xb6\xde", +"\x56\xa0" => "\xd3\xe8", +"\x56\xa2" => "\xc7\xb9", +"\x56\xa5" => "\xd3\xeb", +"\x56\xa6" => "\x8f\xb6\xdf", +"\x56\xa7" => "\x8f\xb6\xe0", +"\x56\xa8" => "\x8f\xb6\xe1", +"\x56\xa9" => "\x8f\xb6\xe2", +"\x56\xab" => "\x8f\xb6\xe3", +"\x56\xac" => "\x8f\xb6\xe4", +"\x56\xad" => "\x8f\xb6\xe5", +"\x56\xae" => "\xd3\xec", +"\x56\xb1" => "\x8f\xb6\xe6", +"\x56\xb3" => "\x8f\xb6\xe7", +"\x56\xb4" => "\xd3\xee", +"\x56\xb6" => "\xd3\xed", +"\x56\xb7" => "\x8f\xb6\xe8", +"\x56\xbc" => "\xd3\xf0", +"\x56\xbe" => "\x8f\xb6\xe9", +"\x56\xc0" => "\xd3\xf3", +"\x56\xc1" => "\xd3\xf1", +"\x56\xc2" => "\xd3\xef", +"\x56\xc3" => "\xd3\xf2", +"\x56\xc5" => "\x8f\xb6\xea", +"\x56\xc8" => "\xd3\xf4", +"\x56\xc9" => "\x8f\xb6\xeb", +"\x56\xca" => "\x8f\xb6\xec", +"\x56\xcb" => "\x8f\xb6\xed", +"\x56\xcc" => "\x8f\xb6\xf0", +"\x56\xcd" => "\x8f\xb6\xf1", +"\x56\xce" => "\xd3\xf5", +"\x56\xcf" => "\x8f\xb6\xee", +"\x56\xd0" => "\x8f\xb6\xef", +"\x56\xd1" => "\xd3\xf6", +"\x56\xd3" => "\xd3\xf7", +"\x56\xd7" => "\xd3\xf8", +"\x56\xd8" => "\xd1\xc5", +"\x56\xd9" => "\x8f\xb6\xf2", +"\x56\xda" => "\xbc\xfc", +"\x56\xdb" => "\xbb\xcd", +"\x56\xdc" => "\x8f\xb6\xf3", +"\x56\xdd" => "\x8f\xb6\xf4", +"\x56\xde" => "\xb2\xf3", +"\x56\xdf" => "\x8f\xb6\xf5", +"\x56\xe0" => "\xb0\xf8", +"\x56\xe1" => "\x8f\xb6\xf6", +"\x56\xe3" => "\xc3\xc4", +"\x56\xe4" => "\x8f\xb6\xf7", +"\x56\xe5" => "\x8f\xb6\xf8", +"\x56\xe6" => "\x8f\xb6\xf9", +"\x56\xe7" => "\x8f\xb6\xfa", +"\x56\xe8" => "\x8f\xb6\xfb", +"\x56\xeb" => "\x8f\xb6\xfd", +"\x56\xed" => "\x8f\xb6\xfe", +"\x56\xee" => "\xd3\xf9", +"\x56\xf0" => "\xba\xa4", +"\x56\xf1" => "\x8f\xb6\xfc", +"\x56\xf2" => "\xb0\xcf", +"\x56\xf3" => "\xbf\xde", +"\x56\xf6" => "\x8f\xb7\xa1", +"\x56\xf7" => "\x8f\xb7\xa2", +"\x56\xf9" => "\xd3\xfa", +"\x56\xfa" => "\xb8\xc7", +"\x56\xfd" => "\xb9\xf1", +"\x56\xff" => "\xd3\xfc", +"\x57\x00" => "\xd3\xfb", +"\x57\x01" => "\x8f\xb7\xa3", +"\x57\x02" => "\x8f\xb7\xa4", +"\x57\x03" => "\xca\xe0", +"\x57\x04" => "\xd3\xfd", +"\x57\x07" => "\x8f\xb7\xa5", +"\x57\x08" => "\xd4\xa1", +"\x57\x09" => "\xd3\xfe", +"\x57\x0a" => "\x8f\xb7\xa6", +"\x57\x0b" => "\xd4\xa2", +"\x57\x0c" => "\x8f\xb7\xa7", +"\x57\x0d" => "\xd4\xa3", +"\x57\x0f" => "\xb7\xf7", +"\x57\x11" => "\x8f\xb7\xa8", +"\x57\x12" => "\xb1\xe0", +"\x57\x13" => "\xd4\xa4", +"\x57\x15" => "\x8f\xb7\xa9", +"\x57\x16" => "\xd4\xa6", +"\x57\x18" => "\xd4\xa5", +"\x57\x1a" => "\x8f\xb7\xaa", +"\x57\x1b" => "\x8f\xb7\xab", +"\x57\x1c" => "\xd4\xa8", +"\x57\x1d" => "\x8f\xb7\xac", +"\x57\x1f" => "\xc5\xda", +"\x57\x20" => "\x8f\xb7\xad", +"\x57\x22" => "\x8f\xb7\xae", +"\x57\x23" => "\x8f\xb7\xaf", +"\x57\x24" => "\x8f\xb7\xb0", +"\x57\x25" => "\x8f\xb7\xb1", +"\x57\x26" => "\xd4\xa9", +"\x57\x27" => "\xb0\xb5", +"\x57\x28" => "\xba\xdf", +"\x57\x29" => "\x8f\xb7\xb2", +"\x57\x2a" => "\x8f\xb7\xb3", +"\x57\x2c" => "\x8f\xb7\xb4", +"\x57\x2d" => "\xb7\xbd", +"\x57\x2e" => "\x8f\xb7\xb5", +"\x57\x2f" => "\x8f\xb7\xb6", +"\x57\x30" => "\xc3\xcf", +"\x57\x33" => "\x8f\xb7\xb7", +"\x57\x34" => "\x8f\xb7\xb8", +"\x57\x37" => "\xd4\xaa", +"\x57\x38" => "\xd4\xab", +"\x57\x3b" => "\xd4\xad", +"\x57\x3d" => "\x8f\xb7\xb9", +"\x57\x3e" => "\x8f\xb7\xba", +"\x57\x3f" => "\x8f\xb7\xbb", +"\x57\x40" => "\xd4\xae", +"\x57\x42" => "\xba\xe4", +"\x57\x45" => "\x8f\xb7\xbc", +"\x57\x46" => "\x8f\xb7\xbd", +"\x57\x47" => "\xb6\xd1", +"\x57\x4a" => "\xcb\xb7", +"\x57\x4c" => "\x8f\xb7\xbe", +"\x57\x4d" => "\x8f\xb7\xbf", +"\x57\x4e" => "\xd4\xac", +"\x57\x4f" => "\xd4\xaf", +"\x57\x50" => "\xba\xc1", +"\x57\x51" => "\xb9\xa3", +"\x57\x52" => "\x8f\xb7\xc0", +"\x57\x61" => "\xd4\xb3", +"\x57\x62" => "\x8f\xb7\xc1", +"\x57\x64" => "\xba\xa5", +"\x57\x65" => "\x8f\xb7\xc2", +"\x57\x66" => "\xc3\xb3", +"\x57\x67" => "\x8f\xb7\xc3", +"\x57\x68" => "\x8f\xb7\xc4", +"\x57\x69" => "\xd4\xb0", +"\x57\x6a" => "\xc4\xda", +"\x57\x6b" => "\x8f\xb7\xc5", +"\x57\x6d" => "\x8f\xb7\xc6", +"\x57\x6e" => "\x8f\xb7\xc7", +"\x57\x6f" => "\x8f\xb7\xc8", +"\x57\x70" => "\x8f\xb7\xc9", +"\x57\x71" => "\x8f\xb7\xca", +"\x57\x73" => "\x8f\xb7\xcb", +"\x57\x74" => "\x8f\xb7\xcc", +"\x57\x75" => "\x8f\xb7\xcd", +"\x57\x77" => "\x8f\xb7\xce", +"\x57\x79" => "\x8f\xb7\xcf", +"\x57\x7a" => "\x8f\xb7\xd0", +"\x57\x7b" => "\x8f\xb7\xd1", +"\x57\x7c" => "\x8f\xb7\xd2", +"\x57\x7e" => "\x8f\xb7\xd3", +"\x57\x7f" => "\xd4\xb4", +"\x57\x81" => "\x8f\xb7\xd4", +"\x57\x82" => "\xbf\xe2", +"\x57\x83" => "\x8f\xb7\xd5", +"\x57\x88" => "\xd4\xb2", +"\x57\x89" => "\xd4\xb5", +"\x57\x8b" => "\xb7\xbf", +"\x57\x8c" => "\x8f\xb7\xd6", +"\x57\x93" => "\xd4\xb6", +"\x57\x94" => "\x8f\xb7\xd7", +"\x57\x95" => "\x8f\xb7\xe0", +"\x57\x97" => "\x8f\xb7\xd8", +"\x57\x99" => "\x8f\xb7\xd9", +"\x57\x9a" => "\x8f\xb7\xda", +"\x57\x9c" => "\x8f\xb7\xdb", +"\x57\x9d" => "\x8f\xb7\xdc", +"\x57\x9e" => "\x8f\xb7\xdd", +"\x57\x9f" => "\x8f\xb7\xde", +"\x57\xa0" => "\xd4\xb7", +"\x57\xa1" => "\x8f\xb7\xdf", +"\x57\xa2" => "\xb9\xa4", +"\x57\xa3" => "\xb3\xc0", +"\x57\xa4" => "\xd4\xb9", +"\x57\xa7" => "\x8f\xb7\xe1", +"\x57\xa8" => "\x8f\xb7\xe2", +"\x57\xa9" => "\x8f\xb7\xe3", +"\x57\xaa" => "\xd4\xba", +"\x57\xac" => "\x8f\xb7\xe4", +"\x57\xb0" => "\xd4\xbb", +"\x57\xb3" => "\xd4\xb8", +"\x57\xb8" => "\x8f\xb7\xe5", +"\x57\xbd" => "\x8f\xb7\xe6", +"\x57\xc0" => "\xd4\xb1", +"\x57\xc3" => "\xd4\xbc", +"\x57\xc6" => "\xd4\xbd", +"\x57\xc7" => "\x8f\xb7\xe7", +"\x57\xc8" => "\x8f\xb7\xe8", +"\x57\xcb" => "\xcb\xe4", +"\x57\xcc" => "\x8f\xb7\xe9", +"\x57\xce" => "\xbe\xeb", +"\x57\xcf" => "\x8f\xb7\xea", +"\x57\xd2" => "\xd4\xbf", +"\x57\xd3" => "\xd4\xc0", +"\x57\xd4" => "\xd4\xbe", +"\x57\xd5" => "\x8f\xb7\xeb", +"\x57\xd6" => "\xd4\xc2", +"\x57\xdc" => "\xc7\xb8", +"\x57\xdd" => "\x8f\xb7\xec", +"\x57\xde" => "\x8f\xb7\xed", +"\x57\xdf" => "\xb0\xe8", +"\x57\xe0" => "\xc9\xd6", +"\x57\xe1" => "\x8f\xb7\xfe", +"\x57\xe3" => "\xd4\xc3", +"\x57\xe4" => "\x8f\xb7\xee", +"\x57\xe6" => "\x8f\xb7\xef", +"\x57\xe7" => "\x8f\xb7\xf0", +"\x57\xe9" => "\x8f\xb7\xf1", +"\x57\xed" => "\x8f\xb7\xf2", +"\x57\xf0" => "\x8f\xb7\xf3", +"\x57\xf4" => "\xbe\xfd", +"\x57\xf5" => "\x8f\xb7\xf4", +"\x57\xf6" => "\x8f\xb7\xf5", +"\x57\xf7" => "\xbc\xb9", +"\x57\xf8" => "\x8f\xb7\xf6", +"\x57\xf9" => "\xc7\xdd", +"\x57\xfa" => "\xb4\xf0", +"\x57\xfc" => "\xba\xeb", +"\x57\xfd" => "\x8f\xb7\xf7", +"\x57\xfe" => "\x8f\xb7\xf8", +"\x57\xff" => "\x8f\xb7\xf9", +"\x58\x00" => "\xcb\xd9", +"\x58\x02" => "\xc6\xb2", +"\x58\x03" => "\x8f\xb7\xfa", +"\x58\x04" => "\x8f\xb7\xfb", +"\x58\x05" => "\xb7\xf8", +"\x58\x06" => "\xc2\xcf", +"\x58\x08" => "\x8f\xb7\xfc", +"\x58\x09" => "\x8f\xb7\xfd", +"\x58\x0a" => "\xd4\xc1", +"\x58\x0b" => "\xd4\xc4", +"\x58\x0c" => "\x8f\xb8\xa1", +"\x58\x0d" => "\x8f\xb8\xa2", +"\x58\x15" => "\xc2\xc4", +"\x58\x19" => "\xd4\xc5", +"\x58\x1b" => "\x8f\xb8\xa3", +"\x58\x1d" => "\xd4\xc6", +"\x58\x1e" => "\x8f\xb8\xa4", +"\x58\x1f" => "\x8f\xb8\xa5", +"\x58\x20" => "\x8f\xb8\xa6", +"\x58\x21" => "\xd4\xc8", +"\x58\x24" => "\xc4\xe9", +"\x58\x26" => "\x8f\xb8\xa7", +"\x58\x27" => "\x8f\xb8\xa8", +"\x58\x2a" => "\xb4\xae", +"\x58\x2d" => "\x8f\xb8\xa9", +"\x58\x2f" => "\xf4\xa1", +"\x58\x30" => "\xb1\xe1", +"\x58\x31" => "\xca\xf3", +"\x58\x32" => "\x8f\xb8\xaa", +"\x58\x34" => "\xbe\xec", +"\x58\x35" => "\xc5\xc8", +"\x58\x39" => "\x8f\xb8\xab", +"\x58\x3a" => "\xba\xe6", +"\x58\x3d" => "\xd4\xce", +"\x58\x3f" => "\x8f\xb8\xac", +"\x58\x40" => "\xca\xbd", +"\x58\x41" => "\xce\xdd", +"\x58\x49" => "\x8f\xb8\xad", +"\x58\x4a" => "\xb2\xf4", +"\x58\x4b" => "\xd4\xca", +"\x58\x4c" => "\x8f\xb8\xae", +"\x58\x4d" => "\x8f\xb8\xaf", +"\x58\x4f" => "\x8f\xb8\xb0", +"\x58\x50" => "\x8f\xb8\xb1", +"\x58\x51" => "\xc1\xba", +"\x58\x52" => "\xd4\xcd", +"\x58\x54" => "\xc5\xe3", +"\x58\x55" => "\x8f\xb8\xb2", +"\x58\x57" => "\xc5\xc9", +"\x58\x58" => "\xc5\xe4", +"\x58\x59" => "\xc8\xb9", +"\x58\x5a" => "\xc4\xcd", +"\x58\x5e" => "\xba\xc9", +"\x58\x5f" => "\x8f\xb8\xb3", +"\x58\x61" => "\x8f\xb8\xb4", +"\x58\x62" => "\xd4\xc9", +"\x58\x64" => "\x8f\xb8\xb5", +"\x58\x67" => "\x8f\xb8\xb6", +"\x58\x68" => "\x8f\xb8\xb7", +"\x58\x69" => "\xb1\xf6", +"\x58\x6b" => "\xc5\xb6", +"\x58\x70" => "\xd4\xcb", +"\x58\x72" => "\xd4\xc7", +"\x58\x75" => "\xbf\xd0", +"\x58\x78" => "\x8f\xb8\xb8", +"\x58\x79" => "\xd4\xcf", +"\x58\x7c" => "\x8f\xb8\xb9", +"\x58\x7e" => "\xbd\xce", +"\x58\x7f" => "\x8f\xb8\xba", +"\x58\x80" => "\x8f\xb8\xbb", +"\x58\x81" => "\x8f\xb8\xbc", +"\x58\x83" => "\xb6\xad", +"\x58\x85" => "\xd4\xd0", +"\x58\x87" => "\x8f\xb8\xbd", +"\x58\x88" => "\x8f\xb8\xbe", +"\x58\x89" => "\x8f\xb8\xbf", +"\x58\x8a" => "\x8f\xb8\xc0", +"\x58\x8c" => "\x8f\xb8\xc1", +"\x58\x8d" => "\x8f\xb8\xc2", +"\x58\x8f" => "\x8f\xb8\xc3", +"\x58\x90" => "\x8f\xb8\xc4", +"\x58\x93" => "\xca\xe8", +"\x58\x94" => "\x8f\xb8\xc5", +"\x58\x96" => "\x8f\xb8\xc6", +"\x58\x97" => "\xc1\xfd", +"\x58\x9c" => "\xc4\xc6", +"\x58\x9d" => "\x8f\xb8\xc7", +"\x58\x9f" => "\xd4\xd2", +"\x58\xa0" => "\x8f\xb8\xc8", +"\x58\xa1" => "\x8f\xb8\xc9", +"\x58\xa2" => "\x8f\xb8\xca", +"\x58\xa6" => "\x8f\xb8\xcb", +"\x58\xa8" => "\xcb\xcf", +"\x58\xa9" => "\x8f\xb8\xcc", +"\x58\xab" => "\xd4\xd3", +"\x58\xae" => "\xd4\xd8", +"\x58\xb1" => "\x8f\xb8\xcd", +"\x58\xb2" => "\x8f\xb8\xce", +"\x58\xb3" => "\xca\xaf", +"\x58\xb8" => "\xd4\xd7", +"\x58\xb9" => "\xd4\xd1", +"\x58\xba" => "\xd4\xd4", +"\x58\xbb" => "\xd4\xd6", +"\x58\xbc" => "\x8f\xb8\xd0", +"\x58\xbe" => "\xba\xa6", +"\x58\xc1" => "\xca\xc9", +"\x58\xc2" => "\x8f\xb8\xd1", +"\x58\xc4" => "\x8f\xb8\xcf", +"\x58\xc5" => "\xd4\xd9", +"\x58\xc7" => "\xc3\xc5", +"\x58\xc8" => "\x8f\xb8\xd2", +"\x58\xca" => "\xb2\xf5", +"\x58\xcc" => "\xbe\xed", +"\x58\xcd" => "\x8f\xb8\xd3", +"\x58\xce" => "\x8f\xb8\xd4", +"\x58\xd0" => "\x8f\xb8\xd5", +"\x58\xd1" => "\xd4\xdb", +"\x58\xd2" => "\x8f\xb8\xd6", +"\x58\xd3" => "\xd4\xda", +"\x58\xd4" => "\x8f\xb8\xd7", +"\x58\xd5" => "\xb9\xe8", +"\x58\xd6" => "\x8f\xb8\xd8", +"\x58\xd7" => "\xd4\xdc", +"\x58\xd8" => "\xd4\xde", +"\x58\xd9" => "\xd4\xdd", +"\x58\xda" => "\x8f\xb8\xd9", +"\x58\xdc" => "\xd4\xe0", +"\x58\xdd" => "\x8f\xb8\xda", +"\x58\xde" => "\xd4\xd5", +"\x58\xdf" => "\xd4\xe2", +"\x58\xe1" => "\x8f\xb8\xdb", +"\x58\xe2" => "\x8f\xb8\xdc", +"\x58\xe4" => "\xd4\xe1", +"\x58\xe5" => "\xd4\xdf", +"\x58\xe9" => "\x8f\xb8\xdd", +"\x58\xeb" => "\xbb\xce", +"\x58\xec" => "\xbf\xd1", +"\x58\xee" => "\xc1\xd4", +"\x58\xef" => "\xd4\xe3", +"\x58\xf0" => "\xc0\xbc", +"\x58\xf1" => "\xb0\xed", +"\x58\xf2" => "\xc7\xe4", +"\x58\xf3" => "\x8f\xb8\xde", +"\x58\xf7" => "\xc4\xdb", +"\x58\xf9" => "\xd4\xe5", +"\x58\xfa" => "\xd4\xe4", +"\x58\xfb" => "\xd4\xe6", +"\x58\xfc" => "\xd4\xe7", +"\x58\xfd" => "\xd4\xe8", +"\x59\x02" => "\xd4\xe9", +"\x59\x05" => "\x8f\xb8\xdf", +"\x59\x06" => "\x8f\xb8\xe0", +"\x59\x09" => "\xca\xd1", +"\x59\x0a" => "\xd4\xea", +"\x59\x0b" => "\x8f\xb8\xe1", +"\x59\x0c" => "\x8f\xb8\xe2", +"\x59\x0f" => "\xb2\xc6", +"\x59\x10" => "\xd4\xeb", +"\x59\x12" => "\x8f\xb8\xe3", +"\x59\x13" => "\x8f\xb8\xe4", +"\x59\x14" => "\x8f\xb8\xe5", +"\x59\x15" => "\xcd\xbc", +"\x59\x16" => "\xb3\xb0", +"\x59\x18" => "\xd2\xc9", +"\x59\x19" => "\xbd\xc8", +"\x59\x1a" => "\xc2\xbf", +"\x59\x1b" => "\xd4\xec", +"\x59\x1c" => "\xcc\xeb", +"\x59\x1d" => "\x8f\xb8\xe7", +"\x59\x21" => "\x8f\xb8\xe8", +"\x59\x22" => "\xcc\xb4", +"\x59\x23" => "\x8f\xb8\xe9", +"\x59\x24" => "\x8f\xb8\xea", +"\x59\x25" => "\xd4\xee", +"\x59\x27" => "\xc2\xe7", +"\x59\x28" => "\x8f\xb8\xeb", +"\x59\x29" => "\xc5\xb7", +"\x59\x2a" => "\xc2\xc0", +"\x59\x2b" => "\xc9\xd7", +"\x59\x2c" => "\xd4\xef", +"\x59\x2d" => "\xd4\xf0", +"\x59\x2e" => "\xb1\xfb", +"\x59\x2f" => "\x8f\xb8\xec", +"\x59\x30" => "\x8f\xb8\xed", +"\x59\x31" => "\xbc\xba", +"\x59\x32" => "\xd4\xf1", +"\x59\x33" => "\x8f\xb8\xee", +"\x59\x35" => "\x8f\xb8\xef", +"\x59\x36" => "\x8f\xb8\xf0", +"\x59\x37" => "\xb0\xd0", +"\x59\x38" => "\xd4\xf2", +"\x59\x3e" => "\xd4\xf3", +"\x59\x3f" => "\x8f\xb8\xf1", +"\x59\x43" => "\x8f\xb8\xf2", +"\x59\x44" => "\xb1\xe2", +"\x59\x46" => "\x8f\xb8\xf3", +"\x59\x47" => "\xb4\xf1", +"\x59\x48" => "\xc6\xe0", +"\x59\x49" => "\xca\xf4", +"\x59\x4e" => "\xd4\xf7", +"\x59\x4f" => "\xc1\xd5", +"\x59\x50" => "\xd4\xf6", +"\x59\x51" => "\xb7\xc0", +"\x59\x52" => "\x8f\xb8\xf4", +"\x59\x53" => "\x8f\xb8\xf5", +"\x59\x54" => "\xcb\xdb", +"\x59\x55" => "\xd4\xf5", +"\x59\x57" => "\xc5\xe5", +"\x59\x58" => "\xd4\xf9", +"\x59\x59" => "\x8f\xb8\xf6", +"\x59\x5a" => "\xd4\xf8", +"\x59\x5b" => "\x8f\xb8\xf7", +"\x59\x5d" => "\x8f\xb8\xf8", +"\x59\x5e" => "\x8f\xb8\xf9", +"\x59\x5f" => "\x8f\xb8\xfa", +"\x59\x60" => "\xd4\xfb", +"\x59\x61" => "\x8f\xb8\xfb", +"\x59\x62" => "\xd4\xfa", +"\x59\x63" => "\x8f\xb8\xfc", +"\x59\x65" => "\xb1\xfc", +"\x59\x67" => "\xd4\xfc", +"\x59\x68" => "\xbe\xa9", +"\x59\x69" => "\xd4\xfe", +"\x59\x6a" => "\xc3\xa5", +"\x59\x6b" => "\x8f\xb8\xfd", +"\x59\x6c" => "\xd4\xfd", +"\x59\x6d" => "\x8f\xb8\xfe", +"\x59\x6e" => "\xca\xb3", +"\x59\x6f" => "\x8f\xb9\xa1", +"\x59\x72" => "\x8f\xb9\xa2", +"\x59\x73" => "\xbd\xf7", +"\x59\x74" => "\xc5\xdb", +"\x59\x75" => "\x8f\xb9\xa3", +"\x59\x76" => "\x8f\xb9\xa4", +"\x59\x78" => "\xd5\xa1", +"\x59\x79" => "\x8f\xb9\xa5", +"\x59\x7b" => "\x8f\xb9\xa6", +"\x59\x7c" => "\x8f\xb9\xa7", +"\x59\x7d" => "\xb9\xa5", +"\x59\x81" => "\xd5\xa2", +"\x59\x82" => "\xc7\xa1", +"\x59\x83" => "\xc8\xde", +"\x59\x84" => "\xcc\xd1", +"\x59\x8a" => "\xc7\xa5", +"\x59\x8b" => "\x8f\xb9\xa8", +"\x59\x8c" => "\x8f\xb9\xa9", +"\x59\x8d" => "\xd5\xab", +"\x59\x8e" => "\x8f\xb9\xaa", +"\x59\x92" => "\x8f\xb9\xab", +"\x59\x93" => "\xb5\xb8", +"\x59\x95" => "\x8f\xb9\xac", +"\x59\x96" => "\xcd\xc5", +"\x59\x97" => "\x8f\xb9\xad", +"\x59\x99" => "\xcc\xaf", +"\x59\x9b" => "\xd6\xac", +"\x59\x9d" => "\xd5\xa3", +"\x59\x9f" => "\x8f\xb9\xae", +"\x59\xa3" => "\xd5\xa6", +"\x59\xa4" => "\x8f\xb9\xaf", +"\x59\xa5" => "\xc2\xc5", +"\x59\xa7" => "\x8f\xb9\xb0", +"\x59\xa8" => "\xcb\xb8", +"\x59\xac" => "\xc5\xca", +"\x59\xad" => "\x8f\xb9\xb1", +"\x59\xae" => "\x8f\xb9\xb2", +"\x59\xaf" => "\x8f\xb9\xb3", +"\x59\xb0" => "\x8f\xb9\xb4", +"\x59\xb2" => "\xd5\xa7", +"\x59\xb3" => "\x8f\xb9\xb5", +"\x59\xb7" => "\x8f\xb9\xb6", +"\x59\xb9" => "\xcb\xe5", +"\x59\xba" => "\x8f\xb9\xb7", +"\x59\xbb" => "\xba\xca", +"\x59\xbc" => "\x8f\xb9\xb8", +"\x59\xbe" => "\xbe\xaa", +"\x59\xc1" => "\x8f\xb9\xb9", +"\x59\xc3" => "\x8f\xb9\xba", +"\x59\xc4" => "\x8f\xb9\xbb", +"\x59\xc6" => "\xd5\xa8", +"\x59\xc8" => "\x8f\xb9\xbc", +"\x59\xc9" => "\xbb\xd0", +"\x59\xca" => "\x8f\xb9\xbd", +"\x59\xcb" => "\xbb\xcf", +"\x59\xcd" => "\x8f\xb9\xbe", +"\x59\xd0" => "\xb0\xb9", +"\x59\xd1" => "\xb8\xc8", +"\x59\xd2" => "\x8f\xb9\xbf", +"\x59\xd3" => "\xc0\xab", +"\x59\xd4" => "\xb0\xd1", +"\x59\xd9" => "\xd5\xac", +"\x59\xda" => "\xd5\xad", +"\x59\xdc" => "\xd5\xaa", +"\x59\xdd" => "\x8f\xb9\xc0", +"\x59\xde" => "\x8f\xb9\xc1", +"\x59\xdf" => "\x8f\xb9\xc2", +"\x59\xe3" => "\x8f\xb9\xc3", +"\x59\xe4" => "\x8f\xb9\xc4", +"\x59\xe5" => "\xb1\xb8", +"\x59\xe6" => "\xb4\xaf", +"\x59\xe7" => "\x8f\xb9\xc5", +"\x59\xe8" => "\xd5\xa9", +"\x59\xea" => "\xcc\xc5", +"\x59\xeb" => "\xc9\xb1", +"\x59\xee" => "\x8f\xb9\xc6", +"\x59\xef" => "\x8f\xb9\xc7", +"\x59\xf1" => "\x8f\xb9\xc8", +"\x59\xf2" => "\x8f\xb9\xc9", +"\x59\xf4" => "\x8f\xb9\xca", +"\x59\xf6" => "\xb0\xa8", +"\x59\xf7" => "\x8f\xb9\xcb", +"\x59\xfb" => "\xb0\xf9", +"\x59\xff" => "\xbb\xd1", +"\x5a\x00" => "\x8f\xb9\xcc", +"\x5a\x01" => "\xb0\xd2", +"\x5a\x03" => "\xb0\xa3", +"\x5a\x04" => "\x8f\xb9\xcd", +"\x5a\x09" => "\xd5\xb2", +"\x5a\x0c" => "\x8f\xb9\xce", +"\x5a\x0d" => "\x8f\xb9\xcf", +"\x5a\x0e" => "\x8f\xb9\xd0", +"\x5a\x11" => "\xd5\xb0", +"\x5a\x12" => "\x8f\xb9\xd1", +"\x5a\x13" => "\x8f\xb9\xd2", +"\x5a\x18" => "\xcc\xbc", +"\x5a\x1a" => "\xd5\xb3", +"\x5a\x1c" => "\xd5\xb1", +"\x5a\x1e" => "\x8f\xb9\xd3", +"\x5a\x1f" => "\xd5\xaf", +"\x5a\x20" => "\xbf\xb1", +"\x5a\x23" => "\x8f\xb9\xd4", +"\x5a\x24" => "\x8f\xb9\xd5", +"\x5a\x25" => "\xd5\xae", +"\x5a\x27" => "\x8f\xb9\xd6", +"\x5a\x28" => "\x8f\xb9\xd7", +"\x5a\x29" => "\xca\xda", +"\x5a\x2a" => "\x8f\xb9\xd8", +"\x5a\x2d" => "\x8f\xb9\xd9", +"\x5a\x2f" => "\xb8\xe4", +"\x5a\x30" => "\x8f\xb9\xda", +"\x5a\x35" => "\xd5\xb7", +"\x5a\x36" => "\xd5\xb8", +"\x5a\x3c" => "\xbe\xab", +"\x5a\x40" => "\xd5\xb4", +"\x5a\x41" => "\xcf\xac", +"\x5a\x44" => "\x8f\xb9\xdb", +"\x5a\x45" => "\x8f\xb9\xdc", +"\x5a\x46" => "\xc7\xcc", +"\x5a\x47" => "\x8f\xb9\xdd", +"\x5a\x48" => "\x8f\xb9\xde", +"\x5a\x49" => "\xd5\xb6", +"\x5a\x4c" => "\x8f\xb9\xdf", +"\x5a\x50" => "\x8f\xb9\xe0", +"\x5a\x55" => "\x8f\xb9\xe1", +"\x5a\x5a" => "\xba\xa7", +"\x5a\x5e" => "\x8f\xb9\xe2", +"\x5a\x62" => "\xd5\xb9", +"\x5a\x63" => "\x8f\xb9\xe3", +"\x5a\x65" => "\x8f\xb9\xe4", +"\x5a\x66" => "\xc9\xd8", +"\x5a\x67" => "\x8f\xb9\xe5", +"\x5a\x6a" => "\xd5\xba", +"\x5a\x6c" => "\xd5\xb5", +"\x5a\x6d" => "\x8f\xb9\xe6", +"\x5a\x77" => "\x8f\xb9\xe7", +"\x5a\x7a" => "\x8f\xb9\xe8", +"\x5a\x7b" => "\x8f\xb9\xe9", +"\x5a\x7e" => "\x8f\xb9\xea", +"\x5a\x7f" => "\xcc\xbb", +"\x5a\x8b" => "\x8f\xb9\xeb", +"\x5a\x90" => "\x8f\xb9\xec", +"\x5a\x92" => "\xc7\xde", +"\x5a\x93" => "\x8f\xb9\xed", +"\x5a\x96" => "\x8f\xb9\xee", +"\x5a\x99" => "\x8f\xb9\xef", +"\x5a\x9a" => "\xd5\xbb", +"\x5a\x9b" => "\xc9\xb2", +"\x5a\x9c" => "\x8f\xb9\xf0", +"\x5a\x9e" => "\x8f\xb9\xf1", +"\x5a\x9f" => "\x8f\xb9\xf2", +"\x5a\xa0" => "\x8f\xb9\xf3", +"\x5a\xa2" => "\x8f\xb9\xf4", +"\x5a\xa7" => "\x8f\xb9\xf5", +"\x5a\xac" => "\x8f\xb9\xf6", +"\x5a\xb1" => "\x8f\xb9\xf7", +"\x5a\xb2" => "\x8f\xb9\xf8", +"\x5a\xb3" => "\x8f\xb9\xf9", +"\x5a\xb5" => "\x8f\xb9\xfa", +"\x5a\xb8" => "\x8f\xb9\xfb", +"\x5a\xba" => "\x8f\xb9\xfc", +"\x5a\xbb" => "\x8f\xb9\xfd", +"\x5a\xbc" => "\xd5\xbc", +"\x5a\xbd" => "\xd5\xc0", +"\x5a\xbe" => "\xd5\xbd", +"\x5a\xbf" => "\x8f\xb9\xfe", +"\x5a\xc1" => "\xb2\xc7", +"\x5a\xc2" => "\xd5\xbf", +"\x5a\xc4" => "\x8f\xba\xa1", +"\x5a\xc6" => "\x8f\xba\xa2", +"\x5a\xc8" => "\x8f\xba\xa3", +"\x5a\xc9" => "\xbc\xbb", +"\x5a\xcb" => "\xd5\xbe", +"\x5a\xcc" => "\xb7\xf9", +"\x5a\xcf" => "\x8f\xba\xa4", +"\x5a\xd0" => "\xd5\xcc", +"\x5a\xd6" => "\xd5\xc5", +"\x5a\xd7" => "\xd5\xc2", +"\x5a\xda" => "\x8f\xba\xa5", +"\x5a\xdc" => "\x8f\xba\xa6", +"\x5a\xe0" => "\x8f\xba\xa7", +"\x5a\xe1" => "\xc3\xe4", +"\x5a\xe3" => "\xd5\xc1", +"\x5a\xe5" => "\x8f\xba\xa8", +"\x5a\xe6" => "\xd5\xc3", +"\x5a\xe9" => "\xd5\xc4", +"\x5a\xea" => "\x8f\xba\xa9", +"\x5a\xee" => "\x8f\xba\xaa", +"\x5a\xf5" => "\x8f\xba\xab", +"\x5a\xf6" => "\x8f\xba\xac", +"\x5a\xfa" => "\xd5\xc6", +"\x5a\xfb" => "\xd5\xc7", +"\x5a\xfd" => "\x8f\xba\xad", +"\x5b\x00" => "\x8f\xba\xae", +"\x5b\x01" => "\x8f\xba\xaf", +"\x5b\x08" => "\x8f\xba\xb0", +"\x5b\x09" => "\xb4\xf2", +"\x5b\x0b" => "\xd5\xc9", +"\x5b\x0c" => "\xd5\xc8", +"\x5b\x16" => "\xd5\xca", +"\x5b\x17" => "\x8f\xba\xb1", +"\x5b\x19" => "\x8f\xba\xb3", +"\x5b\x1b" => "\x8f\xba\xb4", +"\x5b\x1d" => "\x8f\xba\xb5", +"\x5b\x21" => "\x8f\xba\xb6", +"\x5b\x22" => "\xbe\xee", +"\x5b\x25" => "\x8f\xba\xb7", +"\x5b\x2a" => "\xd5\xcd", +"\x5b\x2c" => "\xc4\xdc", +"\x5b\x2d" => "\x8f\xba\xb8", +"\x5b\x30" => "\xb1\xc5", +"\x5b\x32" => "\xd5\xcb", +"\x5b\x34" => "\x8f\xba\xb2", +"\x5b\x36" => "\xd5\xce", +"\x5b\x38" => "\x8f\xba\xb9", +"\x5b\x3e" => "\xd5\xcf", +"\x5b\x40" => "\xd5\xd2", +"\x5b\x41" => "\x8f\xba\xba", +"\x5b\x43" => "\xd5\xd0", +"\x5b\x45" => "\xd5\xd1", +"\x5b\x4b" => "\x8f\xba\xbb", +"\x5b\x4c" => "\x8f\xba\xbc", +"\x5b\x50" => "\xbb\xd2", +"\x5b\x51" => "\xd5\xd3", +"\x5b\x52" => "\x8f\xba\xbd", +"\x5b\x54" => "\xb9\xa6", +"\x5b\x55" => "\xd5\xd4", +"\x5b\x56" => "\x8f\xba\xbe", +"\x5b\x57" => "\xbb\xfa", +"\x5b\x58" => "\xc2\xb8", +"\x5b\x5a" => "\xd5\xd5", +"\x5b\x5b" => "\xd5\xd6", +"\x5b\x5c" => "\xbb\xda", +"\x5b\x5d" => "\xb9\xa7", +"\x5b\x5e" => "\x8f\xba\xbf", +"\x5b\x5f" => "\xcc\xd2", +"\x5b\x63" => "\xb5\xa8", +"\x5b\x64" => "\xb8\xc9", +"\x5b\x65" => "\xd5\xd7", +"\x5b\x66" => "\xb3\xd8", +"\x5b\x68" => "\x8f\xba\xc0", +"\x5b\x69" => "\xd5\xd8", +"\x5b\x6b" => "\xc2\xb9", +"\x5b\x6e" => "\x8f\xba\xc1", +"\x5b\x6f" => "\x8f\xba\xc2", +"\x5b\x70" => "\xd5\xd9", +"\x5b\x71" => "\xd6\xa3", +"\x5b\x73" => "\xd5\xda", +"\x5b\x75" => "\xd5\xdb", +"\x5b\x78" => "\xd5\xdc", +"\x5b\x7a" => "\xd5\xde", +"\x5b\x7c" => "\x8f\xba\xc3", +"\x5b\x7d" => "\x8f\xba\xc4", +"\x5b\x7e" => "\x8f\xba\xc5", +"\x5b\x7f" => "\x8f\xba\xc6", +"\x5b\x80" => "\xd5\xdf", +"\x5b\x81" => "\x8f\xba\xc7", +"\x5b\x83" => "\xd5\xe0", +"\x5b\x84" => "\x8f\xba\xc8", +"\x5b\x85" => "\xc2\xf0", +"\x5b\x86" => "\x8f\xba\xc9", +"\x5b\x87" => "\xb1\xa7", +"\x5b\x88" => "\xbc\xe9", +"\x5b\x89" => "\xb0\xc2", +"\x5b\x8a" => "\x8f\xba\xca", +"\x5b\x8b" => "\xc1\xd7", +"\x5b\x8c" => "\xb4\xb0", +"\x5b\x8d" => "\xbc\xb5", +"\x5b\x8e" => "\x8f\xba\xcb", +"\x5b\x8f" => "\xb9\xa8", +"\x5b\x90" => "\x8f\xba\xcc", +"\x5b\x91" => "\x8f\xba\xcd", +"\x5b\x93" => "\x8f\xba\xce", +"\x5b\x94" => "\x8f\xba\xcf", +"\x5b\x95" => "\xc5\xe6", +"\x5b\x96" => "\x8f\xba\xd0", +"\x5b\x97" => "\xbd\xa1", +"\x5b\x98" => "\xb4\xb1", +"\x5b\x99" => "\xc3\xe8", +"\x5b\x9a" => "\xc4\xea", +"\x5b\x9b" => "\xb0\xb8", +"\x5b\x9c" => "\xb5\xb9", +"\x5b\x9d" => "\xca\xf5", +"\x5b\x9f" => "\xbc\xc2", +"\x5b\xa2" => "\xb5\xd2", +"\x5b\xa3" => "\xc0\xeb", +"\x5b\xa4" => "\xbc\xbc", +"\x5b\xa5" => "\xcd\xa8", +"\x5b\xa6" => "\xd5\xe1", +"\x5b\xa8" => "\x8f\xba\xd1", +"\x5b\xa9" => "\x8f\xba\xd2", +"\x5b\xac" => "\x8f\xba\xd3", +"\x5b\xad" => "\x8f\xba\xd4", +"\x5b\xae" => "\xb5\xdc", +"\x5b\xaf" => "\x8f\xba\xd5", +"\x5b\xb0" => "\xba\xcb", +"\x5b\xb1" => "\x8f\xba\xd6", +"\x5b\xb2" => "\x8f\xba\xd7", +"\x5b\xb3" => "\xb3\xb2", +"\x5b\xb4" => "\xb1\xe3", +"\x5b\xb5" => "\xbe\xac", +"\x5b\xb6" => "\xb2\xc8", +"\x5b\xb7" => "\x8f\xba\xd8", +"\x5b\xb8" => "\xd5\xe2", +"\x5b\xb9" => "\xcd\xc6", +"\x5b\xba" => "\x8f\xba\xd9", +"\x5b\xbc" => "\x8f\xba\xda", +"\x5b\xbf" => "\xbd\xc9", +"\x5b\xc0" => "\x8f\xba\xdb", +"\x5b\xc1" => "\x8f\xba\xdc", +"\x5b\xc2" => "\xbc\xe4", +"\x5b\xc3" => "\xd5\xe3", +"\x5b\xc4" => "\xb4\xf3", +"\x5b\xc5" => "\xc6\xd2", +"\x5b\xc6" => "\xcc\xa9", +"\x5b\xc7" => "\xd5\xe4", +"\x5b\xc9" => "\xd5\xe5", +"\x5b\xcc" => "\xc9\xd9", +"\x5b\xcd" => "\x8f\xba\xdd", +"\x5b\xcf" => "\x8f\xba\xde", +"\x5b\xd0" => "\xd5\xe7", +"\x5b\xd2" => "\xb4\xa8", +"\x5b\xd3" => "\xb6\xf7", +"\x5b\xd4" => "\xd5\xe6", +"\x5b\xd6" => "\x8f\xba\xdf", +"\x5b\xd7" => "\x8f\xba\xe0", +"\x5b\xd8" => "\x8f\xba\xe1", +"\x5b\xd9" => "\x8f\xba\xe2", +"\x5b\xda" => "\x8f\xba\xe3", +"\x5b\xdb" => "\xb4\xb2", +"\x5b\xdd" => "\xbf\xb2", +"\x5b\xde" => "\xd5\xeb", +"\x5b\xdf" => "\xbb\xa1", +"\x5b\xe0" => "\x8f\xba\xe4", +"\x5b\xe1" => "\xb2\xc9", +"\x5b\xe2" => "\xd5\xea", +"\x5b\xe4" => "\xd5\xe8", +"\x5b\xe5" => "\xd5\xec", +"\x5b\xe6" => "\xd5\xe9", +"\x5b\xe7" => "\xc7\xab", +"\x5b\xe8" => "\xdc\xcd", +"\x5b\xe9" => "\xbf\xb3", +"\x5b\xeb" => "\xd5\xed", +"\x5b\xee" => "\xce\xc0", +"\x5b\xef" => "\x8f\xba\xe5", +"\x5b\xf0" => "\xd5\xee", +"\x5b\xf1" => "\x8f\xba\xe6", +"\x5b\xf3" => "\xd5\xf0", +"\x5b\xf4" => "\x8f\xba\xe7", +"\x5b\xf5" => "\xc3\xfe", +"\x5b\xf6" => "\xd5\xef", +"\x5b\xf8" => "\xc0\xa3", +"\x5b\xfa" => "\xbb\xfb", +"\x5b\xfd" => "\x8f\xba\xe8", +"\x5b\xfe" => "\xc2\xd0", +"\x5b\xff" => "\xbc\xf7", +"\x5c\x01" => "\xc9\xf5", +"\x5c\x02" => "\xc0\xec", +"\x5c\x04" => "\xbc\xcd", +"\x5c\x05" => "\xd5\xf1", +"\x5c\x06" => "\xbe\xad", +"\x5c\x07" => "\xd5\xf2", +"\x5c\x08" => "\xd5\xf3", +"\x5c\x09" => "\xb0\xd3", +"\x5c\x0a" => "\xc2\xba", +"\x5c\x0b" => "\xbf\xd2", +"\x5c\x0c" => "\x8f\xba\xe9", +"\x5c\x0d" => "\xd5\xf4", +"\x5c\x0e" => "\xc6\xb3", +"\x5c\x0f" => "\xbe\xae", +"\x5c\x11" => "\xbe\xaf", +"\x5c\x13" => "\xd5\xf5", +"\x5c\x16" => "\xc0\xed", +"\x5c\x17" => "\x8f\xba\xea", +"\x5c\x1a" => "\xbe\xb0", +"\x5c\x1e" => "\x8f\xba\xeb", +"\x5c\x1f" => "\x8f\xba\xec", +"\x5c\x20" => "\xd5\xf6", +"\x5c\x22" => "\xd5\xf7", +"\x5c\x23" => "\x8f\xba\xed", +"\x5c\x24" => "\xcc\xe0", +"\x5c\x26" => "\x8f\xba\xee", +"\x5c\x28" => "\xd5\xf8", +"\x5c\x29" => "\x8f\xba\xef", +"\x5c\x2b" => "\x8f\xba\xf0", +"\x5c\x2c" => "\x8f\xba\xf1", +"\x5c\x2d" => "\xb6\xc6", +"\x5c\x2e" => "\x8f\xba\xf2", +"\x5c\x30" => "\x8f\xba\xf3", +"\x5c\x31" => "\xbd\xa2", +"\x5c\x32" => "\x8f\xba\xf4", +"\x5c\x35" => "\x8f\xba\xf5", +"\x5c\x36" => "\x8f\xba\xf6", +"\x5c\x38" => "\xd5\xf9", +"\x5c\x39" => "\xd5\xfa", +"\x5c\x3a" => "\xbc\xdc", +"\x5c\x3b" => "\xbf\xac", +"\x5c\x3c" => "\xc6\xf4", +"\x5c\x3d" => "\xbf\xd4", +"\x5c\x3e" => "\xc8\xf8", +"\x5c\x3f" => "\xc7\xa2", +"\x5c\x40" => "\xb6\xc9", +"\x5c\x41" => "\xd5\xfb", +"\x5c\x45" => "\xb5\xef", +"\x5c\x46" => "\xd5\xfc", +"\x5c\x48" => "\xb6\xfe", +"\x5c\x4a" => "\xc6\xcf", +"\x5c\x4b" => "\xb2\xb0", +"\x5c\x4d" => "\xbb\xd3", +"\x5c\x4e" => "\xd5\xfd", +"\x5c\x4f" => "\xd6\xa2", +"\x5c\x50" => "\xd6\xa1", +"\x5c\x51" => "\xb6\xfd", +"\x5c\x53" => "\xd5\xfe", +"\x5c\x55" => "\xc5\xb8", +"\x5c\x59" => "\x8f\xba\xf7", +"\x5c\x5a" => "\x8f\xba\xf8", +"\x5c\x5c" => "\x8f\xba\xf9", +"\x5c\x5e" => "\xc2\xb0", +"\x5c\x60" => "\xc5\xcb", +"\x5c\x61" => "\xbc\xc8", +"\x5c\x62" => "\x8f\xba\xfa", +"\x5c\x63" => "\x8f\xba\xfb", +"\x5c\x64" => "\xc1\xd8", +"\x5c\x65" => "\xcd\xfa", +"\x5c\x67" => "\x8f\xba\xfc", +"\x5c\x68" => "\x8f\xba\xfd", +"\x5c\x69" => "\x8f\xba\xfe", +"\x5c\x6c" => "\xd6\xa4", +"\x5c\x6d" => "\x8f\xbb\xa1", +"\x5c\x6e" => "\xd6\xa5", +"\x5c\x6f" => "\xc6\xd6", +"\x5c\x70" => "\x8f\xbb\xa2", +"\x5c\x71" => "\xbb\xb3", +"\x5c\x74" => "\x8f\xbb\xa3", +"\x5c\x75" => "\x8f\xbb\xa4", +"\x5c\x76" => "\xd6\xa7", +"\x5c\x79" => "\xd6\xa8", +"\x5c\x7a" => "\x8f\xbb\xa5", +"\x5c\x7b" => "\x8f\xbb\xa6", +"\x5c\x7c" => "\x8f\xbb\xa7", +"\x5c\x7d" => "\x8f\xbb\xa8", +"\x5c\x87" => "\x8f\xbb\xa9", +"\x5c\x88" => "\x8f\xbb\xaa", +"\x5c\x8a" => "\x8f\xbb\xab", +"\x5c\x8c" => "\xd6\xa9", +"\x5c\x8f" => "\x8f\xbb\xac", +"\x5c\x90" => "\xb4\xf4", +"\x5c\x91" => "\xd6\xaa", +"\x5c\x92" => "\x8f\xbb\xad", +"\x5c\x94" => "\xd6\xab", +"\x5c\x9d" => "\x8f\xbb\xae", +"\x5c\x9f" => "\x8f\xbb\xaf", +"\x5c\xa0" => "\x8f\xbb\xb0", +"\x5c\xa1" => "\xb2\xac", +"\x5c\xa2" => "\x8f\xbb\xb1", +"\x5c\xa3" => "\x8f\xbb\xb2", +"\x5c\xa6" => "\x8f\xbb\xb3", +"\x5c\xa8" => "\xc1\xbb", +"\x5c\xa9" => "\xb4\xe4", +"\x5c\xaa" => "\x8f\xbb\xb4", +"\x5c\xab" => "\xd6\xad", +"\x5c\xac" => "\xcc\xa8", +"\x5c\xb1" => "\xc2\xd2", +"\x5c\xb2" => "\x8f\xbb\xb5", +"\x5c\xb3" => "\xb3\xd9", +"\x5c\xb4" => "\x8f\xbb\xb6", +"\x5c\xb5" => "\x8f\xbb\xb7", +"\x5c\xb6" => "\xd6\xaf", +"\x5c\xb7" => "\xd6\xb1", +"\x5c\xb8" => "\xb4\xdf", +"\x5c\xba" => "\x8f\xbb\xb8", +"\x5c\xbb" => "\xd6\xae", +"\x5c\xbc" => "\xd6\xb0", +"\x5c\xbe" => "\xd6\xb3", +"\x5c\xc5" => "\xd6\xb2", +"\x5c\xc7" => "\xd6\xb4", +"\x5c\xc9" => "\x8f\xbb\xb9", +"\x5c\xcb" => "\x8f\xbb\xba", +"\x5c\xd2" => "\x8f\xbb\xbb", +"\x5c\xd7" => "\x8f\xbb\xbd", +"\x5c\xd9" => "\xd6\xb5", +"\x5c\xdd" => "\x8f\xbb\xbc", +"\x5c\xe0" => "\xc6\xbd", +"\x5c\xe1" => "\xb6\xae", +"\x5c\xe8" => "\xb2\xe5", +"\x5c\xe9" => "\xd6\xb6", +"\x5c\xea" => "\xd6\xbb", +"\x5c\xed" => "\xd6\xb9", +"\x5c\xee" => "\x8f\xbb\xbe", +"\x5c\xef" => "\xca\xf7", +"\x5c\xf0" => "\xca\xf6", +"\x5c\xf1" => "\x8f\xbb\xbf", +"\x5c\xf2" => "\x8f\xbb\xc0", +"\x5c\xf4" => "\x8f\xbb\xc1", +"\x5c\xf6" => "\xc5\xe7", +"\x5c\xfa" => "\xd6\xb8", +"\x5c\xfb" => "\xbd\xd4", +"\x5c\xfd" => "\xd6\xb7", +"\x5d\x01" => "\x8f\xbb\xc2", +"\x5d\x06" => "\x8f\xbb\xc3", +"\x5d\x07" => "\xbf\xf2", +"\x5d\x0b" => "\xd6\xbc", +"\x5d\x0d" => "\x8f\xbb\xc4", +"\x5d\x0e" => "\xba\xea", +"\x5d\x11" => "\xd6\xc2", +"\x5d\x12" => "\x8f\xbb\xc5", +"\x5d\x14" => "\xd6\xc3", +"\x5d\x15" => "\xd6\xbd", +"\x5d\x16" => "\xb3\xb3", +"\x5d\x17" => "\xd6\xbe", +"\x5d\x18" => "\xd6\xc7", +"\x5d\x19" => "\xd6\xc6", +"\x5d\x1a" => "\xd6\xc5", +"\x5d\x1b" => "\xd6\xc1", +"\x5d\x1f" => "\xd6\xc0", +"\x5d\x22" => "\xd6\xc4", +"\x5d\x23" => "\x8f\xbb\xc7", +"\x5d\x24" => "\x8f\xbb\xc8", +"\x5d\x26" => "\x8f\xbb\xc9", +"\x5d\x27" => "\x8f\xbb\xca", +"\x5d\x29" => "\xca\xf8", +"\x5d\x2b" => "\x8f\xbb\xc6", +"\x5d\x31" => "\x8f\xbb\xcb", +"\x5d\x34" => "\x8f\xbb\xcc", +"\x5d\x39" => "\x8f\xbb\xcd", +"\x5d\x3d" => "\x8f\xbb\xce", +"\x5d\x3f" => "\x8f\xbb\xcf", +"\x5d\x42" => "\x8f\xbb\xd0", +"\x5d\x43" => "\x8f\xbb\xd1", +"\x5d\x46" => "\x8f\xbb\xd2", +"\x5d\x48" => "\x8f\xbb\xd3", +"\x5d\x4a" => "\x8f\xbb\xd7", +"\x5d\x4b" => "\xd6\xcb", +"\x5d\x4c" => "\xd6\xc8", +"\x5d\x4e" => "\xd6\xca", +"\x5d\x50" => "\xcd\xf2", +"\x5d\x51" => "\x8f\xbb\xd5", +"\x5d\x52" => "\xd6\xc9", +"\x5d\x55" => "\x8f\xbb\xd4", +"\x5d\x59" => "\x8f\xbb\xd6", +"\x5d\x5c" => "\xd6\xbf", +"\x5d\x5f" => "\x8f\xbb\xd8", +"\x5d\x60" => "\x8f\xbb\xd9", +"\x5d\x61" => "\x8f\xbb\xda", +"\x5d\x62" => "\x8f\xbb\xdb", +"\x5d\x64" => "\x8f\xbb\xdc", +"\x5d\x69" => "\xbf\xf3", +"\x5d\x6a" => "\x8f\xbb\xdd", +"\x5d\x6c" => "\xd6\xcc", +"\x5d\x6d" => "\x8f\xbb\xde", +"\x5d\x6f" => "\xba\xb7", +"\x5d\x70" => "\x8f\xbb\xdf", +"\x5d\x73" => "\xd6\xcd", +"\x5d\x76" => "\xd6\xce", +"\x5d\x79" => "\x8f\xbb\xe0", +"\x5d\x7a" => "\x8f\xbb\xe1", +"\x5d\x7e" => "\x8f\xbb\xe2", +"\x5d\x7f" => "\x8f\xbb\xe3", +"\x5d\x81" => "\x8f\xbb\xe4", +"\x5d\x82" => "\xd6\xd1", +"\x5d\x83" => "\x8f\xbb\xe5", +"\x5d\x84" => "\xd6\xd0", +"\x5d\x87" => "\xd6\xcf", +"\x5d\x88" => "\x8f\xbb\xe6", +"\x5d\x8a" => "\x8f\xbb\xe7", +"\x5d\x8b" => "\xc5\xe8", +"\x5d\x8c" => "\xd6\xba", +"\x5d\x90" => "\xd6\xd7", +"\x5d\x92" => "\x8f\xbb\xe8", +"\x5d\x93" => "\x8f\xbb\xe9", +"\x5d\x94" => "\x8f\xbb\xea", +"\x5d\x95" => "\x8f\xbb\xeb", +"\x5d\x99" => "\x8f\xbb\xec", +"\x5d\x9b" => "\x8f\xbb\xed", +"\x5d\x9d" => "\xd6\xd3", +"\x5d\x9f" => "\x8f\xbb\xee", +"\x5d\xa0" => "\x8f\xbb\xef", +"\x5d\xa2" => "\xd6\xd2", +"\x5d\xa7" => "\x8f\xbb\xf0", +"\x5d\xab" => "\x8f\xbb\xf1", +"\x5d\xac" => "\xd6\xd4", +"\x5d\xae" => "\xd6\xd5", +"\x5d\xb0" => "\x8f\xbb\xf2", +"\x5d\xb2" => "\x8f\xe6\xf4", +"\x5d\xb4" => "\x8f\xbb\xf3", +"\x5d\xb7" => "\xd6\xd8", +"\x5d\xb8" => "\x8f\xbb\xf4", +"\x5d\xb9" => "\x8f\xbb\xf5", +"\x5d\xba" => "\xce\xe6", +"\x5d\xbc" => "\xd6\xd9", +"\x5d\xbd" => "\xd6\xd6", +"\x5d\xc3" => "\x8f\xbb\xf6", +"\x5d\xc7" => "\x8f\xbb\xf7", +"\x5d\xc9" => "\xd6\xda", +"\x5d\xcb" => "\x8f\xbb\xf8", +"\x5d\xcc" => "\xb4\xe0", +"\x5d\xcd" => "\xd6\xdb", +"\x5d\xce" => "\x8f\xbb\xfa", +"\x5d\xd0" => "\x8f\xbb\xf9", +"\x5d\xd2" => "\xd6\xdd", +"\x5d\xd3" => "\xd6\xdc", +"\x5d\xd6" => "\xd6\xde", +"\x5d\xd8" => "\x8f\xbb\xfb", +"\x5d\xd9" => "\x8f\xbb\xfc", +"\x5d\xdb" => "\xd6\xdf", +"\x5d\xdd" => "\xc0\xee", +"\x5d\xde" => "\xbd\xa3", +"\x5d\xe0" => "\x8f\xbb\xfd", +"\x5d\xe1" => "\xbd\xe4", +"\x5d\xe3" => "\xc1\xe3", +"\x5d\xe4" => "\x8f\xbb\xfe", +"\x5d\xe5" => "\xb9\xa9", +"\x5d\xe6" => "\xba\xb8", +"\x5d\xe7" => "\xb9\xaa", +"\x5d\xe8" => "\xb5\xf0", +"\x5d\xe9" => "\x8f\xbc\xa1", +"\x5d\xeb" => "\xd6\xe0", +"\x5d\xee" => "\xba\xb9", +"\x5d\xf1" => "\xb8\xca", +"\x5d\xf2" => "\xd6\xe1", +"\x5d\xf3" => "\xcc\xa6", +"\x5d\xf4" => "\xc7\xc3", +"\x5d\xf5" => "\xd6\xe2", +"\x5d\xf7" => "\xb9\xab", +"\x5d\xf8" => "\x8f\xbc\xa2", +"\x5d\xf9" => "\x8f\xbc\xa3", +"\x5d\xfb" => "\xb4\xac", +"\x5d\xfd" => "\xc3\xa7", +"\x5d\xfe" => "\xb6\xd2", +"\x5e\x00" => "\x8f\xbc\xa4", +"\x5e\x02" => "\xbb\xd4", +"\x5e\x03" => "\xc9\xdb", +"\x5e\x06" => "\xc8\xc1", +"\x5e\x07" => "\x8f\xbc\xa5", +"\x5e\x0b" => "\xd6\xe3", +"\x5e\x0c" => "\xb4\xf5", +"\x5e\x0d" => "\x8f\xbc\xa6", +"\x5e\x11" => "\xd6\xe6", +"\x5e\x12" => "\x8f\xbc\xa7", +"\x5e\x14" => "\x8f\xbc\xa8", +"\x5e\x15" => "\x8f\xbc\xa9", +"\x5e\x16" => "\xc4\xa1", +"\x5e\x18" => "\x8f\xbc\xaa", +"\x5e\x19" => "\xd6\xe5", +"\x5e\x1a" => "\xd6\xe4", +"\x5e\x1b" => "\xd6\xe7", +"\x5e\x1d" => "\xc4\xeb", +"\x5e\x1f" => "\x8f\xbc\xab", +"\x5e\x20" => "\x8f\xbc\xac", +"\x5e\x25" => "\xbf\xe3", +"\x5e\x28" => "\x8f\xbc\xae", +"\x5e\x2b" => "\xbb\xd5", +"\x5e\x2d" => "\xc0\xca", +"\x5e\x2e" => "\x8f\xbc\xad", +"\x5e\x2f" => "\xc2\xd3", +"\x5e\x30" => "\xb5\xa2", +"\x5e\x32" => "\x8f\xbc\xaf", +"\x5e\x33" => "\xc4\xa2", +"\x5e\x35" => "\x8f\xbc\xb0", +"\x5e\x36" => "\xd6\xe8", +"\x5e\x37" => "\xd6\xe9", +"\x5e\x38" => "\xbe\xef", +"\x5e\x3d" => "\xcb\xb9", +"\x5e\x3e" => "\x8f\xbc\xb1", +"\x5e\x40" => "\xd6\xec", +"\x5e\x43" => "\xd6\xeb", +"\x5e\x44" => "\xd6\xea", +"\x5e\x45" => "\xc9\xfd", +"\x5e\x47" => "\xd6\xf3", +"\x5e\x49" => "\x8f\xbc\xb4", +"\x5e\x4b" => "\x8f\xbc\xb2", +"\x5e\x4c" => "\xcb\xda", +"\x5e\x4e" => "\xd6\xed", +"\x5e\x50" => "\x8f\xbc\xb3", +"\x5e\x51" => "\x8f\xbc\xb5", +"\x5e\x54" => "\xd6\xef", +"\x5e\x55" => "\xcb\xeb", +"\x5e\x56" => "\x8f\xbc\xb6", +"\x5e\x57" => "\xd6\xee", +"\x5e\x58" => "\x8f\xbc\xb7", +"\x5e\x5b" => "\x8f\xbc\xb8", +"\x5e\x5c" => "\x8f\xbc\xb9", +"\x5e\x5e" => "\x8f\xbc\xba", +"\x5e\x5f" => "\xd6\xf0", +"\x5e\x61" => "\xc8\xa8", +"\x5e\x62" => "\xd6\xf1", +"\x5e\x63" => "\xca\xbe", +"\x5e\x64" => "\xd6\xf2", +"\x5e\x68" => "\x8f\xbc\xbb", +"\x5e\x6a" => "\x8f\xbc\xbc", +"\x5e\x6b" => "\x8f\xbc\xbd", +"\x5e\x6c" => "\x8f\xbc\xbe", +"\x5e\x6d" => "\x8f\xbc\xbf", +"\x5e\x6e" => "\x8f\xbc\xc0", +"\x5e\x70" => "\x8f\xbc\xc1", +"\x5e\x72" => "\xb4\xb3", +"\x5e\x73" => "\xca\xbf", +"\x5e\x74" => "\xc7\xaf", +"\x5e\x75" => "\xd6\xf4", +"\x5e\x76" => "\xd6\xf5", +"\x5e\x78" => "\xb9\xac", +"\x5e\x79" => "\xb4\xb4", +"\x5e\x7a" => "\xd6\xf6", +"\x5e\x7b" => "\xb8\xb8", +"\x5e\x7c" => "\xcd\xc4", +"\x5e\x7d" => "\xcd\xa9", +"\x5e\x7e" => "\xb4\xf6", +"\x5e\x7f" => "\xd6\xf8", +"\x5e\x80" => "\x8f\xbc\xc2", +"\x5e\x81" => "\xc4\xa3", +"\x5e\x83" => "\xb9\xad", +"\x5e\x84" => "\xbe\xb1", +"\x5e\x87" => "\xc8\xdf", +"\x5e\x8a" => "\xbe\xb2", +"\x5e\x8b" => "\x8f\xbc\xc3", +"\x5e\x8e" => "\x8f\xbc\xc4", +"\x5e\x8f" => "\xbd\xf8", +"\x5e\x95" => "\xc4\xec", +"\x5e\x96" => "\xca\xf9", +"\x5e\x97" => "\xc5\xb9", +"\x5e\x9a" => "\xb9\xae", +"\x5e\x9c" => "\xc9\xdc", +"\x5e\xa0" => "\xd6\xf9", +"\x5e\xa2" => "\x8f\xbc\xc5", +"\x5e\xa4" => "\x8f\xbc\xc6", +"\x5e\xa5" => "\x8f\xbc\xc7", +"\x5e\xa6" => "\xc5\xd9", +"\x5e\xa7" => "\xba\xc2", +"\x5e\xa8" => "\x8f\xbc\xc8", +"\x5e\xaa" => "\x8f\xbc\xc9", +"\x5e\xab" => "\xb8\xcb", +"\x5e\xac" => "\x8f\xbc\xca", +"\x5e\xad" => "\xc4\xed", +"\x5e\xb1" => "\x8f\xbc\xcb", +"\x5e\xb3" => "\x8f\xbc\xcc", +"\x5e\xb5" => "\xb0\xc3", +"\x5e\xb6" => "\xbd\xee", +"\x5e\xb7" => "\xb9\xaf", +"\x5e\xb8" => "\xcd\xc7", +"\x5e\xbd" => "\x8f\xbc\xcd", +"\x5e\xbe" => "\x8f\xbc\xce", +"\x5e\xbf" => "\x8f\xbc\xcf", +"\x5e\xc1" => "\xd6\xfa", +"\x5e\xc2" => "\xd6\xfb", +"\x5e\xc3" => "\xc7\xd1", +"\x5e\xc6" => "\x8f\xbc\xd0", +"\x5e\xc8" => "\xd6\xfc", +"\x5e\xc9" => "\xce\xf7", +"\x5e\xca" => "\xcf\xad", +"\x5e\xcb" => "\x8f\xbc\xd2", +"\x5e\xcc" => "\x8f\xbc\xd1", +"\x5e\xce" => "\x8f\xbc\xd3", +"\x5e\xcf" => "\xd6\xfe", +"\x5e\xd0" => "\xd6\xfd", +"\x5e\xd1" => "\x8f\xbc\xd4", +"\x5e\xd2" => "\x8f\xbc\xd5", +"\x5e\xd3" => "\xb3\xc7", +"\x5e\xd4" => "\x8f\xbc\xd6", +"\x5e\xd5" => "\x8f\xbc\xd7", +"\x5e\xd6" => "\xd7\xa1", +"\x5e\xda" => "\xd7\xa4", +"\x5e\xdb" => "\xd7\xa5", +"\x5e\xdc" => "\x8f\xbc\xd8", +"\x5e\xdd" => "\xd7\xa3", +"\x5e\xde" => "\x8f\xbc\xd9", +"\x5e\xdf" => "\xc9\xc0", +"\x5e\xe0" => "\xbe\xb3", +"\x5e\xe1" => "\xd7\xa7", +"\x5e\xe2" => "\xd7\xa6", +"\x5e\xe3" => "\xd7\xa2", +"\x5e\xe5" => "\x8f\xbc\xda", +"\x5e\xe8" => "\xd7\xa8", +"\x5e\xe9" => "\xd7\xa9", +"\x5e\xeb" => "\x8f\xbc\xdb", +"\x5e\xec" => "\xd7\xaa", +"\x5e\xf0" => "\xd7\xad", +"\x5e\xf1" => "\xd7\xab", +"\x5e\xf3" => "\xd7\xac", +"\x5e\xf4" => "\xd7\xae", +"\x5e\xf6" => "\xb1\xe4", +"\x5e\xf7" => "\xc4\xee", +"\x5e\xf8" => "\xd7\xaf", +"\x5e\xfa" => "\xb7\xfa", +"\x5e\xfb" => "\xb2\xf6", +"\x5e\xfc" => "\xc7\xb6", +"\x5e\xfe" => "\xd7\xb0", +"\x5e\xff" => "\xc6\xfb", +"\x5f\x01" => "\xca\xdb", +"\x5f\x02" => "\x8f\xbc\xdc", +"\x5f\x03" => "\xd7\xb1", +"\x5f\x04" => "\xcf\xae", +"\x5f\x06" => "\x8f\xbc\xdd", +"\x5f\x07" => "\x8f\xbc\xde", +"\x5f\x08" => "\x8f\xbc\xdf", +"\x5f\x09" => "\xd7\xb2", +"\x5f\x0a" => "\xca\xc0", +"\x5f\x0b" => "\xd7\xb5", +"\x5f\x0c" => "\xd0\xa1", +"\x5f\x0d" => "\xd0\xb1", +"\x5f\x0e" => "\x8f\xbc\xe0", +"\x5f\x0f" => "\xbc\xb0", +"\x5f\x10" => "\xc6\xf5", +"\x5f\x11" => "\xd7\xb6", +"\x5f\x13" => "\xb5\xdd", +"\x5f\x14" => "\xc4\xa4", +"\x5f\x15" => "\xb0\xfa", +"\x5f\x16" => "\xd7\xb7", +"\x5f\x17" => "\xca\xa6", +"\x5f\x18" => "\xb9\xb0", +"\x5f\x19" => "\x8f\xbc\xe1", +"\x5f\x1b" => "\xc3\xd0", +"\x5f\x1c" => "\x8f\xbc\xe2", +"\x5f\x1d" => "\x8f\xbc\xe3", +"\x5f\x1f" => "\xc4\xef", +"\x5f\x21" => "\x8f\xbc\xe4", +"\x5f\x22" => "\x8f\xbc\xe5", +"\x5f\x23" => "\x8f\xbc\xe6", +"\x5f\x24" => "\x8f\xbc\xe7", +"\x5f\x25" => "\xcc\xef", +"\x5f\x26" => "\xb8\xb9", +"\x5f\x27" => "\xb8\xcc", +"\x5f\x28" => "\x8f\xbc\xe8", +"\x5f\x29" => "\xd7\xb8", +"\x5f\x2b" => "\x8f\xbc\xe9", +"\x5f\x2c" => "\x8f\xbc\xea", +"\x5f\x2d" => "\xd7\xb9", +"\x5f\x2e" => "\x8f\xbc\xeb", +"\x5f\x2f" => "\xd7\xbf", +"\x5f\x30" => "\x8f\xbc\xec", +"\x5f\x31" => "\xbc\xe5", +"\x5f\x34" => "\x8f\xbc\xed", +"\x5f\x35" => "\xc4\xa5", +"\x5f\x36" => "\x8f\xbc\xee", +"\x5f\x37" => "\xb6\xaf", +"\x5f\x38" => "\xd7\xba", +"\x5f\x3b" => "\x8f\xbc\xef", +"\x5f\x3c" => "\xc9\xab", +"\x5f\x3d" => "\x8f\xbc\xf0", +"\x5f\x3e" => "\xc3\xc6", +"\x5f\x3f" => "\x8f\xbc\xf1", +"\x5f\x40" => "\x8f\xbc\xf2", +"\x5f\x41" => "\xd7\xbb", +"\x5f\x44" => "\x8f\xbc\xf3", +"\x5f\x45" => "\x8f\xbc\xf4", +"\x5f\x47" => "\x8f\xbc\xf5", +"\x5f\x48" => "\xd7\xbc", +"\x5f\x4a" => "\xb6\xb0", +"\x5f\x4c" => "\xd7\xbd", +"\x5f\x4d" => "\x8f\xbc\xf6", +"\x5f\x4e" => "\xd7\xbe", +"\x5f\x50" => "\x8f\xbc\xf7", +"\x5f\x51" => "\xd7\xc0", +"\x5f\x53" => "\xc5\xf6", +"\x5f\x54" => "\x8f\xbc\xf8", +"\x5f\x56" => "\xd7\xc1", +"\x5f\x57" => "\xd7\xc2", +"\x5f\x58" => "\x8f\xbc\xf9", +"\x5f\x59" => "\xd7\xc3", +"\x5f\x5b" => "\x8f\xbc\xfa", +"\x5f\x5c" => "\xd7\xb4", +"\x5f\x5d" => "\xd7\xb3", +"\x5f\x60" => "\x8f\xbc\xfb", +"\x5f\x61" => "\xd7\xc4", +"\x5f\x62" => "\xb7\xc1", +"\x5f\x63" => "\x8f\xbc\xfc", +"\x5f\x64" => "\x8f\xbc\xfd", +"\x5f\x66" => "\xc9\xa7", +"\x5f\x67" => "\x8f\xbc\xfe", +"\x5f\x69" => "\xba\xcc", +"\x5f\x6a" => "\xc9\xb7", +"\x5f\x6b" => "\xc4\xa6", +"\x5f\x6c" => "\xc9\xcb", +"\x5f\x6d" => "\xd7\xc5", +"\x5f\x6f" => "\x8f\xbd\xa1", +"\x5f\x70" => "\xbe\xb4", +"\x5f\x71" => "\xb1\xc6", +"\x5f\x72" => "\x8f\xbd\xa2", +"\x5f\x73" => "\xd7\xc6", +"\x5f\x74" => "\x8f\xbd\xa3", +"\x5f\x75" => "\x8f\xbd\xa4", +"\x5f\x77" => "\xd7\xc7", +"\x5f\x78" => "\x8f\xbd\xa5", +"\x5f\x79" => "\xcc\xf2", +"\x5f\x7a" => "\x8f\xbd\xa6", +"\x5f\x7c" => "\xc8\xe0", +"\x5f\x7d" => "\x8f\xbd\xa7", +"\x5f\x7e" => "\x8f\xbd\xa8", +"\x5f\x7f" => "\xd7\xca", +"\x5f\x80" => "\xb1\xfd", +"\x5f\x81" => "\xc0\xac", +"\x5f\x82" => "\xd7\xc9", +"\x5f\x83" => "\xd7\xc8", +"\x5f\x84" => "\xb7\xc2", +"\x5f\x85" => "\xc2\xd4", +"\x5f\x87" => "\xd7\xce", +"\x5f\x88" => "\xd7\xcc", +"\x5f\x89" => "\x8f\xbd\xa9", +"\x5f\x8a" => "\xd7\xcb", +"\x5f\x8b" => "\xce\xa7", +"\x5f\x8c" => "\xb8\xe5", +"\x5f\x8d" => "\x8f\xbd\xaa", +"\x5f\x8f" => "\x8f\xbd\xab", +"\x5f\x90" => "\xbd\xf9", +"\x5f\x91" => "\xd7\xcd", +"\x5f\x92" => "\xc5\xcc", +"\x5f\x93" => "\xbd\xbe", +"\x5f\x96" => "\x8f\xbd\xac", +"\x5f\x97" => "\xc6\xc0", +"\x5f\x98" => "\xd7\xd1", +"\x5f\x99" => "\xd7\xd0", +"\x5f\x9c" => "\x8f\xbd\xad", +"\x5f\x9d" => "\x8f\xbd\xae", +"\x5f\x9e" => "\xd7\xcf", +"\x5f\xa0" => "\xd7\xd2", +"\x5f\xa1" => "\xb8\xe6", +"\x5f\xa2" => "\x8f\xbd\xaf", +"\x5f\xa4" => "\x8f\xbd\xb2", +"\x5f\xa7" => "\x8f\xbd\xb0", +"\x5f\xa8" => "\xd7\xd3", +"\x5f\xa9" => "\xc9\xfc", +"\x5f\xaa" => "\xbd\xdb", +"\x5f\xab" => "\x8f\xbd\xb1", +"\x5f\xac" => "\x8f\xbd\xb3", +"\x5f\xad" => "\xd7\xd4", +"\x5f\xae" => "\xc8\xf9", +"\x5f\xaf" => "\x8f\xbd\xb4", +"\x5f\xb0" => "\x8f\xbd\xb5", +"\x5f\xb1" => "\x8f\xbd\xb6", +"\x5f\xb3" => "\xc6\xc1", +"\x5f\xb4" => "\xc4\xa7", +"\x5f\xb8" => "\x8f\xbd\xb7", +"\x5f\xb9" => "\xc5\xb0", +"\x5f\xbc" => "\xd7\xd5", +"\x5f\xbd" => "\xb5\xab", +"\x5f\xc3" => "\xbf\xb4", +"\x5f\xc4" => "\x8f\xbd\xb8", +"\x5f\xc5" => "\xc9\xac", +"\x5f\xc7" => "\x8f\xbd\xb9", +"\x5f\xc8" => "\x8f\xbd\xba", +"\x5f\xc9" => "\x8f\xbd\xbb", +"\x5f\xcb" => "\x8f\xbd\xbc", +"\x5f\xcc" => "\xb4\xf7", +"\x5f\xcd" => "\xc7\xa6", +"\x5f\xd0" => "\x8f\xbd\xbd", +"\x5f\xd1" => "\x8f\xbd\xbe", +"\x5f\xd2" => "\x8f\xbd\xbf", +"\x5f\xd3" => "\x8f\xbd\xc0", +"\x5f\xd4" => "\x8f\xbd\xc1", +"\x5f\xd6" => "\xd7\xd6", +"\x5f\xd7" => "\xbb\xd6", +"\x5f\xd8" => "\xcb\xba", +"\x5f\xd9" => "\xcb\xbb", +"\x5f\xdc" => "\xb1\xfe", +"\x5f\xdd" => "\xd7\xdb", +"\x5f\xde" => "\x8f\xbd\xc2", +"\x5f\xe0" => "\xc3\xe9", +"\x5f\xe1" => "\x8f\xbd\xc3", +"\x5f\xe2" => "\x8f\xbd\xc4", +"\x5f\xe4" => "\xd7\xd8", +"\x5f\xe8" => "\x8f\xbd\xc5", +"\x5f\xe9" => "\x8f\xbd\xc6", +"\x5f\xea" => "\x8f\xbd\xc7", +"\x5f\xeb" => "\xb2\xf7", +"\x5f\xec" => "\x8f\xbd\xc8", +"\x5f\xed" => "\x8f\xbd\xc9", +"\x5f\xee" => "\x8f\xbd\xca", +"\x5f\xef" => "\x8f\xbd\xcb", +"\x5f\xf0" => "\xd8\xad", +"\x5f\xf1" => "\xd7\xda", +"\x5f\xf2" => "\x8f\xbd\xcc", +"\x5f\xf3" => "\x8f\xbd\xcd", +"\x5f\xf5" => "\xc7\xb0", +"\x5f\xf6" => "\x8f\xbd\xce", +"\x5f\xf8" => "\xd7\xd9", +"\x5f\xfa" => "\x8f\xbd\xcf", +"\x5f\xfb" => "\xd7\xd7", +"\x5f\xfc" => "\x8f\xbd\xd0", +"\x5f\xfd" => "\xb9\xfa", +"\x5f\xff" => "\xd7\xdd", +"\x60\x07" => "\x8f\xbd\xd1", +"\x60\x0a" => "\x8f\xbd\xd2", +"\x60\x0d" => "\x8f\xbd\xd3", +"\x60\x0e" => "\xd7\xe3", +"\x60\x0f" => "\xd7\xe9", +"\x60\x10" => "\xd7\xe1", +"\x60\x12" => "\xc5\xdc", +"\x60\x13" => "\x8f\xbd\xd4", +"\x60\x14" => "\x8f\xbd\xd5", +"\x60\x15" => "\xd7\xe6", +"\x60\x16" => "\xc9\xdd", +"\x60\x17" => "\x8f\xbd\xd6", +"\x60\x18" => "\x8f\xbd\xd7", +"\x60\x19" => "\xd7\xe0", +"\x60\x1a" => "\x8f\xbd\xd8", +"\x60\x1b" => "\xd7\xe5", +"\x60\x1c" => "\xce\xe7", +"\x60\x1d" => "\xbb\xd7", +"\x60\x1f" => "\x8f\xbd\xd9", +"\x60\x20" => "\xc2\xd5", +"\x60\x21" => "\xd7\xde", +"\x60\x24" => "\x8f\xbd\xda", +"\x60\x25" => "\xb5\xde", +"\x60\x26" => "\xd7\xe8", +"\x60\x27" => "\xc0\xad", +"\x60\x28" => "\xb1\xe5", +"\x60\x29" => "\xd7\xe2", +"\x60\x2a" => "\xb2\xf8", +"\x60\x2b" => "\xd7\xe7", +"\x60\x2d" => "\x8f\xbd\xdb", +"\x60\x2f" => "\xb6\xb1", +"\x60\x31" => "\xd7\xe4", +"\x60\x33" => "\x8f\xbd\xdc", +"\x60\x35" => "\x8f\xbd\xdd", +"\x60\x3a" => "\xd7\xea", +"\x60\x40" => "\x8f\xbd\xde", +"\x60\x41" => "\xd7\xec", +"\x60\x42" => "\xd7\xf6", +"\x60\x43" => "\xd7\xf4", +"\x60\x46" => "\xd7\xf1", +"\x60\x47" => "\x8f\xbd\xdf", +"\x60\x48" => "\x8f\xbd\xe0", +"\x60\x49" => "\x8f\xbd\xe1", +"\x60\x4a" => "\xd7\xf0", +"\x60\x4b" => "\xce\xf8", +"\x60\x4c" => "\x8f\xbd\xe2", +"\x60\x4d" => "\xd7\xf2", +"\x60\x50" => "\xb6\xb2", +"\x60\x51" => "\x8f\xbd\xe3", +"\x60\x52" => "\xb9\xb1", +"\x60\x54" => "\x8f\xbd\xe4", +"\x60\x55" => "\xbd\xfa", +"\x60\x56" => "\x8f\xbd\xe5", +"\x60\x57" => "\x8f\xbd\xe6", +"\x60\x59" => "\xd7\xf9", +"\x60\x5a" => "\xd7\xeb", +"\x60\x5d" => "\x8f\xbd\xe7", +"\x60\x5f" => "\xd7\xef", +"\x60\x60" => "\xd7\xdf", +"\x60\x61" => "\x8f\xbd\xe8", +"\x60\x62" => "\xb2\xfa", +"\x60\x63" => "\xd7\xf3", +"\x60\x64" => "\xd7\xf5", +"\x60\x65" => "\xc3\xd1", +"\x60\x67" => "\x8f\xbd\xe9", +"\x60\x68" => "\xba\xa8", +"\x60\x69" => "\xb2\xb8", +"\x60\x6a" => "\xd7\xed", +"\x60\x6b" => "\xd7\xf8", +"\x60\x6c" => "\xd7\xf7", +"\x60\x6d" => "\xb6\xb3", +"\x60\x6f" => "\xc2\xa9", +"\x60\x70" => "\xb3\xe6", +"\x60\x71" => "\x8f\xbd\xea", +"\x60\x75" => "\xb7\xc3", +"\x60\x77" => "\xd7\xee", +"\x60\x7e" => "\x8f\xbd\xeb", +"\x60\x7f" => "\x8f\xbd\xec", +"\x60\x81" => "\xd7\xfa", +"\x60\x82" => "\x8f\xbd\xed", +"\x60\x83" => "\xd7\xfd", +"\x60\x84" => "\xd8\xa1", +"\x60\x86" => "\x8f\xbd\xee", +"\x60\x88" => "\x8f\xbd\xef", +"\x60\x89" => "\xbc\xbd", +"\x60\x8a" => "\x8f\xbd\xf0", +"\x60\x8b" => "\xd8\xa7", +"\x60\x8c" => "\xc4\xf0", +"\x60\x8d" => "\xd7\xfb", +"\x60\x8e" => "\x8f\xbd\xf1", +"\x60\x91" => "\x8f\xbd\xf2", +"\x60\x92" => "\xd8\xa5", +"\x60\x93" => "\x8f\xbd\xf3", +"\x60\x94" => "\xb2\xf9", +"\x60\x95" => "\x8f\xbd\xf4", +"\x60\x96" => "\xd8\xa3", +"\x60\x97" => "\xd8\xa4", +"\x60\x98" => "\x8f\xbd\xf5", +"\x60\x9a" => "\xd7\xfe", +"\x60\x9b" => "\xd8\xa2", +"\x60\x9d" => "\x8f\xbd\xf6", +"\x60\x9e" => "\x8f\xbd\xf7", +"\x60\x9f" => "\xb8\xe7", +"\x60\xa0" => "\xcd\xaa", +"\x60\xa2" => "\x8f\xbd\xf8", +"\x60\xa3" => "\xb4\xb5", +"\x60\xa4" => "\x8f\xbd\xf9", +"\x60\xa5" => "\x8f\xbd\xfa", +"\x60\xa6" => "\xb1\xd9", +"\x60\xa7" => "\xd8\xa6", +"\x60\xa8" => "\x8f\xbd\xfb", +"\x60\xa9" => "\xc7\xba", +"\x60\xaa" => "\xb0\xad", +"\x60\xb0" => "\x8f\xbd\xfc", +"\x60\xb1" => "\x8f\xbd\xfd", +"\x60\xb2" => "\xc8\xe1", +"\x60\xb3" => "\xd7\xdc", +"\x60\xb4" => "\xd8\xac", +"\x60\xb5" => "\xd8\xb0", +"\x60\xb6" => "\xcc\xe5", +"\x60\xb7" => "\x8f\xbd\xfe", +"\x60\xb8" => "\xd8\xa9", +"\x60\xbb" => "\x8f\xbe\xa1", +"\x60\xbc" => "\xc5\xe9", +"\x60\xbd" => "\xd8\xae", +"\x60\xbe" => "\x8f\xbe\xa2", +"\x60\xc2" => "\x8f\xbe\xa3", +"\x60\xc4" => "\x8f\xbe\xa4", +"\x60\xc5" => "\xbe\xf0", +"\x60\xc6" => "\xd8\xaf", +"\x60\xc7" => "\xc6\xd7", +"\x60\xc8" => "\x8f\xbe\xa5", +"\x60\xc9" => "\x8f\xbe\xa6", +"\x60\xca" => "\x8f\xbe\xa7", +"\x60\xcb" => "\x8f\xbe\xa8", +"\x60\xce" => "\x8f\xbe\xa9", +"\x60\xcf" => "\x8f\xbe\xaa", +"\x60\xd1" => "\xcf\xc7", +"\x60\xd3" => "\xd8\xab", +"\x60\xd4" => "\x8f\xbe\xab", +"\x60\xd5" => "\x8f\xbe\xac", +"\x60\xd8" => "\xd8\xb1", +"\x60\xd9" => "\x8f\xbe\xad", +"\x60\xda" => "\xb9\xfb", +"\x60\xdb" => "\x8f\xbe\xae", +"\x60\xdc" => "\xc0\xcb", +"\x60\xdd" => "\x8f\xbe\xaf", +"\x60\xde" => "\x8f\xbe\xb0", +"\x60\xdf" => "\xb0\xd4", +"\x60\xe0" => "\xd8\xaa", +"\x60\xe1" => "\xd8\xa8", +"\x60\xe2" => "\x8f\xbe\xb1", +"\x60\xe3" => "\xc1\xda", +"\x60\xe5" => "\x8f\xbe\xb2", +"\x60\xe7" => "\xd7\xfc", +"\x60\xe8" => "\xbb\xb4", +"\x60\xf0" => "\xc2\xc6", +"\x60\xf1" => "\xd8\xbd", +"\x60\xf2" => "\x8f\xbe\xb3", +"\x60\xf3" => "\xc1\xdb", +"\x60\xf4" => "\xd8\xb8", +"\x60\xf5" => "\x8f\xbe\xb4", +"\x60\xf6" => "\xd8\xb5", +"\x60\xf7" => "\xd8\xb6", +"\x60\xf8" => "\x8f\xbe\xb5", +"\x60\xf9" => "\xbc\xe6", +"\x60\xfa" => "\xd8\xb9", +"\x60\xfb" => "\xd8\xbc", +"\x60\xfc" => "\x8f\xbe\xb6", +"\x60\xfd" => "\x8f\xbe\xb7", +"\x61\x00" => "\xd8\xb7", +"\x61\x01" => "\xbd\xa5", +"\x61\x02" => "\x8f\xbe\xb8", +"\x61\x03" => "\xd8\xba", +"\x61\x06" => "\xd8\xb4", +"\x61\x07" => "\x8f\xbe\xb9", +"\x61\x08" => "\xcc\xfc", +"\x61\x09" => "\xcc\xfb", +"\x61\x0a" => "\x8f\xbe\xba", +"\x61\x0c" => "\x8f\xbe\xbb", +"\x61\x0d" => "\xd8\xbe", +"\x61\x0e" => "\xd8\xbf", +"\x61\x0f" => "\xb0\xd5", +"\x61\x10" => "\x8f\xbe\xbc", +"\x61\x11" => "\x8f\xbe\xbd", +"\x61\x12" => "\x8f\xbe\xbe", +"\x61\x13" => "\x8f\xbe\xbf", +"\x61\x14" => "\x8f\xbe\xc0", +"\x61\x15" => "\xd8\xb3", +"\x61\x16" => "\x8f\xbe\xc1", +"\x61\x17" => "\x8f\xbe\xc2", +"\x61\x19" => "\x8f\xbe\xc3", +"\x61\x1a" => "\xb6\xf2", +"\x61\x1b" => "\xb0\xa6", +"\x61\x1c" => "\x8f\xbe\xc4", +"\x61\x1e" => "\x8f\xbe\xc5", +"\x61\x1f" => "\xb4\xb6", +"\x61\x21" => "\xd8\xbb", +"\x61\x22" => "\x8f\xbe\xc6", +"\x61\x27" => "\xd8\xc3", +"\x61\x28" => "\xd8\xc2", +"\x61\x2a" => "\x8f\xbe\xc7", +"\x61\x2b" => "\x8f\xbe\xc8", +"\x61\x2c" => "\xd8\xc7", +"\x61\x30" => "\x8f\xbe\xc9", +"\x61\x31" => "\x8f\xbe\xca", +"\x61\x34" => "\xd8\xc8", +"\x61\x35" => "\x8f\xbe\xcb", +"\x61\x36" => "\x8f\xbe\xcc", +"\x61\x37" => "\x8f\xbe\xcd", +"\x61\x39" => "\x8f\xbe\xce", +"\x61\x3c" => "\xd8\xc6", +"\x61\x3d" => "\xd8\xc9", +"\x61\x3e" => "\xd8\xc1", +"\x61\x3f" => "\xd8\xc5", +"\x61\x41" => "\x8f\xbe\xcf", +"\x61\x42" => "\xd8\xca", +"\x61\x44" => "\xd8\xcb", +"\x61\x45" => "\x8f\xbe\xd0", +"\x61\x46" => "\x8f\xbe\xd1", +"\x61\x47" => "\xd8\xc0", +"\x61\x48" => "\xbb\xfc", +"\x61\x49" => "\x8f\xbe\xd2", +"\x61\x4a" => "\xd8\xc4", +"\x61\x4b" => "\xc2\xd6", +"\x61\x4c" => "\xb9\xb2", +"\x61\x4d" => "\xd8\xb2", +"\x61\x4e" => "\xbf\xb5", +"\x61\x53" => "\xd8\xd8", +"\x61\x55" => "\xca\xe9", +"\x61\x58" => "\xd8\xce", +"\x61\x59" => "\xd8\xcf", +"\x61\x5a" => "\xd8\xd0", +"\x61\x5d" => "\xd8\xd7", +"\x61\x5e" => "\x8f\xbe\xd3", +"\x61\x5f" => "\xd8\xd6", +"\x61\x60" => "\x8f\xbe\xd4", +"\x61\x62" => "\xcb\xfd", +"\x61\x63" => "\xb4\xb7", +"\x61\x65" => "\xd8\xd4", +"\x61\x67" => "\xb7\xc5", +"\x61\x68" => "\xb3\xb4", +"\x61\x6b" => "\xd8\xd1", +"\x61\x6c" => "\x8f\xbe\xd5", +"\x61\x6e" => "\xce\xb8", +"\x61\x6f" => "\xd8\xd3", +"\x61\x70" => "\xb0\xd6", +"\x61\x71" => "\xd8\xd5", +"\x61\x72" => "\x8f\xbe\xd6", +"\x61\x73" => "\xd8\xcc", +"\x61\x74" => "\xd8\xd2", +"\x61\x75" => "\xd8\xd9", +"\x61\x76" => "\xb7\xc4", +"\x61\x77" => "\xd8\xcd", +"\x61\x78" => "\x8f\xbe\xd7", +"\x61\x7b" => "\x8f\xbe\xd8", +"\x61\x7c" => "\x8f\xbe\xd9", +"\x61\x7e" => "\xcd\xdd", +"\x61\x7f" => "\x8f\xbe\xda", +"\x61\x80" => "\x8f\xbe\xdb", +"\x61\x81" => "\x8f\xbe\xdc", +"\x61\x82" => "\xcd\xab", +"\x61\x83" => "\x8f\xbe\xdd", +"\x61\x84" => "\x8f\xbe\xde", +"\x61\x87" => "\xd8\xdc", +"\x61\x8a" => "\xd8\xe0", +"\x61\x8b" => "\x8f\xbe\xdf", +"\x61\x8d" => "\x8f\xbe\xe0", +"\x61\x8e" => "\xc1\xfe", +"\x61\x90" => "\xce\xf9", +"\x61\x91" => "\xd8\xe1", +"\x61\x92" => "\x8f\xbe\xe1", +"\x61\x93" => "\x8f\xbe\xe2", +"\x61\x94" => "\xd8\xde", +"\x61\x96" => "\xd8\xdb", +"\x61\x97" => "\x8f\xbe\xe3", +"\x61\x98" => "\x8f\xbe\xe4", +"\x61\x99" => "\xd8\xda", +"\x61\x9a" => "\xd8\xdf", +"\x61\x9c" => "\x8f\xbe\xe5", +"\x61\x9d" => "\x8f\xbe\xe6", +"\x61\x9f" => "\x8f\xbe\xe7", +"\x61\xa0" => "\x8f\xbe\xe8", +"\x61\xa4" => "\xca\xb0", +"\x61\xa5" => "\x8f\xbe\xe9", +"\x61\xa7" => "\xc6\xb4", +"\x61\xa8" => "\x8f\xbe\xea", +"\x61\xa9" => "\xb7\xc6", +"\x61\xaa" => "\x8f\xbe\xeb", +"\x61\xab" => "\xd8\xe2", +"\x61\xac" => "\xd8\xdd", +"\x61\xad" => "\x8f\xbe\xec", +"\x61\xae" => "\xd8\xe3", +"\x61\xb2" => "\xb7\xfb", +"\x61\xb6" => "\xb2\xb1", +"\x61\xb8" => "\x8f\xbe\xed", +"\x61\xb9" => "\x8f\xbe\xee", +"\x61\xba" => "\xd8\xeb", +"\x61\xbc" => "\x8f\xbe\xef", +"\x61\xbe" => "\xb4\xb8", +"\x61\xc0" => "\x8f\xbe\xf0", +"\x61\xc1" => "\x8f\xbe\xf1", +"\x61\xc2" => "\x8f\xbe\xf2", +"\x61\xc3" => "\xd8\xe9", +"\x61\xc6" => "\xd8\xea", +"\x61\xc7" => "\xba\xa9", +"\x61\xc8" => "\xd8\xe8", +"\x61\xc9" => "\xd8\xe6", +"\x61\xca" => "\xd8\xe5", +"\x61\xcb" => "\xd8\xec", +"\x61\xcc" => "\xd8\xe4", +"\x61\xcd" => "\xd8\xee", +"\x61\xce" => "\x8f\xbe\xf3", +"\x61\xcf" => "\x8f\xbe\xf4", +"\x61\xd0" => "\xb2\xfb", +"\x61\xd5" => "\x8f\xbe\xf5", +"\x61\xdc" => "\x8f\xbe\xf6", +"\x61\xdd" => "\x8f\xbe\xf7", +"\x61\xde" => "\x8f\xbe\xf8", +"\x61\xdf" => "\x8f\xbe\xf9", +"\x61\xe1" => "\x8f\xbe\xfa", +"\x61\xe2" => "\x8f\xbe\xfb", +"\x61\xe3" => "\xd8\xf0", +"\x61\xe5" => "\x8f\xbe\xfe", +"\x61\xe6" => "\xd8\xef", +"\x61\xe7" => "\x8f\xbe\xfc", +"\x61\xe9" => "\x8f\xbe\xfd", +"\x61\xec" => "\x8f\xbf\xa1", +"\x61\xed" => "\x8f\xbf\xa2", +"\x61\xef" => "\x8f\xbf\xa3", +"\x61\xf2" => "\xc4\xa8", +"\x61\xf4" => "\xd8\xf3", +"\x61\xf6" => "\xd8\xf1", +"\x61\xf7" => "\xd8\xe7", +"\x61\xf8" => "\xb7\xfc", +"\x61\xfa" => "\xd8\xf2", +"\x61\xfc" => "\xd8\xf6", +"\x61\xfd" => "\xd8\xf5", +"\x61\xfe" => "\xd8\xf7", +"\x61\xff" => "\xd8\xf4", +"\x62\x00" => "\xd8\xf8", +"\x62\x01" => "\x8f\xbf\xa4", +"\x62\x03" => "\x8f\xbf\xa5", +"\x62\x04" => "\x8f\xbf\xa6", +"\x62\x07" => "\x8f\xbf\xa7", +"\x62\x08" => "\xd8\xf9", +"\x62\x09" => "\xd8\xfa", +"\x62\x0a" => "\xca\xea", +"\x62\x0c" => "\xd8\xfc", +"\x62\x0d" => "\xd8\xfb", +"\x62\x0e" => "\xbd\xbf", +"\x62\x10" => "\xc0\xae", +"\x62\x11" => "\xb2\xe6", +"\x62\x12" => "\xb2\xfc", +"\x62\x13" => "\x8f\xbf\xa8", +"\x62\x14" => "\xd8\xfd", +"\x62\x15" => "\x8f\xbf\xa9", +"\x62\x16" => "\xb0\xbf", +"\x62\x1a" => "\xc0\xcc", +"\x62\x1b" => "\xd8\xfe", +"\x62\x1c" => "\x8f\xbf\xaa", +"\x62\x1d" => "\xec\xc3", +"\x62\x1e" => "\xd9\xa1", +"\x62\x1f" => "\xb7\xe1", +"\x62\x20" => "\x8f\xbf\xab", +"\x62\x21" => "\xd9\xa2", +"\x62\x22" => "\x8f\xbf\xac", +"\x62\x23" => "\x8f\xbf\xad", +"\x62\x26" => "\xc0\xef", +"\x62\x27" => "\x8f\xbf\xae", +"\x62\x29" => "\x8f\xbf\xaf", +"\x62\x2a" => "\xd9\xa3", +"\x62\x2b" => "\x8f\xbf\xb0", +"\x62\x2e" => "\xd9\xa4", +"\x62\x2f" => "\xb5\xba", +"\x62\x30" => "\xd9\xa5", +"\x62\x32" => "\xd9\xa6", +"\x62\x33" => "\xd9\xa7", +"\x62\x34" => "\xc2\xd7", +"\x62\x38" => "\xb8\xcd", +"\x62\x39" => "\x8f\xbf\xb1", +"\x62\x3b" => "\xcc\xe1", +"\x62\x3d" => "\x8f\xbf\xb2", +"\x62\x3f" => "\xcb\xbc", +"\x62\x40" => "\xbd\xea", +"\x62\x41" => "\xd9\xa8", +"\x62\x42" => "\x8f\xbf\xb3", +"\x62\x43" => "\x8f\xbf\xb4", +"\x62\x44" => "\x8f\xbf\xb5", +"\x62\x46" => "\x8f\xbf\xb6", +"\x62\x47" => "\xc0\xf0", +"\x62\x48" => "\xee\xbd", +"\x62\x49" => "\xc8\xe2", +"\x62\x4b" => "\xbc\xea", +"\x62\x4c" => "\x8f\xbf\xb7", +"\x62\x4d" => "\xba\xcd", +"\x62\x4e" => "\xd9\xa9", +"\x62\x50" => "\x8f\xbf\xb8", +"\x62\x51" => "\x8f\xbf\xb9", +"\x62\x52" => "\x8f\xbf\xba", +"\x62\x53" => "\xc2\xc7", +"\x62\x54" => "\x8f\xbf\xbb", +"\x62\x55" => "\xca\xa7", +"\x62\x56" => "\x8f\xbf\xbc", +"\x62\x58" => "\xc2\xf1", +"\x62\x5a" => "\x8f\xbf\xbd", +"\x62\x5b" => "\xd9\xac", +"\x62\x5c" => "\x8f\xbf\xbe", +"\x62\x5e" => "\xd9\xaa", +"\x62\x60" => "\xd9\xad", +"\x62\x63" => "\xd9\xab", +"\x62\x64" => "\x8f\xbf\xbf", +"\x62\x68" => "\xd9\xae", +"\x62\x6d" => "\x8f\xbf\xc0", +"\x62\x6e" => "\xca\xb1", +"\x62\x6f" => "\x8f\xbf\xc1", +"\x62\x71" => "\xb0\xb7", +"\x62\x73" => "\x8f\xbf\xc2", +"\x62\x76" => "\xc9\xde", +"\x62\x79" => "\xc8\xe3", +"\x62\x7a" => "\x8f\xbf\xc3", +"\x62\x7c" => "\xd9\xaf", +"\x62\x7d" => "\x8f\xbf\xc4", +"\x62\x7e" => "\xd9\xb2", +"\x62\x7f" => "\xbe\xb5", +"\x62\x80" => "\xb5\xbb", +"\x62\x82" => "\xd9\xb0", +"\x62\x83" => "\xd9\xb7", +"\x62\x84" => "\xbe\xb6", +"\x62\x89" => "\xd9\xb1", +"\x62\x8a" => "\xc7\xc4", +"\x62\x8d" => "\x8f\xbf\xc5", +"\x62\x8e" => "\x8f\xbf\xc6", +"\x62\x8f" => "\x8f\xbf\xc7", +"\x62\x90" => "\x8f\xbf\xc8", +"\x62\x91" => "\xcd\xde", +"\x62\x92" => "\xd9\xb3", +"\x62\x93" => "\xd9\xb4", +"\x62\x94" => "\xd9\xb8", +"\x62\x95" => "\xc5\xea", +"\x62\x96" => "\xd9\xb5", +"\x62\x97" => "\xb9\xb3", +"\x62\x98" => "\xc0\xde", +"\x62\x9b" => "\xd9\xc6", +"\x62\x9c" => "\xc8\xb4", +"\x62\x9e" => "\xc2\xf2", +"\x62\xa6" => "\x8f\xbf\xc9", +"\x62\xa8" => "\x8f\xbf\xca", +"\x62\xab" => "\xc8\xe4", +"\x62\xac" => "\xda\xad", +"\x62\xb1" => "\xca\xfa", +"\x62\xb3" => "\x8f\xbf\xcb", +"\x62\xb5" => "\xc4\xf1", +"\x62\xb6" => "\x8f\xbf\xcc", +"\x62\xb7" => "\x8f\xbf\xcd", +"\x62\xb9" => "\xcb\xf5", +"\x62\xba" => "\x8f\xbf\xce", +"\x62\xbb" => "\xd9\xbb", +"\x62\xbc" => "\xb2\xa1", +"\x62\xbd" => "\xc3\xea", +"\x62\xbe" => "\x8f\xbf\xcf", +"\x62\xbf" => "\x8f\xbf\xd0", +"\x62\xc2" => "\xd9\xc4", +"\x62\xc4" => "\x8f\xbf\xd1", +"\x62\xc5" => "\xc3\xb4", +"\x62\xc6" => "\xd9\xbe", +"\x62\xc7" => "\xd9\xc5", +"\x62\xc8" => "\xd9\xc0", +"\x62\xc9" => "\xd9\xc7", +"\x62\xca" => "\xd9\xc3", +"\x62\xcc" => "\xd9\xc2", +"\x62\xcd" => "\xc7\xef", +"\x62\xce" => "\x8f\xbf\xd2", +"\x62\xcf" => "\xd9\xbc", +"\x62\xd0" => "\xb2\xfd", +"\x62\xd1" => "\xd9\xba", +"\x62\xd2" => "\xb5\xf1", +"\x62\xd3" => "\xc2\xf3", +"\x62\xd4" => "\xd9\xb6", +"\x62\xd5" => "\x8f\xbf\xd3", +"\x62\xd6" => "\x8f\xbf\xd4", +"\x62\xd7" => "\xd9\xb9", +"\x62\xd8" => "\xb9\xb4", +"\x62\xd9" => "\xc0\xdb", +"\x62\xda" => "\x8f\xbf\xd5", +"\x62\xdb" => "\xbe\xb7", +"\x62\xdc" => "\xd9\xc1", +"\x62\xdd" => "\xc7\xd2", +"\x62\xe0" => "\xb5\xf2", +"\x62\xe1" => "\xb3\xc8", +"\x62\xea" => "\x8f\xbf\xd6", +"\x62\xec" => "\xb3\xe7", +"\x62\xed" => "\xbf\xa1", +"\x62\xee" => "\xd9\xc9", +"\x62\xef" => "\xd9\xce", +"\x62\xf1" => "\xd9\xca", +"\x62\xf2" => "\x8f\xbf\xd7", +"\x62\xf3" => "\xb7\xfd", +"\x62\xf4" => "\x8f\xbf\xd8", +"\x62\xf5" => "\xd9\xcf", +"\x62\xf6" => "\xbb\xa2", +"\x62\xf7" => "\xb9\xe9", +"\x62\xfc" => "\x8f\xbf\xd9", +"\x62\xfd" => "\x8f\xbf\xda", +"\x62\xfe" => "\xbd\xa6", +"\x62\xff" => "\xd9\xbd", +"\x63\x01" => "\xbb\xfd", +"\x63\x02" => "\xd9\xcc", +"\x63\x03" => "\x8f\xbf\xdb", +"\x63\x04" => "\x8f\xbf\xdc", +"\x63\x07" => "\xbb\xd8", +"\x63\x08" => "\xd9\xcd", +"\x63\x09" => "\xb0\xc4", +"\x63\x0a" => "\x8f\xbf\xdd", +"\x63\x0b" => "\x8f\xbf\xde", +"\x63\x0c" => "\xd9\xc8", +"\x63\x0d" => "\x8f\xbf\xdf", +"\x63\x10" => "\x8f\xbf\xe0", +"\x63\x11" => "\xc4\xa9", +"\x63\x13" => "\x8f\xbf\xe1", +"\x63\x16" => "\x8f\xbf\xe2", +"\x63\x18" => "\x8f\xbf\xe3", +"\x63\x19" => "\xb5\xf3", +"\x63\x1f" => "\xb6\xb4", +"\x63\x27" => "\xd9\xcb", +"\x63\x28" => "\xb0\xa7", +"\x63\x29" => "\x8f\xbf\xe4", +"\x63\x2a" => "\x8f\xbf\xe5", +"\x63\x2b" => "\xba\xc3", +"\x63\x2d" => "\x8f\xbf\xe6", +"\x63\x2f" => "\xbf\xb6", +"\x63\x35" => "\x8f\xbf\xe7", +"\x63\x36" => "\x8f\xbf\xe8", +"\x63\x39" => "\x8f\xbf\xe9", +"\x63\x3a" => "\xc4\xf2", +"\x63\x3c" => "\x8f\xbf\xea", +"\x63\x3d" => "\xc8\xd4", +"\x63\x3e" => "\xd9\xd1", +"\x63\x3f" => "\xc1\xde", +"\x63\x41" => "\x8f\xbf\xeb", +"\x63\x42" => "\x8f\xbf\xec", +"\x63\x43" => "\x8f\xbf\xed", +"\x63\x44" => "\x8f\xbf\xee", +"\x63\x46" => "\x8f\xbf\xef", +"\x63\x49" => "\xc2\xaa", +"\x63\x4a" => "\x8f\xbf\xf0", +"\x63\x4b" => "\x8f\xbf\xf1", +"\x63\x4c" => "\xbb\xab", +"\x63\x4d" => "\xd9\xd2", +"\x63\x4e" => "\x8f\xbf\xf2", +"\x63\x4f" => "\xd9\xd4", +"\x63\x50" => "\xd9\xd0", +"\x63\x52" => "\x8f\xbf\xf3", +"\x63\x53" => "\x8f\xbf\xf4", +"\x63\x54" => "\x8f\xbf\xf5", +"\x63\x55" => "\xca\xe1", +"\x63\x57" => "\xc4\xbd", +"\x63\x58" => "\x8f\xbf\xf6", +"\x63\x5b" => "\x8f\xbf\xf7", +"\x63\x5c" => "\xc1\xdc", +"\x63\x65" => "\x8f\xbf\xf8", +"\x63\x66" => "\x8f\xbf\xf9", +"\x63\x67" => "\xca\xfb", +"\x63\x68" => "\xbc\xce", +"\x63\x69" => "\xd9\xe0", +"\x63\x6b" => "\xd9\xdf", +"\x63\x6c" => "\x8f\xbf\xfa", +"\x63\x6d" => "\x8f\xbf\xfb", +"\x63\x6e" => "\xbf\xf8", +"\x63\x71" => "\x8f\xbf\xfc", +"\x63\x72" => "\xb7\xfe", +"\x63\x74" => "\x8f\xbf\xfd", +"\x63\x75" => "\x8f\xbf\xfe", +"\x63\x76" => "\xd9\xd9", +"\x63\x77" => "\xbe\xb9", +"\x63\x78" => "\x8f\xc0\xa1", +"\x63\x7a" => "\xc6\xe8", +"\x63\x7b" => "\xc7\xb1", +"\x63\x7c" => "\x8f\xc0\xa2", +"\x63\x7d" => "\x8f\xc0\xa3", +"\x63\x7f" => "\x8f\xc0\xa4", +"\x63\x80" => "\xd9\xd7", +"\x63\x82" => "\x8f\xc0\xa5", +"\x63\x83" => "\xc1\xdd", +"\x63\x84" => "\x8f\xc0\xa6", +"\x63\x87" => "\x8f\xc0\xa7", +"\x63\x88" => "\xbc\xf8", +"\x63\x89" => "\xd9\xdc", +"\x63\x8a" => "\x8f\xc0\xa8", +"\x63\x8c" => "\xbe\xb8", +"\x63\x8e" => "\xd9\xd6", +"\x63\x8f" => "\xd9\xdb", +"\x63\x90" => "\x8f\xc0\xa9", +"\x63\x92" => "\xc7\xd3", +"\x63\x94" => "\x8f\xc0\xaa", +"\x63\x95" => "\x8f\xc0\xab", +"\x63\x96" => "\xd9\xd5", +"\x63\x98" => "\xb7\xa1", +"\x63\x99" => "\x8f\xc0\xac", +"\x63\x9a" => "\x8f\xc0\xad", +"\x63\x9b" => "\xb3\xdd", +"\x63\x9e" => "\x8f\xc0\xae", +"\x63\x9f" => "\xd9\xdd", +"\x63\xa0" => "\xce\xab", +"\x63\xa1" => "\xba\xce", +"\x63\xa2" => "\xc3\xb5", +"\x63\xa3" => "\xd9\xda", +"\x63\xa4" => "\x8f\xc0\xaf", +"\x63\xa5" => "\xc0\xdc", +"\x63\xa6" => "\x8f\xc0\xb0", +"\x63\xa7" => "\xb9\xb5", +"\x63\xa8" => "\xbf\xe4", +"\x63\xa9" => "\xb1\xe6", +"\x63\xaa" => "\xc1\xbc", +"\x63\xab" => "\xd9\xd8", +"\x63\xac" => "\xb5\xc5", +"\x63\xad" => "\x8f\xc0\xb1", +"\x63\xae" => "\x8f\xc0\xb2", +"\x63\xaf" => "\x8f\xc0\xb3", +"\x63\xb2" => "\xb7\xc7", +"\x63\xb4" => "\xc4\xcf", +"\x63\xb5" => "\xd9\xde", +"\x63\xbb" => "\xc1\xdf", +"\x63\xbd" => "\x8f\xc0\xb4", +"\x63\xbe" => "\xd9\xe1", +"\x63\xc0" => "\xd9\xe3", +"\x63\xc1" => "\x8f\xc0\xb5", +"\x63\xc3" => "\xc2\xb7", +"\x63\xc4" => "\xd9\xe9", +"\x63\xc5" => "\x8f\xc0\xb6", +"\x63\xc6" => "\xd9\xe4", +"\x63\xc8" => "\x8f\xc0\xb7", +"\x63\xc9" => "\xd9\xe6", +"\x63\xce" => "\x8f\xc0\xb8", +"\x63\xcf" => "\xc9\xc1", +"\x63\xd0" => "\xc4\xf3", +"\x63\xd1" => "\x8f\xc0\xb9", +"\x63\xd2" => "\xd9\xe7", +"\x63\xd3" => "\x8f\xc0\xba", +"\x63\xd4" => "\x8f\xc0\xbb", +"\x63\xd5" => "\x8f\xc0\xbc", +"\x63\xd6" => "\xcd\xac", +"\x63\xda" => "\xcd\xc8", +"\x63\xdb" => "\xb4\xb9", +"\x63\xdc" => "\x8f\xc0\xbd", +"\x63\xe0" => "\x8f\xc0\xbe", +"\x63\xe1" => "\xb0\xae", +"\x63\xe3" => "\xd9\xe5", +"\x63\xe5" => "\x8f\xc0\xbf", +"\x63\xe9" => "\xd9\xe2", +"\x63\xea" => "\x8f\xc0\xc0", +"\x63\xec" => "\x8f\xc0\xc1", +"\x63\xee" => "\xb4\xf8", +"\x63\xf2" => "\x8f\xc0\xc2", +"\x63\xf3" => "\x8f\xc0\xc3", +"\x63\xf4" => "\xb1\xe7", +"\x63\xf5" => "\x8f\xc0\xc4", +"\x63\xf6" => "\xd9\xe8", +"\x63\xf8" => "\x8f\xc0\xc5", +"\x63\xf9" => "\x8f\xc0\xc6", +"\x63\xfa" => "\xcd\xc9", +"\x64\x06" => "\xd9\xec", +"\x64\x09" => "\x8f\xc0\xc7", +"\x64\x0a" => "\x8f\xc0\xc8", +"\x64\x0d" => "\xc2\xbb", +"\x64\x0f" => "\xd9\xf3", +"\x64\x10" => "\x8f\xc0\xc9", +"\x64\x12" => "\x8f\xc0\xca", +"\x64\x13" => "\xd9\xed", +"\x64\x14" => "\x8f\xc0\xcb", +"\x64\x16" => "\xd9\xea", +"\x64\x17" => "\xd9\xf1", +"\x64\x18" => "\x8f\xc0\xcc", +"\x64\x1c" => "\xd9\xd3", +"\x64\x1e" => "\x8f\xc0\xcd", +"\x64\x20" => "\x8f\xc0\xce", +"\x64\x22" => "\x8f\xc0\xcf", +"\x64\x24" => "\x8f\xc0\xd0", +"\x64\x25" => "\x8f\xc0\xd1", +"\x64\x26" => "\xd9\xee", +"\x64\x28" => "\xd9\xf2", +"\x64\x29" => "\x8f\xc0\xd2", +"\x64\x2a" => "\x8f\xc0\xd3", +"\x64\x2c" => "\xc8\xc2", +"\x64\x2d" => "\xc5\xeb", +"\x64\x2f" => "\x8f\xc0\xd4", +"\x64\x30" => "\x8f\xc0\xd5", +"\x64\x34" => "\xd9\xeb", +"\x64\x35" => "\x8f\xc0\xd6", +"\x64\x36" => "\xd9\xef", +"\x64\x3a" => "\xb7\xc8", +"\x64\x3d" => "\x8f\xc0\xd7", +"\x64\x3e" => "\xba\xf1", +"\x64\x3f" => "\x8f\xc0\xd8", +"\x64\x42" => "\xc0\xdd", +"\x64\x4b" => "\x8f\xc0\xd9", +"\x64\x4e" => "\xd9\xf7", +"\x64\x4f" => "\x8f\xc0\xda", +"\x64\x51" => "\x8f\xc0\xdb", +"\x64\x52" => "\x8f\xc0\xdc", +"\x64\x53" => "\x8f\xc0\xdd", +"\x64\x54" => "\x8f\xc0\xde", +"\x64\x58" => "\xc5\xa6", +"\x64\x5a" => "\x8f\xc0\xdf", +"\x64\x5b" => "\x8f\xc0\xe0", +"\x64\x5c" => "\x8f\xc0\xe1", +"\x64\x5d" => "\x8f\xc0\xe2", +"\x64\x5f" => "\x8f\xc0\xe3", +"\x64\x60" => "\x8f\xc0\xe4", +"\x64\x61" => "\x8f\xc0\xe5", +"\x64\x63" => "\x8f\xc0\xe6", +"\x64\x67" => "\xd9\xf4", +"\x64\x69" => "\xcb\xe0", +"\x64\x6d" => "\x8f\xc0\xe7", +"\x64\x6f" => "\xd9\xf5", +"\x64\x73" => "\x8f\xc0\xe8", +"\x64\x74" => "\x8f\xc0\xe9", +"\x64\x76" => "\xd9\xf6", +"\x64\x78" => "\xcc\xce", +"\x64\x7a" => "\xc0\xa2", +"\x64\x7b" => "\x8f\xc0\xea", +"\x64\x7d" => "\x8f\xc0\xeb", +"\x64\x83" => "\xb7\xe2", +"\x64\x85" => "\x8f\xc0\xec", +"\x64\x87" => "\x8f\xc0\xed", +"\x64\x88" => "\xd9\xfd", +"\x64\x8f" => "\x8f\xc0\xee", +"\x64\x90" => "\x8f\xc0\xef", +"\x64\x91" => "\x8f\xc0\xf0", +"\x64\x92" => "\xbb\xb5", +"\x64\x93" => "\xd9\xfa", +"\x64\x95" => "\xd9\xf9", +"\x64\x98" => "\x8f\xc0\xf1", +"\x64\x99" => "\x8f\xc0\xf2", +"\x64\x9a" => "\xc7\xb2", +"\x64\x9b" => "\x8f\xc0\xf3", +"\x64\x9d" => "\x8f\xc0\xf4", +"\x64\x9e" => "\xc6\xb5", +"\x64\x9f" => "\x8f\xc0\xf5", +"\x64\xa1" => "\x8f\xc0\xf6", +"\x64\xa3" => "\x8f\xc0\xf7", +"\x64\xa4" => "\xc5\xb1", +"\x64\xa5" => "\xd9\xfb", +"\x64\xa6" => "\x8f\xc0\xf8", +"\x64\xa8" => "\x8f\xc0\xf9", +"\x64\xa9" => "\xd9\xfc", +"\x64\xab" => "\xc9\xef", +"\x64\xac" => "\x8f\xc0\xfa", +"\x64\xad" => "\xc7\xc5", +"\x64\xae" => "\xbb\xa3", +"\x64\xb0" => "\xc0\xf1", +"\x64\xb2" => "\xcb\xd0", +"\x64\xb3" => "\x8f\xc0\xfb", +"\x64\xb9" => "\xb3\xc9", +"\x64\xbb" => "\xda\xa5", +"\x64\xbc" => "\xd9\xfe", +"\x64\xbd" => "\x8f\xc0\xfc", +"\x64\xbe" => "\x8f\xc0\xfd", +"\x64\xbf" => "\x8f\xc0\xfe", +"\x64\xc1" => "\xcd\xca", +"\x64\xc2" => "\xda\xa7", +"\x64\xc4" => "\x8f\xc1\xa1", +"\x64\xc5" => "\xda\xa3", +"\x64\xc7" => "\xda\xa4", +"\x64\xc9" => "\x8f\xc1\xa2", +"\x64\xca" => "\x8f\xc1\xa3", +"\x64\xcb" => "\x8f\xc1\xa4", +"\x64\xcc" => "\x8f\xc1\xa5", +"\x64\xcd" => "\xc1\xe0", +"\x64\xce" => "\x8f\xc1\xa6", +"\x64\xd0" => "\x8f\xc1\xa7", +"\x64\xd1" => "\x8f\xc1\xa8", +"\x64\xd2" => "\xda\xa2", +"\x64\xd4" => "\xd9\xbf", +"\x64\xd5" => "\x8f\xc1\xa9", +"\x64\xd7" => "\x8f\xc1\xaa", +"\x64\xd8" => "\xda\xa6", +"\x64\xda" => "\xda\xa1", +"\x64\xe0" => "\xda\xab", +"\x64\xe1" => "\xda\xac", +"\x64\xe2" => "\xc5\xa7", +"\x64\xe3" => "\xda\xae", +"\x64\xe4" => "\x8f\xc1\xab", +"\x64\xe5" => "\x8f\xc1\xac", +"\x64\xe6" => "\xbb\xa4", +"\x64\xe7" => "\xda\xa9", +"\x64\xe9" => "\x8f\xc1\xad", +"\x64\xea" => "\x8f\xc1\xae", +"\x64\xec" => "\xb5\xbc", +"\x64\xed" => "\x8f\xc1\xaf", +"\x64\xef" => "\xda\xaf", +"\x64\xf0" => "\x8f\xc1\xb0", +"\x64\xf1" => "\xda\xa8", +"\x64\xf2" => "\xda\xb3", +"\x64\xf4" => "\xda\xb2", +"\x64\xf5" => "\x8f\xc1\xb1", +"\x64\xf6" => "\xda\xb1", +"\x64\xf7" => "\x8f\xc1\xb2", +"\x64\xfa" => "\xda\xb4", +"\x64\xfb" => "\x8f\xc1\xb3", +"\x64\xfd" => "\xda\xb6", +"\x64\xfe" => "\xbe\xf1", +"\x64\xff" => "\x8f\xc1\xb4", +"\x65\x00" => "\xda\xb5", +"\x65\x01" => "\x8f\xc1\xb5", +"\x65\x04" => "\x8f\xc1\xb6", +"\x65\x05" => "\xda\xb9", +"\x65\x08" => "\x8f\xc1\xb7", +"\x65\x09" => "\x8f\xc1\xb8", +"\x65\x0a" => "\x8f\xc1\xb9", +"\x65\x0f" => "\x8f\xc1\xba", +"\x65\x13" => "\x8f\xc1\xbb", +"\x65\x14" => "\x8f\xc1\xbc", +"\x65\x16" => "\x8f\xc1\xbd", +"\x65\x18" => "\xda\xb7", +"\x65\x19" => "\x8f\xc1\xbe", +"\x65\x1b" => "\x8f\xc1\xbf", +"\x65\x1c" => "\xda\xb8", +"\x65\x1d" => "\xd9\xf0", +"\x65\x1e" => "\x8f\xc1\xc0", +"\x65\x1f" => "\x8f\xc1\xc1", +"\x65\x22" => "\x8f\xc1\xc2", +"\x65\x23" => "\xda\xbb", +"\x65\x24" => "\xda\xba", +"\x65\x26" => "\x8f\xc1\xc3", +"\x65\x29" => "\x8f\xc1\xc4", +"\x65\x2a" => "\xd9\xf8", +"\x65\x2b" => "\xda\xbc", +"\x65\x2c" => "\xda\xb0", +"\x65\x2e" => "\x8f\xc1\xc5", +"\x65\x2f" => "\xbb\xd9", +"\x65\x31" => "\x8f\xc1\xc6", +"\x65\x34" => "\xda\xbd", +"\x65\x35" => "\xda\xbe", +"\x65\x36" => "\xda\xc0", +"\x65\x37" => "\xda\xbf", +"\x65\x38" => "\xda\xc1", +"\x65\x39" => "\xb2\xfe", +"\x65\x3a" => "\x8f\xc1\xc7", +"\x65\x3b" => "\xb9\xb6", +"\x65\x3c" => "\x8f\xc1\xc8", +"\x65\x3d" => "\x8f\xc1\xc9", +"\x65\x3e" => "\xca\xfc", +"\x65\x3f" => "\xc0\xaf", +"\x65\x43" => "\x8f\xc1\xca", +"\x65\x45" => "\xb8\xce", +"\x65\x47" => "\x8f\xc1\xcb", +"\x65\x48" => "\xda\xc3", +"\x65\x49" => "\x8f\xc1\xcc", +"\x65\x4d" => "\xda\xc6", +"\x65\x4f" => "\xc9\xd2", +"\x65\x50" => "\x8f\xc1\xcd", +"\x65\x51" => "\xb5\xdf", +"\x65\x52" => "\x8f\xc1\xce", +"\x65\x54" => "\x8f\xc1\xcf", +"\x65\x55" => "\xda\xc5", +"\x65\x56" => "\xda\xc4", +"\x65\x57" => "\xc7\xd4", +"\x65\x58" => "\xda\xc7", +"\x65\x59" => "\xb6\xb5", +"\x65\x5d" => "\xda\xc9", +"\x65\x5e" => "\xda\xc8", +"\x65\x5f" => "\x8f\xc1\xd0", +"\x65\x60" => "\x8f\xc1\xd1", +"\x65\x62" => "\xb4\xba", +"\x65\x63" => "\xbb\xb6", +"\x65\x66" => "\xc6\xd8", +"\x65\x67" => "\x8f\xc1\xd2", +"\x65\x6b" => "\x8f\xc1\xd3", +"\x65\x6c" => "\xb7\xc9", +"\x65\x70" => "\xbf\xf4", +"\x65\x72" => "\xda\xca", +"\x65\x74" => "\xc0\xb0", +"\x65\x75" => "\xc5\xa8", +"\x65\x77" => "\xc9\xdf", +"\x65\x78" => "\xda\xcb", +"\x65\x7a" => "\x8f\xc1\xd4", +"\x65\x7d" => "\x8f\xc1\xd5", +"\x65\x81" => "\x8f\xc1\xd6", +"\x65\x82" => "\xda\xcc", +"\x65\x83" => "\xda\xcd", +"\x65\x85" => "\x8f\xc1\xd7", +"\x65\x87" => "\xca\xb8", +"\x65\x88" => "\xd5\xdd", +"\x65\x89" => "\xc0\xc6", +"\x65\x8a" => "\x8f\xc1\xd8", +"\x65\x8c" => "\xc9\xcc", +"\x65\x8e" => "\xba\xd8", +"\x65\x90" => "\xc8\xe5", +"\x65\x91" => "\xc8\xc3", +"\x65\x92" => "\x8f\xc1\xd9", +"\x65\x95" => "\x8f\xc1\xda", +"\x65\x97" => "\xc5\xcd", +"\x65\x98" => "\x8f\xc1\xdb", +"\x65\x99" => "\xce\xc1", +"\x65\x9b" => "\xda\xcf", +"\x65\x9c" => "\xbc\xd0", +"\x65\x9d" => "\x8f\xc1\xdc", +"\x65\x9f" => "\xda\xd0", +"\x65\xa0" => "\x8f\xc1\xdd", +"\x65\xa1" => "\xb0\xb6", +"\x65\xa3" => "\x8f\xc1\xde", +"\x65\xa4" => "\xb6\xd4", +"\x65\xa5" => "\xc0\xcd", +"\x65\xa6" => "\x8f\xc1\xdf", +"\x65\xa7" => "\xc9\xe0", +"\x65\xab" => "\xda\xd1", +"\x65\xac" => "\xbb\xc2", +"\x65\xad" => "\xc3\xc7", +"\x65\xae" => "\x8f\xc1\xe0", +"\x65\xaf" => "\xbb\xdb", +"\x65\xb0" => "\xbf\xb7", +"\x65\xb2" => "\x8f\xc1\xe1", +"\x65\xb3" => "\x8f\xc1\xe2", +"\x65\xb4" => "\x8f\xc1\xe3", +"\x65\xb7" => "\xda\xd2", +"\x65\xb9" => "\xca\xfd", +"\x65\xbc" => "\xb1\xf7", +"\x65\xbd" => "\xbb\xdc", +"\x65\xbf" => "\x8f\xc1\xe4", +"\x65\xc1" => "\xda\xd5", +"\x65\xc2" => "\x8f\xc1\xe5", +"\x65\xc3" => "\xda\xd3", +"\x65\xc4" => "\xda\xd6", +"\x65\xc5" => "\xce\xb9", +"\x65\xc6" => "\xda\xd4", +"\x65\xc8" => "\x8f\xc1\xe6", +"\x65\xc9" => "\x8f\xc1\xe7", +"\x65\xcb" => "\xc0\xfb", +"\x65\xcc" => "\xda\xd7", +"\x65\xce" => "\x8f\xc1\xe8", +"\x65\xcf" => "\xc2\xb2", +"\x65\xd0" => "\x8f\xc1\xe9", +"\x65\xd2" => "\xda\xd8", +"\x65\xd4" => "\x8f\xc1\xea", +"\x65\xd6" => "\x8f\xc1\xeb", +"\x65\xd7" => "\xb4\xfa", +"\x65\xd8" => "\x8f\xc1\xec", +"\x65\xd9" => "\xda\xda", +"\x65\xdb" => "\xda\xd9", +"\x65\xdf" => "\x8f\xc1\xed", +"\x65\xe0" => "\xda\xdb", +"\x65\xe1" => "\xda\xdc", +"\x65\xe2" => "\xb4\xfb", +"\x65\xe5" => "\xc6\xfc", +"\x65\xe6" => "\xc3\xb6", +"\x65\xe7" => "\xb5\xec", +"\x65\xe8" => "\xbb\xdd", +"\x65\xe9" => "\xc1\xe1", +"\x65\xec" => "\xbd\xdc", +"\x65\xed" => "\xb0\xb0", +"\x65\xf0" => "\x8f\xc1\xee", +"\x65\xf1" => "\xda\xdd", +"\x65\xf2" => "\x8f\xc1\xef", +"\x65\xf4" => "\x8f\xc1\xf0", +"\x65\xf5" => "\x8f\xc1\xf1", +"\x65\xf9" => "\x8f\xc1\xf2", +"\x65\xfa" => "\xb2\xa2", +"\x65\xfb" => "\xda\xe1", +"\x65\xfe" => "\x8f\xc1\xf3", +"\x65\xff" => "\x8f\xc1\xf4", +"\x66\x00" => "\x8f\xc1\xf5", +"\x66\x02" => "\xb9\xb7", +"\x66\x03" => "\xda\xe0", +"\x66\x04" => "\x8f\xc1\xf6", +"\x66\x06" => "\xba\xab", +"\x66\x07" => "\xbe\xba", +"\x66\x08" => "\x8f\xc1\xf7", +"\x66\x09" => "\x8f\xc1\xf8", +"\x66\x0a" => "\xda\xdf", +"\x66\x0c" => "\xbe\xbb", +"\x66\x0d" => "\x8f\xc1\xf9", +"\x66\x0e" => "\xcc\xc0", +"\x66\x0f" => "\xba\xaa", +"\x66\x11" => "\x8f\xc1\xfa", +"\x66\x12" => "\x8f\xc1\xfb", +"\x66\x13" => "\xb0\xd7", +"\x66\x14" => "\xc0\xce", +"\x66\x15" => "\x8f\xc1\xfc", +"\x66\x16" => "\x8f\xc1\xfd", +"\x66\x1c" => "\xda\xe6", +"\x66\x1d" => "\x8f\xc1\xfe", +"\x66\x1e" => "\x8f\xc2\xa1", +"\x66\x1f" => "\xc0\xb1", +"\x66\x20" => "\xb1\xc7", +"\x66\x21" => "\x8f\xc2\xa2", +"\x66\x22" => "\x8f\xc2\xa3", +"\x66\x23" => "\x8f\xc2\xa4", +"\x66\x24" => "\x8f\xc2\xa5", +"\x66\x25" => "\xbd\xd5", +"\x66\x26" => "\x8f\xc2\xa6", +"\x66\x27" => "\xcb\xe6", +"\x66\x28" => "\xba\xf2", +"\x66\x29" => "\x8f\xc2\xa7", +"\x66\x2a" => "\x8f\xc2\xa8", +"\x66\x2b" => "\x8f\xc2\xa9", +"\x66\x2c" => "\x8f\xc2\xaa", +"\x66\x2d" => "\xbe\xbc", +"\x66\x2e" => "\x8f\xc2\xab", +"\x66\x2f" => "\xc0\xa7", +"\x66\x30" => "\x8f\xc2\xac", +"\x66\x31" => "\x8f\xc2\xad", +"\x66\x33" => "\x8f\xc2\xae", +"\x66\x34" => "\xda\xe5", +"\x66\x35" => "\xda\xe3", +"\x66\x36" => "\xda\xe4", +"\x66\x37" => "\x8f\xc2\xb0", +"\x66\x39" => "\x8f\xc2\xaf", +"\x66\x3c" => "\xc3\xeb", +"\x66\x3f" => "\xdb\xa6", +"\x66\x40" => "\x8f\xc2\xb1", +"\x66\x41" => "\xda\xea", +"\x66\x42" => "\xbb\xfe", +"\x66\x43" => "\xb9\xb8", +"\x66\x44" => "\xda\xe8", +"\x66\x45" => "\x8f\xc2\xb2", +"\x66\x46" => "\x8f\xc2\xb3", +"\x66\x49" => "\xda\xe9", +"\x66\x4a" => "\x8f\xc2\xb4", +"\x66\x4b" => "\xbf\xb8", +"\x66\x4c" => "\x8f\xc2\xb5", +"\x66\x4e" => "\x8f\xc2\xb7", +"\x66\x4f" => "\xda\xe7", +"\x66\x51" => "\x8f\xc2\xb6", +"\x66\x52" => "\xbb\xaf", +"\x66\x57" => "\x8f\xc2\xb8", +"\x66\x58" => "\x8f\xc2\xb9", +"\x66\x59" => "\x8f\xc2\xba", +"\x66\x5b" => "\x8f\xc2\xbb", +"\x66\x5c" => "\x8f\xc2\xbc", +"\x66\x5d" => "\xda\xec", +"\x66\x5e" => "\xda\xeb", +"\x66\x5f" => "\xda\xf0", +"\x66\x60" => "\x8f\xc2\xbd", +"\x66\x61" => "\x8f\xc2\xbe", +"\x66\x62" => "\xda\xf1", +"\x66\x64" => "\xda\xed", +"\x66\x66" => "\xb3\xa2", +"\x66\x67" => "\xda\xee", +"\x66\x68" => "\xda\xef", +"\x66\x69" => "\xc8\xd5", +"\x66\x6a" => "\x8f\xc2\xc0", +"\x66\x6b" => "\x8f\xc2\xc1", +"\x66\x6c" => "\x8f\xc2\xc2", +"\x66\x6e" => "\xc9\xe1", +"\x66\x6f" => "\xb7\xca", +"\x66\x70" => "\xda\xf2", +"\x66\x73" => "\x8f\xc2\xc4", +"\x66\x74" => "\xc0\xb2", +"\x66\x75" => "\x8f\xc2\xc5", +"\x66\x76" => "\xbe\xbd", +"\x66\x77" => "\x8f\xc2\xc7", +"\x66\x78" => "\x8f\xc2\xc8", +"\x66\x79" => "\x8f\xc2\xc9", +"\x66\x7a" => "\xc3\xd2", +"\x66\x7b" => "\x8f\xc2\xca", +"\x66\x7c" => "\x8f\xc2\xcc", +"\x66\x7e" => "\x8f\xc2\xc3", +"\x66\x7f" => "\x8f\xc2\xc6", +"\x66\x80" => "\x8f\xc2\xcb", +"\x66\x81" => "\xb6\xc7", +"\x66\x83" => "\xda\xf3", +"\x66\x84" => "\xda\xf7", +"\x66\x87" => "\xb2\xcb", +"\x66\x88" => "\xda\xf4", +"\x66\x89" => "\xda\xf6", +"\x66\x8b" => "\x8f\xc2\xcd", +"\x66\x8c" => "\x8f\xc2\xce", +"\x66\x8d" => "\x8f\xc2\xcf", +"\x66\x8e" => "\xda\xf5", +"\x66\x90" => "\x8f\xc2\xd0", +"\x66\x91" => "\xbd\xeb", +"\x66\x92" => "\x8f\xc2\xd1", +"\x66\x96" => "\xc3\xc8", +"\x66\x97" => "\xb0\xc5", +"\x66\x98" => "\xda\xf8", +"\x66\x99" => "\x8f\xc2\xd2", +"\x66\x9a" => "\x8f\xc2\xd3", +"\x66\x9b" => "\x8f\xc2\xd4", +"\x66\x9c" => "\x8f\xc2\xd5", +"\x66\x9d" => "\xda\xf9", +"\x66\x9f" => "\x8f\xc2\xd6", +"\x66\xa0" => "\x8f\xc2\xd7", +"\x66\xa2" => "\xc4\xaa", +"\x66\xa4" => "\x8f\xc2\xd8", +"\x66\xa6" => "\xce\xf1", +"\x66\xab" => "\xbb\xc3", +"\x66\xad" => "\x8f\xc2\xd9", +"\x66\xae" => "\xca\xeb", +"\x66\xb1" => "\x8f\xc2\xda", +"\x66\xb2" => "\x8f\xc2\xdb", +"\x66\xb4" => "\xcb\xbd", +"\x66\xb5" => "\x8f\xc2\xdc", +"\x66\xb8" => "\xdb\xa2", +"\x66\xb9" => "\xda\xfb", +"\x66\xbb" => "\x8f\xc2\xdd", +"\x66\xbc" => "\xda\xfe", +"\x66\xbe" => "\xda\xfd", +"\x66\xbf" => "\x8f\xc2\xde", +"\x66\xc0" => "\x8f\xc2\xdf", +"\x66\xc1" => "\xda\xfa", +"\x66\xc2" => "\x8f\xc2\xe0", +"\x66\xc3" => "\x8f\xc2\xe1", +"\x66\xc4" => "\xdb\xa1", +"\x66\xc7" => "\xc6\xde", +"\x66\xc8" => "\x8f\xc2\xe2", +"\x66\xc9" => "\xda\xfc", +"\x66\xcc" => "\x8f\xc2\xe3", +"\x66\xce" => "\x8f\xc2\xe4", +"\x66\xcf" => "\x8f\xc2\xe5", +"\x66\xd4" => "\x8f\xc2\xe6", +"\x66\xd6" => "\xdb\xa3", +"\x66\xd9" => "\xbd\xec", +"\x66\xda" => "\xdb\xa4", +"\x66\xdb" => "\x8f\xc2\xe7", +"\x66\xdc" => "\xcd\xcb", +"\x66\xdd" => "\xc7\xf8", +"\x66\xdf" => "\x8f\xc2\xe8", +"\x66\xe0" => "\xdb\xa5", +"\x66\xe6" => "\xdb\xa7", +"\x66\xe8" => "\x8f\xc2\xe9", +"\x66\xe9" => "\xdb\xa8", +"\x66\xeb" => "\x8f\xc2\xea", +"\x66\xec" => "\x8f\xc2\xeb", +"\x66\xee" => "\x8f\xc2\xec", +"\x66\xf0" => "\xdb\xa9", +"\x66\xf2" => "\xb6\xca", +"\x66\xf3" => "\xb1\xc8", +"\x66\xf4" => "\xb9\xb9", +"\x66\xf5" => "\xdb\xaa", +"\x66\xf7" => "\xdb\xab", +"\x66\xf8" => "\xbd\xf1", +"\x66\xf9" => "\xc1\xe2", +"\x66\xfa" => "\x8f\xc2\xed", +"\x66\xfb" => "\x8f\xc2\xbf", +"\x66\xfc" => "\xd2\xd8", +"\x66\xfd" => "\xc1\xbe", +"\x66\xfe" => "\xc1\xbd", +"\x66\xff" => "\xc2\xd8", +"\x67\x00" => "\xba\xc7", +"\x67\x03" => "\xd0\xf2", +"\x67\x05" => "\x8f\xc2\xee", +"\x67\x07" => "\x8f\xc2\xef", +"\x67\x08" => "\xb7\xee", +"\x67\x09" => "\xcd\xad", +"\x67\x0b" => "\xca\xfe", +"\x67\x0d" => "\xc9\xfe", +"\x67\x0e" => "\x8f\xc2\xf0", +"\x67\x0f" => "\xdb\xac", +"\x67\x13" => "\x8f\xc2\xf1", +"\x67\x14" => "\xba\xf3", +"\x67\x15" => "\xc4\xbf", +"\x67\x16" => "\xdb\xad", +"\x67\x17" => "\xcf\xaf", +"\x67\x19" => "\x8f\xc2\xf2", +"\x67\x1b" => "\xcb\xbe", +"\x67\x1c" => "\x8f\xc2\xf3", +"\x67\x1d" => "\xc4\xab", +"\x67\x1e" => "\xdb\xae", +"\x67\x1f" => "\xb4\xfc", +"\x67\x20" => "\x8f\xc2\xf4", +"\x67\x22" => "\x8f\xc2\xf5", +"\x67\x26" => "\xdb\xaf", +"\x67\x27" => "\xdb\xb0", +"\x67\x28" => "\xcc\xda", +"\x67\x2a" => "\xcc\xa4", +"\x67\x2b" => "\xcb\xf6", +"\x67\x2c" => "\xcb\xdc", +"\x67\x2d" => "\xbb\xa5", +"\x67\x2e" => "\xdb\xb2", +"\x67\x31" => "\xbc\xeb", +"\x67\x33" => "\x8f\xc2\xf6", +"\x67\x34" => "\xcb\xd1", +"\x67\x36" => "\xdb\xb4", +"\x67\x37" => "\xdb\xb7", +"\x67\x38" => "\xdb\xb6", +"\x67\x3a" => "\xb4\xf9", +"\x67\x3d" => "\xb5\xe0", +"\x67\x3e" => "\x8f\xc2\xf7", +"\x67\x3f" => "\xdb\xb3", +"\x67\x41" => "\xdb\xb5", +"\x67\x45" => "\x8f\xc2\xf8", +"\x67\x46" => "\xdb\xb8", +"\x67\x47" => "\x8f\xc2\xf9", +"\x67\x48" => "\x8f\xc2\xfa", +"\x67\x49" => "\xbf\xf9", +"\x67\x4c" => "\x8f\xc2\xfb", +"\x67\x4e" => "\xcd\xfb", +"\x67\x4f" => "\xb0\xc9", +"\x67\x50" => "\xba\xe0", +"\x67\x51" => "\xc2\xbc", +"\x67\x53" => "\xbc\xdd", +"\x67\x54" => "\x8f\xc2\xfc", +"\x67\x55" => "\x8f\xc2\xfd", +"\x67\x56" => "\xbe\xf3", +"\x67\x59" => "\xdb\xbb", +"\x67\x5c" => "\xc5\xce", +"\x67\x5d" => "\x8f\xc2\xfe", +"\x67\x5e" => "\xdb\xb9", +"\x67\x5f" => "\xc2\xab", +"\x67\x60" => "\xdb\xba", +"\x67\x61" => "\xbe\xf2", +"\x67\x62" => "\xcc\xdd", +"\x67\x63" => "\xdb\xbc", +"\x67\x64" => "\xdb\xbd", +"\x67\x65" => "\xcd\xe8", +"\x67\x66" => "\x8f\xc3\xa1", +"\x67\x6a" => "\xdb\xc2", +"\x67\x6c" => "\x8f\xc3\xa2", +"\x67\x6d" => "\xb9\xba", +"\x67\x6e" => "\x8f\xc3\xa3", +"\x67\x6f" => "\xc7\xd5", +"\x67\x70" => "\xdb\xbf", +"\x67\x71" => "\xc5\xec", +"\x67\x72" => "\xda\xde", +"\x67\x73" => "\xda\xe2", +"\x67\x74" => "\x8f\xc3\xa4", +"\x67\x75" => "\xb5\xcf", +"\x67\x76" => "\x8f\xc3\xa5", +"\x67\x77" => "\xc7\xc7", +"\x67\x7b" => "\x8f\xc3\xa6", +"\x67\x7c" => "\xdb\xc1", +"\x67\x7e" => "\xbe\xbe", +"\x67\x7f" => "\xc8\xc4", +"\x67\x81" => "\x8f\xc3\xa7", +"\x67\x84" => "\x8f\xc3\xa8", +"\x67\x85" => "\xdb\xc7", +"\x67\x87" => "\xc8\xfa", +"\x67\x89" => "\xdb\xbe", +"\x67\x8b" => "\xdb\xc4", +"\x67\x8c" => "\xdb\xc3", +"\x67\x8e" => "\x8f\xc3\xa9", +"\x67\x8f" => "\x8f\xc3\xaa", +"\x67\x90" => "\xc0\xcf", +"\x67\x91" => "\x8f\xc3\xab", +"\x67\x93" => "\x8f\xc3\xac", +"\x67\x95" => "\xcb\xed", +"\x67\x96" => "\x8f\xc3\xad", +"\x67\x97" => "\xce\xd3", +"\x67\x98" => "\x8f\xc3\xae", +"\x67\x99" => "\x8f\xc3\xaf", +"\x67\x9a" => "\xcb\xe7", +"\x67\x9b" => "\x8f\xc3\xb0", +"\x67\x9c" => "\xb2\xcc", +"\x67\x9d" => "\xbb\xde", +"\x67\xa0" => "\xcf\xc8", +"\x67\xa1" => "\xdb\xc6", +"\x67\xa2" => "\xbf\xf5", +"\x67\xa6" => "\xdb\xc5", +"\x67\xa9" => "\xdb\xc0", +"\x67\xaf" => "\xb8\xcf", +"\x67\xb0" => "\x8f\xc3\xb1", +"\x67\xb1" => "\x8f\xc3\xb2", +"\x67\xb2" => "\x8f\xc3\xb3", +"\x67\xb3" => "\xdb\xcc", +"\x67\xb4" => "\xdb\xca", +"\x67\xb5" => "\x8f\xc3\xb4", +"\x67\xb6" => "\xb2\xcd", +"\x67\xb7" => "\xdb\xc8", +"\x67\xb8" => "\xdb\xce", +"\x67\xb9" => "\xdb\xd4", +"\x67\xbb" => "\x8f\xc3\xb5", +"\x67\xbc" => "\x8f\xc3\xb6", +"\x67\xbd" => "\x8f\xc3\xb7", +"\x67\xc0" => "\x8f\xc3\xb9", +"\x67\xc1" => "\xc2\xc8", +"\x67\xc2" => "\x8f\xc3\xba", +"\x67\xc3" => "\x8f\xc3\xbb", +"\x67\xc4" => "\xca\xc1", +"\x67\xc5" => "\x8f\xc3\xbc", +"\x67\xc6" => "\xdb\xd6", +"\x67\xc8" => "\x8f\xc3\xbd", +"\x67\xc9" => "\x8f\xc3\xbe", +"\x67\xca" => "\xc9\xa2", +"\x67\xce" => "\xdb\xd5", +"\x67\xcf" => "\xc7\xf0", +"\x67\xd0" => "\xcb\xbf", +"\x67\xd1" => "\xb4\xbb", +"\x67\xd2" => "\x8f\xc3\xbf", +"\x67\xd3" => "\xc0\xf7", +"\x67\xd4" => "\xbd\xc0", +"\x67\xd7" => "\x8f\xc3\xc0", +"\x67\xd8" => "\xc4\xd3", +"\x67\xd9" => "\x8f\xc3\xc1", +"\x67\xda" => "\xcd\xae", +"\x67\xdc" => "\x8f\xc3\xc2", +"\x67\xdd" => "\xdb\xd1", +"\x67\xde" => "\xdb\xd0", +"\x67\xe1" => "\x8f\xc3\xc3", +"\x67\xe2" => "\xdb\xd2", +"\x67\xe4" => "\xdb\xcf", +"\x67\xe6" => "\x8f\xc3\xc4", +"\x67\xe7" => "\xdb\xd7", +"\x67\xe9" => "\xdb\xcd", +"\x67\xec" => "\xdb\xcb", +"\x67\xee" => "\xdb\xd3", +"\x67\xef" => "\xdb\xc9", +"\x67\xf0" => "\x8f\xc3\xc5", +"\x67\xf1" => "\xc3\xec", +"\x67\xf2" => "\x8f\xc3\xc6", +"\x67\xf3" => "\xcc\xf8", +"\x67\xf4" => "\xbc\xc6", +"\x67\xf5" => "\xba\xf4", +"\x67\xf6" => "\x8f\xc3\xc7", +"\x67\xf7" => "\x8f\xc3\xc8", +"\x67\xf9" => "\x8f\xc3\xb8", +"\x67\xfb" => "\xba\xba", +"\x67\xfe" => "\xcb\xef", +"\x67\xff" => "\xb3\xc1", +"\x68\x02" => "\xc4\xce", +"\x68\x03" => "\xc6\xca", +"\x68\x04" => "\xb1\xc9", +"\x68\x13" => "\xc0\xf2", +"\x68\x14" => "\x8f\xc3\xca", +"\x68\x16" => "\xc0\xb4", +"\x68\x17" => "\xb7\xaa", +"\x68\x19" => "\x8f\xc3\xcb", +"\x68\x1d" => "\x8f\xc3\xcc", +"\x68\x1e" => "\xdb\xd9", +"\x68\x1f" => "\x8f\xc3\xcd", +"\x68\x21" => "\xb9\xbb", +"\x68\x22" => "\xb3\xfc", +"\x68\x27" => "\x8f\xc3\xcf", +"\x68\x28" => "\x8f\xc3\xce", +"\x68\x29" => "\xdb\xdb", +"\x68\x2a" => "\xb3\xf4", +"\x68\x2b" => "\xdb\xe1", +"\x68\x2c" => "\x8f\xc3\xd0", +"\x68\x2d" => "\x8f\xc3\xd1", +"\x68\x2f" => "\x8f\xc3\xd2", +"\x68\x30" => "\x8f\xc3\xd3", +"\x68\x31" => "\x8f\xc3\xd4", +"\x68\x32" => "\xdb\xde", +"\x68\x33" => "\x8f\xc3\xd5", +"\x68\x34" => "\xc0\xf3", +"\x68\x38" => "\xb3\xcb", +"\x68\x39" => "\xba\xac", +"\x68\x3b" => "\x8f\xc3\xd6", +"\x68\x3c" => "\xb3\xca", +"\x68\x3d" => "\xba\xcf", +"\x68\x3f" => "\x8f\xc3\xd7", +"\x68\x40" => "\xdb\xdc", +"\x68\x41" => "\xb7\xe5", +"\x68\x42" => "\xb7\xcb", +"\x68\x43" => "\xc5\xed", +"\x68\x44" => "\x8f\xc3\xd8", +"\x68\x45" => "\x8f\xc3\xd9", +"\x68\x46" => "\xdb\xda", +"\x68\x48" => "\xb0\xc6", +"\x68\x4a" => "\x8f\xc3\xda", +"\x68\x4c" => "\x8f\xc3\xdb", +"\x68\x4d" => "\xdb\xdd", +"\x68\x4e" => "\xdb\xdf", +"\x68\x50" => "\xb6\xcd", +"\x68\x51" => "\xb7\xac", +"\x68\x52" => "\x8f\xc3\xc9", +"\x68\x53" => "\xb4\xbc", +"\x68\x54" => "\xb5\xcb", +"\x68\x55" => "\x8f\xc3\xdc", +"\x68\x57" => "\x8f\xc3\xdd", +"\x68\x58" => "\x8f\xc3\xde", +"\x68\x59" => "\xdb\xe2", +"\x68\x5b" => "\x8f\xc3\xdf", +"\x68\x5c" => "\xba\xf9", +"\x68\x5d" => "\xcb\xf1", +"\x68\x5f" => "\xbb\xb7", +"\x68\x63" => "\xdb\xe3", +"\x68\x67" => "\xc9\xb0", +"\x68\x6b" => "\x8f\xc3\xe0", +"\x68\x6e" => "\x8f\xc3\xe1", +"\x68\x6f" => "\x8f\xc3\xe2", +"\x68\x70" => "\x8f\xc3\xe3", +"\x68\x71" => "\x8f\xc3\xe4", +"\x68\x72" => "\x8f\xc3\xe5", +"\x68\x74" => "\xdb\xef", +"\x68\x75" => "\x8f\xc3\xe6", +"\x68\x76" => "\xb2\xb3", +"\x68\x77" => "\xdb\xe4", +"\x68\x79" => "\x8f\xc3\xe7", +"\x68\x7a" => "\x8f\xc3\xe8", +"\x68\x7b" => "\x8f\xc3\xe9", +"\x68\x7c" => "\x8f\xc3\xea", +"\x68\x7e" => "\xdb\xf5", +"\x68\x7f" => "\xdb\xe5", +"\x68\x81" => "\xce\xc2", +"\x68\x82" => "\x8f\xc3\xeb", +"\x68\x83" => "\xdb\xec", +"\x68\x84" => "\x8f\xc3\xec", +"\x68\x85" => "\xc7\xdf", +"\x68\x86" => "\x8f\xc3\xed", +"\x68\x88" => "\x8f\xc3\xee", +"\x68\x8d" => "\xdb\xf4", +"\x68\x8f" => "\xdb\xe7", +"\x68\x93" => "\xb0\xb4", +"\x68\x94" => "\xdb\xe9", +"\x68\x96" => "\x8f\xc3\xef", +"\x68\x97" => "\xb9\xbc", +"\x68\x98" => "\x8f\xc3\xf0", +"\x68\x9a" => "\x8f\xc3\xf1", +"\x68\x9b" => "\xdb\xeb", +"\x68\x9c" => "\x8f\xc3\xf2", +"\x68\x9d" => "\xdb\xea", +"\x68\x9f" => "\xdb\xe6", +"\x68\xa0" => "\xdb\xf1", +"\x68\xa1" => "\x8f\xc3\xf3", +"\x68\xa2" => "\xbe\xbf", +"\x68\xa3" => "\x8f\xc3\xf4", +"\x68\xa5" => "\x8f\xc3\xf5", +"\x68\xa6" => "\xd4\xed", +"\x68\xa7" => "\xb8\xe8", +"\x68\xa8" => "\xcd\xfc", +"\x68\xa9" => "\x8f\xc3\xf6", +"\x68\xaa" => "\x8f\xc3\xf7", +"\x68\xad" => "\xdb\xe8", +"\x68\xae" => "\x8f\xc3\xf8", +"\x68\xaf" => "\xc4\xf4", +"\x68\xb0" => "\xb3\xa3", +"\x68\xb1" => "\xba\xad", +"\x68\xb2" => "\x8f\xc3\xf9", +"\x68\xb3" => "\xdb\xe0", +"\x68\xb5" => "\xdb\xf0", +"\x68\xb6" => "\xb3\xe1", +"\x68\xb9" => "\xdb\xee", +"\x68\xba" => "\xdb\xf2", +"\x68\xbb" => "\x8f\xc3\xfa", +"\x68\xbc" => "\xc5\xee", +"\x68\xc4" => "\xb4\xfe", +"\x68\xc5" => "\x8f\xc3\xfb", +"\x68\xc6" => "\xdc\xb2", +"\x68\xc8" => "\x8f\xc3\xfc", +"\x68\xc9" => "\xcc\xc9", +"\x68\xca" => "\xdb\xf7", +"\x68\xcb" => "\xb4\xfd", +"\x68\xcc" => "\x8f\xc3\xfd", +"\x68\xcd" => "\xdb\xfe", +"\x68\xcf" => "\x8f\xc3\xfe", +"\x68\xd0" => "\x8f\xc4\xa1", +"\x68\xd1" => "\x8f\xc4\xa2", +"\x68\xd2" => "\xcb\xc0", +"\x68\xd3" => "\x8f\xc4\xa3", +"\x68\xd4" => "\xdc\xa1", +"\x68\xd5" => "\xdc\xa3", +"\x68\xd6" => "\x8f\xc4\xa4", +"\x68\xd7" => "\xdc\xa7", +"\x68\xd8" => "\xdb\xf9", +"\x68\xd9" => "\x8f\xc4\xa5", +"\x68\xda" => "\xc3\xaa", +"\x68\xdc" => "\x8f\xc4\xa6", +"\x68\xdd" => "\x8f\xc4\xa7", +"\x68\xdf" => "\xc5\xef", +"\x68\xe0" => "\xdc\xab", +"\x68\xe1" => "\xdb\xfc", +"\x68\xe3" => "\xdc\xa8", +"\x68\xe5" => "\x8f\xc4\xa8", +"\x68\xe7" => "\xdc\xa2", +"\x68\xe8" => "\x8f\xc4\xa9", +"\x68\xea" => "\x8f\xc4\xaa", +"\x68\xeb" => "\x8f\xc4\xab", +"\x68\xec" => "\x8f\xc4\xac", +"\x68\xed" => "\x8f\xc4\xad", +"\x68\xee" => "\xbf\xb9", +"\x68\xef" => "\xdc\xac", +"\x68\xf0" => "\x8f\xc4\xae", +"\x68\xf1" => "\x8f\xc4\xaf", +"\x68\xf2" => "\xc0\xb3", +"\x68\xf5" => "\x8f\xc4\xb0", +"\x68\xf6" => "\x8f\xc4\xb1", +"\x68\xf9" => "\xdc\xaa", +"\x68\xfa" => "\xb4\xbd", +"\x68\xfb" => "\x8f\xc4\xb2", +"\x68\xfc" => "\x8f\xc4\xb3", +"\x68\xfd" => "\x8f\xc4\xb4", +"\x69\x00" => "\xcf\xd0", +"\x69\x01" => "\xdb\xf6", +"\x69\x04" => "\xdc\xa6", +"\x69\x05" => "\xb0\xd8", +"\x69\x06" => "\x8f\xc4\xb5", +"\x69\x08" => "\xdb\xf8", +"\x69\x09" => "\x8f\xc4\xb6", +"\x69\x0a" => "\x8f\xc4\xb7", +"\x69\x0b" => "\xcc\xba", +"\x69\x0c" => "\xdb\xfd", +"\x69\x0d" => "\xbf\xa2", +"\x69\x0e" => "\xc4\xc7", +"\x69\x0f" => "\xdb\xf3", +"\x69\x10" => "\x8f\xc4\xb8", +"\x69\x11" => "\x8f\xc4\xb9", +"\x69\x12" => "\xdc\xa5", +"\x69\x13" => "\x8f\xc4\xba", +"\x69\x16" => "\x8f\xc4\xbb", +"\x69\x17" => "\x8f\xc4\xbc", +"\x69\x19" => "\xbf\xfa", +"\x69\x1a" => "\xdc\xaf", +"\x69\x1b" => "\xb3\xf1", +"\x69\x1c" => "\xb8\xa1", +"\x69\x21" => "\xdc\xb1", +"\x69\x22" => "\xdb\xfa", +"\x69\x23" => "\xdc\xb0", +"\x69\x25" => "\xdc\xa9", +"\x69\x26" => "\xdb\xfb", +"\x69\x28" => "\xdc\xad", +"\x69\x2a" => "\xdc\xae", +"\x69\x30" => "\xdc\xbf", +"\x69\x31" => "\x8f\xc4\xbd", +"\x69\x33" => "\x8f\xc4\xbe", +"\x69\x34" => "\xc6\xce", +"\x69\x35" => "\x8f\xc4\xbf", +"\x69\x36" => "\xdc\xa4", +"\x69\x38" => "\x8f\xc4\xc0", +"\x69\x39" => "\xdc\xbb", +"\x69\x3b" => "\x8f\xc4\xc1", +"\x69\x3d" => "\xdc\xbd", +"\x69\x3f" => "\xc4\xd8", +"\x69\x42" => "\x8f\xc4\xc2", +"\x69\x45" => "\x8f\xc4\xc3", +"\x69\x49" => "\x8f\xc4\xc4", +"\x69\x4a" => "\xcd\xcc", +"\x69\x4e" => "\x8f\xc4\xc5", +"\x69\x53" => "\xc9\xf6", +"\x69\x54" => "\xdc\xb8", +"\x69\x55" => "\xc2\xca", +"\x69\x57" => "\x8f\xc4\xc6", +"\x69\x59" => "\xdc\xbe", +"\x69\x5a" => "\xc1\xbf", +"\x69\x5b" => "\x8f\xc4\xc7", +"\x69\x5c" => "\xdc\xb5", +"\x69\x5d" => "\xdc\xc2", +"\x69\x5e" => "\xdc\xc1", +"\x69\x60" => "\xc6\xef", +"\x69\x61" => "\xdc\xc0", +"\x69\x62" => "\xc6\xea", +"\x69\x63" => "\x8f\xc4\xc8", +"\x69\x64" => "\x8f\xc4\xc9", +"\x69\x65" => "\x8f\xc4\xca", +"\x69\x66" => "\x8f\xc4\xcb", +"\x69\x68" => "\x8f\xc4\xcc", +"\x69\x69" => "\x8f\xc4\xcd", +"\x69\x6a" => "\xdc\xc4", +"\x69\x6b" => "\xdc\xb7", +"\x69\x6c" => "\x8f\xc4\xce", +"\x69\x6d" => "\xb6\xc8", +"\x69\x6e" => "\xdc\xba", +"\x69\x6f" => "\xbd\xdd", +"\x69\x70" => "\x8f\xc4\xcf", +"\x69\x71" => "\x8f\xc4\xd0", +"\x69\x72" => "\x8f\xc4\xd1", +"\x69\x73" => "\xc7\xe0", +"\x69\x74" => "\xdc\xbc", +"\x69\x75" => "\xb6\xcb", +"\x69\x77" => "\xdc\xb4", +"\x69\x78" => "\xdc\xb6", +"\x69\x79" => "\xdc\xb3", +"\x69\x7a" => "\x8f\xc4\xd2", +"\x69\x7b" => "\x8f\xc4\xd3", +"\x69\x7c" => "\xcf\xb0", +"\x69\x7d" => "\xb3\xda", +"\x69\x7e" => "\xdc\xb9", +"\x69\x7f" => "\x8f\xc4\xd4", +"\x69\x80" => "\x8f\xc4\xd5", +"\x69\x81" => "\xdc\xc3", +"\x69\x82" => "\xb3\xb5", +"\x69\x8a" => "\xba\xe7", +"\x69\x8d" => "\x8f\xc4\xd6", +"\x69\x8e" => "\xb1\xdd", +"\x69\x91" => "\xdc\xd4", +"\x69\x92" => "\x8f\xc4\xd7", +"\x69\x94" => "\xcf\xb1", +"\x69\x95" => "\xdc\xd7", +"\x69\x96" => "\x8f\xc4\xd8", +"\x69\x98" => "\x8f\xc4\xd9", +"\x69\x9b" => "\xbf\xba", +"\x69\x9c" => "\xdc\xd6", +"\x69\xa0" => "\xdc\xd5", +"\x69\xa1" => "\x8f\xc4\xda", +"\x69\xa5" => "\x8f\xc4\xdb", +"\x69\xa6" => "\x8f\xc4\xdc", +"\x69\xa7" => "\xdc\xd2", +"\x69\xa8" => "\x8f\xc4\xdd", +"\x69\xab" => "\x8f\xc4\xde", +"\x69\xad" => "\x8f\xc4\xdf", +"\x69\xae" => "\xdc\xc6", +"\x69\xaf" => "\x8f\xc4\xe0", +"\x69\xb1" => "\xdc\xe3", +"\x69\xb2" => "\xdc\xc5", +"\x69\xb4" => "\xdc\xd8", +"\x69\xb7" => "\x8f\xc4\xe1", +"\x69\xb8" => "\x8f\xc4\xe2", +"\x69\xba" => "\x8f\xc4\xe3", +"\x69\xbb" => "\xdc\xd0", +"\x69\xbc" => "\x8f\xc4\xe4", +"\x69\xbe" => "\xdc\xcb", +"\x69\xbf" => "\xdc\xc8", +"\x69\xc1" => "\xdc\xc9", +"\x69\xc3" => "\xdc\xd1", +"\x69\xc5" => "\x8f\xc4\xe5", +"\x69\xc7" => "\xf4\xa2", +"\x69\xc8" => "\x8f\xc4\xe6", +"\x69\xca" => "\xdc\xce", +"\x69\xcb" => "\xb9\xbd", +"\x69\xcc" => "\xc4\xc8", +"\x69\xcd" => "\xc1\xe4", +"\x69\xce" => "\xdc\xcc", +"\x69\xd0" => "\xdc\xc7", +"\x69\xd1" => "\x8f\xc4\xe7", +"\x69\xd3" => "\xdc\xca", +"\x69\xd6" => "\x8f\xc4\xe8", +"\x69\xd7" => "\x8f\xc4\xe9", +"\x69\xd8" => "\xcd\xcd", +"\x69\xd9" => "\xcb\xea", +"\x69\xdd" => "\xdc\xcf", +"\x69\xde" => "\xdc\xd9", +"\x69\xe2" => "\x8f\xc4\xea", +"\x69\xe5" => "\x8f\xc4\xeb", +"\x69\xe7" => "\xdc\xe1", +"\x69\xe8" => "\xdc\xda", +"\x69\xeb" => "\xdc\xe7", +"\x69\xed" => "\xdc\xe5", +"\x69\xee" => "\x8f\xc4\xec", +"\x69\xef" => "\x8f\xc4\xed", +"\x69\xf1" => "\x8f\xc4\xee", +"\x69\xf2" => "\xdc\xe0", +"\x69\xf3" => "\x8f\xc4\xef", +"\x69\xf5" => "\x8f\xc4\xf0", +"\x69\xf9" => "\xdc\xdf", +"\x69\xfb" => "\xc4\xd0", +"\x69\xfd" => "\xc1\xe5", +"\x69\xfe" => "\x8f\xc4\xf1", +"\x69\xff" => "\xdc\xdd", +"\x6a\x00" => "\x8f\xc4\xf2", +"\x6a\x01" => "\x8f\xc4\xf3", +"\x6a\x02" => "\xdc\xdb", +"\x6a\x03" => "\x8f\xc4\xf4", +"\x6a\x05" => "\xdc\xe2", +"\x6a\x0a" => "\xdc\xe8", +"\x6a\x0b" => "\xc8\xf5", +"\x6a\x0c" => "\xdc\xee", +"\x6a\x0f" => "\x8f\xc4\xf5", +"\x6a\x11" => "\x8f\xc4\xf6", +"\x6a\x12" => "\xdc\xe9", +"\x6a\x13" => "\xdc\xec", +"\x6a\x14" => "\xdc\xe6", +"\x6a\x15" => "\x8f\xc4\xf7", +"\x6a\x17" => "\xc3\xf4", +"\x6a\x19" => "\xc9\xb8", +"\x6a\x1a" => "\x8f\xc4\xf8", +"\x6a\x1b" => "\xdc\xdc", +"\x6a\x1d" => "\x8f\xc4\xf9", +"\x6a\x1e" => "\xdc\xe4", +"\x6a\x1f" => "\xbe\xc0", +"\x6a\x20" => "\x8f\xc4\xfa", +"\x6a\x21" => "\xcc\xcf", +"\x6a\x22" => "\xdc\xf8", +"\x6a\x23" => "\xdc\xeb", +"\x6a\x24" => "\x8f\xc4\xfb", +"\x6a\x28" => "\x8f\xc4\xfc", +"\x6a\x29" => "\xb8\xa2", +"\x6a\x2a" => "\xb2\xa3", +"\x6a\x2b" => "\xb3\xdf", +"\x6a\x2e" => "\xdc\xd3", +"\x6a\x30" => "\x8f\xc4\xfd", +"\x6a\x32" => "\x8f\xc4\xfe", +"\x6a\x34" => "\x8f\xc5\xa1", +"\x6a\x35" => "\xbe\xc1", +"\x6a\x36" => "\xdc\xf0", +"\x6a\x37" => "\x8f\xc5\xa2", +"\x6a\x38" => "\xdc\xf7", +"\x6a\x39" => "\xbc\xf9", +"\x6a\x3a" => "\xb3\xf2", +"\x6a\x3b" => "\x8f\xc5\xa3", +"\x6a\x3d" => "\xc3\xae", +"\x6a\x3e" => "\x8f\xc5\xa4", +"\x6a\x3f" => "\x8f\xc5\xa5", +"\x6a\x44" => "\xdc\xed", +"\x6a\x45" => "\x8f\xc5\xa6", +"\x6a\x46" => "\x8f\xc5\xa7", +"\x6a\x47" => "\xdc\xf2", +"\x6a\x48" => "\xdc\xf6", +"\x6a\x49" => "\x8f\xc5\xa8", +"\x6a\x4a" => "\x8f\xc5\xa9", +"\x6a\x4b" => "\xb6\xb6", +"\x6a\x4e" => "\x8f\xc5\xaa", +"\x6a\x50" => "\x8f\xc5\xab", +"\x6a\x51" => "\x8f\xc5\xac", +"\x6a\x52" => "\x8f\xc5\xad", +"\x6a\x55" => "\x8f\xc5\xae", +"\x6a\x56" => "\x8f\xc5\xaf", +"\x6a\x58" => "\xb5\xcc", +"\x6a\x59" => "\xdc\xf4", +"\x6a\x5b" => "\x8f\xc5\xb0", +"\x6a\x5f" => "\xb5\xa1", +"\x6a\x61" => "\xc6\xcb", +"\x6a\x62" => "\xdc\xf3", +"\x6a\x64" => "\x8f\xc5\xb1", +"\x6a\x66" => "\xdc\xf5", +"\x6a\x67" => "\x8f\xc5\xb2", +"\x6a\x6a" => "\x8f\xc5\xb3", +"\x6a\x71" => "\x8f\xc5\xb4", +"\x6a\x72" => "\xdc\xef", +"\x6a\x73" => "\x8f\xc5\xb5", +"\x6a\x78" => "\xdc\xf1", +"\x6a\x7e" => "\x8f\xc5\xb6", +"\x6a\x7f" => "\xb3\xe0", +"\x6a\x80" => "\xc3\xc9", +"\x6a\x81" => "\x8f\xc5\xb7", +"\x6a\x83" => "\x8f\xc5\xb8", +"\x6a\x84" => "\xdc\xfc", +"\x6a\x86" => "\x8f\xc5\xb9", +"\x6a\x87" => "\x8f\xc5\xba", +"\x6a\x89" => "\x8f\xc5\xbb", +"\x6a\x8b" => "\x8f\xc5\xbc", +"\x6a\x8d" => "\xdc\xfa", +"\x6a\x8e" => "\xb8\xe9", +"\x6a\x90" => "\xdc\xf9", +"\x6a\x91" => "\x8f\xc5\xbd", +"\x6a\x97" => "\xdd\xa1", +"\x6a\x9b" => "\x8f\xc5\xbe", +"\x6a\x9c" => "\xdb\xd8", +"\x6a\x9d" => "\x8f\xc5\xbf", +"\x6a\x9e" => "\x8f\xc5\xc0", +"\x6a\x9f" => "\x8f\xc5\xc1", +"\x6a\xa0" => "\xdc\xfb", +"\x6a\xa2" => "\xdc\xfd", +"\x6a\xa3" => "\xdc\xfe", +"\x6a\xa5" => "\x8f\xc5\xc2", +"\x6a\xaa" => "\xdd\xac", +"\x6a\xab" => "\x8f\xc5\xc3", +"\x6a\xac" => "\xdd\xa8", +"\x6a\xae" => "\xdb\xed", +"\x6a\xaf" => "\x8f\xc5\xc4", +"\x6a\xb0" => "\x8f\xc5\xc5", +"\x6a\xb1" => "\x8f\xc5\xc6", +"\x6a\xb3" => "\xdd\xa7", +"\x6a\xb4" => "\x8f\xc5\xc7", +"\x6a\xb8" => "\xdd\xa6", +"\x6a\xbb" => "\xdd\xa3", +"\x6a\xbd" => "\x8f\xc5\xc8", +"\x6a\xbe" => "\x8f\xc5\xc9", +"\x6a\xbf" => "\x8f\xc5\xca", +"\x6a\xc1" => "\xdc\xea", +"\x6a\xc2" => "\xdd\xa5", +"\x6a\xc3" => "\xdd\xa4", +"\x6a\xc6" => "\x8f\xc5\xcb", +"\x6a\xc8" => "\x8f\xc5\xcd", +"\x6a\xc9" => "\x8f\xc5\xcc", +"\x6a\xcc" => "\x8f\xc5\xce", +"\x6a\xd0" => "\x8f\xc5\xcf", +"\x6a\xd1" => "\xdd\xaa", +"\x6a\xd3" => "\xcf\xa6", +"\x6a\xd4" => "\x8f\xc5\xd0", +"\x6a\xd5" => "\x8f\xc5\xd1", +"\x6a\xd6" => "\x8f\xc5\xd2", +"\x6a\xda" => "\xdd\xad", +"\x6a\xdb" => "\xb6\xfb", +"\x6a\xdc" => "\x8f\xc5\xd3", +"\x6a\xdd" => "\x8f\xc5\xd4", +"\x6a\xde" => "\xdd\xa9", +"\x6a\xdf" => "\xdd\xab", +"\x6a\xe4" => "\x8f\xc5\xd5", +"\x6a\xe7" => "\x8f\xc5\xd6", +"\x6a\xe8" => "\xc8\xa7", +"\x6a\xea" => "\xdd\xae", +"\x6a\xec" => "\x8f\xc5\xd7", +"\x6a\xf0" => "\x8f\xc5\xd8", +"\x6a\xf1" => "\x8f\xc5\xd9", +"\x6a\xf2" => "\x8f\xc5\xda", +"\x6a\xfa" => "\xdd\xb2", +"\x6a\xfb" => "\xdd\xaf", +"\x6a\xfc" => "\x8f\xc5\xdb", +"\x6a\xfd" => "\x8f\xc5\xdc", +"\x6b\x02" => "\x8f\xc5\xdd", +"\x6b\x03" => "\x8f\xc5\xde", +"\x6b\x04" => "\xcd\xf3", +"\x6b\x05" => "\xdd\xb0", +"\x6b\x06" => "\x8f\xc5\xdf", +"\x6b\x07" => "\x8f\xc5\xe0", +"\x6b\x09" => "\x8f\xc5\xe1", +"\x6b\x0a" => "\xdc\xde", +"\x6b\x0f" => "\x8f\xc5\xe2", +"\x6b\x10" => "\x8f\xc5\xe3", +"\x6b\x11" => "\x8f\xc5\xe4", +"\x6b\x12" => "\xdd\xb3", +"\x6b\x16" => "\xdd\xb4", +"\x6b\x17" => "\x8f\xc5\xe5", +"\x6b\x1b" => "\x8f\xc5\xe6", +"\x6b\x1d" => "\xb1\xb5", +"\x6b\x1e" => "\x8f\xc5\xe7", +"\x6b\x1f" => "\xdd\xb6", +"\x6b\x20" => "\xb7\xe7", +"\x6b\x21" => "\xbc\xa1", +"\x6b\x23" => "\xb6\xd5", +"\x6b\x24" => "\x8f\xc5\xe8", +"\x6b\x27" => "\xb2\xa4", +"\x6b\x28" => "\x8f\xc5\xe9", +"\x6b\x2b" => "\x8f\xc5\xea", +"\x6b\x2c" => "\x8f\xc5\xeb", +"\x6b\x2f" => "\x8f\xc5\xec", +"\x6b\x32" => "\xcd\xdf", +"\x6b\x35" => "\x8f\xc5\xed", +"\x6b\x36" => "\x8f\xc5\xee", +"\x6b\x37" => "\xdd\xb8", +"\x6b\x38" => "\xdd\xb7", +"\x6b\x39" => "\xdd\xba", +"\x6b\x3a" => "\xb5\xbd", +"\x6b\x3b" => "\x8f\xc5\xef", +"\x6b\x3d" => "\xb6\xd6", +"\x6b\x3e" => "\xb4\xbe", +"\x6b\x3f" => "\x8f\xc5\xf0", +"\x6b\x43" => "\xdd\xbd", +"\x6b\x46" => "\x8f\xc5\xf1", +"\x6b\x47" => "\xdd\xbc", +"\x6b\x49" => "\xdd\xbe", +"\x6b\x4a" => "\x8f\xc5\xf2", +"\x6b\x4c" => "\xb2\xce", +"\x6b\x4d" => "\x8f\xc5\xf3", +"\x6b\x4e" => "\xc3\xb7", +"\x6b\x50" => "\xdd\xbf", +"\x6b\x52" => "\x8f\xc5\xf4", +"\x6b\x53" => "\xb4\xbf", +"\x6b\x54" => "\xdd\xc1", +"\x6b\x56" => "\x8f\xc5\xf5", +"\x6b\x58" => "\x8f\xc5\xf6", +"\x6b\x59" => "\xdd\xc0", +"\x6b\x5b" => "\xdd\xc2", +"\x6b\x5d" => "\x8f\xc5\xf7", +"\x6b\x5f" => "\xdd\xc3", +"\x6b\x60" => "\x8f\xc5\xf8", +"\x6b\x61" => "\xdd\xc4", +"\x6b\x62" => "\xbb\xdf", +"\x6b\x63" => "\xc0\xb5", +"\x6b\x64" => "\xba\xa1", +"\x6b\x66" => "\xc9\xf0", +"\x6b\x67" => "\x8f\xc5\xf9", +"\x6b\x69" => "\xca\xe2", +"\x6b\x6a" => "\xcf\xc4", +"\x6b\x6b" => "\x8f\xc5\xfa", +"\x6b\x6e" => "\x8f\xc5\xfb", +"\x6b\x6f" => "\xbb\xf5", +"\x6b\x70" => "\x8f\xc5\xfc", +"\x6b\x73" => "\xba\xd0", +"\x6b\x74" => "\xce\xf2", +"\x6b\x75" => "\x8f\xc5\xfd", +"\x6b\x78" => "\xdd\xc5", +"\x6b\x79" => "\xdd\xc6", +"\x6b\x7b" => "\xbb\xe0", +"\x6b\x7d" => "\x8f\xc5\xfe", +"\x6b\x7e" => "\x8f\xc6\xa1", +"\x6b\x7f" => "\xdd\xc7", +"\x6b\x80" => "\xdd\xc8", +"\x6b\x82" => "\x8f\xc6\xa2", +"\x6b\x83" => "\xdd\xca", +"\x6b\x84" => "\xdd\xc9", +"\x6b\x85" => "\x8f\xc6\xa3", +"\x6b\x86" => "\xcb\xd8", +"\x6b\x89" => "\xbd\xde", +"\x6b\x8a" => "\xbc\xec", +"\x6b\x8b" => "\xbb\xc4", +"\x6b\x8d" => "\xdd\xcb", +"\x6b\x95" => "\xdd\xcd", +"\x6b\x96" => "\xbf\xa3", +"\x6b\x97" => "\x8f\xc6\xa4", +"\x6b\x98" => "\xdd\xcc", +"\x6b\x9b" => "\x8f\xc6\xa5", +"\x6b\x9e" => "\xdd\xce", +"\x6b\x9f" => "\x8f\xc6\xa6", +"\x6b\xa0" => "\x8f\xc6\xa7", +"\x6b\xa2" => "\x8f\xc6\xa8", +"\x6b\xa3" => "\x8f\xc6\xa9", +"\x6b\xa4" => "\xdd\xcf", +"\x6b\xa8" => "\x8f\xc6\xaa", +"\x6b\xa9" => "\x8f\xc6\xab", +"\x6b\xaa" => "\xdd\xd0", +"\x6b\xab" => "\xdd\xd1", +"\x6b\xac" => "\x8f\xc6\xac", +"\x6b\xad" => "\x8f\xc6\xad", +"\x6b\xae" => "\x8f\xc6\xae", +"\x6b\xaf" => "\xdd\xd2", +"\x6b\xb0" => "\x8f\xc6\xaf", +"\x6b\xb1" => "\xdd\xd4", +"\x6b\xb2" => "\xdd\xd3", +"\x6b\xb3" => "\xdd\xd5", +"\x6b\xb4" => "\xb2\xa5", +"\x6b\xb5" => "\xc3\xca", +"\x6b\xb7" => "\xdd\xd6", +"\x6b\xb8" => "\x8f\xc6\xb0", +"\x6b\xb9" => "\x8f\xc6\xb1", +"\x6b\xba" => "\xbb\xa6", +"\x6b\xbb" => "\xb3\xcc", +"\x6b\xbc" => "\xdd\xd7", +"\x6b\xbd" => "\x8f\xc6\xb2", +"\x6b\xbe" => "\x8f\xc6\xb3", +"\x6b\xbf" => "\xc5\xc2", +"\x6b\xc0" => "\xd4\xcc", +"\x6b\xc3" => "\x8f\xc6\xb4", +"\x6b\xc4" => "\x8f\xc6\xb5", +"\x6b\xc5" => "\xb5\xa3", +"\x6b\xc6" => "\xdd\xd8", +"\x6b\xc9" => "\x8f\xc6\xb6", +"\x6b\xcb" => "\xdd\xd9", +"\x6b\xcc" => "\x8f\xc6\xb7", +"\x6b\xcd" => "\xca\xec", +"\x6b\xce" => "\xcb\xe8", +"\x6b\xd2" => "\xc6\xc7", +"\x6b\xd3" => "\xdd\xda", +"\x6b\xd4" => "\xc8\xe6", +"\x6b\xd6" => "\x8f\xc6\xb8", +"\x6b\xd8" => "\xc8\xfb", +"\x6b\xda" => "\x8f\xc6\xb9", +"\x6b\xdb" => "\xcc\xd3", +"\x6b\xdf" => "\xdd\xdb", +"\x6b\xe1" => "\x8f\xc6\xba", +"\x6b\xe3" => "\x8f\xc6\xbb", +"\x6b\xe6" => "\x8f\xc6\xbc", +"\x6b\xe7" => "\x8f\xc6\xbd", +"\x6b\xeb" => "\xdd\xdd", +"\x6b\xec" => "\xdd\xdc", +"\x6b\xee" => "\x8f\xc6\xbe", +"\x6b\xef" => "\xdd\xdf", +"\x6b\xf1" => "\x8f\xc6\xbf", +"\x6b\xf3" => "\xdd\xde", +"\x6b\xf7" => "\x8f\xc6\xc0", +"\x6b\xf9" => "\x8f\xc6\xc1", +"\x6b\xff" => "\x8f\xc6\xc2", +"\x6c\x02" => "\x8f\xc6\xc3", +"\x6c\x04" => "\x8f\xc6\xc4", +"\x6c\x05" => "\x8f\xc6\xc5", +"\x6c\x08" => "\xdd\xe1", +"\x6c\x09" => "\x8f\xc6\xc6", +"\x6c\x0d" => "\x8f\xc6\xc7", +"\x6c\x0e" => "\x8f\xc6\xc8", +"\x6c\x0f" => "\xbb\xe1", +"\x6c\x10" => "\x8f\xc6\xc9", +"\x6c\x11" => "\xcc\xb1", +"\x6c\x12" => "\x8f\xc6\xca", +"\x6c\x13" => "\xdd\xe2", +"\x6c\x14" => "\xdd\xe3", +"\x6c\x17" => "\xb5\xa4", +"\x6c\x19" => "\x8f\xc6\xcb", +"\x6c\x1b" => "\xdd\xe4", +"\x6c\x1f" => "\x8f\xc6\xcc", +"\x6c\x23" => "\xdd\xe6", +"\x6c\x24" => "\xdd\xe5", +"\x6c\x26" => "\x8f\xc6\xcd", +"\x6c\x27" => "\x8f\xc6\xce", +"\x6c\x28" => "\x8f\xc6\xcf", +"\x6c\x2c" => "\x8f\xc6\xd0", +"\x6c\x2e" => "\x8f\xc6\xd1", +"\x6c\x33" => "\x8f\xc6\xd2", +"\x6c\x34" => "\xbf\xe5", +"\x6c\x35" => "\x8f\xc6\xd3", +"\x6c\x36" => "\x8f\xc6\xd4", +"\x6c\x37" => "\xc9\xb9", +"\x6c\x38" => "\xb1\xca", +"\x6c\x3a" => "\x8f\xc6\xd5", +"\x6c\x3b" => "\x8f\xc6\xd6", +"\x6c\x3e" => "\xc8\xc5", +"\x6c\x3f" => "\x8f\xc6\xd7", +"\x6c\x40" => "\xc4\xf5", +"\x6c\x41" => "\xbd\xc1", +"\x6c\x42" => "\xb5\xe1", +"\x6c\x4a" => "\x8f\xc6\xd8", +"\x6c\x4b" => "\x8f\xc6\xd9", +"\x6c\x4d" => "\x8f\xc6\xda", +"\x6c\x4e" => "\xc8\xc6", +"\x6c\x4f" => "\x8f\xc6\xdb", +"\x6c\x50" => "\xbc\xae", +"\x6c\x52" => "\x8f\xc6\xdc", +"\x6c\x54" => "\x8f\xc6\xdd", +"\x6c\x55" => "\xdd\xe8", +"\x6c\x57" => "\xb4\xc0", +"\x6c\x59" => "\x8f\xc6\xde", +"\x6c\x5a" => "\xb1\xf8", +"\x6c\x5b" => "\x8f\xc6\xdf", +"\x6c\x5c" => "\x8f\xc6\xe0", +"\x6c\x5d" => "\xc6\xf2", +"\x6c\x5e" => "\xdd\xe7", +"\x6c\x5f" => "\xb9\xbe", +"\x6c\x60" => "\xc3\xd3", +"\x6c\x62" => "\xdd\xe9", +"\x6c\x67" => "\x8f\xc7\xb6", +"\x6c\x68" => "\xdd\xf1", +"\x6c\x6a" => "\xdd\xea", +"\x6c\x6b" => "\x8f\xc6\xe1", +"\x6c\x6d" => "\x8f\xc6\xe2", +"\x6c\x6f" => "\x8f\xc6\xe3", +"\x6c\x70" => "\xc2\xc1", +"\x6c\x72" => "\xb5\xe2", +"\x6c\x73" => "\xdd\xf2", +"\x6c\x74" => "\x8f\xc6\xe4", +"\x6c\x76" => "\x8f\xc6\xe5", +"\x6c\x78" => "\x8f\xc6\xe6", +"\x6c\x79" => "\x8f\xc6\xe7", +"\x6c\x7a" => "\xb7\xe8", +"\x6c\x7b" => "\x8f\xc6\xe8", +"\x6c\x7d" => "\xb5\xa5", +"\x6c\x7e" => "\xdd\xf0", +"\x6c\x81" => "\xdd\xee", +"\x6c\x82" => "\xdd\xeb", +"\x6c\x83" => "\xcd\xe0", +"\x6c\x85" => "\x8f\xc6\xe9", +"\x6c\x86" => "\x8f\xc6\xea", +"\x6c\x87" => "\x8f\xc6\xeb", +"\x6c\x88" => "\xc4\xc0", +"\x6c\x89" => "\x8f\xc6\xec", +"\x6c\x8c" => "\xc6\xd9", +"\x6c\x8d" => "\xdd\xec", +"\x6c\x90" => "\xdd\xf4", +"\x6c\x92" => "\xdd\xf3", +"\x6c\x93" => "\xb7\xa3", +"\x6c\x94" => "\x8f\xc6\xed", +"\x6c\x95" => "\x8f\xc6\xee", +"\x6c\x96" => "\xb2\xad", +"\x6c\x97" => "\x8f\xc6\xef", +"\x6c\x98" => "\x8f\xc6\xf0", +"\x6c\x99" => "\xba\xbb", +"\x6c\x9a" => "\xdd\xed", +"\x6c\x9b" => "\xdd\xef", +"\x6c\x9c" => "\x8f\xc6\xf1", +"\x6c\x9f" => "\x8f\xc6\xf2", +"\x6c\xa1" => "\xcb\xd7", +"\x6c\xa2" => "\xc2\xf4", +"\x6c\xab" => "\xcb\xf7", +"\x6c\xae" => "\xdd\xfc", +"\x6c\xb0" => "\x8f\xc6\xf3", +"\x6c\xb1" => "\xdd\xfd", +"\x6c\xb2" => "\x8f\xc6\xf4", +"\x6c\xb3" => "\xb2\xcf", +"\x6c\xb4" => "\x8f\xc6\xf5", +"\x6c\xb8" => "\xca\xa8", +"\x6c\xb9" => "\xcc\xfd", +"\x6c\xba" => "\xde\xa1", +"\x6c\xbb" => "\xbc\xa3", +"\x6c\xbc" => "\xbe\xc2", +"\x6c\xbd" => "\xdd\xf8", +"\x6c\xbe" => "\xdd\xfe", +"\x6c\xbf" => "\xb1\xe8", +"\x6c\xc1" => "\xb6\xb7", +"\x6c\xc2" => "\x8f\xc6\xf6", +"\x6c\xc4" => "\xdd\xf5", +"\x6c\xc5" => "\xdd\xfa", +"\x6c\xc6" => "\x8f\xc6\xf7", +"\x6c\xc9" => "\xc0\xf4", +"\x6c\xca" => "\xc7\xf1", +"\x6c\xcc" => "\xc8\xe7", +"\x6c\xcd" => "\x8f\xc6\xf8", +"\x6c\xcf" => "\x8f\xc6\xf9", +"\x6c\xd0" => "\x8f\xc6\xfa", +"\x6c\xd1" => "\x8f\xc6\xfb", +"\x6c\xd2" => "\x8f\xc6\xfc", +"\x6c\xd3" => "\xdd\xf7", +"\x6c\xd4" => "\x8f\xc6\xfd", +"\x6c\xd5" => "\xcb\xa1", +"\x6c\xd6" => "\x8f\xc6\xfe", +"\x6c\xd7" => "\xdd\xf9", +"\x6c\xd9" => "\xde\xa4", +"\x6c\xda" => "\x8f\xc7\xa1", +"\x6c\xdb" => "\xde\xa2", +"\x6c\xdc" => "\x8f\xc7\xa2", +"\x6c\xdd" => "\xdd\xfb", +"\x6c\xe0" => "\x8f\xc7\xa3", +"\x6c\xe1" => "\xcb\xa2", +"\x6c\xe2" => "\xc7\xc8", +"\x6c\xe3" => "\xb5\xe3", +"\x6c\xe5" => "\xc5\xa5", +"\x6c\xe7" => "\x8f\xc7\xa4", +"\x6c\xe8" => "\xc3\xed", +"\x6c\xe9" => "\x8f\xc7\xa5", +"\x6c\xea" => "\xde\xa5", +"\x6c\xeb" => "\x8f\xc7\xa6", +"\x6c\xec" => "\x8f\xc7\xa7", +"\x6c\xee" => "\x8f\xc7\xa8", +"\x6c\xef" => "\xde\xa3", +"\x6c\xf0" => "\xc2\xd9", +"\x6c\xf1" => "\xdd\xf6", +"\x6c\xf2" => "\x8f\xc7\xa9", +"\x6c\xf3" => "\xb1\xcb", +"\x6c\xf4" => "\x8f\xc7\xaa", +"\x6d\x04" => "\x8f\xc7\xab", +"\x6d\x07" => "\x8f\xc7\xac", +"\x6d\x0a" => "\x8f\xc7\xad", +"\x6d\x0b" => "\xcd\xce", +"\x6d\x0c" => "\xde\xb0", +"\x6d\x0e" => "\x8f\xc7\xae", +"\x6d\x0f" => "\x8f\xc7\xaf", +"\x6d\x11" => "\x8f\xc7\xb0", +"\x6d\x12" => "\xde\xaf", +"\x6d\x13" => "\x8f\xc7\xb1", +"\x6d\x17" => "\xc0\xf6", +"\x6d\x19" => "\xde\xac", +"\x6d\x1a" => "\x8f\xc7\xb2", +"\x6d\x1b" => "\xcd\xec", +"\x6d\x1e" => "\xc6\xb6", +"\x6d\x1f" => "\xde\xa6", +"\x6d\x25" => "\xc4\xc5", +"\x6d\x26" => "\x8f\xc7\xb3", +"\x6d\x27" => "\x8f\xc7\xb4", +"\x6d\x28" => "\x8f\xc7\xb5", +"\x6d\x29" => "\xb1\xcc", +"\x6d\x2a" => "\xb9\xbf", +"\x6d\x2b" => "\xde\xa9", +"\x6d\x2e" => "\x8f\xc7\xb7", +"\x6d\x2f" => "\x8f\xc7\xb8", +"\x6d\x31" => "\x8f\xc7\xb9", +"\x6d\x32" => "\xbd\xa7", +"\x6d\x33" => "\xde\xae", +"\x6d\x35" => "\xde\xad", +"\x6d\x36" => "\xde\xa8", +"\x6d\x38" => "\xde\xab", +"\x6d\x39" => "\x8f\xc7\xba", +"\x6d\x3b" => "\xb3\xe8", +"\x6d\x3c" => "\x8f\xc7\xbb", +"\x6d\x3d" => "\xde\xaa", +"\x6d\x3e" => "\xc7\xc9", +"\x6d\x3f" => "\x8f\xc7\xbc", +"\x6d\x41" => "\xce\xae", +"\x6d\x44" => "\xbe\xf4", +"\x6d\x45" => "\xc0\xf5", +"\x6d\x57" => "\x8f\xc7\xbd", +"\x6d\x59" => "\xde\xb6", +"\x6d\x5a" => "\xde\xb4", +"\x6d\x5c" => "\xc9\xcd", +"\x6d\x5e" => "\x8f\xc7\xbe", +"\x6d\x5f" => "\x8f\xc7\xbf", +"\x6d\x61" => "\x8f\xc7\xc0", +"\x6d\x63" => "\xde\xb1", +"\x6d\x64" => "\xde\xb3", +"\x6d\x65" => "\x8f\xc7\xc1", +"\x6d\x66" => "\xb1\xba", +"\x6d\x67" => "\x8f\xc7\xc2", +"\x6d\x69" => "\xb9\xc0", +"\x6d\x6a" => "\xcf\xb2", +"\x6d\x6c" => "\xb3\xbd", +"\x6d\x6e" => "\xc9\xe2", +"\x6d\x6f" => "\x8f\xc7\xc3", +"\x6d\x70" => "\x8f\xc7\xc4", +"\x6d\x74" => "\xcd\xe1", +"\x6d\x77" => "\xb3\xa4", +"\x6d\x78" => "\xbf\xbb", +"\x6d\x79" => "\xde\xb5", +"\x6d\x7c" => "\x8f\xc7\xc5", +"\x6d\x82" => "\x8f\xc7\xc6", +"\x6d\x85" => "\xde\xba", +"\x6d\x87" => "\x8f\xc7\xc7", +"\x6d\x88" => "\xbe\xc3", +"\x6d\x8c" => "\xcd\xb0", +"\x6d\x8e" => "\xde\xb7", +"\x6d\x91" => "\x8f\xc7\xc8", +"\x6d\x92" => "\x8f\xc7\xc9", +"\x6d\x93" => "\xde\xb2", +"\x6d\x94" => "\x8f\xc7\xca", +"\x6d\x95" => "\xde\xb8", +"\x6d\x96" => "\x8f\xc7\xcb", +"\x6d\x97" => "\x8f\xc7\xcc", +"\x6d\x98" => "\x8f\xc7\xcd", +"\x6d\x99" => "\xce\xde", +"\x6d\x9b" => "\xc5\xf3", +"\x6d\x9c" => "\xc6\xc2", +"\x6d\xaa" => "\x8f\xc7\xce", +"\x6d\xac" => "\x8f\xc7\xcf", +"\x6d\xaf" => "\xb3\xb6", +"\x6d\xb2" => "\xb1\xd5", +"\x6d\xb4" => "\x8f\xc7\xd0", +"\x6d\xb5" => "\xde\xbe", +"\x6d\xb7" => "\x8f\xc7\xd1", +"\x6d\xb8" => "\xde\xc1", +"\x6d\xb9" => "\x8f\xc7\xd2", +"\x6d\xbc" => "\xce\xc3", +"\x6d\xbd" => "\x8f\xc7\xd3", +"\x6d\xbf" => "\x8f\xc7\xd4", +"\x6d\xc0" => "\xcd\xe4", +"\x6d\xc4" => "\x8f\xc7\xd5", +"\x6d\xc5" => "\xde\xc8", +"\x6d\xc6" => "\xde\xc2", +"\x6d\xc7" => "\xde\xbf", +"\x6d\xc8" => "\x8f\xc7\xd6", +"\x6d\xca" => "\x8f\xc7\xd7", +"\x6d\xcb" => "\xce\xd4", +"\x6d\xcc" => "\xde\xc5", +"\x6d\xce" => "\x8f\xc7\xd8", +"\x6d\xcf" => "\x8f\xc7\xd9", +"\x6d\xd1" => "\xbd\xca", +"\x6d\xd2" => "\xde\xc7", +"\x6d\xd5" => "\xde\xcc", +"\x6d\xd6" => "\x8f\xc7\xda", +"\x6d\xd8" => "\xc5\xf1", +"\x6d\xd9" => "\xde\xca", +"\x6d\xdb" => "\x8f\xc7\xdb", +"\x6d\xdd" => "\x8f\xc7\xdc", +"\x6d\xde" => "\xde\xc4", +"\x6d\xdf" => "\x8f\xc7\xdd", +"\x6d\xe0" => "\x8f\xc7\xde", +"\x6d\xe1" => "\xc3\xb8", +"\x6d\xe2" => "\x8f\xc7\xdf", +"\x6d\xe4" => "\xde\xcb", +"\x6d\xe5" => "\x8f\xc7\xe0", +"\x6d\xe6" => "\xde\xc0", +"\x6d\xe8" => "\xde\xc6", +"\x6d\xe9" => "\x8f\xc7\xe1", +"\x6d\xea" => "\xde\xcd", +"\x6d\xeb" => "\xb0\xfc", +"\x6d\xec" => "\xde\xc3", +"\x6d\xee" => "\xde\xce", +"\x6d\xef" => "\x8f\xc7\xe2", +"\x6d\xf0" => "\x8f\xc7\xe3", +"\x6d\xf1" => "\xbf\xbc", +"\x6d\xf3" => "\xbd\xdf", +"\x6d\xf4" => "\x8f\xc7\xe4", +"\x6d\xf5" => "\xca\xa5", +"\x6d\xf6" => "\x8f\xc7\xe5", +"\x6d\xf7" => "\xba\xae", +"\x6d\xf9" => "\xde\xbb", +"\x6d\xfa" => "\xde\xc9", +"\x6d\xfb" => "\xc5\xba", +"\x6d\xfc" => "\x8f\xc7\xe6", +"\x6e\x00" => "\x8f\xc7\xe7", +"\x6e\x04" => "\x8f\xc7\xe8", +"\x6e\x05" => "\xc0\xb6", +"\x6e\x07" => "\xb3\xe9", +"\x6e\x08" => "\xba\xd1", +"\x6e\x09" => "\xbe\xc4", +"\x6e\x0a" => "\xde\xbd", +"\x6e\x0b" => "\xbd\xc2", +"\x6e\x13" => "\xb7\xcc", +"\x6e\x15" => "\xde\xbc", +"\x6e\x19" => "\xde\xd2", +"\x6e\x1a" => "\xbd\xed", +"\x6e\x1b" => "\xb8\xba", +"\x6e\x1d" => "\xde\xe1", +"\x6e\x1e" => "\x8f\xc7\xe9", +"\x6e\x1f" => "\xde\xdb", +"\x6e\x20" => "\xb5\xf4", +"\x6e\x21" => "\xc5\xcf", +"\x6e\x22" => "\x8f\xc7\xea", +"\x6e\x23" => "\xde\xd6", +"\x6e\x24" => "\xde\xdf", +"\x6e\x25" => "\xb0\xaf", +"\x6e\x26" => "\xb1\xb2", +"\x6e\x27" => "\x8f\xc7\xeb", +"\x6e\x29" => "\xb2\xb9", +"\x6e\x2b" => "\xde\xd8", +"\x6e\x2c" => "\xc2\xac", +"\x6e\x2d" => "\xde\xcf", +"\x6e\x2e" => "\xde\xd1", +"\x6e\x2f" => "\xb9\xc1", +"\x6e\x32" => "\x8f\xc7\xec", +"\x6e\x36" => "\x8f\xc7\xed", +"\x6e\x38" => "\xde\xe2", +"\x6e\x39" => "\x8f\xc7\xee", +"\x6e\x3a" => "\xde\xdd", +"\x6e\x3b" => "\x8f\xc7\xef", +"\x6e\x3c" => "\x8f\xc7\xf0", +"\x6e\x3e" => "\xde\xd5", +"\x6e\x43" => "\xde\xdc", +"\x6e\x44" => "\x8f\xc7\xf1", +"\x6e\x45" => "\x8f\xc7\xf2", +"\x6e\x48" => "\x8f\xc7\xf3", +"\x6e\x49" => "\x8f\xc7\xf4", +"\x6e\x4a" => "\xcc\xab", +"\x6e\x4b" => "\x8f\xc7\xf5", +"\x6e\x4d" => "\xde\xda", +"\x6e\x4e" => "\xde\xde", +"\x6e\x4f" => "\x8f\xc7\xf6", +"\x6e\x51" => "\x8f\xc7\xf7", +"\x6e\x52" => "\x8f\xc7\xf8", +"\x6e\x53" => "\x8f\xc7\xf9", +"\x6e\x54" => "\x8f\xc7\xfa", +"\x6e\x56" => "\xb8\xd0", +"\x6e\x57" => "\x8f\xc7\xfb", +"\x6e\x58" => "\xbe\xc5", +"\x6e\x5b" => "\xc3\xb9", +"\x6e\x5c" => "\x8f\xc7\xfc", +"\x6e\x5d" => "\x8f\xc7\xfd", +"\x6e\x5e" => "\x8f\xc7\xfe", +"\x6e\x5f" => "\xde\xd4", +"\x6e\x62" => "\x8f\xc8\xa1", +"\x6e\x63" => "\x8f\xc8\xa2", +"\x6e\x67" => "\xcd\xaf", +"\x6e\x68" => "\x8f\xc8\xa3", +"\x6e\x6b" => "\xde\xd7", +"\x6e\x6e" => "\xde\xd0", +"\x6e\x6f" => "\xc5\xf2", +"\x6e\x72" => "\xde\xd3", +"\x6e\x73" => "\x8f\xc8\xa4", +"\x6e\x76" => "\xde\xd9", +"\x6e\x7b" => "\x8f\xc8\xa5", +"\x6e\x7d" => "\x8f\xc8\xa6", +"\x6e\x7e" => "\xcf\xd1", +"\x6e\x7f" => "\xbc\xbe", +"\x6e\x80" => "\xcb\xfe", +"\x6e\x82" => "\xde\xe3", +"\x6e\x8c" => "\xc8\xae", +"\x6e\x8d" => "\x8f\xc8\xa7", +"\x6e\x8f" => "\xde\xef", +"\x6e\x90" => "\xb8\xbb", +"\x6e\x93" => "\x8f\xc8\xa8", +"\x6e\x96" => "\xbd\xe0", +"\x6e\x98" => "\xde\xe5", +"\x6e\x99" => "\x8f\xc8\xa9", +"\x6e\x9c" => "\xce\xaf", +"\x6e\x9d" => "\xb9\xc2", +"\x6e\x9f" => "\xde\xf2", +"\x6e\xa0" => "\x8f\xc8\xaa", +"\x6e\xa2" => "\xb0\xee", +"\x6e\xa5" => "\xde\xf0", +"\x6e\xa7" => "\x8f\xc8\xab", +"\x6e\xaa" => "\xde\xe4", +"\x6e\xad" => "\x8f\xc8\xac", +"\x6e\xae" => "\x8f\xc8\xad", +"\x6e\xaf" => "\xde\xea", +"\x6e\xb1" => "\x8f\xc8\xae", +"\x6e\xb2" => "\xde\xec", +"\x6e\xb3" => "\x8f\xc8\xaf", +"\x6e\xb6" => "\xcd\xcf", +"\x6e\xb7" => "\xde\xe7", +"\x6e\xba" => "\xc5\xae", +"\x6e\xbb" => "\x8f\xc8\xb0", +"\x6e\xbd" => "\xde\xe9", +"\x6e\xbf" => "\x8f\xc8\xb1", +"\x6e\xc0" => "\x8f\xc8\xb2", +"\x6e\xc1" => "\x8f\xc8\xb3", +"\x6e\xc2" => "\xde\xf1", +"\x6e\xc3" => "\x8f\xc8\xb4", +"\x6e\xc4" => "\xde\xeb", +"\x6e\xc5" => "\xcc\xc7", +"\x6e\xc7" => "\x8f\xc8\xb5", +"\x6e\xc8" => "\x8f\xc8\xb6", +"\x6e\xc9" => "\xde\xe6", +"\x6e\xca" => "\x8f\xc8\xb7", +"\x6e\xcb" => "\xbc\xa2", +"\x6e\xcc" => "\xde\xfe", +"\x6e\xcd" => "\x8f\xc8\xb8", +"\x6e\xce" => "\x8f\xc8\xb9", +"\x6e\xcf" => "\x8f\xc8\xba", +"\x6e\xd1" => "\xb3\xea", +"\x6e\xd3" => "\xde\xe8", +"\x6e\xd4" => "\xde\xed", +"\x6e\xd5" => "\xde\xee", +"\x6e\xdd" => "\xc2\xec", +"\x6e\xde" => "\xc2\xda", +"\x6e\xeb" => "\x8f\xc8\xbb", +"\x6e\xec" => "\xde\xf6", +"\x6e\xed" => "\x8f\xc8\xbc", +"\x6e\xee" => "\x8f\xc8\xbd", +"\x6e\xef" => "\xde\xfc", +"\x6e\xf2" => "\xde\xfa", +"\x6e\xf4" => "\xc5\xa9", +"\x6e\xf7" => "\xdf\xa3", +"\x6e\xf8" => "\xde\xf7", +"\x6e\xf9" => "\x8f\xc8\xbe", +"\x6e\xfb" => "\x8f\xc8\xbf", +"\x6e\xfd" => "\x8f\xc8\xc0", +"\x6e\xfe" => "\xde\xf8", +"\x6e\xff" => "\xde\xe0", +"\x6f\x01" => "\xb5\xf9", +"\x6f\x02" => "\xc9\xba", +"\x6f\x04" => "\x8f\xc8\xc1", +"\x6f\x06" => "\xbc\xbf", +"\x6f\x08" => "\x8f\xc8\xc2", +"\x6f\x09" => "\xb9\xf7", +"\x6f\x0a" => "\x8f\xc8\xc3", +"\x6f\x0c" => "\x8f\xc8\xc4", +"\x6f\x0d" => "\x8f\xc8\xc5", +"\x6f\x0f" => "\xcf\xb3", +"\x6f\x11" => "\xde\xf4", +"\x6f\x13" => "\xdf\xa2", +"\x6f\x14" => "\xb1\xe9", +"\x6f\x15" => "\xc1\xe6", +"\x6f\x16" => "\x8f\xc8\xc6", +"\x6f\x18" => "\x8f\xc8\xc7", +"\x6f\x1a" => "\x8f\xc8\xc8", +"\x6f\x1b" => "\x8f\xc8\xc9", +"\x6f\x20" => "\xc7\xf9", +"\x6f\x22" => "\xb4\xc1", +"\x6f\x23" => "\xce\xfa", +"\x6f\x26" => "\x8f\xc8\xca", +"\x6f\x29" => "\x8f\xc8\xcb", +"\x6f\x2a" => "\x8f\xc8\xcc", +"\x6f\x2b" => "\xcc\xa1", +"\x6f\x2c" => "\xc4\xd2", +"\x6f\x2d" => "\x8f\xc8\xd3", +"\x6f\x2f" => "\x8f\xc8\xcd", +"\x6f\x30" => "\x8f\xc8\xce", +"\x6f\x31" => "\xde\xfb", +"\x6f\x32" => "\xde\xfd", +"\x6f\x33" => "\x8f\xc8\xcf", +"\x6f\x36" => "\x8f\xc8\xd0", +"\x6f\x38" => "\xc1\xb2", +"\x6f\x3b" => "\x8f\xc8\xd1", +"\x6f\x3c" => "\x8f\xc8\xd2", +"\x6f\x3e" => "\xdf\xa1", +"\x6f\x3f" => "\xde\xf9", +"\x6f\x41" => "\xde\xf3", +"\x6f\x45" => "\xb4\xc3", +"\x6f\x4f" => "\x8f\xc8\xd4", +"\x6f\x51" => "\x8f\xc8\xd5", +"\x6f\x52" => "\x8f\xc8\xd6", +"\x6f\x53" => "\x8f\xc8\xd7", +"\x6f\x54" => "\xb7\xe9", +"\x6f\x57" => "\x8f\xc8\xd8", +"\x6f\x58" => "\xdf\xaf", +"\x6f\x59" => "\x8f\xc8\xd9", +"\x6f\x5a" => "\x8f\xc8\xda", +"\x6f\x5b" => "\xdf\xaa", +"\x6f\x5c" => "\xc0\xf8", +"\x6f\x5d" => "\x8f\xc8\xdb", +"\x6f\x5e" => "\x8f\xc8\xdc", +"\x6f\x5f" => "\xb3\xe3", +"\x6f\x61" => "\x8f\xc8\xdd", +"\x6f\x62" => "\x8f\xc8\xde", +"\x6f\x64" => "\xbd\xe1", +"\x6f\x66" => "\xdf\xb3", +"\x6f\x68" => "\x8f\xc8\xdf", +"\x6f\x6c" => "\x8f\xc8\xe0", +"\x6f\x6d" => "\xdf\xac", +"\x6f\x6e" => "\xc4\xac", +"\x6f\x6f" => "\xdf\xa9", +"\x6f\x70" => "\xc4\xd9", +"\x6f\x74" => "\xdf\xcc", +"\x6f\x78" => "\xdf\xa6", +"\x6f\x7a" => "\xdf\xa5", +"\x6f\x7c" => "\xdf\xae", +"\x6f\x7d" => "\x8f\xc8\xe1", +"\x6f\x7e" => "\x8f\xc8\xe2", +"\x6f\x80" => "\xdf\xa8", +"\x6f\x81" => "\xdf\xa7", +"\x6f\x82" => "\xdf\xad", +"\x6f\x83" => "\x8f\xc8\xe3", +"\x6f\x84" => "\xc0\xa1", +"\x6f\x86" => "\xdf\xa4", +"\x6f\x87" => "\x8f\xc8\xe4", +"\x6f\x88" => "\x8f\xc8\xe5", +"\x6f\x8b" => "\x8f\xc8\xe6", +"\x6f\x8c" => "\x8f\xc8\xe7", +"\x6f\x8d" => "\x8f\xc8\xe8", +"\x6f\x8e" => "\xdf\xb0", +"\x6f\x90" => "\x8f\xc8\xe9", +"\x6f\x91" => "\xdf\xb1", +"\x6f\x92" => "\x8f\xc8\xea", +"\x6f\x93" => "\x8f\xc8\xeb", +"\x6f\x94" => "\x8f\xc8\xec", +"\x6f\x96" => "\x8f\xc8\xed", +"\x6f\x97" => "\xb4\xc2", +"\x6f\x9a" => "\x8f\xc8\xee", +"\x6f\x9f" => "\x8f\xc8\xef", +"\x6f\xa0" => "\x8f\xc8\xf0", +"\x6f\xa1" => "\xdf\xb6", +"\x6f\xa3" => "\xdf\xb5", +"\x6f\xa4" => "\xdf\xb7", +"\x6f\xa5" => "\x8f\xc8\xf1", +"\x6f\xa6" => "\x8f\xc8\xf2", +"\x6f\xa7" => "\x8f\xc8\xf3", +"\x6f\xa8" => "\x8f\xc8\xf4", +"\x6f\xaa" => "\xdf\xba", +"\x6f\xae" => "\x8f\xc8\xf5", +"\x6f\xaf" => "\x8f\xc8\xf6", +"\x6f\xb0" => "\x8f\xc8\xf7", +"\x6f\xb1" => "\xc5\xc3", +"\x6f\xb3" => "\xdf\xb4", +"\x6f\xb5" => "\x8f\xc8\xf8", +"\x6f\xb6" => "\x8f\xc8\xf9", +"\x6f\xb9" => "\xdf\xb8", +"\x6f\xbc" => "\x8f\xc8\xfa", +"\x6f\xc0" => "\xb7\xe3", +"\x6f\xc1" => "\xc2\xf9", +"\x6f\xc2" => "\xdf\xb2", +"\x6f\xc3" => "\xc7\xbb", +"\x6f\xc5" => "\x8f\xc8\xfb", +"\x6f\xc6" => "\xdf\xb9", +"\x6f\xc7" => "\x8f\xc8\xfc", +"\x6f\xc8" => "\x8f\xc8\xfd", +"\x6f\xca" => "\x8f\xc8\xfe", +"\x6f\xd4" => "\xdf\xbe", +"\x6f\xd5" => "\xdf\xbc", +"\x6f\xd8" => "\xdf\xbf", +"\x6f\xda" => "\x8f\xc9\xa1", +"\x6f\xdb" => "\xdf\xc2", +"\x6f\xde" => "\x8f\xc9\xa2", +"\x6f\xdf" => "\xdf\xbb", +"\x6f\xe0" => "\xb9\xea", +"\x6f\xe1" => "\xc7\xa8", +"\x6f\xe4" => "\xde\xb9", +"\x6f\xe8" => "\x8f\xc9\xa3", +"\x6f\xe9" => "\x8f\xc9\xa4", +"\x6f\xeb" => "\xcd\xf4", +"\x6f\xec" => "\xdf\xbd", +"\x6f\xee" => "\xdf\xc1", +"\x6f\xef" => "\xc2\xf5", +"\x6f\xf0" => "\x8f\xc9\xa5", +"\x6f\xf1" => "\xdf\xc0", +"\x6f\xf3" => "\xdf\xab", +"\x6f\xf5" => "\x8f\xc9\xa6", +"\x6f\xf6" => "\xef\xe9", +"\x6f\xf9" => "\x8f\xc9\xa7", +"\x6f\xfa" => "\xdf\xc5", +"\x6f\xfc" => "\x8f\xc9\xa8", +"\x6f\xfd" => "\x8f\xc9\xa9", +"\x6f\xfe" => "\xdf\xc9", +"\x70\x00" => "\x8f\xc9\xaa", +"\x70\x01" => "\xdf\xc7", +"\x70\x05" => "\x8f\xc9\xab", +"\x70\x06" => "\x8f\xc9\xac", +"\x70\x07" => "\x8f\xc9\xad", +"\x70\x09" => "\xdf\xc3", +"\x70\x0b" => "\xdf\xc4", +"\x70\x0d" => "\x8f\xc9\xae", +"\x70\x0f" => "\xdf\xc8", +"\x70\x11" => "\xdf\xc6", +"\x70\x15" => "\xc9\xce", +"\x70\x17" => "\x8f\xc9\xaf", +"\x70\x18" => "\xdf\xce", +"\x70\x1a" => "\xdf\xcb", +"\x70\x1b" => "\xdf\xca", +"\x70\x1d" => "\xdf\xcd", +"\x70\x1e" => "\xc6\xd4", +"\x70\x1f" => "\xdf\xcf", +"\x70\x20" => "\x8f\xc9\xb0", +"\x70\x23" => "\x8f\xc9\xb1", +"\x70\x26" => "\xc3\xf5", +"\x70\x27" => "\xc2\xed", +"\x70\x2c" => "\xc0\xa5", +"\x70\x2f" => "\x8f\xc9\xb2", +"\x70\x30" => "\xdf\xd0", +"\x70\x32" => "\xdf\xd2", +"\x70\x34" => "\x8f\xc9\xb3", +"\x70\x37" => "\x8f\xc9\xb4", +"\x70\x39" => "\x8f\xc9\xb5", +"\x70\x3c" => "\x8f\xc9\xb6", +"\x70\x3e" => "\xdf\xd1", +"\x70\x43" => "\x8f\xc9\xb7", +"\x70\x44" => "\x8f\xc9\xb8", +"\x70\x48" => "\x8f\xc9\xb9", +"\x70\x49" => "\x8f\xc9\xba", +"\x70\x4a" => "\x8f\xc9\xbb", +"\x70\x4b" => "\x8f\xc9\xbc", +"\x70\x4c" => "\xde\xf5", +"\x70\x4e" => "\x8f\xc9\xc1", +"\x70\x51" => "\xdf\xd3", +"\x70\x54" => "\x8f\xc9\xbd", +"\x70\x55" => "\x8f\xc9\xbe", +"\x70\x58" => "\xc6\xe7", +"\x70\x5d" => "\x8f\xc9\xbf", +"\x70\x5e" => "\x8f\xc9\xc0", +"\x70\x63" => "\xdf\xd4", +"\x70\x64" => "\x8f\xc9\xc2", +"\x70\x65" => "\x8f\xc9\xc3", +"\x70\x6b" => "\xb2\xd0", +"\x70\x6c" => "\x8f\xc9\xc4", +"\x70\x6e" => "\x8f\xc9\xc5", +"\x70\x6f" => "\xc5\xf4", +"\x70\x70" => "\xb3\xa5", +"\x70\x75" => "\x8f\xc9\xc6", +"\x70\x76" => "\x8f\xc9\xc7", +"\x70\x78" => "\xb5\xe4", +"\x70\x7c" => "\xbc\xde", +"\x70\x7d" => "\xba\xd2", +"\x70\x7e" => "\x8f\xc9\xc8", +"\x70\x81" => "\x8f\xc9\xc9", +"\x70\x85" => "\x8f\xc9\xca", +"\x70\x86" => "\x8f\xc9\xcb", +"\x70\x89" => "\xcf\xa7", +"\x70\x8a" => "\xbf\xe6", +"\x70\x8e" => "\xb1\xea", +"\x70\x92" => "\xdf\xd6", +"\x70\x94" => "\x8f\xc9\xcc", +"\x70\x95" => "\x8f\xc9\xcd", +"\x70\x96" => "\x8f\xc9\xce", +"\x70\x97" => "\x8f\xc9\xcf", +"\x70\x98" => "\x8f\xc9\xd0", +"\x70\x99" => "\xdf\xd5", +"\x70\x9b" => "\x8f\xc9\xd1", +"\x70\xa4" => "\x8f\xc9\xd2", +"\x70\xab" => "\x8f\xc9\xd3", +"\x70\xac" => "\xdf\xd9", +"\x70\xad" => "\xc3\xba", +"\x70\xae" => "\xdf\xdc", +"\x70\xaf" => "\xdf\xd7", +"\x70\xb0" => "\x8f\xc9\xd4", +"\x70\xb1" => "\x8f\xc9\xd5", +"\x70\xb3" => "\xdf\xdb", +"\x70\xb4" => "\x8f\xc9\xd6", +"\x70\xb7" => "\x8f\xc9\xd7", +"\x70\xb8" => "\xdf\xda", +"\x70\xb9" => "\xc5\xc0", +"\x70\xba" => "\xb0\xd9", +"\x70\xc8" => "\xce\xf5", +"\x70\xca" => "\x8f\xc9\xd8", +"\x70\xcb" => "\xdf\xde", +"\x70\xcf" => "\xb1\xa8", +"\x70\xd1" => "\x8f\xc9\xd9", +"\x70\xd3" => "\x8f\xc9\xda", +"\x70\xd4" => "\x8f\xc9\xdb", +"\x70\xd5" => "\x8f\xc9\xdc", +"\x70\xd6" => "\x8f\xc9\xdd", +"\x70\xd8" => "\x8f\xc9\xde", +"\x70\xd9" => "\xdf\xe0", +"\x70\xdc" => "\x8f\xc9\xdf", +"\x70\xdd" => "\xdf\xdf", +"\x70\xdf" => "\xdf\xdd", +"\x70\xe4" => "\x8f\xc9\xe0", +"\x70\xf1" => "\xdf\xd8", +"\x70\xf9" => "\xcb\xa3", +"\x70\xfa" => "\x8f\xc9\xe1", +"\x70\xfd" => "\xdf\xe2", +"\x71\x03" => "\x8f\xc9\xe2", +"\x71\x04" => "\x8f\xc9\xe3", +"\x71\x05" => "\x8f\xc9\xe4", +"\x71\x06" => "\x8f\xc9\xe5", +"\x71\x07" => "\x8f\xc9\xe6", +"\x71\x09" => "\xdf\xe1", +"\x71\x0b" => "\x8f\xc9\xe7", +"\x71\x0c" => "\x8f\xc9\xe8", +"\x71\x0f" => "\x8f\xc9\xe9", +"\x71\x14" => "\xb1\xeb", +"\x71\x19" => "\xdf\xe4", +"\x71\x1a" => "\xca\xb2", +"\x71\x1c" => "\xdf\xe3", +"\x71\x1e" => "\x8f\xc9\xea", +"\x71\x20" => "\x8f\xc9\xeb", +"\x71\x21" => "\xcc\xb5", +"\x71\x26" => "\xbe\xc7", +"\x71\x2b" => "\x8f\xc9\xec", +"\x71\x2d" => "\x8f\xc9\xed", +"\x71\x2f" => "\x8f\xc9\xee", +"\x71\x30" => "\x8f\xc9\xef", +"\x71\x31" => "\x8f\xc9\xf0", +"\x71\x36" => "\xc1\xb3", +"\x71\x38" => "\x8f\xc9\xf1", +"\x71\x3c" => "\xbe\xc6", +"\x71\x41" => "\x8f\xc9\xf2", +"\x71\x45" => "\x8f\xc9\xf3", +"\x71\x46" => "\x8f\xc9\xf4", +"\x71\x47" => "\x8f\xc9\xf5", +"\x71\x49" => "\xce\xfb", +"\x71\x4a" => "\x8f\xc9\xf6", +"\x71\x4b" => "\x8f\xc9\xf7", +"\x71\x4c" => "\xdf\xea", +"\x71\x4e" => "\xc0\xf9", +"\x71\x50" => "\x8f\xc9\xf8", +"\x71\x52" => "\x8f\xc9\xf9", +"\x71\x55" => "\xdf\xe6", +"\x71\x56" => "\xdf\xeb", +"\x71\x57" => "\x8f\xc9\xfa", +"\x71\x59" => "\xb1\xec", +"\x71\x5a" => "\x8f\xc9\xfb", +"\x71\x5c" => "\x8f\xc9\xfc", +"\x71\x5e" => "\x8f\xc9\xfd", +"\x71\x60" => "\x8f\xc9\xfe", +"\x71\x62" => "\xdf\xe9", +"\x71\x64" => "\xc7\xe1", +"\x71\x65" => "\xdf\xe5", +"\x71\x66" => "\xdf\xe8", +"\x71\x67" => "\xbe\xc8", +"\x71\x68" => "\x8f\xca\xa1", +"\x71\x69" => "\xc8\xd1", +"\x71\x6c" => "\xdf\xec", +"\x71\x6e" => "\xbc\xd1", +"\x71\x79" => "\x8f\xca\xa2", +"\x71\x7d" => "\xc0\xfa", +"\x71\x80" => "\x8f\xca\xa3", +"\x71\x84" => "\xdf\xef", +"\x71\x85" => "\x8f\xca\xa4", +"\x71\x87" => "\x8f\xca\xa5", +"\x71\x88" => "\xdf\xe7", +"\x71\x8a" => "\xb7\xa7", +"\x71\x8c" => "\x8f\xca\xa6", +"\x71\x8f" => "\xdf\xed", +"\x71\x92" => "\x8f\xca\xa7", +"\x71\x94" => "\xcd\xd0", +"\x71\x95" => "\xdf\xf0", +"\x71\x99" => "\xf4\xa6", +"\x71\x9a" => "\x8f\xca\xa8", +"\x71\x9b" => "\x8f\xca\xa9", +"\x71\x9f" => "\xbd\xcf", +"\x71\xa0" => "\x8f\xca\xaa", +"\x71\xa2" => "\x8f\xca\xab", +"\x71\xa8" => "\xdf\xf1", +"\x71\xac" => "\xdf\xf2", +"\x71\xaf" => "\x8f\xca\xac", +"\x71\xb0" => "\x8f\xca\xad", +"\x71\xb1" => "\xc7\xae", +"\x71\xb2" => "\x8f\xca\xae", +"\x71\xb3" => "\x8f\xca\xaf", +"\x71\xb9" => "\xdf\xf4", +"\x71\xba" => "\x8f\xca\xb0", +"\x71\xbe" => "\xdf\xf5", +"\x71\xbf" => "\x8f\xca\xb1", +"\x71\xc0" => "\x8f\xca\xb2", +"\x71\xc1" => "\x8f\xca\xb3", +"\x71\xc3" => "\xc7\xb3", +"\x71\xc4" => "\x8f\xca\xb4", +"\x71\xc8" => "\xc5\xf5", +"\x71\xc9" => "\xdf\xf7", +"\x71\xcb" => "\x8f\xca\xb5", +"\x71\xcc" => "\x8f\xca\xb6", +"\x71\xce" => "\xdf\xf9", +"\x71\xd0" => "\xce\xd5", +"\x71\xd2" => "\xdf\xf6", +"\x71\xd3" => "\x8f\xca\xb7", +"\x71\xd4" => "\xdf\xf8", +"\x71\xd5" => "\xb1\xed", +"\x71\xd6" => "\x8f\xca\xb8", +"\x71\xd7" => "\xdf\xf3", +"\x71\xd9" => "\x8f\xca\xb9", +"\x71\xda" => "\x8f\xca\xba", +"\x71\xdc" => "\x8f\xca\xbb", +"\x71\xdf" => "\xd3\xdb", +"\x71\xe0" => "\xdf\xfa", +"\x71\xe5" => "\xc1\xe7", +"\x71\xe6" => "\xbb\xb8", +"\x71\xe7" => "\xdf\xfc", +"\x71\xec" => "\xdf\xfb", +"\x71\xed" => "\xbf\xa4", +"\x71\xee" => "\xd2\xd9", +"\x71\xf5" => "\xdf\xfd", +"\x71\xf8" => "\x8f\xca\xbc", +"\x71\xf9" => "\xe0\xa1", +"\x71\xfb" => "\xdf\xee", +"\x71\xfc" => "\xdf\xfe", +"\x71\xfe" => "\x8f\xca\xbd", +"\x71\xff" => "\xe0\xa2", +"\x72\x00" => "\x8f\xca\xbe", +"\x72\x06" => "\xc7\xfa", +"\x72\x07" => "\x8f\xca\xbf", +"\x72\x08" => "\x8f\xca\xc0", +"\x72\x09" => "\x8f\xca\xc1", +"\x72\x0d" => "\xe0\xa3", +"\x72\x10" => "\xe0\xa4", +"\x72\x13" => "\x8f\xca\xc2", +"\x72\x17" => "\x8f\xca\xc3", +"\x72\x1a" => "\x8f\xca\xc4", +"\x72\x1b" => "\xe0\xa5", +"\x72\x1d" => "\x8f\xca\xc5", +"\x72\x1f" => "\x8f\xca\xc6", +"\x72\x24" => "\x8f\xca\xc7", +"\x72\x28" => "\xe0\xa6", +"\x72\x2a" => "\xc4\xde", +"\x72\x2b" => "\x8f\xca\xc8", +"\x72\x2c" => "\xe0\xa8", +"\x72\x2d" => "\xe0\xa7", +"\x72\x2f" => "\x8f\xca\xc9", +"\x72\x30" => "\xe0\xa9", +"\x72\x32" => "\xe0\xaa", +"\x72\x34" => "\x8f\xca\xca", +"\x72\x35" => "\xbc\xdf", +"\x72\x36" => "\xc9\xe3", +"\x72\x38" => "\x8f\xca\xcb", +"\x72\x39" => "\x8f\xca\xcc", +"\x72\x3a" => "\xcc\xec", +"\x72\x3b" => "\xe0\xab", +"\x72\x3c" => "\xe0\xac", +"\x72\x3d" => "\xc1\xd6", +"\x72\x3e" => "\xbc\xa4", +"\x72\x3f" => "\xe0\xad", +"\x72\x40" => "\xe0\xae", +"\x72\x41" => "\x8f\xca\xcd", +"\x72\x42" => "\x8f\xca\xce", +"\x72\x43" => "\x8f\xca\xcf", +"\x72\x45" => "\x8f\xca\xd0", +"\x72\x46" => "\xe0\xaf", +"\x72\x47" => "\xca\xd2", +"\x72\x48" => "\xc8\xc7", +"\x72\x4b" => "\xe0\xb0", +"\x72\x4c" => "\xc7\xd7", +"\x72\x4e" => "\x8f\xca\xd1", +"\x72\x4f" => "\x8f\xca\xd2", +"\x72\x50" => "\x8f\xca\xd3", +"\x72\x52" => "\xc4\xad", +"\x72\x53" => "\x8f\xca\xd4", +"\x72\x55" => "\x8f\xca\xd5", +"\x72\x56" => "\x8f\xca\xd6", +"\x72\x58" => "\xe0\xb1", +"\x72\x59" => "\xb2\xe7", +"\x72\x5a" => "\x8f\xca\xd7", +"\x72\x5b" => "\xb5\xed", +"\x72\x5c" => "\x8f\xca\xd8", +"\x72\x5d" => "\xcc\xc6", +"\x72\x5e" => "\x8f\xca\xd9", +"\x72\x5f" => "\xcc\xb6", +"\x72\x60" => "\x8f\xca\xda", +"\x72\x61" => "\xb2\xb4", +"\x72\x62" => "\xcf\xb4", +"\x72\x63" => "\x8f\xca\xdb", +"\x72\x67" => "\xcb\xd2", +"\x72\x68" => "\x8f\xca\xdc", +"\x72\x69" => "\xca\xaa", +"\x72\x6b" => "\x8f\xca\xdd", +"\x72\x6e" => "\x8f\xca\xde", +"\x72\x6f" => "\x8f\xca\xdf", +"\x72\x71" => "\x8f\xca\xe0", +"\x72\x72" => "\xc0\xb7", +"\x72\x74" => "\xe0\xb2", +"\x72\x77" => "\x8f\xca\xe1", +"\x72\x78" => "\x8f\xca\xe2", +"\x72\x79" => "\xc6\xc3", +"\x72\x7b" => "\x8f\xca\xe3", +"\x72\x7c" => "\x8f\xca\xe4", +"\x72\x7d" => "\xb8\xa3", +"\x72\x7e" => "\xe0\xb3", +"\x72\x7f" => "\x8f\xca\xe5", +"\x72\x80" => "\xba\xd4", +"\x72\x81" => "\xe0\xb5", +"\x72\x82" => "\xe0\xb4", +"\x72\x84" => "\x8f\xca\xe6", +"\x72\x87" => "\xe0\xb6", +"\x72\x89" => "\x8f\xca\xe7", +"\x72\x8d" => "\x8f\xca\xe8", +"\x72\x8e" => "\x8f\xca\xe9", +"\x72\x92" => "\xe0\xb7", +"\x72\x93" => "\x8f\xca\xea", +"\x72\x96" => "\xe0\xb8", +"\x72\x9b" => "\x8f\xca\xeb", +"\x72\xa0" => "\xb5\xbe", +"\x72\xa2" => "\xe0\xb9", +"\x72\xa7" => "\xe0\xba", +"\x72\xa8" => "\x8f\xca\xec", +"\x72\xac" => "\xb8\xa4", +"\x72\xad" => "\x8f\xca\xed", +"\x72\xae" => "\x8f\xca\xee", +"\x72\xaf" => "\xc8\xc8", +"\x72\xb1" => "\x8f\xca\xef", +"\x72\xb2" => "\xe0\xbc", +"\x72\xb4" => "\x8f\xca\xf0", +"\x72\xb6" => "\xbe\xf5", +"\x72\xb9" => "\xe0\xbb", +"\x72\xbe" => "\x8f\xca\xf1", +"\x72\xc1" => "\x8f\xca\xf2", +"\x72\xc2" => "\xb6\xb8", +"\x72\xc3" => "\xe0\xbd", +"\x72\xc4" => "\xe0\xbf", +"\x72\xc6" => "\xe0\xbe", +"\x72\xc7" => "\x8f\xca\xf3", +"\x72\xc9" => "\x8f\xca\xf4", +"\x72\xcc" => "\x8f\xca\xf5", +"\x72\xce" => "\xe0\xc0", +"\x72\xd0" => "\xb8\xd1", +"\x72\xd2" => "\xe0\xc1", +"\x72\xd5" => "\x8f\xca\xf6", +"\x72\xd6" => "\x8f\xca\xf7", +"\x72\xd7" => "\xb6\xe9", +"\x72\xd8" => "\x8f\xca\xf8", +"\x72\xd9" => "\xc1\xc0", +"\x72\xdb" => "\xb9\xfd", +"\x72\xdf" => "\x8f\xca\xf9", +"\x72\xe0" => "\xe0\xc3", +"\x72\xe1" => "\xe0\xc4", +"\x72\xe2" => "\xe0\xc2", +"\x72\xe5" => "\x8f\xca\xfa", +"\x72\xe9" => "\xbc\xed", +"\x72\xec" => "\xc6\xc8", +"\x72\xed" => "\xb6\xb9", +"\x72\xf3" => "\x8f\xca\xfb", +"\x72\xf4" => "\x8f\xca\xfc", +"\x72\xf7" => "\xe0\xc6", +"\x72\xf8" => "\xc3\xac", +"\x72\xf9" => "\xe0\xc5", +"\x72\xfa" => "\x8f\xca\xfd", +"\x72\xfb" => "\x8f\xca\xfe", +"\x72\xfc" => "\xcf\xb5", +"\x72\xfd" => "\xc7\xe2", +"\x72\xfe" => "\x8f\xcb\xa1", +"\x73\x02" => "\x8f\xcb\xa2", +"\x73\x04" => "\x8f\xcb\xa3", +"\x73\x05" => "\x8f\xcb\xa4", +"\x73\x07" => "\x8f\xcb\xa5", +"\x73\x0a" => "\xe0\xc9", +"\x73\x0b" => "\x8f\xcb\xa6", +"\x73\x0d" => "\x8f\xcb\xa7", +"\x73\x12" => "\x8f\xcb\xa8", +"\x73\x13" => "\x8f\xcb\xa9", +"\x73\x16" => "\xe0\xcb", +"\x73\x17" => "\xe0\xc8", +"\x73\x18" => "\x8f\xcb\xaa", +"\x73\x19" => "\x8f\xcb\xab", +"\x73\x1b" => "\xcc\xd4", +"\x73\x1c" => "\xe0\xca", +"\x73\x1d" => "\xe0\xcc", +"\x73\x1e" => "\x8f\xcb\xac", +"\x73\x1f" => "\xce\xc4", +"\x73\x22" => "\x8f\xcb\xad", +"\x73\x24" => "\x8f\xcb\xae", +"\x73\x25" => "\xe0\xd0", +"\x73\x27" => "\x8f\xcb\xaf", +"\x73\x28" => "\x8f\xcb\xb0", +"\x73\x29" => "\xe0\xcf", +"\x73\x2a" => "\xc3\xf6", +"\x73\x2b" => "\xc7\xad", +"\x73\x2c" => "\x8f\xcb\xb1", +"\x73\x2e" => "\xb8\xa5", +"\x73\x2f" => "\xe0\xce", +"\x73\x31" => "\x8f\xcb\xb2", +"\x73\x32" => "\x8f\xcb\xb3", +"\x73\x34" => "\xe0\xcd", +"\x73\x35" => "\x8f\xcb\xb4", +"\x73\x36" => "\xcd\xb1", +"\x73\x37" => "\xcd\xb2", +"\x73\x3a" => "\x8f\xcb\xb5", +"\x73\x3b" => "\x8f\xcb\xb6", +"\x73\x3d" => "\x8f\xcb\xb7", +"\x73\x3e" => "\xe0\xd1", +"\x73\x3f" => "\xb1\xee", +"\x73\x43" => "\x8f\xcb\xb8", +"\x73\x44" => "\xb9\xf6", +"\x73\x45" => "\xbb\xe2", +"\x73\x4d" => "\x8f\xcb\xb9", +"\x73\x4e" => "\xe0\xd2", +"\x73\x4f" => "\xe0\xd3", +"\x73\x50" => "\x8f\xcb\xba", +"\x73\x52" => "\x8f\xcb\xbb", +"\x73\x56" => "\x8f\xcb\xbc", +"\x73\x57" => "\xe0\xd5", +"\x73\x58" => "\x8f\xcb\xbd", +"\x73\x5d" => "\x8f\xcb\xbe", +"\x73\x5e" => "\x8f\xcb\xbf", +"\x73\x5f" => "\x8f\xcb\xc0", +"\x73\x60" => "\x8f\xcb\xc1", +"\x73\x63" => "\xbd\xc3", +"\x73\x66" => "\x8f\xcb\xc2", +"\x73\x67" => "\x8f\xcb\xc3", +"\x73\x68" => "\xe0\xd7", +"\x73\x69" => "\x8f\xcb\xc4", +"\x73\x6a" => "\xe0\xd6", +"\x73\x6b" => "\x8f\xcb\xc5", +"\x73\x6c" => "\x8f\xcb\xc6", +"\x73\x6e" => "\x8f\xcb\xc7", +"\x73\x6f" => "\x8f\xcb\xc8", +"\x73\x70" => "\xe0\xd8", +"\x73\x71" => "\x8f\xcb\xc9", +"\x73\x72" => "\xb3\xcd", +"\x73\x75" => "\xe0\xda", +"\x73\x77" => "\x8f\xcb\xca", +"\x73\x78" => "\xe0\xd9", +"\x73\x79" => "\x8f\xcb\xcb", +"\x73\x7a" => "\xe0\xdc", +"\x73\x7b" => "\xe0\xdb", +"\x73\x7c" => "\x8f\xcb\xcc", +"\x73\x80" => "\x8f\xcb\xcd", +"\x73\x81" => "\x8f\xcb\xce", +"\x73\x83" => "\x8f\xcb\xcf", +"\x73\x84" => "\xb8\xbc", +"\x73\x85" => "\x8f\xcb\xd0", +"\x73\x86" => "\x8f\xcb\xd1", +"\x73\x87" => "\xce\xa8", +"\x73\x89" => "\xb6\xcc", +"\x73\x8b" => "\xb2\xa6", +"\x73\x8e" => "\x8f\xcb\xd2", +"\x73\x90" => "\x8f\xcb\xd3", +"\x73\x93" => "\x8f\xcb\xd4", +"\x73\x95" => "\x8f\xcb\xd5", +"\x73\x96" => "\xb6\xea", +"\x73\x97" => "\x8f\xcb\xd6", +"\x73\x98" => "\x8f\xcb\xd7", +"\x73\x9c" => "\x8f\xcb\xd8", +"\x73\x9e" => "\x8f\xcb\xd9", +"\x73\x9f" => "\x8f\xcb\xda", +"\x73\xa0" => "\x8f\xcb\xdb", +"\x73\xa2" => "\x8f\xcb\xdc", +"\x73\xa5" => "\x8f\xcb\xdd", +"\x73\xa6" => "\x8f\xcb\xde", +"\x73\xa9" => "\xb4\xe1", +"\x73\xaa" => "\x8f\xcb\xdf", +"\x73\xab" => "\x8f\xcb\xe0", +"\x73\xad" => "\x8f\xcb\xe1", +"\x73\xb2" => "\xce\xe8", +"\x73\xb3" => "\xe0\xde", +"\x73\xb5" => "\x8f\xcb\xe2", +"\x73\xb7" => "\x8f\xcb\xe3", +"\x73\xb9" => "\x8f\xcb\xe4", +"\x73\xbb" => "\xe0\xe0", +"\x73\xbc" => "\x8f\xcb\xe5", +"\x73\xbd" => "\x8f\xcb\xe6", +"\x73\xbf" => "\x8f\xcb\xe7", +"\x73\xc0" => "\xe0\xe1", +"\x73\xc2" => "\xb2\xd1", +"\x73\xc5" => "\x8f\xcb\xe8", +"\x73\xc6" => "\x8f\xcb\xe9", +"\x73\xc8" => "\xe0\xdd", +"\x73\xc9" => "\x8f\xcb\xea", +"\x73\xca" => "\xbb\xb9", +"\x73\xcb" => "\x8f\xcb\xeb", +"\x73\xcc" => "\x8f\xcb\xec", +"\x73\xcd" => "\xc4\xc1", +"\x73\xce" => "\xe0\xdf", +"\x73\xcf" => "\x8f\xcb\xed", +"\x73\xd2" => "\x8f\xcb\xee", +"\x73\xd3" => "\x8f\xcb\xef", +"\x73\xd6" => "\x8f\xcb\xf0", +"\x73\xd9" => "\x8f\xcb\xf1", +"\x73\xdd" => "\x8f\xcb\xf2", +"\x73\xde" => "\xe0\xe4", +"\x73\xe0" => "\xbc\xee", +"\x73\xe1" => "\x8f\xcb\xf3", +"\x73\xe3" => "\x8f\xcb\xf4", +"\x73\xe5" => "\xe0\xe2", +"\x73\xe6" => "\x8f\xcb\xf5", +"\x73\xe7" => "\x8f\xcb\xf6", +"\x73\xe9" => "\x8f\xcb\xf7", +"\x73\xea" => "\xb7\xbe", +"\x73\xed" => "\xc8\xc9", +"\x73\xee" => "\xe0\xe3", +"\x73\xf1" => "\xe0\xfe", +"\x73\xf4" => "\x8f\xcb\xf8", +"\x73\xf5" => "\x8f\xcb\xf9", +"\x73\xf7" => "\x8f\xcb\xfa", +"\x73\xf8" => "\xe0\xe9", +"\x73\xf9" => "\x8f\xcb\xfb", +"\x73\xfa" => "\x8f\xcb\xfc", +"\x73\xfb" => "\x8f\xcb\xfd", +"\x73\xfd" => "\x8f\xcb\xfe", +"\x73\xfe" => "\xb8\xbd", +"\x73\xff" => "\x8f\xcc\xa1", +"\x74\x00" => "\x8f\xcc\xa2", +"\x74\x01" => "\x8f\xcc\xa3", +"\x74\x03" => "\xb5\xe5", +"\x74\x04" => "\x8f\xcc\xa4", +"\x74\x05" => "\xe0\xe6", +"\x74\x06" => "\xcd\xfd", +"\x74\x07" => "\x8f\xcc\xa5", +"\x74\x09" => "\xce\xb0", +"\x74\x0a" => "\x8f\xcc\xa6", +"\x74\x11" => "\x8f\xcc\xa7", +"\x74\x1a" => "\x8f\xcc\xa8", +"\x74\x1b" => "\x8f\xcc\xa9", +"\x74\x22" => "\xc2\xf6", +"\x74\x24" => "\x8f\xcc\xaa", +"\x74\x25" => "\xe0\xe8", +"\x74\x26" => "\x8f\xcc\xab", +"\x74\x28" => "\x8f\xcc\xac", +"\x74\x29" => "\x8f\xcc\xad", +"\x74\x2a" => "\x8f\xcc\xae", +"\x74\x2b" => "\x8f\xcc\xaf", +"\x74\x2c" => "\x8f\xcc\xb0", +"\x74\x2d" => "\x8f\xcc\xb1", +"\x74\x2e" => "\x8f\xcc\xb2", +"\x74\x2f" => "\x8f\xcc\xb3", +"\x74\x30" => "\x8f\xcc\xb4", +"\x74\x31" => "\x8f\xcc\xb5", +"\x74\x32" => "\xe0\xea", +"\x74\x33" => "\xce\xd6", +"\x74\x34" => "\xb6\xd7", +"\x74\x35" => "\xc8\xfc", +"\x74\x36" => "\xc7\xca", +"\x74\x39" => "\x8f\xcc\xb6", +"\x74\x3a" => "\xe0\xeb", +"\x74\x3f" => "\xe0\xed", +"\x74\x40" => "\x8f\xcc\xb7", +"\x74\x41" => "\xe0\xf0", +"\x74\x43" => "\x8f\xcc\xb8", +"\x74\x44" => "\x8f\xcc\xb9", +"\x74\x46" => "\x8f\xcc\xba", +"\x74\x47" => "\x8f\xcc\xbb", +"\x74\x4b" => "\x8f\xcc\xbc", +"\x74\x4d" => "\x8f\xcc\xbd", +"\x74\x51" => "\x8f\xcc\xbe", +"\x74\x52" => "\x8f\xcc\xbf", +"\x74\x55" => "\xe0\xec", +"\x74\x57" => "\x8f\xcc\xc0", +"\x74\x59" => "\xe0\xef", +"\x74\x5a" => "\xb8\xea", +"\x74\x5b" => "\xb1\xcd", +"\x74\x5c" => "\xe0\xf1", +"\x74\x5d" => "\x8f\xcc\xc1", +"\x74\x5e" => "\xbf\xf0", +"\x74\x5f" => "\xe0\xee", +"\x74\x60" => "\xce\xdc", +"\x74\x62" => "\x8f\xcc\xc2", +"\x74\x63" => "\xe0\xf4", +"\x74\x64" => "\xf4\xa4", +"\x74\x66" => "\x8f\xcc\xc3", +"\x74\x67" => "\x8f\xcc\xc4", +"\x74\x68" => "\x8f\xcc\xc5", +"\x74\x69" => "\xe0\xf2", +"\x74\x6a" => "\xe0\xf5", +"\x74\x6b" => "\x8f\xcc\xc6", +"\x74\x6d" => "\x8f\xcc\xc7", +"\x74\x6e" => "\x8f\xcc\xc8", +"\x74\x6f" => "\xe0\xe7", +"\x74\x70" => "\xe0\xf3", +"\x74\x71" => "\x8f\xcc\xc9", +"\x74\x72" => "\x8f\xcc\xca", +"\x74\x73" => "\xba\xbc", +"\x74\x76" => "\xe0\xf6", +"\x74\x7e" => "\xe0\xf7", +"\x74\x80" => "\x8f\xcc\xcb", +"\x74\x81" => "\x8f\xcc\xcc", +"\x74\x83" => "\xcd\xfe", +"\x74\x85" => "\x8f\xcc\xcd", +"\x74\x86" => "\x8f\xcc\xce", +"\x74\x87" => "\x8f\xcc\xcf", +"\x74\x89" => "\x8f\xcc\xd0", +"\x74\x8b" => "\xe0\xf8", +"\x74\x8f" => "\x8f\xcc\xd1", +"\x74\x90" => "\x8f\xcc\xd2", +"\x74\x91" => "\x8f\xcc\xd3", +"\x74\x92" => "\x8f\xcc\xd4", +"\x74\x98" => "\x8f\xcc\xd5", +"\x74\x99" => "\x8f\xcc\xd6", +"\x74\x9a" => "\x8f\xcc\xd7", +"\x74\x9c" => "\x8f\xcc\xd8", +"\x74\x9e" => "\xe0\xf9", +"\x74\x9f" => "\x8f\xcc\xd9", +"\x74\xa0" => "\x8f\xcc\xda", +"\x74\xa1" => "\x8f\xcc\xdb", +"\x74\xa2" => "\xe0\xe5", +"\x74\xa3" => "\x8f\xcc\xdc", +"\x74\xa6" => "\x8f\xcc\xdd", +"\x74\xa7" => "\xe0\xfa", +"\x74\xa8" => "\x8f\xcc\xde", +"\x74\xa9" => "\x8f\xcc\xdf", +"\x74\xaa" => "\x8f\xcc\xe0", +"\x74\xab" => "\x8f\xcc\xe1", +"\x74\xae" => "\x8f\xcc\xe2", +"\x74\xaf" => "\x8f\xcc\xe3", +"\x74\xb0" => "\xb4\xc4", +"\x74\xb1" => "\x8f\xcc\xe4", +"\x74\xb2" => "\x8f\xcc\xe5", +"\x74\xb5" => "\x8f\xcc\xe6", +"\x74\xb9" => "\x8f\xcc\xe7", +"\x74\xbb" => "\x8f\xcc\xe8", +"\x74\xbd" => "\xbc\xa5", +"\x74\xbf" => "\x8f\xcc\xe9", +"\x74\xc8" => "\x8f\xcc\xea", +"\x74\xc9" => "\x8f\xcc\xeb", +"\x74\xca" => "\xe0\xfb", +"\x74\xcc" => "\x8f\xcc\xec", +"\x74\xcf" => "\xe0\xfc", +"\x74\xd0" => "\x8f\xcc\xed", +"\x74\xd3" => "\x8f\xcc\xee", +"\x74\xd4" => "\xe0\xfd", +"\x74\xd8" => "\x8f\xcc\xef", +"\x74\xda" => "\x8f\xcc\xf0", +"\x74\xdb" => "\x8f\xcc\xf1", +"\x74\xdc" => "\xb1\xbb", +"\x74\xde" => "\x8f\xcc\xf2", +"\x74\xdf" => "\x8f\xcc\xf3", +"\x74\xe0" => "\xe1\xa1", +"\x74\xe2" => "\xc9\xbb", +"\x74\xe3" => "\xe1\xa2", +"\x74\xe4" => "\x8f\xcc\xf4", +"\x74\xe6" => "\xb4\xa4", +"\x74\xe7" => "\xe1\xa3", +"\x74\xe8" => "\x8f\xcc\xf5", +"\x74\xe9" => "\xe1\xa4", +"\x74\xea" => "\x8f\xcc\xf6", +"\x74\xeb" => "\x8f\xcc\xf7", +"\x74\xee" => "\xe1\xa5", +"\x74\xef" => "\x8f\xcc\xf8", +"\x74\xf0" => "\xe1\xa7", +"\x74\xf1" => "\xe1\xa8", +"\x74\xf2" => "\xe1\xa6", +"\x74\xf4" => "\x8f\xcc\xf9", +"\x74\xf6" => "\xc9\xd3", +"\x74\xf7" => "\xe1\xaa", +"\x74\xf8" => "\xe1\xa9", +"\x74\xfa" => "\x8f\xcc\xfa", +"\x74\xfb" => "\x8f\xcc\xfb", +"\x74\xfc" => "\x8f\xcc\xfc", +"\x74\xff" => "\x8f\xcc\xfd", +"\x75\x03" => "\xe1\xac", +"\x75\x04" => "\xe1\xab", +"\x75\x05" => "\xe1\xad", +"\x75\x06" => "\x8f\xcc\xfe", +"\x75\x0c" => "\xe1\xae", +"\x75\x0d" => "\xe1\xb0", +"\x75\x0e" => "\xe1\xaf", +"\x75\x11" => "\xb9\xf9", +"\x75\x12" => "\x8f\xcd\xa1", +"\x75\x13" => "\xe1\xb2", +"\x75\x15" => "\xe1\xb1", +"\x75\x16" => "\x8f\xcd\xa2", +"\x75\x17" => "\x8f\xcd\xa3", +"\x75\x18" => "\xb4\xc5", +"\x75\x1a" => "\xbf\xd3", +"\x75\x1c" => "\xc5\xbc", +"\x75\x1e" => "\xe1\xb3", +"\x75\x1f" => "\xc0\xb8", +"\x75\x20" => "\x8f\xcd\xa4", +"\x75\x21" => "\x8f\xcd\xa5", +"\x75\x23" => "\xbb\xba", +"\x75\x24" => "\x8f\xcd\xa6", +"\x75\x25" => "\xb1\xf9", +"\x75\x26" => "\xe1\xb4", +"\x75\x27" => "\x8f\xcd\xa7", +"\x75\x28" => "\xcd\xd1", +"\x75\x29" => "\x8f\xcd\xa8", +"\x75\x2a" => "\x8f\xcd\xa9", +"\x75\x2b" => "\xca\xe3", +"\x75\x2c" => "\xe1\xb5", +"\x75\x2f" => "\x8f\xcd\xaa", +"\x75\x30" => "\xc5\xc4", +"\x75\x31" => "\xcd\xb3", +"\x75\x32" => "\xb9\xc3", +"\x75\x33" => "\xbf\xbd", +"\x75\x36" => "\x8f\xcd\xab", +"\x75\x37" => "\xc3\xcb", +"\x75\x38" => "\xd2\xb4", +"\x75\x39" => "\x8f\xcd\xac", +"\x75\x3a" => "\xc4\xae", +"\x75\x3b" => "\xb2\xe8", +"\x75\x3c" => "\xe1\xb6", +"\x75\x3d" => "\x8f\xcd\xad", +"\x75\x3e" => "\x8f\xcd\xae", +"\x75\x3f" => "\x8f\xcd\xaf", +"\x75\x40" => "\x8f\xcd\xb0", +"\x75\x43" => "\x8f\xcd\xb1", +"\x75\x44" => "\xe1\xb7", +"\x75\x46" => "\xe1\xbc", +"\x75\x47" => "\x8f\xcd\xb2", +"\x75\x48" => "\x8f\xcd\xb3", +"\x75\x49" => "\xe1\xba", +"\x75\x4a" => "\xe1\xb9", +"\x75\x4b" => "\xda\xc2", +"\x75\x4c" => "\xb3\xa6", +"\x75\x4d" => "\xe1\xb8", +"\x75\x4e" => "\x8f\xcd\xb4", +"\x75\x4f" => "\xb0\xda", +"\x75\x50" => "\x8f\xcd\xb5", +"\x75\x51" => "\xc8\xaa", +"\x75\x52" => "\x8f\xcd\xb6", +"\x75\x54" => "\xc8\xca", +"\x75\x57" => "\x8f\xcd\xb7", +"\x75\x59" => "\xce\xb1", +"\x75\x5a" => "\xe1\xbd", +"\x75\x5b" => "\xe1\xbb", +"\x75\x5c" => "\xc3\xdc", +"\x75\x5d" => "\xc0\xa6", +"\x75\x5e" => "\x8f\xcd\xb8", +"\x75\x5f" => "\x8f\xcd\xb9", +"\x75\x60" => "\xc8\xab", +"\x75\x61" => "\x8f\xcd\xba", +"\x75\x62" => "\xc9\xad", +"\x75\x64" => "\xe1\xbf", +"\x75\x65" => "\xce\xac", +"\x75\x66" => "\xb7\xcd", +"\x75\x67" => "\xe1\xc0", +"\x75\x69" => "\xe1\xbe", +"\x75\x6a" => "\xc8\xd6", +"\x75\x6b" => "\xe1\xc1", +"\x75\x6d" => "\xe1\xc2", +"\x75\x6f" => "\x8f\xcd\xbb", +"\x75\x70" => "\xb0\xdb", +"\x75\x71" => "\x8f\xcd\xbc", +"\x75\x73" => "\xbe\xf6", +"\x75\x74" => "\xe1\xc7", +"\x75\x76" => "\xe1\xc4", +"\x75\x77" => "\xc6\xed", +"\x75\x78" => "\xe1\xc3", +"\x75\x79" => "\x8f\xcd\xbd", +"\x75\x7a" => "\x8f\xcd\xbe", +"\x75\x7b" => "\x8f\xcd\xbf", +"\x75\x7c" => "\x8f\xcd\xc0", +"\x75\x7d" => "\x8f\xcd\xc1", +"\x75\x7e" => "\x8f\xcd\xc2", +"\x75\x7f" => "\xb5\xa6", +"\x75\x81" => "\x8f\xcd\xc3", +"\x75\x82" => "\xe1\xca", +"\x75\x85" => "\x8f\xcd\xc4", +"\x75\x86" => "\xe1\xc5", +"\x75\x87" => "\xe1\xc6", +"\x75\x89" => "\xe1\xc9", +"\x75\x8a" => "\xe1\xc8", +"\x75\x8b" => "\xc9\xa5", +"\x75\x8e" => "\xc1\xc2", +"\x75\x8f" => "\xc1\xc1", +"\x75\x90" => "\x8f\xcd\xc5", +"\x75\x91" => "\xb5\xbf", +"\x75\x92" => "\x8f\xcd\xc6", +"\x75\x93" => "\x8f\xcd\xc7", +"\x75\x94" => "\xe1\xcb", +"\x75\x95" => "\x8f\xcd\xc8", +"\x75\x99" => "\x8f\xcd\xc9", +"\x75\x9a" => "\xe1\xcc", +"\x75\x9c" => "\x8f\xcd\xca", +"\x75\x9d" => "\xe1\xcd", +"\x75\xa2" => "\x8f\xcd\xcb", +"\x75\xa3" => "\xe1\xcf", +"\x75\xa4" => "\x8f\xcd\xcc", +"\x75\xa5" => "\xe1\xce", +"\x75\xab" => "\xb1\xd6", +"\x75\xb1" => "\xe1\xd7", +"\x75\xb2" => "\xc8\xe8", +"\x75\xb3" => "\xe1\xd1", +"\x75\xb4" => "\x8f\xcd\xcd", +"\x75\xb5" => "\xe1\xd3", +"\x75\xb8" => "\xe1\xd5", +"\x75\xb9" => "\xbf\xbe", +"\x75\xba" => "\x8f\xcd\xce", +"\x75\xbc" => "\xe1\xd6", +"\x75\xbd" => "\xe1\xd4", +"\x75\xbe" => "\xbc\xc0", +"\x75\xbf" => "\x8f\xcd\xcf", +"\x75\xc0" => "\x8f\xcd\xd0", +"\x75\xc1" => "\x8f\xcd\xd1", +"\x75\xc2" => "\xe1\xd0", +"\x75\xc3" => "\xe1\xd2", +"\x75\xc4" => "\x8f\xcd\xd2", +"\x75\xc5" => "\xc9\xc2", +"\x75\xc6" => "\x8f\xcd\xd3", +"\x75\xc7" => "\xbe\xc9", +"\x75\xca" => "\xe1\xd9", +"\x75\xcc" => "\x8f\xcd\xd4", +"\x75\xcd" => "\xe1\xd8", +"\x75\xce" => "\x8f\xcd\xd5", +"\x75\xcf" => "\x8f\xcd\xd6", +"\x75\xd2" => "\xe1\xda", +"\x75\xd4" => "\xbc\xa6", +"\x75\xd5" => "\xba\xaf", +"\x75\xd7" => "\x8f\xcd\xd7", +"\x75\xd8" => "\xc5\xf7", +"\x75\xd9" => "\xe1\xdb", +"\x75\xdb" => "\xc4\xcb", +"\x75\xdc" => "\x8f\xcd\xd8", +"\x75\xde" => "\xe1\xdd", +"\x75\xdf" => "\x8f\xcd\xd9", +"\x75\xe0" => "\x8f\xcd\xda", +"\x75\xe1" => "\x8f\xcd\xdb", +"\x75\xe2" => "\xce\xa1", +"\x75\xe3" => "\xe1\xdc", +"\x75\xe4" => "\x8f\xcd\xdc", +"\x75\xe7" => "\x8f\xcd\xdd", +"\x75\xe9" => "\xc1\xe9", +"\x75\xec" => "\x8f\xcd\xde", +"\x75\xee" => "\x8f\xcd\xdf", +"\x75\xef" => "\x8f\xcd\xe0", +"\x75\xf0" => "\xe1\xe2", +"\x75\xf1" => "\x8f\xcd\xe1", +"\x75\xf2" => "\xe1\xe4", +"\x75\xf3" => "\xe1\xe5", +"\x75\xf4" => "\xc3\xd4", +"\x75\xf9" => "\x8f\xcd\xe2", +"\x75\xfa" => "\xe1\xe3", +"\x75\xfc" => "\xe1\xe0", +"\x75\xfe" => "\xe1\xde", +"\x75\xff" => "\xe1\xdf", +"\x76\x00" => "\x8f\xcd\xe3", +"\x76\x01" => "\xe1\xe1", +"\x76\x02" => "\x8f\xcd\xe4", +"\x76\x03" => "\x8f\xcd\xe5", +"\x76\x04" => "\x8f\xcd\xe6", +"\x76\x07" => "\x8f\xcd\xe7", +"\x76\x08" => "\x8f\xcd\xe8", +"\x76\x09" => "\xe1\xe8", +"\x76\x0a" => "\x8f\xcd\xe9", +"\x76\x0b" => "\xe1\xe6", +"\x76\x0c" => "\x8f\xcd\xea", +"\x76\x0d" => "\xe1\xe7", +"\x76\x0f" => "\x8f\xcd\xeb", +"\x76\x12" => "\x8f\xcd\xec", +"\x76\x13" => "\x8f\xcd\xed", +"\x76\x15" => "\x8f\xcd\xee", +"\x76\x16" => "\x8f\xcd\xef", +"\x76\x19" => "\x8f\xcd\xf0", +"\x76\x1b" => "\x8f\xcd\xf1", +"\x76\x1c" => "\x8f\xcd\xf2", +"\x76\x1d" => "\x8f\xcd\xf3", +"\x76\x1e" => "\x8f\xcd\xf4", +"\x76\x1f" => "\xe1\xe9", +"\x76\x20" => "\xe1\xeb", +"\x76\x21" => "\xe1\xec", +"\x76\x22" => "\xe1\xed", +"\x76\x23" => "\x8f\xcd\xf5", +"\x76\x24" => "\xe1\xee", +"\x76\x25" => "\x8f\xcd\xf6", +"\x76\x26" => "\x8f\xcd\xf7", +"\x76\x27" => "\xe1\xea", +"\x76\x29" => "\x8f\xcd\xf8", +"\x76\x2d" => "\x8f\xcd\xf9", +"\x76\x30" => "\xe1\xf0", +"\x76\x32" => "\x8f\xcd\xfa", +"\x76\x33" => "\x8f\xcd\xfb", +"\x76\x34" => "\xe1\xef", +"\x76\x35" => "\x8f\xcd\xfc", +"\x76\x38" => "\x8f\xcd\xfd", +"\x76\x39" => "\x8f\xcd\xfe", +"\x76\x3a" => "\x8f\xce\xa1", +"\x76\x3b" => "\xe1\xf1", +"\x76\x3c" => "\x8f\xce\xa2", +"\x76\x40" => "\x8f\xce\xa4", +"\x76\x41" => "\x8f\xce\xa5", +"\x76\x42" => "\xce\xc5", +"\x76\x43" => "\x8f\xce\xa6", +"\x76\x44" => "\x8f\xce\xa7", +"\x76\x45" => "\x8f\xce\xa8", +"\x76\x46" => "\xe1\xf4", +"\x76\x47" => "\xe1\xf2", +"\x76\x48" => "\xe1\xf3", +"\x76\x49" => "\x8f\xce\xa9", +"\x76\x4a" => "\x8f\xce\xa3", +"\x76\x4b" => "\x8f\xce\xaa", +"\x76\x4c" => "\xb4\xe2", +"\x76\x52" => "\xcc\xfe", +"\x76\x55" => "\x8f\xce\xab", +"\x76\x56" => "\xca\xca", +"\x76\x58" => "\xe1\xf6", +"\x76\x59" => "\x8f\xce\xac", +"\x76\x5c" => "\xe1\xf5", +"\x76\x5f" => "\x8f\xce\xad", +"\x76\x61" => "\xe1\xf7", +"\x76\x62" => "\xe1\xf8", +"\x76\x64" => "\x8f\xce\xae", +"\x76\x65" => "\x8f\xce\xaf", +"\x76\x67" => "\xe1\xfc", +"\x76\x68" => "\xe1\xf9", +"\x76\x69" => "\xe1\xfa", +"\x76\x6a" => "\xe1\xfb", +"\x76\x6c" => "\xe1\xfd", +"\x76\x6d" => "\x8f\xce\xb0", +"\x76\x6e" => "\x8f\xce\xb1", +"\x76\x6f" => "\x8f\xce\xb2", +"\x76\x70" => "\xe1\xfe", +"\x76\x71" => "\x8f\xce\xb3", +"\x76\x72" => "\xe2\xa1", +"\x76\x74" => "\x8f\xce\xb4", +"\x76\x76" => "\xe2\xa2", +"\x76\x78" => "\xe2\xa3", +"\x76\x7a" => "\xc8\xaf", +"\x76\x7b" => "\xc5\xd0", +"\x76\x7c" => "\xe2\xa4", +"\x76\x7d" => "\xc7\xf2", +"\x76\x7e" => "\xc9\xb4", +"\x76\x80" => "\xe2\xa5", +"\x76\x81" => "\x8f\xce\xb5", +"\x76\x83" => "\xe2\xa6", +"\x76\x84" => "\xc5\xaa", +"\x76\x85" => "\x8f\xce\xb6", +"\x76\x86" => "\xb3\xa7", +"\x76\x87" => "\xb9\xc4", +"\x76\x88" => "\xe2\xa7", +"\x76\x8b" => "\xe2\xa8", +"\x76\x8c" => "\x8f\xce\xb7", +"\x76\x8d" => "\x8f\xce\xb8", +"\x76\x8e" => "\xe2\xa9", +"\x76\x90" => "\xbb\xa9", +"\x76\x93" => "\xe2\xab", +"\x76\x95" => "\x8f\xce\xb9", +"\x76\x96" => "\xe2\xaa", +"\x76\x99" => "\xe2\xac", +"\x76\x9a" => "\xe2\xad", +"\x76\x9b" => "\x8f\xce\xba", +"\x76\x9c" => "\x8f\xce\xbb", +"\x76\x9d" => "\x8f\xce\xbc", +"\x76\x9f" => "\x8f\xce\xbd", +"\x76\xa0" => "\x8f\xce\xbe", +"\x76\xa2" => "\x8f\xce\xbf", +"\x76\xa3" => "\x8f\xce\xc0", +"\x76\xa4" => "\x8f\xce\xc1", +"\x76\xa5" => "\x8f\xce\xc2", +"\x76\xa6" => "\x8f\xce\xc3", +"\x76\xa7" => "\x8f\xce\xc4", +"\x76\xa8" => "\x8f\xce\xc5", +"\x76\xaa" => "\x8f\xce\xc6", +"\x76\xad" => "\x8f\xce\xc7", +"\x76\xae" => "\xc8\xe9", +"\x76\xb0" => "\xe2\xae", +"\x76\xb4" => "\xe2\xaf", +"\x76\xb7" => "\xf3\xe9", +"\x76\xb8" => "\xe2\xb0", +"\x76\xb9" => "\xe2\xb1", +"\x76\xba" => "\xe2\xb2", +"\x76\xbd" => "\x8f\xce\xc8", +"\x76\xbf" => "\xbb\xae", +"\x76\xc1" => "\x8f\xce\xc9", +"\x76\xc2" => "\xe2\xb3", +"\x76\xc3" => "\xc7\xd6", +"\x76\xc5" => "\x8f\xce\xca", +"\x76\xc6" => "\xcb\xdf", +"\x76\xc8" => "\xb1\xce", +"\x76\xc9" => "\x8f\xce\xcb", +"\x76\xca" => "\xb1\xd7", +"\x76\xcb" => "\x8f\xce\xcc", +"\x76\xcc" => "\x8f\xce\xcd", +"\x76\xcd" => "\xe2\xb4", +"\x76\xce" => "\x8f\xce\xce", +"\x76\xd2" => "\xe2\xb6", +"\x76\xd4" => "\x8f\xce\xcf", +"\x76\xd6" => "\xe2\xb5", +"\x76\xd7" => "\xc5\xf0", +"\x76\xd9" => "\x8f\xce\xd0", +"\x76\xdb" => "\xc0\xb9", +"\x76\xdc" => "\xdd\xb9", +"\x76\xde" => "\xe2\xb7", +"\x76\xdf" => "\xcc\xc1", +"\x76\xe0" => "\x8f\xce\xd1", +"\x76\xe1" => "\xe2\xb8", +"\x76\xe3" => "\xb4\xc6", +"\x76\xe4" => "\xc8\xd7", +"\x76\xe5" => "\xe2\xb9", +"\x76\xe6" => "\x8f\xce\xd2", +"\x76\xe7" => "\xe2\xba", +"\x76\xe8" => "\x8f\xce\xd3", +"\x76\xea" => "\xe2\xbb", +"\x76\xec" => "\x8f\xce\xd4", +"\x76\xee" => "\xcc\xdc", +"\x76\xf0" => "\x8f\xce\xd5", +"\x76\xf1" => "\x8f\xce\xd6", +"\x76\xf2" => "\xcc\xd5", +"\x76\xf4" => "\xc4\xbe", +"\x76\xf6" => "\x8f\xce\xd7", +"\x76\xf8" => "\xc1\xea", +"\x76\xf9" => "\x8f\xce\xd8", +"\x76\xfb" => "\xe2\xbd", +"\x76\xfc" => "\x8f\xce\xd9", +"\x76\xfe" => "\xbd\xe2", +"\x77\x00" => "\x8f\xce\xda", +"\x77\x01" => "\xbe\xca", +"\x77\x04" => "\xe2\xc0", +"\x77\x06" => "\x8f\xce\xdb", +"\x77\x07" => "\xe2\xbf", +"\x77\x08" => "\xe2\xbe", +"\x77\x09" => "\xc8\xfd", +"\x77\x0a" => "\x8f\xce\xdc", +"\x77\x0b" => "\xb4\xc7", +"\x77\x0c" => "\xb8\xa9", +"\x77\x0e" => "\x8f\xce\xdd", +"\x77\x12" => "\x8f\xce\xde", +"\x77\x14" => "\x8f\xce\xdf", +"\x77\x15" => "\x8f\xce\xe0", +"\x77\x17" => "\x8f\xce\xe1", +"\x77\x19" => "\x8f\xce\xe2", +"\x77\x1a" => "\x8f\xce\xe3", +"\x77\x1b" => "\xe2\xc6", +"\x77\x1c" => "\x8f\xce\xe4", +"\x77\x1e" => "\xe2\xc3", +"\x77\x1f" => "\xbf\xbf", +"\x77\x20" => "\xcc\xb2", +"\x77\x22" => "\x8f\xce\xe5", +"\x77\x24" => "\xe2\xc2", +"\x77\x25" => "\xe2\xc4", +"\x77\x26" => "\xe2\xc5", +"\x77\x28" => "\x8f\xce\xe6", +"\x77\x29" => "\xe2\xc1", +"\x77\x2d" => "\x8f\xce\xe7", +"\x77\x2e" => "\x8f\xce\xe8", +"\x77\x2f" => "\x8f\xce\xe9", +"\x77\x34" => "\x8f\xce\xea", +"\x77\x35" => "\x8f\xce\xeb", +"\x77\x36" => "\x8f\xce\xec", +"\x77\x37" => "\xe2\xc7", +"\x77\x38" => "\xe2\xc8", +"\x77\x39" => "\x8f\xce\xed", +"\x77\x3a" => "\xc4\xaf", +"\x77\x3c" => "\xb4\xe3", +"\x77\x3d" => "\x8f\xce\xee", +"\x77\x3e" => "\x8f\xce\xef", +"\x77\x40" => "\xc3\xe5", +"\x77\x42" => "\x8f\xce\xf0", +"\x77\x45" => "\x8f\xce\xf1", +"\x77\x46" => "\x8f\xce\xf2", +"\x77\x47" => "\xe2\xc9", +"\x77\x4a" => "\x8f\xce\xf3", +"\x77\x4d" => "\x8f\xce\xf4", +"\x77\x4e" => "\x8f\xce\xf5", +"\x77\x4f" => "\x8f\xce\xf6", +"\x77\x52" => "\x8f\xce\xf7", +"\x77\x56" => "\x8f\xce\xf8", +"\x77\x57" => "\x8f\xce\xf9", +"\x77\x5a" => "\xe2\xca", +"\x77\x5b" => "\xe2\xcd", +"\x77\x5c" => "\x8f\xce\xfa", +"\x77\x5e" => "\x8f\xce\xfb", +"\x77\x5f" => "\x8f\xce\xfc", +"\x77\x60" => "\x8f\xce\xfd", +"\x77\x61" => "\xbf\xe7", +"\x77\x62" => "\x8f\xce\xfe", +"\x77\x63" => "\xc6\xc4", +"\x77\x64" => "\x8f\xcf\xa1", +"\x77\x65" => "\xe2\xce", +"\x77\x66" => "\xcb\xd3", +"\x77\x67" => "\x8f\xcf\xa2", +"\x77\x68" => "\xe2\xcb", +"\x77\x6a" => "\x8f\xcf\xa3", +"\x77\x6b" => "\xe2\xcc", +"\x77\x6c" => "\x8f\xcf\xa4", +"\x77\x70" => "\x8f\xcf\xa5", +"\x77\x72" => "\x8f\xcf\xa6", +"\x77\x73" => "\x8f\xcf\xa7", +"\x77\x74" => "\x8f\xcf\xa8", +"\x77\x79" => "\xe2\xd1", +"\x77\x7a" => "\x8f\xcf\xa9", +"\x77\x7d" => "\x8f\xcf\xaa", +"\x77\x7e" => "\xe2\xd0", +"\x77\x7f" => "\xe2\xcf", +"\x77\x80" => "\x8f\xcf\xab", +"\x77\x84" => "\x8f\xcf\xac", +"\x77\x8b" => "\xe2\xd3", +"\x77\x8c" => "\x8f\xcf\xad", +"\x77\x8d" => "\x8f\xcf\xae", +"\x77\x8e" => "\xe2\xd2", +"\x77\x91" => "\xe2\xd4", +"\x77\x94" => "\x8f\xcf\xaf", +"\x77\x95" => "\x8f\xcf\xb0", +"\x77\x96" => "\x8f\xcf\xb1", +"\x77\x9a" => "\x8f\xcf\xb2", +"\x77\x9e" => "\xe2\xd6", +"\x77\x9f" => "\x8f\xcf\xb3", +"\x77\xa0" => "\xe2\xd5", +"\x77\xa2" => "\x8f\xcf\xb4", +"\x77\xa5" => "\xca\xcd", +"\x77\xa7" => "\x8f\xcf\xb5", +"\x77\xaa" => "\x8f\xcf\xb6", +"\x77\xac" => "\xbd\xd6", +"\x77\xad" => "\xce\xc6", +"\x77\xae" => "\x8f\xcf\xb7", +"\x77\xaf" => "\x8f\xcf\xb8", +"\x77\xb0" => "\xe2\xd7", +"\x77\xb1" => "\x8f\xcf\xb9", +"\x77\xb3" => "\xc6\xb7", +"\x77\xb5" => "\x8f\xcf\xba", +"\x77\xb6" => "\xe2\xd8", +"\x77\xb9" => "\xe2\xd9", +"\x77\xbb" => "\xe2\xdd", +"\x77\xbc" => "\xe2\xdb", +"\x77\xbd" => "\xe2\xdc", +"\x77\xbe" => "\x8f\xcf\xbb", +"\x77\xbf" => "\xe2\xda", +"\x77\xc3" => "\x8f\xcf\xbc", +"\x77\xc7" => "\xe2\xde", +"\x77\xc9" => "\x8f\xcf\xbd", +"\x77\xcd" => "\xe2\xdf", +"\x77\xd1" => "\x8f\xcf\xbe", +"\x77\xd2" => "\x8f\xcf\xbf", +"\x77\xd5" => "\x8f\xcf\xc0", +"\x77\xd7" => "\xe2\xe0", +"\x77\xd9" => "\x8f\xcf\xc1", +"\x77\xda" => "\xe2\xe1", +"\x77\xdb" => "\xcc\xb7", +"\x77\xdc" => "\xe2\xe2", +"\x77\xde" => "\x8f\xcf\xc2", +"\x77\xdf" => "\x8f\xcf\xc3", +"\x77\xe0" => "\x8f\xcf\xc4", +"\x77\xe2" => "\xcc\xf0", +"\x77\xe3" => "\xe2\xe3", +"\x77\xe4" => "\x8f\xcf\xc5", +"\x77\xe5" => "\xc3\xce", +"\x77\xe6" => "\x8f\xcf\xc6", +"\x77\xe7" => "\xc7\xea", +"\x77\xe9" => "\xb6\xeb", +"\x77\xea" => "\x8f\xcf\xc7", +"\x77\xec" => "\x8f\xcf\xc8", +"\x77\xed" => "\xc3\xbb", +"\x77\xee" => "\xe2\xe4", +"\x77\xef" => "\xb6\xba", +"\x77\xf0" => "\x8f\xcf\xc9", +"\x77\xf1" => "\x8f\xcf\xca", +"\x77\xf3" => "\xc0\xd0", +"\x77\xf4" => "\x8f\xcf\xcb", +"\x77\xf8" => "\x8f\xcf\xcc", +"\x77\xfb" => "\x8f\xcf\xcd", +"\x77\xfc" => "\xe2\xe5", +"\x78\x02" => "\xba\xbd", +"\x78\x05" => "\x8f\xcf\xce", +"\x78\x06" => "\x8f\xcf\xcf", +"\x78\x09" => "\x8f\xcf\xd0", +"\x78\x0c" => "\xe2\xe6", +"\x78\x0d" => "\x8f\xcf\xd1", +"\x78\x0e" => "\x8f\xcf\xd2", +"\x78\x11" => "\x8f\xcf\xd3", +"\x78\x12" => "\xe2\xe7", +"\x78\x14" => "\xb8\xa6", +"\x78\x15" => "\xba\xd5", +"\x78\x1d" => "\x8f\xcf\xd4", +"\x78\x20" => "\xe2\xe9", +"\x78\x21" => "\x8f\xcf\xd5", +"\x78\x22" => "\x8f\xcf\xd6", +"\x78\x23" => "\x8f\xcf\xd7", +"\x78\x25" => "\xc5\xd6", +"\x78\x26" => "\xba\xd6", +"\x78\x27" => "\xb5\xce", +"\x78\x2d" => "\x8f\xcf\xd8", +"\x78\x2e" => "\x8f\xcf\xd9", +"\x78\x30" => "\x8f\xcf\xda", +"\x78\x32" => "\xcb\xa4", +"\x78\x34" => "\xc7\xcb", +"\x78\x35" => "\x8f\xcf\xdb", +"\x78\x37" => "\x8f\xcf\xdc", +"\x78\x3a" => "\xc5\xd7", +"\x78\x3f" => "\xb9\xdc", +"\x78\x43" => "\x8f\xcf\xdd", +"\x78\x44" => "\x8f\xcf\xde", +"\x78\x45" => "\xe2\xeb", +"\x78\x47" => "\x8f\xcf\xdf", +"\x78\x48" => "\x8f\xcf\xe0", +"\x78\x4c" => "\x8f\xcf\xe1", +"\x78\x4e" => "\x8f\xcf\xe2", +"\x78\x52" => "\x8f\xcf\xe3", +"\x78\x5c" => "\x8f\xcf\xe4", +"\x78\x5d" => "\xbe\xcb", +"\x78\x5e" => "\x8f\xcf\xe5", +"\x78\x60" => "\x8f\xcf\xe6", +"\x78\x61" => "\x8f\xcf\xe7", +"\x78\x63" => "\x8f\xcf\xe8", +"\x78\x64" => "\x8f\xcf\xe9", +"\x78\x68" => "\x8f\xcf\xea", +"\x78\x6a" => "\x8f\xcf\xeb", +"\x78\x6b" => "\xce\xb2", +"\x78\x6c" => "\xb9\xc5", +"\x78\x6e" => "\x8f\xcf\xec", +"\x78\x6f" => "\xb8\xa7", +"\x78\x72" => "\xc8\xa3", +"\x78\x74" => "\xe2\xed", +"\x78\x7a" => "\x8f\xcf\xed", +"\x78\x7c" => "\xe2\xef", +"\x78\x7e" => "\x8f\xcf\xee", +"\x78\x81" => "\xb8\xeb", +"\x78\x86" => "\xe2\xee", +"\x78\x87" => "\xc4\xf6", +"\x78\x8a" => "\x8f\xcf\xef", +"\x78\x8c" => "\xe2\xf1", +"\x78\x8d" => "\xb3\xb7", +"\x78\x8e" => "\xe2\xec", +"\x78\x8f" => "\x8f\xcf\xf0", +"\x78\x91" => "\xc8\xea", +"\x78\x93" => "\xb1\xb0", +"\x78\x94" => "\x8f\xcf\xf1", +"\x78\x95" => "\xba\xec", +"\x78\x97" => "\xcf\xd2", +"\x78\x98" => "\x8f\xcf\xf2", +"\x78\x9a" => "\xe2\xf0", +"\x78\x9d" => "\x8f\xcf\xf4", +"\x78\x9e" => "\x8f\xcf\xf5", +"\x78\x9f" => "\x8f\xcf\xf6", +"\x78\xa1" => "\x8f\xcf\xf3", +"\x78\xa3" => "\xe2\xf2", +"\x78\xa4" => "\x8f\xcf\xf7", +"\x78\xa7" => "\xca\xcb", +"\x78\xa8" => "\x8f\xcf\xf8", +"\x78\xa9" => "\xc0\xd9", +"\x78\xaa" => "\xe2\xf4", +"\x78\xac" => "\x8f\xcf\xf9", +"\x78\xad" => "\x8f\xcf\xfa", +"\x78\xaf" => "\xe2\xf5", +"\x78\xb0" => "\x8f\xcf\xfb", +"\x78\xb1" => "\x8f\xcf\xfc", +"\x78\xb2" => "\x8f\xcf\xfd", +"\x78\xb3" => "\x8f\xcf\xfe", +"\x78\xb5" => "\xe2\xf3", +"\x78\xba" => "\xb3\xce", +"\x78\xbb" => "\x8f\xd0\xa1", +"\x78\xbc" => "\xe2\xfb", +"\x78\xbd" => "\x8f\xd0\xa2", +"\x78\xbe" => "\xe2\xfa", +"\x78\xbf" => "\x8f\xd0\xa3", +"\x78\xc1" => "\xbc\xa7", +"\x78\xc5" => "\xe2\xfc", +"\x78\xc6" => "\xe2\xf7", +"\x78\xc7" => "\x8f\xd0\xa4", +"\x78\xc8" => "\x8f\xd0\xa5", +"\x78\xc9" => "\x8f\xd0\xa6", +"\x78\xca" => "\xe2\xfd", +"\x78\xcb" => "\xe2\xf8", +"\x78\xcc" => "\x8f\xd0\xa7", +"\x78\xce" => "\x8f\xd0\xa8", +"\x78\xd0" => "\xc8\xd8", +"\x78\xd1" => "\xe2\xf6", +"\x78\xd2" => "\x8f\xd0\xa9", +"\x78\xd3" => "\x8f\xd0\xaa", +"\x78\xd4" => "\xe2\xf9", +"\x78\xd5" => "\x8f\xd0\xab", +"\x78\xd6" => "\x8f\xd0\xac", +"\x78\xda" => "\xe3\xa2", +"\x78\xdb" => "\x8f\xd0\xae", +"\x78\xdf" => "\x8f\xd0\xaf", +"\x78\xe0" => "\x8f\xd0\xb0", +"\x78\xe1" => "\x8f\xd0\xb1", +"\x78\xe4" => "\x8f\xd0\xad", +"\x78\xe6" => "\x8f\xd0\xb2", +"\x78\xe7" => "\xe3\xa1", +"\x78\xe8" => "\xcb\xe1", +"\x78\xea" => "\x8f\xd0\xb3", +"\x78\xec" => "\xe2\xfe", +"\x78\xef" => "\xb0\xeb", +"\x78\xf2" => "\x8f\xd0\xb4", +"\x78\xf3" => "\x8f\xd0\xb5", +"\x78\xf4" => "\xe3\xa4", +"\x78\xf6" => "\x8f\xd0\xb7", +"\x78\xf7" => "\x8f\xd0\xb8", +"\x78\xfa" => "\x8f\xd0\xb9", +"\x78\xfb" => "\x8f\xd0\xba", +"\x78\xfd" => "\xe3\xa3", +"\x78\xff" => "\x8f\xd0\xbb", +"\x79\x00" => "\x8f\xd0\xb6", +"\x79\x01" => "\xbe\xcc", +"\x79\x06" => "\x8f\xd0\xbc", +"\x79\x07" => "\xe3\xa5", +"\x79\x0c" => "\x8f\xd0\xbd", +"\x79\x0e" => "\xc1\xc3", +"\x79\x10" => "\x8f\xd0\xbe", +"\x79\x11" => "\xe3\xa7", +"\x79\x12" => "\xe3\xa6", +"\x79\x19" => "\xe3\xa8", +"\x79\x1a" => "\x8f\xd0\xbf", +"\x79\x1c" => "\x8f\xd0\xc0", +"\x79\x1e" => "\x8f\xd0\xc1", +"\x79\x1f" => "\x8f\xd0\xc2", +"\x79\x20" => "\x8f\xd0\xc3", +"\x79\x25" => "\x8f\xd0\xc4", +"\x79\x26" => "\xe2\xe8", +"\x79\x27" => "\x8f\xd0\xc5", +"\x79\x29" => "\x8f\xd0\xc6", +"\x79\x2a" => "\xe2\xea", +"\x79\x2b" => "\xe3\xaa", +"\x79\x2c" => "\xe3\xa9", +"\x79\x2d" => "\x8f\xd0\xc7", +"\x79\x31" => "\x8f\xd0\xc8", +"\x79\x34" => "\x8f\xd0\xc9", +"\x79\x35" => "\x8f\xd0\xca", +"\x79\x3a" => "\xbc\xa8", +"\x79\x3b" => "\x8f\xd0\xcb", +"\x79\x3c" => "\xce\xe9", +"\x79\x3d" => "\x8f\xd0\xcc", +"\x79\x3e" => "\xbc\xd2", +"\x79\x3f" => "\x8f\xd0\xcd", +"\x79\x40" => "\xe3\xab", +"\x79\x41" => "\xb7\xb7", +"\x79\x44" => "\x8f\xd0\xce", +"\x79\x45" => "\x8f\xd0\xcf", +"\x79\x46" => "\x8f\xd0\xd0", +"\x79\x47" => "\xb5\xc0", +"\x79\x48" => "\xb5\xa7", +"\x79\x49" => "\xbb\xe3", +"\x79\x4a" => "\x8f\xd0\xd1", +"\x79\x4b" => "\x8f\xd0\xd2", +"\x79\x4f" => "\x8f\xd0\xd3", +"\x79\x50" => "\xcd\xb4", +"\x79\x51" => "\x8f\xd0\xd4", +"\x79\x53" => "\xe3\xb1", +"\x79\x54" => "\x8f\xd0\xd5", +"\x79\x55" => "\xe3\xb0", +"\x79\x56" => "\xc1\xc4", +"\x79\x57" => "\xe3\xad", +"\x79\x58" => "\x8f\xd0\xd6", +"\x79\x5a" => "\xe3\xaf", +"\x79\x5b" => "\x8f\xd0\xd7", +"\x79\x5c" => "\x8f\xd0\xd8", +"\x79\x5d" => "\xbd\xcb", +"\x79\x5e" => "\xbf\xc0", +"\x79\x5f" => "\xe3\xae", +"\x79\x60" => "\xe3\xac", +"\x79\x62" => "\xc7\xaa", +"\x79\x65" => "\xbe\xcd", +"\x79\x67" => "\x8f\xd0\xd9", +"\x79\x68" => "\xc9\xbc", +"\x79\x69" => "\x8f\xd0\xda", +"\x79\x6b" => "\x8f\xd0\xdb", +"\x79\x6d" => "\xba\xd7", +"\x79\x72" => "\x8f\xd0\xdc", +"\x79\x77" => "\xc5\xf8", +"\x79\x79" => "\x8f\xd0\xdd", +"\x79\x7a" => "\xe3\xb2", +"\x79\x7b" => "\x8f\xd0\xde", +"\x79\x7c" => "\x8f\xd0\xdf", +"\x79\x7e" => "\x8f\xd0\xe0", +"\x79\x7f" => "\xe3\xb3", +"\x79\x80" => "\xe3\xc9", +"\x79\x81" => "\xb6\xd8", +"\x79\x84" => "\xcf\xbd", +"\x79\x85" => "\xc1\xb5", +"\x79\x8a" => "\xe3\xb4", +"\x79\x8b" => "\x8f\xd0\xe1", +"\x79\x8c" => "\x8f\xd0\xe2", +"\x79\x8d" => "\xb2\xd2", +"\x79\x8e" => "\xc4\xf7", +"\x79\x8f" => "\xca\xa1", +"\x79\x91" => "\x8f\xd0\xe3", +"\x79\x93" => "\x8f\xd0\xe4", +"\x79\x94" => "\x8f\xd0\xe5", +"\x79\x95" => "\x8f\xd0\xe6", +"\x79\x96" => "\x8f\xd0\xe7", +"\x79\x98" => "\x8f\xd0\xe8", +"\x79\x9b" => "\x8f\xd0\xe9", +"\x79\x9c" => "\x8f\xd0\xea", +"\x79\x9d" => "\xe3\xb5", +"\x79\xa1" => "\x8f\xd0\xeb", +"\x79\xa6" => "\xb5\xfa", +"\x79\xa7" => "\xe3\xb6", +"\x79\xa8" => "\x8f\xd0\xec", +"\x79\xa9" => "\x8f\xd0\xed", +"\x79\xaa" => "\xe3\xb8", +"\x79\xab" => "\x8f\xd0\xee", +"\x79\xae" => "\xe3\xb9", +"\x79\xaf" => "\x8f\xd0\xef", +"\x79\xb0" => "\xc7\xa9", +"\x79\xb1" => "\x8f\xd0\xf0", +"\x79\xb3" => "\xe3\xba", +"\x79\xb4" => "\x8f\xd0\xf1", +"\x79\xb8" => "\x8f\xd0\xf2", +"\x79\xb9" => "\xe3\xbb", +"\x79\xba" => "\xe3\xbc", +"\x79\xbb" => "\x8f\xd0\xf3", +"\x79\xbd" => "\xb6\xd9", +"\x79\xbe" => "\xb2\xd3", +"\x79\xbf" => "\xc6\xc5", +"\x79\xc0" => "\xbd\xa8", +"\x79\xc1" => "\xbb\xe4", +"\x79\xc2" => "\x8f\xd0\xf4", +"\x79\xc4" => "\x8f\xd0\xf5", +"\x79\xc7" => "\x8f\xd0\xf6", +"\x79\xc8" => "\x8f\xd0\xf7", +"\x79\xc9" => "\xe3\xbd", +"\x79\xca" => "\x8f\xd0\xf8", +"\x79\xcb" => "\xbd\xa9", +"\x79\xcf" => "\x8f\xd0\xf9", +"\x79\xd1" => "\xb2\xca", +"\x79\xd2" => "\xc9\xc3", +"\x79\xd4" => "\x8f\xd0\xfa", +"\x79\xd5" => "\xe3\xbe", +"\x79\xd6" => "\x8f\xd0\xfb", +"\x79\xd8" => "\xc8\xeb", +"\x79\xda" => "\x8f\xd0\xfc", +"\x79\xdd" => "\x8f\xd0\xfd", +"\x79\xde" => "\x8f\xd0\xfe", +"\x79\xdf" => "\xc1\xc5", +"\x79\xe0" => "\x8f\xd1\xa1", +"\x79\xe1" => "\xe3\xc1", +"\x79\xe2" => "\x8f\xd1\xa2", +"\x79\xe3" => "\xe3\xc2", +"\x79\xe4" => "\xc7\xe9", +"\x79\xe5" => "\x8f\xd1\xa3", +"\x79\xe6" => "\xbf\xc1", +"\x79\xe7" => "\xe3\xbf", +"\x79\xe9" => "\xc3\xe1", +"\x79\xea" => "\x8f\xd1\xa4", +"\x79\xeb" => "\x8f\xd1\xa5", +"\x79\xec" => "\xe3\xc0", +"\x79\xed" => "\x8f\xd1\xa6", +"\x79\xf0" => "\xbe\xce", +"\x79\xf1" => "\x8f\xd1\xa7", +"\x79\xf8" => "\x8f\xd1\xa8", +"\x79\xfb" => "\xb0\xdc", +"\x79\xfc" => "\x8f\xd1\xa9", +"\x7a\x00" => "\xb5\xa9", +"\x7a\x02" => "\x8f\xd1\xaa", +"\x7a\x03" => "\x8f\xd1\xab", +"\x7a\x07" => "\x8f\xd1\xac", +"\x7a\x08" => "\xe3\xc3", +"\x7a\x09" => "\x8f\xd1\xad", +"\x7a\x0a" => "\x8f\xd1\xae", +"\x7a\x0b" => "\xc4\xf8", +"\x7a\x0c" => "\x8f\xd1\xaf", +"\x7a\x0d" => "\xe3\xc4", +"\x7a\x0e" => "\xc0\xc7", +"\x7a\x11" => "\x8f\xd1\xb0", +"\x7a\x14" => "\xcc\xad", +"\x7a\x15" => "\x8f\xd1\xb1", +"\x7a\x17" => "\xc9\xa3", +"\x7a\x18" => "\xe3\xc5", +"\x7a\x19" => "\xe3\xc6", +"\x7a\x1a" => "\xc3\xd5", +"\x7a\x1b" => "\x8f\xd1\xb2", +"\x7a\x1c" => "\xce\xc7", +"\x7a\x1e" => "\x8f\xd1\xb3", +"\x7a\x1f" => "\xe3\xc8", +"\x7a\x20" => "\xe3\xc7", +"\x7a\x21" => "\x8f\xd1\xb4", +"\x7a\x27" => "\x8f\xd1\xb5", +"\x7a\x2b" => "\x8f\xd1\xb6", +"\x7a\x2d" => "\x8f\xd1\xb7", +"\x7a\x2e" => "\xbc\xef", +"\x7a\x2f" => "\x8f\xd1\xb8", +"\x7a\x30" => "\x8f\xd1\xb9", +"\x7a\x31" => "\xe3\xca", +"\x7a\x32" => "\xb0\xf0", +"\x7a\x34" => "\x8f\xd1\xba", +"\x7a\x35" => "\x8f\xd1\xbb", +"\x7a\x37" => "\xe3\xcd", +"\x7a\x38" => "\x8f\xd1\xbc", +"\x7a\x39" => "\x8f\xd1\xbd", +"\x7a\x3a" => "\x8f\xd1\xbe", +"\x7a\x3b" => "\xe3\xcb", +"\x7a\x3c" => "\xb2\xd4", +"\x7a\x3d" => "\xb7\xce", +"\x7a\x3e" => "\xe3\xcc", +"\x7a\x3f" => "\xb9\xc6", +"\x7a\x40" => "\xb9\xf2", +"\x7a\x42" => "\xca\xe6", +"\x7a\x43" => "\xe3\xce", +"\x7a\x44" => "\x8f\xd1\xbf", +"\x7a\x45" => "\x8f\xd1\xc0", +"\x7a\x46" => "\xcb\xd4", +"\x7a\x47" => "\x8f\xd1\xc1", +"\x7a\x48" => "\x8f\xd1\xc2", +"\x7a\x49" => "\xe3\xd0", +"\x7a\x4c" => "\x8f\xd1\xc3", +"\x7a\x4d" => "\xc0\xd1", +"\x7a\x4e" => "\xb1\xcf", +"\x7a\x4f" => "\xb2\xba", +"\x7a\x50" => "\xb0\xac", +"\x7a\x55" => "\x8f\xd1\xc4", +"\x7a\x56" => "\x8f\xd1\xc5", +"\x7a\x57" => "\xe3\xcf", +"\x7a\x59" => "\x8f\xd1\xc6", +"\x7a\x5c" => "\x8f\xd1\xc7", +"\x7a\x5d" => "\x8f\xd1\xc8", +"\x7a\x5f" => "\x8f\xd1\xc9", +"\x7a\x60" => "\x8f\xd1\xca", +"\x7a\x61" => "\xe3\xd1", +"\x7a\x62" => "\xe3\xd2", +"\x7a\x63" => "\xbe\xf7", +"\x7a\x65" => "\x8f\xd1\xcb", +"\x7a\x67" => "\x8f\xd1\xcc", +"\x7a\x69" => "\xe3\xd3", +"\x7a\x6a" => "\x8f\xd1\xcd", +"\x7a\x6b" => "\xb3\xcf", +"\x7a\x6d" => "\x8f\xd1\xce", +"\x7a\x70" => "\xe3\xd5", +"\x7a\x74" => "\xb7\xea", +"\x7a\x75" => "\x8f\xd1\xcf", +"\x7a\x76" => "\xb5\xe6", +"\x7a\x78" => "\x8f\xd1\xd0", +"\x7a\x79" => "\xe3\xd6", +"\x7a\x7a" => "\xb6\xf5", +"\x7a\x7d" => "\xe3\xd7", +"\x7a\x7e" => "\x8f\xd1\xd1", +"\x7a\x7f" => "\xc0\xfc", +"\x7a\x80" => "\x8f\xd1\xd2", +"\x7a\x81" => "\xc6\xcd", +"\x7a\x82" => "\x8f\xd1\xd3", +"\x7a\x83" => "\xc0\xe0", +"\x7a\x84" => "\xba\xf5", +"\x7a\x85" => "\x8f\xd1\xd4", +"\x7a\x86" => "\x8f\xd1\xd5", +"\x7a\x88" => "\xe3\xd8", +"\x7a\x8a" => "\x8f\xd1\xd6", +"\x7a\x8b" => "\x8f\xd1\xd7", +"\x7a\x90" => "\x8f\xd1\xd8", +"\x7a\x91" => "\x8f\xd1\xd9", +"\x7a\x92" => "\xc3\xe2", +"\x7a\x93" => "\xc1\xeb", +"\x7a\x94" => "\x8f\xd1\xda", +"\x7a\x95" => "\xe3\xda", +"\x7a\x96" => "\xe3\xdc", +"\x7a\x97" => "\xe3\xd9", +"\x7a\x98" => "\xe3\xdb", +"\x7a\x9e" => "\x8f\xd1\xdb", +"\x7a\x9f" => "\xb7\xa2", +"\x7a\xa0" => "\x8f\xd1\xdc", +"\x7a\xa3" => "\x8f\xd1\xdd", +"\x7a\xa9" => "\xe3\xdd", +"\x7a\xaa" => "\xb7\xa6", +"\x7a\xac" => "\x8f\xd1\xde", +"\x7a\xae" => "\xb5\xe7", +"\x7a\xaf" => "\xcd\xd2", +"\x7a\xb0" => "\xe3\xdf", +"\x7a\xb3" => "\x8f\xd1\xdf", +"\x7a\xb5" => "\x8f\xd1\xe0", +"\x7a\xb6" => "\xe3\xe0", +"\x7a\xb9" => "\x8f\xd1\xe1", +"\x7a\xba" => "\xb1\xae", +"\x7a\xbb" => "\x8f\xd1\xe2", +"\x7a\xbc" => "\x8f\xd1\xe3", +"\x7a\xbf" => "\xe3\xe3", +"\x7a\xc3" => "\xb3\xf6", +"\x7a\xc4" => "\xe3\xe2", +"\x7a\xc5" => "\xe3\xe1", +"\x7a\xc6" => "\x8f\xd1\xe4", +"\x7a\xc7" => "\xe3\xe5", +"\x7a\xc8" => "\xe3\xde", +"\x7a\xc9" => "\x8f\xd1\xe5", +"\x7a\xca" => "\xe3\xe6", +"\x7a\xcb" => "\xce\xa9", +"\x7a\xcc" => "\x8f\xd1\xe6", +"\x7a\xcd" => "\xe3\xe7", +"\x7a\xce" => "\x8f\xd1\xe7", +"\x7a\xcf" => "\xe3\xe8", +"\x7a\xd1" => "\x8f\xd1\xe8", +"\x7a\xd2" => "\xd4\xf4", +"\x7a\xd3" => "\xe3\xea", +"\x7a\xd5" => "\xe3\xe9", +"\x7a\xd9" => "\xe3\xeb", +"\x7a\xda" => "\xe3\xec", +"\x7a\xdb" => "\x8f\xd1\xe9", +"\x7a\xdc" => "\xce\xb5", +"\x7a\xdd" => "\xe3\xed", +"\x7a\xdf" => "\xf0\xef", +"\x7a\xe0" => "\xbe\xcf", +"\x7a\xe1" => "\xe3\xee", +"\x7a\xe2" => "\xe3\xef", +"\x7a\xe3" => "\xbd\xd7", +"\x7a\xe5" => "\xc6\xb8", +"\x7a\xe6" => "\xe3\xf0", +"\x7a\xe8" => "\x8f\xd1\xea", +"\x7a\xe9" => "\x8f\xd1\xeb", +"\x7a\xea" => "\xc3\xa8", +"\x7a\xeb" => "\x8f\xd1\xec", +"\x7a\xec" => "\x8f\xd1\xed", +"\x7a\xed" => "\xe3\xf1", +"\x7a\xef" => "\xc3\xbc", +"\x7a\xf0" => "\xe3\xf2", +"\x7a\xf1" => "\x8f\xd1\xee", +"\x7a\xf4" => "\x8f\xd1\xef", +"\x7a\xf6" => "\xb6\xa5", +"\x7a\xf8" => "\xd1\xbf", +"\x7a\xf9" => "\xc3\xdd", +"\x7a\xfa" => "\xbc\xb3", +"\x7a\xfb" => "\x8f\xd1\xf0", +"\x7a\xfd" => "\x8f\xd1\xf1", +"\x7a\xfe" => "\x8f\xd1\xf2", +"\x7a\xff" => "\xb4\xc8", +"\x7b\x02" => "\xe3\xf3", +"\x7b\x04" => "\xe4\xa2", +"\x7b\x06" => "\xe3\xf6", +"\x7b\x07" => "\x8f\xd1\xf3", +"\x7b\x08" => "\xb5\xe8", +"\x7b\x0a" => "\xe3\xf5", +"\x7b\x0b" => "\xe4\xa4", +"\x7b\x0f" => "\xe3\xf4", +"\x7b\x11" => "\xbe\xd0", +"\x7b\x14" => "\x8f\xd1\xf4", +"\x7b\x18" => "\xe3\xf8", +"\x7b\x19" => "\xe3\xf9", +"\x7b\x1b" => "\xc5\xab", +"\x7b\x1e" => "\xe3\xfa", +"\x7b\x1f" => "\x8f\xd1\xf5", +"\x7b\x20" => "\xb3\xde", +"\x7b\x23" => "\x8f\xd1\xf6", +"\x7b\x25" => "\xbf\xda", +"\x7b\x26" => "\xc9\xe4", +"\x7b\x27" => "\x8f\xd1\xf7", +"\x7b\x28" => "\xe3\xfc", +"\x7b\x29" => "\x8f\xd1\xf8", +"\x7b\x2a" => "\x8f\xd1\xf9", +"\x7b\x2b" => "\x8f\xd1\xfa", +"\x7b\x2c" => "\xc2\xe8", +"\x7b\x2d" => "\x8f\xd1\xfb", +"\x7b\x2e" => "\x8f\xd1\xfc", +"\x7b\x2f" => "\x8f\xd1\xfd", +"\x7b\x30" => "\x8f\xd1\xfe", +"\x7b\x31" => "\x8f\xd2\xa1", +"\x7b\x33" => "\xe3\xf7", +"\x7b\x34" => "\x8f\xd2\xa2", +"\x7b\x35" => "\xe3\xfb", +"\x7b\x36" => "\xe3\xfd", +"\x7b\x39" => "\xba\xfb", +"\x7b\x3d" => "\x8f\xd2\xa3", +"\x7b\x3f" => "\x8f\xd2\xa4", +"\x7b\x40" => "\x8f\xd2\xa5", +"\x7b\x41" => "\x8f\xd2\xa6", +"\x7b\x45" => "\xe4\xa6", +"\x7b\x46" => "\xc9\xae", +"\x7b\x47" => "\x8f\xd2\xa7", +"\x7b\x48" => "\xc8\xa6", +"\x7b\x49" => "\xc5\xf9", +"\x7b\x4b" => "\xb6\xda", +"\x7b\x4c" => "\xe4\xa5", +"\x7b\x4d" => "\xe4\xa3", +"\x7b\x4e" => "\x8f\xd2\xa8", +"\x7b\x4f" => "\xc8\xb5", +"\x7b\x50" => "\xe3\xfe", +"\x7b\x51" => "\xc3\xde", +"\x7b\x52" => "\xc5\xfb", +"\x7b\x54" => "\xc5\xfa", +"\x7b\x55" => "\x8f\xd2\xa9", +"\x7b\x56" => "\xba\xf6", +"\x7b\x5d" => "\xe4\xb8", +"\x7b\x60" => "\x8f\xd2\xaa", +"\x7b\x64" => "\x8f\xd2\xab", +"\x7b\x65" => "\xe4\xa8", +"\x7b\x66" => "\x8f\xd2\xac", +"\x7b\x67" => "\xe4\xaa", +"\x7b\x69" => "\x8f\xd2\xad", +"\x7b\x6a" => "\x8f\xd2\xae", +"\x7b\x6c" => "\xe4\xad", +"\x7b\x6d" => "\x8f\xd2\xaf", +"\x7b\x6e" => "\xe4\xae", +"\x7b\x6f" => "\x8f\xd2\xb0", +"\x7b\x70" => "\xe4\xab", +"\x7b\x71" => "\xe4\xac", +"\x7b\x72" => "\x8f\xd2\xb1", +"\x7b\x73" => "\x8f\xd2\xb2", +"\x7b\x74" => "\xe4\xa9", +"\x7b\x75" => "\xe4\xa7", +"\x7b\x77" => "\x8f\xd2\xb3", +"\x7b\x7a" => "\xe4\xa1", +"\x7b\x84" => "\x8f\xd2\xb4", +"\x7b\x86" => "\xca\xcf", +"\x7b\x87" => "\xb2\xd5", +"\x7b\x89" => "\x8f\xd2\xb5", +"\x7b\x8b" => "\xe4\xb5", +"\x7b\x8d" => "\xe4\xb2", +"\x7b\x8e" => "\x8f\xd2\xb6", +"\x7b\x8f" => "\xe4\xb7", +"\x7b\x90" => "\x8f\xd2\xb7", +"\x7b\x91" => "\x8f\xd2\xb8", +"\x7b\x92" => "\xe4\xb6", +"\x7b\x94" => "\xc7\xf3", +"\x7b\x95" => "\xcc\xa7", +"\x7b\x96" => "\x8f\xd2\xb9", +"\x7b\x97" => "\xbb\xbb", +"\x7b\x98" => "\xe4\xb0", +"\x7b\x99" => "\xe4\xb9", +"\x7b\x9a" => "\xe4\xb4", +"\x7b\x9b" => "\x8f\xd2\xba", +"\x7b\x9c" => "\xe4\xb3", +"\x7b\x9d" => "\xe4\xaf", +"\x7b\x9e" => "\x8f\xd2\xbb", +"\x7b\x9f" => "\xe4\xb1", +"\x7b\xa0" => "\x8f\xd2\xbc", +"\x7b\xa1" => "\xb4\xc9", +"\x7b\xa5" => "\x8f\xd2\xbd", +"\x7b\xaa" => "\xc3\xbd", +"\x7b\xac" => "\x8f\xd2\xbe", +"\x7b\xad" => "\xc0\xfd", +"\x7b\xaf" => "\x8f\xd2\xbf", +"\x7b\xb0" => "\x8f\xd2\xc0", +"\x7b\xb1" => "\xc8\xa2", +"\x7b\xb2" => "\x8f\xd2\xc1", +"\x7b\xb4" => "\xe4\xbe", +"\x7b\xb5" => "\x8f\xd2\xc2", +"\x7b\xb6" => "\x8f\xd2\xc3", +"\x7b\xb8" => "\xc8\xa4", +"\x7b\xba" => "\x8f\xd2\xc4", +"\x7b\xbb" => "\x8f\xd2\xc5", +"\x7b\xbc" => "\x8f\xd2\xc6", +"\x7b\xbd" => "\x8f\xd2\xc7", +"\x7b\xc0" => "\xc0\xe1", +"\x7b\xc1" => "\xe4\xbb", +"\x7b\xc2" => "\x8f\xd2\xc8", +"\x7b\xc4" => "\xc8\xcf", +"\x7b\xc5" => "\x8f\xd2\xc9", +"\x7b\xc6" => "\xe4\xbf", +"\x7b\xc7" => "\xca\xd3", +"\x7b\xc8" => "\x8f\xd2\xca", +"\x7b\xc9" => "\xc3\xdb", +"\x7b\xca" => "\x8f\xd2\xcb", +"\x7b\xcb" => "\xe4\xba", +"\x7b\xcc" => "\xe4\xbc", +"\x7b\xcf" => "\xe4\xbd", +"\x7b\xd4" => "\x8f\xd2\xcc", +"\x7b\xd6" => "\x8f\xd2\xcd", +"\x7b\xd7" => "\x8f\xd2\xce", +"\x7b\xd9" => "\x8f\xd2\xcf", +"\x7b\xda" => "\x8f\xd2\xd0", +"\x7b\xdb" => "\x8f\xd2\xd1", +"\x7b\xdd" => "\xe4\xc0", +"\x7b\xe0" => "\xbc\xc4", +"\x7b\xe4" => "\xc6\xc6", +"\x7b\xe5" => "\xe4\xc5", +"\x7b\xe6" => "\xe4\xc4", +"\x7b\xe8" => "\x8f\xd2\xd2", +"\x7b\xe9" => "\xe4\xc1", +"\x7b\xea" => "\x8f\xd2\xd3", +"\x7b\xed" => "\xcf\xb6", +"\x7b\xf2" => "\x8f\xd2\xd4", +"\x7b\xf3" => "\xe4\xca", +"\x7b\xf4" => "\x8f\xd2\xd5", +"\x7b\xf5" => "\x8f\xd2\xd6", +"\x7b\xf6" => "\xe4\xce", +"\x7b\xf7" => "\xe4\xcb", +"\x7b\xf8" => "\x8f\xd2\xd7", +"\x7b\xf9" => "\x8f\xd2\xd8", +"\x7b\xfa" => "\x8f\xd2\xd9", +"\x7b\xfc" => "\x8f\xd2\xda", +"\x7b\xfe" => "\x8f\xd2\xdb", +"\x7c\x00" => "\xe4\xc7", +"\x7c\x01" => "\x8f\xd2\xdc", +"\x7c\x02" => "\x8f\xd2\xdd", +"\x7c\x03" => "\x8f\xd2\xde", +"\x7c\x04" => "\x8f\xd2\xdf", +"\x7c\x06" => "\x8f\xd2\xe0", +"\x7c\x07" => "\xe4\xc8", +"\x7c\x09" => "\x8f\xd2\xe1", +"\x7c\x0b" => "\x8f\xd2\xe2", +"\x7c\x0c" => "\x8f\xd2\xe3", +"\x7c\x0d" => "\xe4\xcd", +"\x7c\x0e" => "\x8f\xd2\xe4", +"\x7c\x0f" => "\x8f\xd2\xe5", +"\x7c\x11" => "\xe4\xc2", +"\x7c\x12" => "\xd2\xd5", +"\x7c\x13" => "\xe4\xc9", +"\x7c\x14" => "\xe4\xc3", +"\x7c\x17" => "\xe4\xcc", +"\x7c\x19" => "\x8f\xd2\xe6", +"\x7c\x1b" => "\x8f\xd2\xe7", +"\x7c\x1f" => "\xe4\xd2", +"\x7c\x20" => "\x8f\xd2\xe8", +"\x7c\x21" => "\xb4\xca", +"\x7c\x23" => "\xe4\xcf", +"\x7c\x25" => "\x8f\xd2\xe9", +"\x7c\x26" => "\x8f\xd2\xea", +"\x7c\x27" => "\xe4\xd0", +"\x7c\x28" => "\x8f\xd2\xeb", +"\x7c\x2a" => "\xe4\xd1", +"\x7c\x2b" => "\xe4\xd4", +"\x7c\x2c" => "\x8f\xd2\xec", +"\x7c\x31" => "\x8f\xd2\xed", +"\x7c\x33" => "\x8f\xd2\xee", +"\x7c\x34" => "\x8f\xd2\xef", +"\x7c\x36" => "\x8f\xd2\xf0", +"\x7c\x37" => "\xe4\xd3", +"\x7c\x38" => "\xc8\xf6", +"\x7c\x39" => "\x8f\xd2\xf1", +"\x7c\x3a" => "\x8f\xd2\xf2", +"\x7c\x3d" => "\xe4\xd5", +"\x7c\x3e" => "\xce\xfc", +"\x7c\x3f" => "\xca\xed", +"\x7c\x40" => "\xe4\xda", +"\x7c\x43" => "\xe4\xd7", +"\x7c\x46" => "\x8f\xd2\xf3", +"\x7c\x4a" => "\x8f\xd2\xf4", +"\x7c\x4c" => "\xe4\xd6", +"\x7c\x4d" => "\xc0\xd2", +"\x7c\x4f" => "\xe4\xd9", +"\x7c\x50" => "\xe4\xdb", +"\x7c\x51" => "\x8f\xd2\xf6", +"\x7c\x52" => "\x8f\xd2\xf7", +"\x7c\x53" => "\x8f\xd2\xf8", +"\x7c\x54" => "\xe4\xd8", +"\x7c\x55" => "\x8f\xd2\xf5", +"\x7c\x56" => "\xe4\xdf", +"\x7c\x58" => "\xe4\xdc", +"\x7c\x59" => "\x8f\xd2\xf9", +"\x7c\x5a" => "\x8f\xd2\xfa", +"\x7c\x5b" => "\x8f\xd2\xfb", +"\x7c\x5c" => "\x8f\xd2\xfc", +"\x7c\x5d" => "\x8f\xd2\xfd", +"\x7c\x5e" => "\x8f\xd2\xfe", +"\x7c\x5f" => "\xe4\xdd", +"\x7c\x60" => "\xe4\xc6", +"\x7c\x61" => "\x8f\xd3\xa1", +"\x7c\x63" => "\x8f\xd3\xa2", +"\x7c\x64" => "\xe4\xde", +"\x7c\x65" => "\xe4\xe0", +"\x7c\x67" => "\x8f\xd3\xa3", +"\x7c\x69" => "\x8f\xd3\xa4", +"\x7c\x6c" => "\xe4\xe1", +"\x7c\x6d" => "\x8f\xd3\xa5", +"\x7c\x6e" => "\x8f\xd3\xa6", +"\x7c\x70" => "\x8f\xd3\xa7", +"\x7c\x72" => "\x8f\xd3\xa8", +"\x7c\x73" => "\xca\xc6", +"\x7c\x75" => "\xe4\xe2", +"\x7c\x79" => "\x8f\xd3\xa9", +"\x7c\x7c" => "\x8f\xd3\xaa", +"\x7c\x7d" => "\x8f\xd3\xab", +"\x7c\x7e" => "\xcc\xe2", +"\x7c\x81" => "\xb6\xce", +"\x7c\x82" => "\xb7\xa9", +"\x7c\x83" => "\xe4\xe3", +"\x7c\x86" => "\x8f\xd3\xac", +"\x7c\x87" => "\x8f\xd3\xad", +"\x7c\x89" => "\xca\xb4", +"\x7c\x8b" => "\xbf\xe8", +"\x7c\x8d" => "\xcc\xb0", +"\x7c\x8f" => "\x8f\xd3\xae", +"\x7c\x90" => "\xe4\xe4", +"\x7c\x92" => "\xce\xb3", +"\x7c\x94" => "\x8f\xd3\xaf", +"\x7c\x95" => "\xc7\xf4", +"\x7c\x97" => "\xc1\xc6", +"\x7c\x98" => "\xc7\xb4", +"\x7c\x9b" => "\xbd\xcd", +"\x7c\x9e" => "\x8f\xd3\xb0", +"\x7c\x9f" => "\xb0\xc0", +"\x7c\xa0" => "\x8f\xd3\xb1", +"\x7c\xa1" => "\xe4\xe9", +"\x7c\xa2" => "\xe4\xe7", +"\x7c\xa4" => "\xe4\xe5", +"\x7c\xa5" => "\xb4\xa1", +"\x7c\xa6" => "\x8f\xd3\xb2", +"\x7c\xa7" => "\xbe\xd1", +"\x7c\xa8" => "\xe4\xea", +"\x7c\xab" => "\xe4\xe8", +"\x7c\xad" => "\xe4\xe6", +"\x7c\xae" => "\xe4\xee", +"\x7c\xb0" => "\x8f\xd3\xb3", +"\x7c\xb1" => "\xe4\xed", +"\x7c\xb2" => "\xe4\xec", +"\x7c\xb3" => "\xe4\xeb", +"\x7c\xb6" => "\x8f\xd3\xb4", +"\x7c\xb7" => "\x8f\xd3\xb5", +"\x7c\xb9" => "\xe4\xef", +"\x7c\xba" => "\x8f\xd3\xb6", +"\x7c\xbb" => "\x8f\xd3\xb7", +"\x7c\xbc" => "\x8f\xd3\xb8", +"\x7c\xbd" => "\xe4\xf0", +"\x7c\xbe" => "\xc0\xba", +"\x7c\xbf" => "\x8f\xd3\xb9", +"\x7c\xc0" => "\xe4\xf1", +"\x7c\xc2" => "\xe4\xf3", +"\x7c\xc4" => "\x8f\xd3\xba", +"\x7c\xc5" => "\xe4\xf2", +"\x7c\xc7" => "\x8f\xd3\xbb", +"\x7c\xc8" => "\x8f\xd3\xbc", +"\x7c\xc9" => "\x8f\xd3\xbd", +"\x7c\xca" => "\xb8\xd2", +"\x7c\xcd" => "\x8f\xd3\xbe", +"\x7c\xce" => "\xc1\xb8", +"\x7c\xcf" => "\x8f\xd3\xbf", +"\x7c\xd2" => "\xe4\xf5", +"\x7c\xd3" => "\x8f\xd3\xc0", +"\x7c\xd4" => "\x8f\xd3\xc1", +"\x7c\xd5" => "\x8f\xd3\xc2", +"\x7c\xd6" => "\xc5\xfc", +"\x7c\xd7" => "\x8f\xd3\xc3", +"\x7c\xd8" => "\xe4\xf4", +"\x7c\xd9" => "\x8f\xd3\xc4", +"\x7c\xda" => "\x8f\xd3\xc5", +"\x7c\xdc" => "\xe4\xf6", +"\x7c\xdd" => "\x8f\xd3\xc6", +"\x7c\xde" => "\xca\xb5", +"\x7c\xdf" => "\xc1\xec", +"\x7c\xe0" => "\xb9\xc7", +"\x7c\xe2" => "\xe4\xf7", +"\x7c\xe6" => "\x8f\xd3\xc7", +"\x7c\xe7" => "\xce\xc8", +"\x7c\xe9" => "\x8f\xd3\xc8", +"\x7c\xeb" => "\x8f\xd3\xc9", +"\x7c\xef" => "\xe4\xf9", +"\x7c\xf2" => "\xe4\xfa", +"\x7c\xf4" => "\xe4\xfb", +"\x7c\xf5" => "\x8f\xd3\xca", +"\x7c\xf6" => "\xe4\xfc", +"\x7c\xf8" => "\xbb\xe5", +"\x7c\xfa" => "\xe4\xfd", +"\x7c\xfb" => "\xb7\xcf", +"\x7c\xfe" => "\xb5\xea", +"\x7d\x00" => "\xb5\xaa", +"\x7d\x02" => "\xe5\xa1", +"\x7d\x03" => "\x8f\xd3\xcb", +"\x7d\x04" => "\xcc\xf3", +"\x7d\x05" => "\xb9\xc8", +"\x7d\x06" => "\xe4\xfe", +"\x7d\x07" => "\x8f\xd3\xcc", +"\x7d\x08" => "\x8f\xd3\xcd", +"\x7d\x09" => "\x8f\xd3\xce", +"\x7d\x0a" => "\xe5\xa4", +"\x7d\x0b" => "\xcc\xe6", +"\x7d\x0d" => "\xc7\xbc", +"\x7d\x0f" => "\x8f\xd3\xcf", +"\x7d\x10" => "\xc9\xb3", +"\x7d\x11" => "\x8f\xd3\xd0", +"\x7d\x12" => "\x8f\xd3\xd1", +"\x7d\x13" => "\x8f\xd3\xd2", +"\x7d\x14" => "\xbd\xe3", +"\x7d\x15" => "\xe5\xa3", +"\x7d\x16" => "\x8f\xd3\xd3", +"\x7d\x17" => "\xbc\xd3", +"\x7d\x18" => "\xb9\xc9", +"\x7d\x19" => "\xbb\xe6", +"\x7d\x1a" => "\xb5\xe9", +"\x7d\x1b" => "\xca\xb6", +"\x7d\x1c" => "\xe5\xa2", +"\x7d\x1d" => "\x8f\xd3\xd4", +"\x7d\x1e" => "\x8f\xd3\xd5", +"\x7d\x20" => "\xc1\xc7", +"\x7d\x21" => "\xcb\xc2", +"\x7d\x22" => "\xba\xf7", +"\x7d\x23" => "\x8f\xd3\xd6", +"\x7d\x26" => "\x8f\xd3\xd7", +"\x7d\x2a" => "\x8f\xd3\xd8", +"\x7d\x2b" => "\xbb\xe7", +"\x7d\x2c" => "\xc4\xdd", +"\x7d\x2d" => "\x8f\xd3\xd9", +"\x7d\x2e" => "\xe5\xa7", +"\x7d\x2f" => "\xce\xdf", +"\x7d\x30" => "\xba\xd9", +"\x7d\x31" => "\x8f\xd3\xda", +"\x7d\x32" => "\xe5\xa8", +"\x7d\x33" => "\xbf\xc2", +"\x7d\x35" => "\xe5\xaa", +"\x7d\x39" => "\xbe\xd2", +"\x7d\x3a" => "\xba\xb0", +"\x7d\x3c" => "\x8f\xd3\xdb", +"\x7d\x3d" => "\x8f\xd3\xdc", +"\x7d\x3e" => "\x8f\xd3\xdd", +"\x7d\x3f" => "\xe5\xa9", +"\x7d\x40" => "\x8f\xd3\xde", +"\x7d\x41" => "\x8f\xd3\xdf", +"\x7d\x42" => "\xbd\xaa", +"\x7d\x43" => "\xb8\xbe", +"\x7d\x44" => "\xc1\xc8", +"\x7d\x45" => "\xe5\xa5", +"\x7d\x46" => "\xe5\xab", +"\x7d\x47" => "\x8f\xd3\xe0", +"\x7d\x48" => "\x8f\xd3\xe1", +"\x7d\x4b" => "\xe5\xa6", +"\x7d\x4c" => "\xb7\xd0", +"\x7d\x4d" => "\x8f\xd3\xe2", +"\x7d\x4e" => "\xe5\xae", +"\x7d\x4f" => "\xe5\xb2", +"\x7d\x50" => "\xb7\xeb", +"\x7d\x51" => "\x8f\xd3\xe3", +"\x7d\x53" => "\x8f\xd3\xe4", +"\x7d\x56" => "\xe5\xad", +"\x7d\x57" => "\x8f\xd3\xe5", +"\x7d\x59" => "\x8f\xd3\xe6", +"\x7d\x5a" => "\x8f\xd3\xe7", +"\x7d\x5b" => "\xe5\xb6", +"\x7d\x5c" => "\x8f\xd3\xe8", +"\x7d\x5d" => "\x8f\xd3\xe9", +"\x7d\x5e" => "\xb9\xca", +"\x7d\x61" => "\xcd\xed", +"\x7d\x62" => "\xb0\xbc", +"\x7d\x63" => "\xe5\xb3", +"\x7d\x65" => "\x8f\xd3\xea", +"\x7d\x66" => "\xb5\xeb", +"\x7d\x67" => "\x8f\xd3\xeb", +"\x7d\x68" => "\xe5\xb0", +"\x7d\x6a" => "\x8f\xd3\xec", +"\x7d\x6e" => "\xe5\xb1", +"\x7d\x70" => "\x8f\xd3\xed", +"\x7d\x71" => "\xc5\xfd", +"\x7d\x72" => "\xe5\xaf", +"\x7d\x73" => "\xe5\xac", +"\x7d\x75" => "\xb3\xa8", +"\x7d\x76" => "\xc0\xe4", +"\x7d\x78" => "\x8f\xd3\xee", +"\x7d\x79" => "\xb8\xa8", +"\x7d\x7a" => "\x8f\xd3\xef", +"\x7d\x7b" => "\x8f\xd3\xf0", +"\x7d\x7d" => "\xe5\xb8", +"\x7d\x7f" => "\x8f\xd3\xf1", +"\x7d\x81" => "\x8f\xd3\xf2", +"\x7d\x82" => "\x8f\xd3\xf3", +"\x7d\x83" => "\x8f\xd3\xf4", +"\x7d\x85" => "\x8f\xd3\xf5", +"\x7d\x86" => "\x8f\xd3\xf6", +"\x7d\x88" => "\x8f\xd3\xf7", +"\x7d\x89" => "\xe5\xb5", +"\x7d\x8b" => "\x8f\xd3\xf8", +"\x7d\x8c" => "\x8f\xd3\xf9", +"\x7d\x8d" => "\x8f\xd3\xfa", +"\x7d\x8f" => "\xe5\xb7", +"\x7d\x91" => "\x8f\xd3\xfb", +"\x7d\x93" => "\xe5\xb4", +"\x7d\x96" => "\x8f\xd3\xfc", +"\x7d\x97" => "\x8f\xd3\xfd", +"\x7d\x99" => "\xb7\xd1", +"\x7d\x9a" => "\xc2\xb3", +"\x7d\x9b" => "\xe5\xb9", +"\x7d\x9c" => "\xc1\xee", +"\x7d\x9d" => "\x8f\xd3\xfe", +"\x7d\x9e" => "\x8f\xd4\xa1", +"\x7d\x9f" => "\xe5\xc6", +"\x7d\xa2" => "\xe5\xc2", +"\x7d\xa3" => "\xe5\xbc", +"\x7d\xa6" => "\x8f\xd4\xa2", +"\x7d\xa7" => "\x8f\xd4\xa3", +"\x7d\xaa" => "\x8f\xd4\xa4", +"\x7d\xab" => "\xe5\xc0", +"\x7d\xac" => "\xbc\xfa", +"\x7d\xad" => "\xb0\xdd", +"\x7d\xae" => "\xe5\xbb", +"\x7d\xaf" => "\xe5\xc3", +"\x7d\xb0" => "\xe5\xc7", +"\x7d\xb1" => "\xb9\xcb", +"\x7d\xb2" => "\xcc\xd6", +"\x7d\xb3" => "\x8f\xd4\xa5", +"\x7d\xb4" => "\xc4\xd6", +"\x7d\xb5" => "\xe5\xbd", +"\x7d\xb6" => "\x8f\xd4\xa6", +"\x7d\xb7" => "\x8f\xd4\xa7", +"\x7d\xb8" => "\xe5\xc5", +"\x7d\xb9" => "\x8f\xd4\xa8", +"\x7d\xba" => "\xe5\xba", +"\x7d\xbb" => "\xc3\xbe", +"\x7d\xbd" => "\xe5\xbf", +"\x7d\xbe" => "\xb0\xbd", +"\x7d\xbf" => "\xcc\xca", +"\x7d\xc2" => "\x8f\xd4\xa9", +"\x7d\xc3" => "\x8f\xd4\xaa", +"\x7d\xc4" => "\x8f\xd4\xab", +"\x7d\xc5" => "\x8f\xd4\xac", +"\x7d\xc6" => "\x8f\xd4\xad", +"\x7d\xc7" => "\xe5\xbe", +"\x7d\xca" => "\xb6\xdb", +"\x7d\xcb" => "\xc8\xec", +"\x7d\xcc" => "\x8f\xd4\xae", +"\x7d\xcd" => "\x8f\xd4\xaf", +"\x7d\xce" => "\x8f\xd4\xb0", +"\x7d\xcf" => "\xc1\xed", +"\x7d\xd1" => "\xce\xd0", +"\x7d\xd2" => "\xbd\xef", +"\x7d\xd5" => "\xe5\xee", +"\x7d\xd7" => "\x8f\xd4\xb1", +"\x7d\xd8" => "\xe5\xc8", +"\x7d\xd9" => "\x8f\xd4\xb2", +"\x7d\xda" => "\xc0\xfe", +"\x7d\xdc" => "\xe5\xc4", +"\x7d\xdd" => "\xe5\xc9", +"\x7d\xde" => "\xe5\xcb", +"\x7d\xe0" => "\xc4\xf9", +"\x7d\xe1" => "\xe5\xce", +"\x7d\xe2" => "\x8f\xd4\xb4", +"\x7d\xe4" => "\xe5\xca", +"\x7d\xe5" => "\x8f\xd4\xb5", +"\x7d\xe6" => "\x8f\xd4\xb6", +"\x7d\xe8" => "\xca\xd4", +"\x7d\xe9" => "\xb4\xcb", +"\x7d\xea" => "\x8f\xd4\xb7", +"\x7d\xeb" => "\x8f\xd4\xb8", +"\x7d\xec" => "\xcc\xcb", +"\x7d\xed" => "\x8f\xd4\xb9", +"\x7d\xef" => "\xb0\xde", +"\x7d\xf1" => "\x8f\xd4\xba", +"\x7d\xf2" => "\xe5\xcd", +"\x7d\xf4" => "\xce\xfd", +"\x7d\xf5" => "\x8f\xd4\xbb", +"\x7d\xf6" => "\x8f\xd4\xbc", +"\x7d\xf9" => "\x8f\xd4\xbd", +"\x7d\xfa" => "\x8f\xd4\xbe", +"\x7d\xfb" => "\xe5\xcc", +"\x7e\x00" => "\x8f\xd4\xb3", +"\x7e\x01" => "\xb1\xef", +"\x7e\x04" => "\xc6\xec", +"\x7e\x05" => "\xe5\xcf", +"\x7e\x08" => "\x8f\xd4\xbf", +"\x7e\x09" => "\xe5\xd6", +"\x7e\x0a" => "\xe5\xd0", +"\x7e\x0b" => "\xe5\xd7", +"\x7e\x10" => "\x8f\xd4\xc0", +"\x7e\x11" => "\x8f\xd4\xc1", +"\x7e\x12" => "\xe5\xd3", +"\x7e\x15" => "\x8f\xd4\xc2", +"\x7e\x17" => "\x8f\xd4\xc3", +"\x7e\x1b" => "\xc7\xfb", +"\x7e\x1c" => "\x8f\xd4\xc4", +"\x7e\x1d" => "\x8f\xd4\xc5", +"\x7e\x1e" => "\xbc\xca", +"\x7e\x1f" => "\xe5\xd5", +"\x7e\x20" => "\x8f\xd4\xc6", +"\x7e\x21" => "\xe5\xd2", +"\x7e\x22" => "\xe5\xd8", +"\x7e\x23" => "\xe5\xd1", +"\x7e\x26" => "\xbd\xc4", +"\x7e\x27" => "\x8f\xd4\xc7", +"\x7e\x28" => "\x8f\xd4\xc8", +"\x7e\x2b" => "\xcb\xa5", +"\x7e\x2c" => "\x8f\xd4\xc9", +"\x7e\x2d" => "\x8f\xd4\xca", +"\x7e\x2e" => "\xbd\xcc", +"\x7e\x2f" => "\x8f\xd4\xcb", +"\x7e\x31" => "\xe5\xd4", +"\x7e\x32" => "\xe5\xe0", +"\x7e\x33" => "\x8f\xd4\xcc", +"\x7e\x35" => "\xe5\xdc", +"\x7e\x36" => "\x8f\xd4\xcd", +"\x7e\x37" => "\xe5\xdf", +"\x7e\x39" => "\xe5\xdd", +"\x7e\x3a" => "\xe5\xe1", +"\x7e\x3b" => "\xe5\xdb", +"\x7e\x3d" => "\xe5\xc1", +"\x7e\x3e" => "\xc0\xd3", +"\x7e\x3f" => "\x8f\xd4\xce", +"\x7e\x41" => "\xc8\xcb", +"\x7e\x43" => "\xe5\xde", +"\x7e\x44" => "\x8f\xd4\xcf", +"\x7e\x45" => "\x8f\xd4\xd0", +"\x7e\x46" => "\xe5\xd9", +"\x7e\x47" => "\x8f\xd4\xd1", +"\x7e\x4a" => "\xc1\xa1", +"\x7e\x4b" => "\xb7\xd2", +"\x7e\x4d" => "\xbd\xab", +"\x7e\x4e" => "\x8f\xd4\xd2", +"\x7e\x50" => "\x8f\xd4\xd3", +"\x7e\x52" => "\x8f\xd4\xd4", +"\x7e\x54" => "\xbf\xa5", +"\x7e\x55" => "\xc1\xb6", +"\x7e\x56" => "\xe5\xe4", +"\x7e\x58" => "\x8f\xd4\xd5", +"\x7e\x59" => "\xe5\xe6", +"\x7e\x5a" => "\xe5\xe7", +"\x7e\x5d" => "\xe5\xe3", +"\x7e\x5e" => "\xe5\xe5", +"\x7e\x5f" => "\x8f\xd4\xd6", +"\x7e\x61" => "\x8f\xd4\xd7", +"\x7e\x62" => "\x8f\xd4\xd8", +"\x7e\x65" => "\x8f\xd4\xd9", +"\x7e\x66" => "\xe5\xda", +"\x7e\x67" => "\xe5\xe2", +"\x7e\x69" => "\xe5\xea", +"\x7e\x6a" => "\xe5\xe9", +"\x7e\x6b" => "\x8f\xd4\xda", +"\x7e\x6d" => "\xcb\xfa", +"\x7e\x6e" => "\x8f\xd4\xdb", +"\x7e\x6f" => "\x8f\xd4\xdc", +"\x7e\x70" => "\xb7\xab", +"\x7e\x73" => "\x8f\xd4\xdd", +"\x7e\x78" => "\x8f\xd4\xde", +"\x7e\x79" => "\xe5\xe8", +"\x7e\x7b" => "\xe5\xec", +"\x7e\x7c" => "\xe5\xeb", +"\x7e\x7d" => "\xe5\xef", +"\x7e\x7e" => "\x8f\xd4\xdf", +"\x7e\x7f" => "\xe5\xf1", +"\x7e\x81" => "\x8f\xd4\xe0", +"\x7e\x82" => "\xbb\xbc", +"\x7e\x83" => "\xe5\xed", +"\x7e\x86" => "\x8f\xd4\xe1", +"\x7e\x87" => "\x8f\xd4\xe2", +"\x7e\x88" => "\xe5\xf2", +"\x7e\x89" => "\xe5\xf3", +"\x7e\x8a" => "\x8f\xd4\xe3", +"\x7e\x8c" => "\xe5\xf4", +"\x7e\x8d" => "\x8f\xd4\xe4", +"\x7e\x8e" => "\xe5\xfa", +"\x7e\x8f" => "\xc5\xbb", +"\x7e\x90" => "\xe5\xf6", +"\x7e\x91" => "\x8f\xd4\xe5", +"\x7e\x92" => "\xe5\xf5", +"\x7e\x93" => "\xe5\xf7", +"\x7e\x94" => "\xe5\xf8", +"\x7e\x95" => "\x8f\xd4\xe6", +"\x7e\x96" => "\xe5\xf9", +"\x7e\x98" => "\x8f\xd4\xe7", +"\x7e\x9a" => "\x8f\xd4\xe8", +"\x7e\x9b" => "\xe5\xfb", +"\x7e\x9c" => "\xe5\xfc", +"\x7e\x9d" => "\x8f\xd4\xe9", +"\x7e\x9e" => "\x8f\xd4\xea", +"\x7f\x36" => "\xb4\xcc", +"\x7f\x38" => "\xe5\xfd", +"\x7f\x3a" => "\xe5\xfe", +"\x7f\x3b" => "\x8f\xd4\xec", +"\x7f\x3c" => "\x8f\xd4\xeb", +"\x7f\x3d" => "\x8f\xd4\xed", +"\x7f\x3e" => "\x8f\xd4\xee", +"\x7f\x3f" => "\x8f\xd4\xef", +"\x7f\x43" => "\x8f\xd4\xf0", +"\x7f\x44" => "\x8f\xd4\xf1", +"\x7f\x45" => "\xe6\xa1", +"\x7f\x47" => "\x8f\xd4\xf2", +"\x7f\x4c" => "\xe6\xa2", +"\x7f\x4d" => "\xe6\xa3", +"\x7f\x4e" => "\xe6\xa4", +"\x7f\x4f" => "\x8f\xd4\xf3", +"\x7f\x50" => "\xe6\xa5", +"\x7f\x51" => "\xe6\xa6", +"\x7f\x52" => "\x8f\xd4\xf4", +"\x7f\x53" => "\x8f\xd4\xf5", +"\x7f\x54" => "\xe6\xa8", +"\x7f\x55" => "\xe6\xa7", +"\x7f\x58" => "\xe6\xa9", +"\x7f\x5b" => "\x8f\xd4\xf6", +"\x7f\x5c" => "\x8f\xd4\xf7", +"\x7f\x5d" => "\x8f\xd4\xf8", +"\x7f\x5f" => "\xe6\xaa", +"\x7f\x60" => "\xe6\xab", +"\x7f\x61" => "\x8f\xd4\xf9", +"\x7f\x63" => "\x8f\xd4\xfa", +"\x7f\x64" => "\x8f\xd4\xfb", +"\x7f\x65" => "\x8f\xd4\xfc", +"\x7f\x66" => "\x8f\xd4\xfd", +"\x7f\x67" => "\xe6\xae", +"\x7f\x68" => "\xe6\xac", +"\x7f\x69" => "\xe6\xad", +"\x7f\x6a" => "\xba\xe1", +"\x7f\x6b" => "\xb7\xd3", +"\x7f\x6d" => "\x8f\xd4\xfe", +"\x7f\x6e" => "\xc3\xd6", +"\x7f\x70" => "\xc8\xb3", +"\x7f\x71" => "\x8f\xd5\xa1", +"\x7f\x72" => "\xbd\xf0", +"\x7f\x75" => "\xc7\xcd", +"\x7f\x77" => "\xc8\xed", +"\x7f\x78" => "\xe6\xaf", +"\x7f\x79" => "\xd8\xed", +"\x7f\x7d" => "\x8f\xd5\xa2", +"\x7f\x7e" => "\x8f\xd5\xa3", +"\x7f\x7f" => "\x8f\xd5\xa4", +"\x7f\x80" => "\x8f\xd5\xa5", +"\x7f\x82" => "\xe6\xb0", +"\x7f\x83" => "\xe6\xb2", +"\x7f\x85" => "\xcd\xe5", +"\x7f\x86" => "\xe6\xb1", +"\x7f\x87" => "\xe6\xb4", +"\x7f\x88" => "\xe6\xb3", +"\x7f\x8a" => "\xcd\xd3", +"\x7f\x8b" => "\x8f\xd5\xa6", +"\x7f\x8c" => "\xe6\xb5", +"\x7f\x8d" => "\x8f\xd5\xa7", +"\x7f\x8e" => "\xc8\xfe", +"\x7f\x8f" => "\x8f\xd5\xa8", +"\x7f\x90" => "\x8f\xd5\xa9", +"\x7f\x91" => "\x8f\xd5\xaa", +"\x7f\x94" => "\xe6\xb6", +"\x7f\x96" => "\x8f\xd5\xab", +"\x7f\x97" => "\x8f\xd5\xac", +"\x7f\x9a" => "\xe6\xb9", +"\x7f\x9c" => "\x8f\xd5\xad", +"\x7f\x9d" => "\xe6\xb8", +"\x7f\x9e" => "\xe6\xb7", +"\x7f\xa1" => "\x8f\xd5\xae", +"\x7f\xa2" => "\x8f\xd5\xaf", +"\x7f\xa3" => "\xe6\xba", +"\x7f\xa4" => "\xb7\xb2", +"\x7f\xa6" => "\x8f\xd5\xb0", +"\x7f\xa8" => "\xc1\xa2", +"\x7f\xa9" => "\xb5\xc1", +"\x7f\xaa" => "\x8f\xd5\xb1", +"\x7f\xad" => "\x8f\xd5\xb2", +"\x7f\xae" => "\xe6\xbe", +"\x7f\xaf" => "\xe6\xbb", +"\x7f\xb2" => "\xe6\xbc", +"\x7f\xb4" => "\x8f\xd5\xb3", +"\x7f\xb6" => "\xe6\xbf", +"\x7f\xb8" => "\xe6\xc0", +"\x7f\xb9" => "\xe6\xbd", +"\x7f\xbc" => "\x8f\xd5\xb4", +"\x7f\xbd" => "\xb1\xa9", +"\x7f\xbf" => "\x8f\xd5\xb5", +"\x7f\xc0" => "\x8f\xd5\xb6", +"\x7f\xc1" => "\xb2\xa7", +"\x7f\xc3" => "\x8f\xd5\xb7", +"\x7f\xc5" => "\xe6\xc2", +"\x7f\xc6" => "\xe6\xc3", +"\x7f\xc8" => "\x8f\xd5\xb8", +"\x7f\xca" => "\xe6\xc4", +"\x7f\xcc" => "\xcd\xe2", +"\x7f\xce" => "\x8f\xd5\xb9", +"\x7f\xcf" => "\x8f\xd5\xba", +"\x7f\xd2" => "\xbd\xac", +"\x7f\xd4" => "\xe6\xc6", +"\x7f\xd5" => "\xe6\xc5", +"\x7f\xdb" => "\x8f\xd5\xbb", +"\x7f\xdf" => "\x8f\xd5\xbc", +"\x7f\xe0" => "\xbf\xe9", +"\x7f\xe1" => "\xe6\xc7", +"\x7f\xe3" => "\x8f\xd5\xbd", +"\x7f\xe5" => "\x8f\xd5\xbe", +"\x7f\xe6" => "\xe6\xc8", +"\x7f\xe8" => "\x8f\xd5\xbf", +"\x7f\xe9" => "\xe6\xc9", +"\x7f\xeb" => "\xb4\xe5", +"\x7f\xec" => "\x8f\xd5\xc0", +"\x7f\xee" => "\x8f\xd5\xc1", +"\x7f\xef" => "\x8f\xd5\xc2", +"\x7f\xf0" => "\xb4\xcd", +"\x7f\xf2" => "\x8f\xd5\xc3", +"\x7f\xf3" => "\xe6\xca", +"\x7f\xf9" => "\xe6\xcb", +"\x7f\xfa" => "\x8f\xd5\xc4", +"\x7f\xfb" => "\xcb\xdd", +"\x7f\xfc" => "\xcd\xe3", +"\x7f\xfd" => "\x8f\xd5\xc5", +"\x7f\xfe" => "\x8f\xd5\xc6", +"\x7f\xff" => "\x8f\xd5\xc7", +"\x80\x00" => "\xcd\xd4", +"\x80\x01" => "\xcf\xb7", +"\x80\x03" => "\xb9\xcd", +"\x80\x04" => "\xe6\xce", +"\x80\x05" => "\xbc\xd4", +"\x80\x06" => "\xe6\xcd", +"\x80\x07" => "\x8f\xd5\xc8", +"\x80\x08" => "\x8f\xd5\xc9", +"\x80\x0a" => "\x8f\xd5\xca", +"\x80\x0b" => "\xe6\xcf", +"\x80\x0c" => "\xbc\xa9", +"\x80\x0d" => "\x8f\xd5\xcb", +"\x80\x0e" => "\x8f\xd5\xcc", +"\x80\x0f" => "\x8f\xd5\xcd", +"\x80\x10" => "\xc2\xd1", +"\x80\x11" => "\x8f\xd5\xce", +"\x80\x12" => "\xe6\xd0", +"\x80\x13" => "\x8f\xd5\xcf", +"\x80\x14" => "\x8f\xd5\xd0", +"\x80\x15" => "\xb9\xcc", +"\x80\x16" => "\x8f\xd5\xd1", +"\x80\x17" => "\xcc\xd7", +"\x80\x18" => "\xe6\xd1", +"\x80\x19" => "\xe6\xd2", +"\x80\x1c" => "\xe6\xd3", +"\x80\x1d" => "\x8f\xd5\xd2", +"\x80\x1e" => "\x8f\xd5\xd3", +"\x80\x1f" => "\x8f\xd5\xd4", +"\x80\x20" => "\x8f\xd5\xd5", +"\x80\x21" => "\xe6\xd4", +"\x80\x24" => "\x8f\xd5\xd6", +"\x80\x26" => "\x8f\xd5\xd7", +"\x80\x28" => "\xe6\xd5", +"\x80\x2c" => "\x8f\xd5\xd8", +"\x80\x2e" => "\x8f\xd5\xd9", +"\x80\x30" => "\x8f\xd5\xda", +"\x80\x33" => "\xbc\xaa", +"\x80\x34" => "\x8f\xd5\xdb", +"\x80\x35" => "\x8f\xd5\xdc", +"\x80\x36" => "\xcc\xed", +"\x80\x37" => "\x8f\xd5\xdd", +"\x80\x39" => "\x8f\xd5\xde", +"\x80\x3a" => "\x8f\xd5\xdf", +"\x80\x3b" => "\xe6\xd7", +"\x80\x3c" => "\x8f\xd5\xe0", +"\x80\x3d" => "\xc3\xbf", +"\x80\x3e" => "\x8f\xd5\xe1", +"\x80\x3f" => "\xe6\xd6", +"\x80\x40" => "\x8f\xd5\xe2", +"\x80\x44" => "\x8f\xd5\xe3", +"\x80\x46" => "\xe6\xd9", +"\x80\x4a" => "\xe6\xd8", +"\x80\x52" => "\xe6\xda", +"\x80\x56" => "\xc0\xbb", +"\x80\x58" => "\xe6\xdb", +"\x80\x5a" => "\xe6\xdc", +"\x80\x5e" => "\xca\xb9", +"\x80\x5f" => "\xe6\xdd", +"\x80\x60" => "\x8f\xd5\xe4", +"\x80\x61" => "\xc1\xef", +"\x80\x62" => "\xe6\xde", +"\x80\x64" => "\x8f\xd5\xe5", +"\x80\x66" => "\x8f\xd5\xe6", +"\x80\x68" => "\xe6\xdf", +"\x80\x6d" => "\x8f\xd5\xe7", +"\x80\x6f" => "\xce\xfe", +"\x80\x70" => "\xe6\xe2", +"\x80\x71" => "\x8f\xd5\xe8", +"\x80\x72" => "\xe6\xe1", +"\x80\x73" => "\xe6\xe0", +"\x80\x74" => "\xc4\xb0", +"\x80\x75" => "\x8f\xd5\xe9", +"\x80\x76" => "\xe6\xe3", +"\x80\x77" => "\xbf\xa6", +"\x80\x79" => "\xe6\xe4", +"\x80\x7d" => "\xe6\xe5", +"\x80\x7e" => "\xcf\xb8", +"\x80\x7f" => "\xe6\xe6", +"\x80\x81" => "\x8f\xd5\xea", +"\x80\x84" => "\xe6\xe7", +"\x80\x85" => "\xe6\xe9", +"\x80\x86" => "\xe6\xe8", +"\x80\x87" => "\xc8\xa5", +"\x80\x88" => "\x8f\xd5\xeb", +"\x80\x89" => "\xc6\xf9", +"\x80\x8b" => "\xcf\xbe", +"\x80\x8c" => "\xc8\xa9", +"\x80\x8e" => "\x8f\xd5\xec", +"\x80\x93" => "\xe6\xeb", +"\x80\x96" => "\xbe\xd3", +"\x80\x98" => "\xc9\xaa", +"\x80\x9a" => "\xe6\xec", +"\x80\x9b" => "\xe6\xea", +"\x80\x9c" => "\x8f\xd5\xed", +"\x80\x9d" => "\xb4\xce", +"\x80\x9e" => "\x8f\xd5\xee", +"\x80\xa1" => "\xb8\xd4", +"\x80\xa2" => "\xbb\xe8", +"\x80\xa5" => "\xc8\xee", +"\x80\xa6" => "\x8f\xd5\xef", +"\x80\xa7" => "\x8f\xd5\xf0", +"\x80\xa9" => "\xb8\xaa", +"\x80\xaa" => "\xcb\xc3", +"\x80\xab" => "\x8f\xd5\xf1", +"\x80\xac" => "\xe6\xef", +"\x80\xad" => "\xe6\xed", +"\x80\xaf" => "\xb9\xce", +"\x80\xb1" => "\xb9\xcf", +"\x80\xb2" => "\xb0\xe9", +"\x80\xb4" => "\xba\xe8", +"\x80\xb8" => "\x8f\xd5\xf2", +"\x80\xb9" => "\x8f\xd5\xf3", +"\x80\xba" => "\xc7\xd9", +"\x80\xc3" => "\xb0\xdf", +"\x80\xc4" => "\xe6\xf4", +"\x80\xc6" => "\xc3\xc0", +"\x80\xc8" => "\x8f\xd5\xf4", +"\x80\xcc" => "\xc7\xd8", +"\x80\xcd" => "\x8f\xd5\xf5", +"\x80\xce" => "\xc2\xdb", +"\x80\xcf" => "\x8f\xd5\xf6", +"\x80\xd2" => "\x8f\xd5\xf7", +"\x80\xd4" => "\x8f\xd5\xf8", +"\x80\xd5" => "\x8f\xd5\xf9", +"\x80\xd6" => "\xe6\xf6", +"\x80\xd7" => "\x8f\xd5\xfa", +"\x80\xd8" => "\x8f\xd5\xfb", +"\x80\xd9" => "\xe6\xf2", +"\x80\xda" => "\xe6\xf5", +"\x80\xdb" => "\xe6\xf0", +"\x80\xdd" => "\xe6\xf3", +"\x80\xde" => "\xcb\xa6", +"\x80\xe0" => "\x8f\xd5\xfc", +"\x80\xe1" => "\xb8\xd5", +"\x80\xe4" => "\xb0\xfd", +"\x80\xe5" => "\xe6\xf1", +"\x80\xed" => "\x8f\xd5\xfd", +"\x80\xee" => "\x8f\xd5\xfe", +"\x80\xef" => "\xe6\xf8", +"\x80\xf0" => "\x8f\xd6\xa1", +"\x80\xf1" => "\xe6\xf9", +"\x80\xf2" => "\x8f\xd6\xa2", +"\x80\xf3" => "\x8f\xd6\xa3", +"\x80\xf4" => "\xc6\xb9", +"\x80\xf6" => "\x8f\xd6\xa4", +"\x80\xf8" => "\xb6\xbb", +"\x80\xf9" => "\x8f\xd6\xa5", +"\x80\xfa" => "\x8f\xd6\xa6", +"\x80\xfc" => "\xe7\xa6", +"\x80\xfd" => "\xc7\xbd", +"\x80\xfe" => "\x8f\xd6\xa7", +"\x81\x02" => "\xbb\xe9", +"\x81\x03" => "\x8f\xd6\xa8", +"\x81\x05" => "\xb6\xbc", +"\x81\x06" => "\xc0\xc8", +"\x81\x07" => "\xcf\xc6", +"\x81\x08" => "\xcc\xae", +"\x81\x09" => "\xe6\xf7", +"\x81\x0a" => "\xc0\xd4", +"\x81\x0b" => "\x8f\xd6\xa9", +"\x81\x16" => "\x8f\xd6\xaa", +"\x81\x17" => "\x8f\xd6\xab", +"\x81\x18" => "\x8f\xd6\xac", +"\x81\x1a" => "\xb5\xd3", +"\x81\x1b" => "\xe6\xfa", +"\x81\x1c" => "\x8f\xd6\xad", +"\x81\x1e" => "\x8f\xd6\xae", +"\x81\x20" => "\x8f\xd6\xaf", +"\x81\x23" => "\xe6\xfc", +"\x81\x24" => "\x8f\xd6\xb0", +"\x81\x27" => "\x8f\xd6\xb1", +"\x81\x29" => "\xe6\xfb", +"\x81\x2c" => "\x8f\xd6\xb2", +"\x81\x2f" => "\xe6\xfd", +"\x81\x30" => "\x8f\xd6\xb3", +"\x81\x31" => "\xc3\xa6", +"\x81\x33" => "\xc7\xbe", +"\x81\x35" => "\x8f\xd6\xb4", +"\x81\x39" => "\xc4\xb1", +"\x81\x3a" => "\x8f\xd6\xb5", +"\x81\x3c" => "\x8f\xd6\xb6", +"\x81\x3e" => "\xe7\xa3", +"\x81\x45" => "\x8f\xd6\xb7", +"\x81\x46" => "\xe7\xa2", +"\x81\x47" => "\x8f\xd6\xb8", +"\x81\x4a" => "\x8f\xd6\xb9", +"\x81\x4b" => "\xe6\xfe", +"\x81\x4c" => "\x8f\xd6\xba", +"\x81\x4e" => "\xbf\xd5", +"\x81\x50" => "\xc9\xe5", +"\x81\x51" => "\xe7\xa5", +"\x81\x52" => "\x8f\xd6\xbb", +"\x81\x53" => "\xe7\xa4", +"\x81\x54" => "\xb9\xd0", +"\x81\x55" => "\xcf\xd3", +"\x81\x57" => "\x8f\xd6\xbc", +"\x81\x5f" => "\xe7\xb5", +"\x81\x60" => "\x8f\xd6\xbd", +"\x81\x61" => "\x8f\xd6\xbe", +"\x81\x65" => "\xe7\xa9", +"\x81\x66" => "\xe7\xaa", +"\x81\x67" => "\x8f\xd6\xbf", +"\x81\x68" => "\x8f\xd6\xc0", +"\x81\x69" => "\x8f\xd6\xc1", +"\x81\x6b" => "\xbc\xf0", +"\x81\x6d" => "\x8f\xd6\xc2", +"\x81\x6e" => "\xe7\xa8", +"\x81\x6f" => "\x8f\xd6\xc3", +"\x81\x70" => "\xb9\xf8", +"\x81\x71" => "\xe7\xa7", +"\x81\x74" => "\xe7\xab", +"\x81\x77" => "\x8f\xd6\xc4", +"\x81\x78" => "\xc4\xb2", +"\x81\x79" => "\xca\xa2", +"\x81\x7a" => "\xc1\xa3", +"\x81\x7f" => "\xc2\xdc", +"\x81\x80" => "\xe7\xaf", +"\x81\x81" => "\x8f\xd6\xc5", +"\x81\x82" => "\xe7\xb0", +"\x81\x83" => "\xe7\xac", +"\x81\x84" => "\x8f\xd6\xc7", +"\x81\x85" => "\x8f\xd6\xc8", +"\x81\x86" => "\x8f\xd6\xc9", +"\x81\x88" => "\xe7\xad", +"\x81\x8a" => "\xe7\xae", +"\x81\x8b" => "\x8f\xd6\xca", +"\x81\x8e" => "\x8f\xd6\xcb", +"\x81\x8f" => "\xb9\xd1", +"\x81\x90" => "\x8f\xd6\xc6", +"\x81\x93" => "\xe7\xb6", +"\x81\x95" => "\xe7\xb2", +"\x81\x96" => "\x8f\xd6\xcc", +"\x81\x98" => "\x8f\xd6\xcd", +"\x81\x9a" => "\xc9\xe6", +"\x81\x9b" => "\x8f\xd6\xce", +"\x81\x9c" => "\xcb\xec", +"\x81\x9d" => "\xc9\xa8", +"\x81\x9e" => "\x8f\xd6\xcf", +"\x81\xa0" => "\xe7\xb1", +"\x81\xa2" => "\x8f\xd6\xd0", +"\x81\xa3" => "\xe7\xb4", +"\x81\xa4" => "\xe7\xb3", +"\x81\xa8" => "\xcb\xc4", +"\x81\xa9" => "\xe7\xb7", +"\x81\xae" => "\x8f\xd6\xd1", +"\x81\xb0" => "\xe7\xb8", +"\x81\xb2" => "\x8f\xd6\xd2", +"\x81\xb3" => "\xc1\xb7", +"\x81\xb4" => "\x8f\xd6\xd3", +"\x81\xb5" => "\xe7\xb9", +"\x81\xb8" => "\xe7\xbb", +"\x81\xba" => "\xe7\xbf", +"\x81\xbb" => "\x8f\xd6\xd4", +"\x81\xbd" => "\xe7\xbc", +"\x81\xbe" => "\xe7\xba", +"\x81\xbf" => "\xc7\xbf", +"\x81\xc0" => "\xe7\xbd", +"\x81\xc2" => "\xe7\xbe", +"\x81\xc3" => "\x8f\xd6\xd6", +"\x81\xc5" => "\x8f\xd6\xd7", +"\x81\xc6" => "\xb2\xb2", +"\x81\xc8" => "\xe7\xc5", +"\x81\xc9" => "\xe7\xc0", +"\x81\xca" => "\x8f\xd6\xd8", +"\x81\xcb" => "\x8f\xd6\xd5", +"\x81\xcd" => "\xe7\xc1", +"\x81\xce" => "\x8f\xd6\xd9", +"\x81\xcf" => "\x8f\xd6\xda", +"\x81\xd1" => "\xe7\xc2", +"\x81\xd3" => "\xc2\xa1", +"\x81\xd5" => "\x8f\xd6\xdb", +"\x81\xd7" => "\x8f\xd6\xdc", +"\x81\xd8" => "\xe7\xc4", +"\x81\xd9" => "\xe7\xc3", +"\x81\xda" => "\xe7\xc6", +"\x81\xdb" => "\x8f\xd6\xdd", +"\x81\xdd" => "\x8f\xd6\xde", +"\x81\xde" => "\x8f\xd6\xdf", +"\x81\xdf" => "\xe7\xc7", +"\x81\xe0" => "\xe7\xc8", +"\x81\xe1" => "\x8f\xd6\xe0", +"\x81\xe3" => "\xbf\xc3", +"\x81\xe4" => "\x8f\xd6\xe1", +"\x81\xe5" => "\xb2\xe9", +"\x81\xe7" => "\xe7\xc9", +"\x81\xe8" => "\xce\xd7", +"\x81\xea" => "\xbc\xab", +"\x81\xeb" => "\x8f\xd6\xe2", +"\x81\xec" => "\x8f\xd6\xe3", +"\x81\xed" => "\xbd\xad", +"\x81\xf0" => "\x8f\xd6\xe4", +"\x81\xf1" => "\x8f\xd6\xe5", +"\x81\xf2" => "\x8f\xd6\xe6", +"\x81\xf3" => "\xbb\xea", +"\x81\xf4" => "\xc3\xd7", +"\x81\xf5" => "\x8f\xd6\xe7", +"\x81\xf6" => "\x8f\xd6\xe8", +"\x81\xf8" => "\x8f\xd6\xe9", +"\x81\xf9" => "\x8f\xd6\xea", +"\x81\xfa" => "\xe7\xca", +"\x81\xfb" => "\xe7\xcb", +"\x81\xfc" => "\xb1\xb1", +"\x81\xfd" => "\x8f\xd6\xeb", +"\x81\xfe" => "\xe7\xcc", +"\x81\xff" => "\x8f\xd6\xec", +"\x82\x00" => "\x8f\xd6\xed", +"\x82\x01" => "\xe7\xcd", +"\x82\x02" => "\xe7\xce", +"\x82\x03" => "\x8f\xd6\xee", +"\x82\x05" => "\xe7\xcf", +"\x82\x07" => "\xe7\xd0", +"\x82\x08" => "\xb6\xbd", +"\x82\x09" => "\xda\xaa", +"\x82\x0a" => "\xe7\xd1", +"\x82\x0c" => "\xc0\xe5", +"\x82\x0d" => "\xe7\xd2", +"\x82\x0e" => "\xbc\xcb", +"\x82\x0f" => "\x8f\xd6\xef", +"\x82\x10" => "\xe7\xd3", +"\x82\x12" => "\xd0\xb0", +"\x82\x13" => "\x8f\xd6\xf0", +"\x82\x14" => "\x8f\xd6\xf1", +"\x82\x16" => "\xe7\xd4", +"\x82\x17" => "\xca\xde", +"\x82\x18" => "\xb4\xdc", +"\x82\x19" => "\x8f\xd6\xf2", +"\x82\x1a" => "\x8f\xd6\xf3", +"\x82\x1b" => "\xc1\xa4", +"\x82\x1c" => "\xbd\xd8", +"\x82\x1d" => "\x8f\xd6\xf4", +"\x82\x1e" => "\xc9\xf1", +"\x82\x1f" => "\xbd\xae", +"\x82\x21" => "\x8f\xd6\xf5", +"\x82\x22" => "\x8f\xd6\xf6", +"\x82\x28" => "\x8f\xd6\xf7", +"\x82\x29" => "\xe7\xd5", +"\x82\x2a" => "\xb9\xd2", +"\x82\x2b" => "\xe7\xd6", +"\x82\x2c" => "\xc8\xcc", +"\x82\x2e" => "\xe7\xe4", +"\x82\x32" => "\x8f\xd6\xf8", +"\x82\x33" => "\xe7\xd8", +"\x82\x34" => "\x8f\xd6\xf9", +"\x82\x35" => "\xc2\xc9", +"\x82\x36" => "\xc7\xf5", +"\x82\x37" => "\xb8\xbf", +"\x82\x38" => "\xe7\xd7", +"\x82\x39" => "\xc1\xa5", +"\x82\x3a" => "\x8f\xd6\xfa", +"\x82\x40" => "\xe7\xd9", +"\x82\x43" => "\x8f\xd6\xfb", +"\x82\x44" => "\x8f\xd6\xfc", +"\x82\x45" => "\x8f\xd6\xfd", +"\x82\x46" => "\x8f\xd6\xfe", +"\x82\x47" => "\xc4\xfa", +"\x82\x4b" => "\x8f\xd7\xa1", +"\x82\x4e" => "\x8f\xd7\xa2", +"\x82\x4f" => "\x8f\xd7\xa3", +"\x82\x51" => "\x8f\xd7\xa4", +"\x82\x56" => "\x8f\xd7\xa5", +"\x82\x58" => "\xe7\xdb", +"\x82\x59" => "\xe7\xda", +"\x82\x5a" => "\xe7\xdd", +"\x82\x5c" => "\x8f\xd7\xa6", +"\x82\x5d" => "\xe7\xdc", +"\x82\x5f" => "\xe7\xde", +"\x82\x60" => "\x8f\xd7\xa7", +"\x82\x62" => "\xe7\xe0", +"\x82\x63" => "\x8f\xd7\xa8", +"\x82\x64" => "\xe7\xdf", +"\x82\x66" => "\xb4\xcf", +"\x82\x67" => "\x8f\xd7\xa9", +"\x82\x68" => "\xe7\xe1", +"\x82\x6a" => "\xe7\xe2", +"\x82\x6b" => "\xe7\xe3", +"\x82\x6d" => "\x8f\xd7\xaa", +"\x82\x6e" => "\xba\xb1", +"\x82\x6f" => "\xce\xc9", +"\x82\x71" => "\xe7\xe5", +"\x82\x72" => "\xbf\xa7", +"\x82\x74" => "\x8f\xd7\xab", +"\x82\x76" => "\xb1\xf0", +"\x82\x77" => "\xe7\xe6", +"\x82\x78" => "\xe7\xe7", +"\x82\x7b" => "\x8f\xd7\xac", +"\x82\x7d" => "\x8f\xd7\xad", +"\x82\x7e" => "\xe7\xe8", +"\x82\x7f" => "\x8f\xd7\xae", +"\x82\x80" => "\x8f\xd7\xaf", +"\x82\x81" => "\x8f\xd7\xb0", +"\x82\x83" => "\x8f\xd7\xb1", +"\x82\x84" => "\x8f\xd7\xb2", +"\x82\x87" => "\x8f\xd7\xb3", +"\x82\x89" => "\x8f\xd7\xb4", +"\x82\x8a" => "\x8f\xd7\xb5", +"\x82\x8b" => "\xb0\xf2", +"\x82\x8d" => "\xe7\xe9", +"\x82\x8e" => "\x8f\xd7\xb6", +"\x82\x91" => "\x8f\xd7\xb7", +"\x82\x92" => "\xe7\xea", +"\x82\x94" => "\x8f\xd7\xb8", +"\x82\x96" => "\x8f\xd7\xb9", +"\x82\x98" => "\x8f\xd7\xba", +"\x82\x99" => "\xc9\xe7", +"\x82\x9a" => "\x8f\xd7\xbb", +"\x82\x9b" => "\x8f\xd7\xbc", +"\x82\x9d" => "\xbc\xc7", +"\x82\x9f" => "\xe7\xec", +"\x82\xa0" => "\x8f\xd7\xbd", +"\x82\xa1" => "\x8f\xd7\xbe", +"\x82\xa3" => "\x8f\xd7\xbf", +"\x82\xa4" => "\x8f\xd7\xc0", +"\x82\xa5" => "\xb3\xa9", +"\x82\xa6" => "\xb0\xb2", +"\x82\xa7" => "\x8f\xd7\xc1", +"\x82\xa8" => "\x8f\xd7\xc2", +"\x82\xa9" => "\x8f\xd7\xc3", +"\x82\xaa" => "\x8f\xd7\xc4", +"\x82\xab" => "\xe7\xeb", +"\x82\xac" => "\xe7\xee", +"\x82\xad" => "\xc7\xce", +"\x82\xae" => "\x8f\xd7\xc5", +"\x82\xaf" => "\xbf\xc4", +"\x82\xb0" => "\x8f\xd7\xc6", +"\x82\xb1" => "\xb2\xd6", +"\x82\xb2" => "\x8f\xd7\xc7", +"\x82\xb3" => "\xcb\xa7", +"\x82\xb4" => "\x8f\xd7\xc8", +"\x82\xb7" => "\x8f\xd7\xc9", +"\x82\xb8" => "\xb7\xdd", +"\x82\xb9" => "\xb6\xdc", +"\x82\xba" => "\x8f\xd7\xca", +"\x82\xbb" => "\xe7\xed", +"\x82\xbc" => "\x8f\xd7\xcb", +"\x82\xbd" => "\xb2\xea", +"\x82\xbe" => "\x8f\xd7\xcc", +"\x82\xbf" => "\x8f\xd7\xcd", +"\x82\xc5" => "\xb4\xa3", +"\x82\xc6" => "\x8f\xd7\xce", +"\x82\xd0" => "\x8f\xd7\xcf", +"\x82\xd1" => "\xb1\xf1", +"\x82\xd2" => "\xe7\xf2", +"\x82\xd3" => "\xce\xea", +"\x82\xd4" => "\xc2\xdd", +"\x82\xd5" => "\x8f\xd7\xd0", +"\x82\xd7" => "\xc9\xc4", +"\x82\xd9" => "\xe7\xfe", +"\x82\xda" => "\x8f\xd7\xd1", +"\x82\xdb" => "\xb2\xd7", +"\x82\xdc" => "\xe7\xfc", +"\x82\xde" => "\xe7\xfa", +"\x82\xdf" => "\xe7\xf1", +"\x82\xe0" => "\x8f\xd7\xd2", +"\x82\xe1" => "\xe7\xef", +"\x82\xe2" => "\x8f\xd7\xd3", +"\x82\xe3" => "\xe7\xf0", +"\x82\xe4" => "\x8f\xd7\xd4", +"\x82\xe5" => "\xbc\xe3", +"\x82\xe6" => "\xb6\xec", +"\x82\xe7" => "\xc3\xf7", +"\x82\xe8" => "\x8f\xd7\xd5", +"\x82\xea" => "\x8f\xd7\xd6", +"\x82\xeb" => "\xc6\xd1", +"\x82\xed" => "\x8f\xd7\xd7", +"\x82\xef" => "\x8f\xd7\xd8", +"\x82\xf1" => "\xb1\xd1", +"\x82\xf3" => "\xe7\xf4", +"\x82\xf4" => "\xe7\xf3", +"\x82\xf6" => "\x8f\xd7\xd9", +"\x82\xf7" => "\x8f\xd7\xda", +"\x82\xf9" => "\xe7\xf9", +"\x82\xfa" => "\xe7\xf5", +"\x82\xfb" => "\xe7\xf8", +"\x82\xfd" => "\x8f\xd7\xdb", +"\x82\xfe" => "\x8f\xd7\xdc", +"\x83\x00" => "\x8f\xd7\xdd", +"\x83\x01" => "\x8f\xd7\xde", +"\x83\x02" => "\xcc\xd0", +"\x83\x03" => "\xe7\xf7", +"\x83\x04" => "\xb2\xd8", +"\x83\x05" => "\xb3\xfd", +"\x83\x06" => "\xe7\xfb", +"\x83\x07" => "\x8f\xd7\xdf", +"\x83\x08" => "\x8f\xd7\xe0", +"\x83\x09" => "\xe7\xfd", +"\x83\x0a" => "\x8f\xd7\xe1", +"\x83\x0b" => "\x8f\xd7\xe2", +"\x83\x0e" => "\xb7\xd4", +"\x83\x16" => "\xe8\xa3", +"\x83\x17" => "\xe8\xac", +"\x83\x18" => "\xe8\xad", +"\x83\x1b" => "\x8f\xd7\xe4", +"\x83\x1c" => "\xb0\xab", +"\x83\x1d" => "\x8f\xd7\xe5", +"\x83\x1e" => "\x8f\xd7\xe6", +"\x83\x1f" => "\x8f\xd7\xe7", +"\x83\x21" => "\x8f\xd7\xe8", +"\x83\x22" => "\x8f\xd7\xe9", +"\x83\x23" => "\xe8\xb4", +"\x83\x28" => "\xb0\xf1", +"\x83\x2b" => "\xe8\xab", +"\x83\x2c" => "\x8f\xd7\xea", +"\x83\x2d" => "\x8f\xd7\xeb", +"\x83\x2e" => "\x8f\xd7\xec", +"\x83\x2f" => "\xe8\xaa", +"\x83\x30" => "\x8f\xd7\xed", +"\x83\x31" => "\xe8\xa5", +"\x83\x32" => "\xe8\xa4", +"\x83\x33" => "\x8f\xd7\xee", +"\x83\x34" => "\xe8\xa2", +"\x83\x35" => "\xe8\xa1", +"\x83\x36" => "\xc3\xe3", +"\x83\x37" => "\x8f\xd7\xef", +"\x83\x38" => "\xc2\xfb", +"\x83\x39" => "\xe8\xa7", +"\x83\x3a" => "\x8f\xd7\xf0", +"\x83\x3c" => "\x8f\xd7\xf1", +"\x83\x3d" => "\x8f\xd7\xf2", +"\x83\x40" => "\xe8\xa6", +"\x83\x42" => "\x8f\xd7\xf3", +"\x83\x43" => "\x8f\xd7\xf4", +"\x83\x44" => "\x8f\xd7\xf5", +"\x83\x45" => "\xe8\xa9", +"\x83\x47" => "\x8f\xd7\xf6", +"\x83\x49" => "\xc1\xf0", +"\x83\x4a" => "\xb7\xd5", +"\x83\x4d" => "\x8f\xd7\xf7", +"\x83\x4e" => "\x8f\xd7\xf8", +"\x83\x4f" => "\xb1\xc1", +"\x83\x50" => "\xe8\xa8", +"\x83\x51" => "\x8f\xd7\xf9", +"\x83\x52" => "\xb9\xd3", +"\x83\x53" => "\x8f\xd8\xbe", +"\x83\x54" => "\x8f\xd7\xe3", +"\x83\x55" => "\x8f\xd7\xfa", +"\x83\x56" => "\x8f\xd7\xfb", +"\x83\x57" => "\x8f\xd7\xfc", +"\x83\x58" => "\xc1\xf1", +"\x83\x70" => "\x8f\xd7\xfd", +"\x83\x73" => "\xe8\xba", +"\x83\x75" => "\xe8\xbb", +"\x83\x77" => "\xb2\xd9", +"\x83\x78" => "\x8f\xd7\xfe", +"\x83\x7b" => "\xb2\xae", +"\x83\x7c" => "\xe8\xb8", +"\x83\x7d" => "\x8f\xd8\xa1", +"\x83\x7f" => "\x8f\xd8\xa2", +"\x83\x80" => "\x8f\xd8\xa3", +"\x83\x82" => "\x8f\xd8\xa4", +"\x83\x84" => "\x8f\xd8\xa5", +"\x83\x85" => "\xe8\xae", +"\x83\x86" => "\x8f\xd8\xa6", +"\x83\x87" => "\xe8\xb6", +"\x83\x89" => "\xe8\xbd", +"\x83\x8a" => "\xe8\xb7", +"\x83\x8d" => "\x8f\xd8\xa7", +"\x83\x8e" => "\xe8\xb5", +"\x83\x92" => "\x8f\xd8\xa8", +"\x83\x93" => "\xe7\xf6", +"\x83\x94" => "\x8f\xd8\xa9", +"\x83\x95" => "\x8f\xd8\xaa", +"\x83\x96" => "\xe8\xb3", +"\x83\x98" => "\x8f\xd8\xab", +"\x83\x99" => "\x8f\xd8\xac", +"\x83\x9a" => "\xe8\xaf", +"\x83\x9b" => "\x8f\xd8\xad", +"\x83\x9c" => "\x8f\xd8\xae", +"\x83\x9d" => "\x8f\xd8\xaf", +"\x83\x9e" => "\xb4\xd0", +"\x83\x9f" => "\xe8\xb1", +"\x83\xa0" => "\xe8\xbc", +"\x83\xa2" => "\xe8\xb2", +"\x83\xa6" => "\x8f\xd8\xb0", +"\x83\xa7" => "\x8f\xd8\xb1", +"\x83\xa8" => "\xe8\xbe", +"\x83\xa9" => "\x8f\xd8\xb2", +"\x83\xaa" => "\xe8\xb0", +"\x83\xab" => "\xc7\xfc", +"\x83\xac" => "\x8f\xd8\xb3", +"\x83\xad" => "\x8f\xd8\xcc", +"\x83\xb1" => "\xcd\xe9", +"\x83\xb5" => "\xe8\xb9", +"\x83\xbd" => "\xe8\xcf", +"\x83\xbe" => "\x8f\xd8\xb4", +"\x83\xbf" => "\x8f\xd8\xb5", +"\x83\xc0" => "\x8f\xd8\xb6", +"\x83\xc1" => "\xe8\xc7", +"\x83\xc5" => "\xbf\xfb", +"\x83\xc7" => "\x8f\xd8\xb7", +"\x83\xc9" => "\x8f\xd8\xb8", +"\x83\xca" => "\xb5\xc6", +"\x83\xcc" => "\xb6\xdd", +"\x83\xce" => "\xe8\xc2", +"\x83\xcf" => "\x8f\xd8\xb9", +"\x83\xd0" => "\x8f\xd8\xba", +"\x83\xd1" => "\x8f\xd8\xbb", +"\x83\xd3" => "\xb2\xdb", +"\x83\xd4" => "\x8f\xd8\xbc", +"\x83\xd6" => "\xbe\xd4", +"\x83\xd8" => "\xe8\xc5", +"\x83\xdc" => "\xba\xda", +"\x83\xdd" => "\x8f\xd8\xbd", +"\x83\xdf" => "\xc5\xd1", +"\x83\xe0" => "\xe8\xca", +"\x83\xe8" => "\x8f\xd8\xbf", +"\x83\xe9" => "\xca\xee", +"\x83\xea" => "\x8f\xd8\xc0", +"\x83\xeb" => "\xe8\xc1", +"\x83\xef" => "\xb2\xda", +"\x83\xf0" => "\xb8\xd6", +"\x83\xf1" => "\xc9\xa9", +"\x83\xf2" => "\xe8\xcb", +"\x83\xf4" => "\xe8\xbf", +"\x83\xf6" => "\x8f\xd8\xc1", +"\x83\xf7" => "\xe8\xc8", +"\x83\xf8" => "\x8f\xd8\xc2", +"\x83\xf9" => "\x8f\xd8\xc3", +"\x83\xfb" => "\xe8\xd2", +"\x83\xfc" => "\x8f\xd8\xc4", +"\x83\xfd" => "\xe8\xc3", +"\x84\x01" => "\x8f\xd8\xc5", +"\x84\x03" => "\xe8\xc4", +"\x84\x04" => "\xc6\xba", +"\x84\x06" => "\x8f\xd8\xc6", +"\x84\x07" => "\xe8\xc9", +"\x84\x0a" => "\x8f\xd8\xc7", +"\x84\x0b" => "\xe8\xc6", +"\x84\x0c" => "\xcb\xa8", +"\x84\x0d" => "\xe8\xcc", +"\x84\x0e" => "\xb0\xe0", +"\x84\x0f" => "\x8f\xd8\xc8", +"\x84\x11" => "\x8f\xd8\xc9", +"\x84\x13" => "\xe8\xc0", +"\x84\x15" => "\x8f\xd8\xca", +"\x84\x19" => "\x8f\xd8\xcb", +"\x84\x20" => "\xe8\xce", +"\x84\x22" => "\xe8\xcd", +"\x84\x29" => "\xc7\xeb", +"\x84\x2a" => "\xe8\xd4", +"\x84\x2c" => "\xe8\xdf", +"\x84\x2f" => "\x8f\xd8\xcd", +"\x84\x31" => "\xb3\xfe", +"\x84\x35" => "\xe8\xe2", +"\x84\x38" => "\xe8\xd0", +"\x84\x39" => "\x8f\xd8\xce", +"\x84\x3c" => "\xe8\xd5", +"\x84\x3d" => "\xcd\xee", +"\x84\x45" => "\x8f\xd8\xcf", +"\x84\x46" => "\xe8\xde", +"\x84\x47" => "\x8f\xd8\xd0", +"\x84\x48" => "\x8f\xd8\xd1", +"\x84\x49" => "\xcd\xd5", +"\x84\x4a" => "\x8f\xd8\xd2", +"\x84\x4d" => "\x8f\xd8\xd3", +"\x84\x4e" => "\xce\xaa", +"\x84\x4f" => "\x8f\xd8\xd4", +"\x84\x51" => "\x8f\xd8\xd5", +"\x84\x52" => "\x8f\xd8\xd6", +"\x84\x56" => "\x8f\xd8\xd7", +"\x84\x57" => "\xc3\xf8", +"\x84\x58" => "\x8f\xd8\xd8", +"\x84\x59" => "\x8f\xd8\xd9", +"\x84\x5a" => "\x8f\xd8\xda", +"\x84\x5b" => "\xb3\xeb", +"\x84\x5c" => "\x8f\xd8\xdb", +"\x84\x60" => "\x8f\xd8\xdc", +"\x84\x61" => "\xc9\xf2", +"\x84\x62" => "\xe8\xe4", +"\x84\x63" => "\xc6\xa1", +"\x84\x64" => "\x8f\xd8\xdd", +"\x84\x65" => "\x8f\xd8\xde", +"\x84\x66" => "\xb0\xb1", +"\x84\x67" => "\x8f\xd8\xdf", +"\x84\x69" => "\xe8\xdd", +"\x84\x6a" => "\x8f\xd8\xe0", +"\x84\x6b" => "\xe8\xd9", +"\x84\x6c" => "\xc1\xf2", +"\x84\x6d" => "\xe8\xd3", +"\x84\x6e" => "\xe8\xdb", +"\x84\x6f" => "\xe8\xe0", +"\x84\x70" => "\x8f\xd8\xe1", +"\x84\x71" => "\xc7\xac", +"\x84\x73" => "\x8f\xd8\xe2", +"\x84\x74" => "\x8f\xd8\xe3", +"\x84\x75" => "\xb0\xaa", +"\x84\x76" => "\x8f\xd8\xe4", +"\x84\x77" => "\xe8\xd8", +"\x84\x78" => "\x8f\xd8\xe5", +"\x84\x79" => "\xe8\xe1", +"\x84\x7a" => "\xc9\xf8", +"\x84\x7c" => "\x8f\xd8\xe6", +"\x84\x7d" => "\x8f\xd8\xe7", +"\x84\x81" => "\x8f\xd8\xe8", +"\x84\x82" => "\xe8\xdc", +"\x84\x84" => "\xe8\xd7", +"\x84\x85" => "\x8f\xd8\xe9", +"\x84\x8b" => "\xbe\xd5", +"\x84\x90" => "\xbd\xaf", +"\x84\x92" => "\x8f\xd8\xea", +"\x84\x93" => "\x8f\xd8\xeb", +"\x84\x94" => "\xbc\xac", +"\x84\x95" => "\x8f\xd8\xec", +"\x84\x99" => "\xcc\xd8", +"\x84\x9c" => "\xc9\xc7", +"\x84\x9e" => "\x8f\xd8\xed", +"\x84\x9f" => "\xe8\xe7", +"\x84\xa1" => "\xe8\xf0", +"\x84\xa6" => "\x8f\xd8\xee", +"\x84\xa8" => "\x8f\xd8\xef", +"\x84\xa9" => "\x8f\xd8\xf0", +"\x84\xaa" => "\x8f\xd8\xf1", +"\x84\xad" => "\xe8\xda", +"\x84\xaf" => "\x8f\xd8\xf2", +"\x84\xb1" => "\x8f\xd8\xf3", +"\x84\xb2" => "\xb3\xf7", +"\x84\xb4" => "\x8f\xd8\xf4", +"\x84\xb8" => "\xbe\xf8", +"\x84\xb9" => "\xe8\xe5", +"\x84\xba" => "\x8f\xd8\xf5", +"\x84\xbb" => "\xe8\xea", +"\x84\xbc" => "\xc1\xf3", +"\x84\xbd" => "\x8f\xd8\xf6", +"\x84\xbe" => "\x8f\xd8\xf7", +"\x84\xbf" => "\xe8\xe6", +"\x84\xc0" => "\x8f\xd8\xf8", +"\x84\xc1" => "\xe8\xed", +"\x84\xc2" => "\x8f\xd8\xf9", +"\x84\xc4" => "\xc3\xdf", +"\x84\xc6" => "\xe8\xee", +"\x84\xc7" => "\x8f\xd8\xfa", +"\x84\xc8" => "\x8f\xd8\xfb", +"\x84\xc9" => "\xcd\xd6", +"\x84\xca" => "\xe8\xe3", +"\x84\xcb" => "\xb3\xb8", +"\x84\xcc" => "\x8f\xd8\xfc", +"\x84\xcd" => "\xe8\xe9", +"\x84\xcf" => "\x8f\xd8\xfd", +"\x84\xd0" => "\xe8\xec", +"\x84\xd1" => "\xcc\xac", +"\x84\xd3" => "\x8f\xd8\xfe", +"\x84\xd6" => "\xe8\xef", +"\x84\xd9" => "\xe8\xe8", +"\x84\xda" => "\xe8\xeb", +"\x84\xdc" => "\x8f\xd9\xa1", +"\x84\xe7" => "\x8f\xd9\xa2", +"\x84\xea" => "\x8f\xd9\xa3", +"\x84\xec" => "\xcb\xa9", +"\x84\xee" => "\xcf\xa1", +"\x84\xef" => "\x8f\xd9\xa4", +"\x84\xf0" => "\x8f\xd9\xa5", +"\x84\xf1" => "\x8f\xd9\xa6", +"\x84\xf2" => "\x8f\xd9\xa7", +"\x84\xf4" => "\xe8\xf3", +"\x84\xf7" => "\x8f\xd9\xa8", +"\x84\xfa" => "\x8f\xd9\xaa", +"\x84\xfb" => "\x8f\xd9\xab", +"\x84\xfc" => "\xe8\xfa", +"\x84\xfd" => "\x8f\xd9\xac", +"\x84\xff" => "\xe8\xf2", +"\x85\x00" => "\xbc\xc3", +"\x85\x02" => "\x8f\xd9\xad", +"\x85\x03" => "\x8f\xd9\xae", +"\x85\x06" => "\xe8\xd1", +"\x85\x07" => "\x8f\xd9\xaf", +"\x85\x0c" => "\x8f\xd9\xb0", +"\x85\x0e" => "\x8f\xd9\xb1", +"\x85\x10" => "\x8f\xd9\xb2", +"\x85\x11" => "\xca\xce", +"\x85\x13" => "\xcc\xa2", +"\x85\x14" => "\xe8\xf9", +"\x85\x15" => "\xe8\xf8", +"\x85\x17" => "\xe8\xf4", +"\x85\x18" => "\xe8\xf5", +"\x85\x1a" => "\xb1\xb6", +"\x85\x1c" => "\x8f\xd9\xb3", +"\x85\x1e" => "\x8f\xd9\xb4", +"\x85\x1f" => "\xe8\xf7", +"\x85\x21" => "\xe8\xf1", +"\x85\x22" => "\x8f\xd9\xb5", +"\x85\x23" => "\x8f\xd9\xb6", +"\x85\x24" => "\x8f\xd9\xb7", +"\x85\x25" => "\x8f\xd9\xb8", +"\x85\x26" => "\xc4\xd5", +"\x85\x27" => "\x8f\xd9\xb9", +"\x85\x2a" => "\x8f\xd9\xba", +"\x85\x2b" => "\x8f\xd9\xbb", +"\x85\x2c" => "\xe8\xf6", +"\x85\x2d" => "\xb0\xfe", +"\x85\x2f" => "\x8f\xd9\xbc", +"\x85\x32" => "\x8f\xd9\xa9", +"\x85\x33" => "\x8f\xd9\xbd", +"\x85\x34" => "\x8f\xd9\xbe", +"\x85\x35" => "\xc2\xa2", +"\x85\x36" => "\x8f\xd9\xbf", +"\x85\x3d" => "\xca\xc3", +"\x85\x3f" => "\x8f\xd9\xc0", +"\x85\x40" => "\xe8\xfb", +"\x85\x41" => "\xe9\xa1", +"\x85\x43" => "\xc8\xd9", +"\x85\x46" => "\x8f\xd9\xc1", +"\x85\x48" => "\xe8\xfe", +"\x85\x49" => "\xbe\xd6", +"\x85\x4a" => "\xbc\xc9", +"\x85\x4b" => "\xe9\xa3", +"\x85\x4e" => "\xb6\xbe", +"\x85\x4f" => "\x8f\xd9\xc2", +"\x85\x50" => "\x8f\xd9\xc3", +"\x85\x51" => "\x8f\xd9\xc4", +"\x85\x52" => "\x8f\xd9\xc5", +"\x85\x53" => "\x8f\xd9\xc6", +"\x85\x55" => "\xe9\xa4", +"\x85\x56" => "\x8f\xd9\xc7", +"\x85\x57" => "\xc9\xf9", +"\x85\x58" => "\xe8\xfd", +"\x85\x59" => "\x8f\xd9\xc8", +"\x85\x5a" => "\xe8\xd6", +"\x85\x5c" => "\x8f\xd9\xc9", +"\x85\x5d" => "\x8f\xd9\xca", +"\x85\x5e" => "\x8f\xd9\xcb", +"\x85\x5f" => "\x8f\xd9\xcc", +"\x85\x60" => "\x8f\xd9\xcd", +"\x85\x61" => "\x8f\xd9\xce", +"\x85\x62" => "\x8f\xd9\xcf", +"\x85\x63" => "\xe8\xfc", +"\x85\x64" => "\x8f\xd9\xd0", +"\x85\x68" => "\xcf\xcf", +"\x85\x69" => "\xc6\xa2", +"\x85\x6a" => "\xc9\xf3", +"\x85\x6b" => "\x8f\xd9\xd1", +"\x85\x6d" => "\xe9\xab", +"\x85\x6f" => "\x8f\xd9\xd2", +"\x85\x77" => "\xe9\xb1", +"\x85\x79" => "\x8f\xd9\xd3", +"\x85\x7a" => "\x8f\xd9\xd4", +"\x85\x7b" => "\x8f\xd9\xd5", +"\x85\x7d" => "\x8f\xd9\xd6", +"\x85\x7e" => "\xe9\xb2", +"\x85\x7f" => "\x8f\xd9\xd7", +"\x85\x80" => "\xe9\xa5", +"\x85\x81" => "\x8f\xd9\xd8", +"\x85\x84" => "\xc7\xf6", +"\x85\x85" => "\x8f\xd9\xd9", +"\x85\x86" => "\x8f\xd9\xda", +"\x85\x87" => "\xe9\xaf", +"\x85\x88" => "\xe9\xa7", +"\x85\x89" => "\x8f\xd9\xdb", +"\x85\x8a" => "\xe9\xa9", +"\x85\x8b" => "\x8f\xd9\xdc", +"\x85\x8c" => "\x8f\xd9\xdd", +"\x85\x8f" => "\x8f\xd9\xde", +"\x85\x90" => "\xe9\xb3", +"\x85\x91" => "\xe9\xa8", +"\x85\x93" => "\x8f\xd9\xdf", +"\x85\x94" => "\xe9\xac", +"\x85\x97" => "\xb1\xf2", +"\x85\x98" => "\x8f\xd9\xe0", +"\x85\x99" => "\xc6\xe5", +"\x85\x9b" => "\xe9\xad", +"\x85\x9c" => "\xe9\xb0", +"\x85\x9d" => "\x8f\xd9\xe1", +"\x85\x9f" => "\x8f\xd9\xe2", +"\x85\xa0" => "\x8f\xd9\xe3", +"\x85\xa2" => "\x8f\xd9\xe4", +"\x85\xa4" => "\xe9\xa6", +"\x85\xa5" => "\x8f\xd9\xe5", +"\x85\xa6" => "\xc1\xa6", +"\x85\xa7" => "\x8f\xd9\xe6", +"\x85\xa8" => "\xe9\xaa", +"\x85\xa9" => "\xbb\xa7", +"\x85\xaa" => "\xbf\xc5", +"\x85\xab" => "\xb7\xb0", +"\x85\xac" => "\xcc\xf4", +"\x85\xad" => "\x8f\xd9\xf4", +"\x85\xae" => "\xcc\xf9", +"\x85\xaf" => "\xbd\xf2", +"\x85\xb4" => "\x8f\xd9\xe7", +"\x85\xb6" => "\x8f\xd9\xe8", +"\x85\xb7" => "\x8f\xd9\xe9", +"\x85\xb8" => "\x8f\xd9\xea", +"\x85\xb9" => "\xe9\xb7", +"\x85\xba" => "\xe9\xb5", +"\x85\xbc" => "\x8f\xd9\xeb", +"\x85\xbd" => "\x8f\xd9\xec", +"\x85\xbe" => "\x8f\xd9\xed", +"\x85\xbf" => "\x8f\xd9\xee", +"\x85\xc1" => "\xcf\xce", +"\x85\xc2" => "\x8f\xd9\xef", +"\x85\xc7" => "\x8f\xd9\xf0", +"\x85\xc9" => "\xe9\xb4", +"\x85\xca" => "\x8f\xd9\xf1", +"\x85\xcb" => "\x8f\xd9\xf2", +"\x85\xcd" => "\xcd\xf5", +"\x85\xce" => "\x8f\xd9\xf3", +"\x85\xcf" => "\xe9\xb6", +"\x85\xd0" => "\xe9\xb8", +"\x85\xd5" => "\xe9\xb9", +"\x85\xd8" => "\x8f\xd9\xf5", +"\x85\xda" => "\x8f\xd9\xf6", +"\x85\xdc" => "\xe9\xbc", +"\x85\xdd" => "\xe9\xba", +"\x85\xdf" => "\x8f\xd9\xf7", +"\x85\xe0" => "\x8f\xd9\xf8", +"\x85\xe4" => "\xc6\xa3", +"\x85\xe5" => "\xe9\xbb", +"\x85\xe6" => "\x8f\xd9\xf9", +"\x85\xe8" => "\x8f\xd9\xfa", +"\x85\xe9" => "\xc8\xcd", +"\x85\xea" => "\xe9\xae", +"\x85\xed" => "\x8f\xd9\xfb", +"\x85\xf3" => "\x8f\xd9\xfc", +"\x85\xf6" => "\x8f\xd9\xfd", +"\x85\xf7" => "\xbd\xf3", +"\x85\xf9" => "\xe9\xbd", +"\x85\xfa" => "\xe9\xc2", +"\x85\xfb" => "\xc1\xf4", +"\x85\xfc" => "\x8f\xd9\xfe", +"\x85\xfe" => "\xe9\xc1", +"\x85\xff" => "\x8f\xda\xa1", +"\x86\x00" => "\x8f\xda\xa2", +"\x86\x02" => "\xe9\xa2", +"\x86\x04" => "\x8f\xda\xa3", +"\x86\x05" => "\x8f\xda\xa4", +"\x86\x06" => "\xe9\xc3", +"\x86\x07" => "\xc1\xc9", +"\x86\x0a" => "\xe9\xbe", +"\x86\x0b" => "\xe9\xc0", +"\x86\x0d" => "\x8f\xda\xa5", +"\x86\x0e" => "\x8f\xda\xa6", +"\x86\x10" => "\x8f\xda\xa7", +"\x86\x11" => "\x8f\xda\xa8", +"\x86\x12" => "\x8f\xda\xa9", +"\x86\x13" => "\xe9\xbf", +"\x86\x16" => "\xdd\xb1", +"\x86\x17" => "\xdd\xa2", +"\x86\x18" => "\x8f\xda\xaa", +"\x86\x19" => "\x8f\xda\xab", +"\x86\x1a" => "\xe9\xc5", +"\x86\x1b" => "\x8f\xda\xac", +"\x86\x1e" => "\x8f\xda\xad", +"\x86\x21" => "\x8f\xda\xae", +"\x86\x22" => "\xe9\xc4", +"\x86\x27" => "\x8f\xda\xaf", +"\x86\x29" => "\x8f\xda\xb0", +"\x86\x2d" => "\xcd\xf6", +"\x86\x2f" => "\xe2\xbc", +"\x86\x30" => "\xe9\xc6", +"\x86\x36" => "\x8f\xda\xb1", +"\x86\x38" => "\x8f\xda\xb2", +"\x86\x3a" => "\x8f\xda\xb3", +"\x86\x3c" => "\x8f\xda\xb4", +"\x86\x3d" => "\x8f\xda\xb5", +"\x86\x3f" => "\xe9\xc7", +"\x86\x40" => "\x8f\xda\xb6", +"\x86\x41" => "\x8f\xb8\xe6", +"\x86\x42" => "\x8f\xda\xb7", +"\x86\x46" => "\x8f\xda\xb8", +"\x86\x4d" => "\xe9\xc8", +"\x86\x4e" => "\xb8\xd7", +"\x86\x50" => "\xb5\xd4", +"\x86\x52" => "\x8f\xda\xb9", +"\x86\x53" => "\x8f\xda\xba", +"\x86\x54" => "\xe9\xca", +"\x86\x55" => "\xd1\xdd", +"\x86\x56" => "\x8f\xda\xbb", +"\x86\x57" => "\x8f\xda\xbc", +"\x86\x58" => "\x8f\xda\xbd", +"\x86\x59" => "\x8f\xda\xbe", +"\x86\x5a" => "\xb5\xf5", +"\x86\x5c" => "\xce\xba", +"\x86\x5d" => "\x8f\xda\xbf", +"\x86\x5e" => "\xb6\xf3", +"\x86\x5f" => "\xe9\xcb", +"\x86\x60" => "\x8f\xda\xc0", +"\x86\x61" => "\x8f\xda\xc1", +"\x86\x62" => "\x8f\xda\xc2", +"\x86\x63" => "\x8f\xda\xc3", +"\x86\x64" => "\x8f\xda\xc4", +"\x86\x67" => "\xe9\xcc", +"\x86\x69" => "\x8f\xda\xc5", +"\x86\x6b" => "\xc3\xee", +"\x86\x6c" => "\x8f\xda\xc6", +"\x86\x6f" => "\x8f\xda\xc7", +"\x86\x71" => "\xe9\xcd", +"\x86\x75" => "\x8f\xda\xc8", +"\x86\x76" => "\x8f\xda\xc9", +"\x86\x77" => "\x8f\xda\xca", +"\x86\x79" => "\xc6\xfa", +"\x86\x7a" => "\x8f\xda\xcb", +"\x86\x7b" => "\xb0\xba", +"\x86\x88" => "\x8f\xda\xed", +"\x86\x8a" => "\xb2\xe3", +"\x86\x8b" => "\xe9\xd2", +"\x86\x8c" => "\xe9\xd3", +"\x86\x8d" => "\x8f\xda\xcc", +"\x86\x91" => "\x8f\xda\xcd", +"\x86\x93" => "\xe9\xce", +"\x86\x95" => "\xbb\xbd", +"\x86\x96" => "\x8f\xda\xce", +"\x86\x98" => "\x8f\xda\xcf", +"\x86\x9a" => "\x8f\xda\xd0", +"\x86\x9c" => "\x8f\xda\xd1", +"\x86\xa1" => "\x8f\xda\xd2", +"\x86\xa3" => "\xe9\xcf", +"\x86\xa4" => "\xc7\xc2", +"\x86\xa6" => "\x8f\xda\xd3", +"\x86\xa7" => "\x8f\xda\xd4", +"\x86\xa8" => "\x8f\xda\xd5", +"\x86\xa9" => "\xe9\xd0", +"\x86\xaa" => "\xe9\xd1", +"\x86\xab" => "\xe9\xdb", +"\x86\xad" => "\x8f\xda\xd6", +"\x86\xaf" => "\xe9\xd5", +"\x86\xb0" => "\xe9\xd8", +"\x86\xb1" => "\x8f\xda\xd7", +"\x86\xb3" => "\x8f\xda\xd8", +"\x86\xb4" => "\x8f\xda\xd9", +"\x86\xb5" => "\x8f\xda\xda", +"\x86\xb6" => "\xe9\xd4", +"\x86\xb7" => "\x8f\xda\xdb", +"\x86\xb8" => "\x8f\xda\xdc", +"\x86\xb9" => "\x8f\xda\xdd", +"\x86\xbf" => "\x8f\xda\xde", +"\x86\xc0" => "\x8f\xda\xdf", +"\x86\xc1" => "\x8f\xda\xe0", +"\x86\xc3" => "\x8f\xda\xe1", +"\x86\xc4" => "\xe9\xd6", +"\x86\xc5" => "\x8f\xda\xe2", +"\x86\xc6" => "\xe9\xd7", +"\x86\xc7" => "\xbc\xd8", +"\x86\xc9" => "\xe9\xd9", +"\x86\xcb" => "\xc3\xc1", +"\x86\xcd" => "\xb7\xd6", +"\x86\xce" => "\xb3\xc2", +"\x86\xd1" => "\x8f\xda\xe3", +"\x86\xd2" => "\x8f\xda\xe4", +"\x86\xd4" => "\xe9\xdc", +"\x86\xd5" => "\x8f\xda\xe5", +"\x86\xd7" => "\x8f\xda\xe6", +"\x86\xd9" => "\xb3\xbf", +"\x86\xda" => "\x8f\xda\xe7", +"\x86\xdb" => "\xe9\xe1", +"\x86\xdc" => "\x8f\xda\xe8", +"\x86\xde" => "\xe9\xdd", +"\x86\xdf" => "\xe9\xe0", +"\x86\xe0" => "\x8f\xda\xe9", +"\x86\xe3" => "\x8f\xda\xea", +"\x86\xe4" => "\xc8\xba", +"\x86\xe5" => "\x8f\xda\xeb", +"\x86\xe7" => "\x8f\xda\xec", +"\x86\xe9" => "\xe9\xde", +"\x86\xec" => "\xe9\xdf", +"\x86\xed" => "\xc9\xc8", +"\x86\xee" => "\xc8\xda", +"\x86\xef" => "\xe9\xe2", +"\x86\xf8" => "\xc2\xfd", +"\x86\xf9" => "\xe9\xec", +"\x86\xfa" => "\x8f\xda\xee", +"\x86\xfb" => "\xe9\xe8", +"\x86\xfc" => "\x8f\xda\xef", +"\x86\xfd" => "\x8f\xda\xf0", +"\x86\xfe" => "\xb2\xeb", +"\x87\x00" => "\xe9\xe6", +"\x87\x02" => "\xcb\xaa", +"\x87\x03" => "\xe9\xe7", +"\x87\x04" => "\x8f\xda\xf1", +"\x87\x05" => "\x8f\xda\xf2", +"\x87\x06" => "\xe9\xe4", +"\x87\x07" => "\x8f\xda\xf3", +"\x87\x08" => "\xe9\xe5", +"\x87\x09" => "\xe9\xea", +"\x87\x0a" => "\xe9\xed", +"\x87\x0b" => "\x8f\xda\xf4", +"\x87\x0d" => "\xe9\xeb", +"\x87\x0e" => "\x8f\xda\xf5", +"\x87\x0f" => "\x8f\xda\xf6", +"\x87\x10" => "\x8f\xda\xf7", +"\x87\x11" => "\xe9\xe9", +"\x87\x12" => "\xe9\xe3", +"\x87\x13" => "\x8f\xda\xf8", +"\x87\x14" => "\x8f\xda\xf9", +"\x87\x18" => "\xc3\xd8", +"\x87\x19" => "\x8f\xda\xfa", +"\x87\x1a" => "\xe9\xf4", +"\x87\x1c" => "\xcc\xaa", +"\x87\x1e" => "\x8f\xda\xfb", +"\x87\x1f" => "\x8f\xda\xfc", +"\x87\x21" => "\x8f\xda\xfd", +"\x87\x23" => "\x8f\xda\xfe", +"\x87\x25" => "\xe9\xf2", +"\x87\x28" => "\x8f\xdb\xa1", +"\x87\x29" => "\xe9\xf3", +"\x87\x2e" => "\x8f\xdb\xa2", +"\x87\x2f" => "\x8f\xdb\xa3", +"\x87\x31" => "\x8f\xdb\xa4", +"\x87\x32" => "\x8f\xdb\xa5", +"\x87\x34" => "\xe9\xee", +"\x87\x37" => "\xe9\xf0", +"\x87\x39" => "\x8f\xdb\xa6", +"\x87\x3a" => "\x8f\xdb\xa7", +"\x87\x3b" => "\xe9\xf1", +"\x87\x3c" => "\x8f\xdb\xa8", +"\x87\x3d" => "\x8f\xdb\xa9", +"\x87\x3e" => "\x8f\xdb\xaa", +"\x87\x3f" => "\xe9\xef", +"\x87\x40" => "\x8f\xdb\xab", +"\x87\x43" => "\x8f\xdb\xac", +"\x87\x45" => "\x8f\xdb\xad", +"\x87\x49" => "\xc0\xe6", +"\x87\x4b" => "\xcf\xb9", +"\x87\x4c" => "\xe9\xf8", +"\x87\x4d" => "\x8f\xdb\xae", +"\x87\x4e" => "\xe9\xf9", +"\x87\x53" => "\xea\xa1", +"\x87\x55" => "\xbf\xaa", +"\x87\x57" => "\xe9\xfb", +"\x87\x58" => "\x8f\xdb\xaf", +"\x87\x59" => "\xe9\xfe", +"\x87\x5d" => "\x8f\xdb\xb0", +"\x87\x5f" => "\xe9\xf6", +"\x87\x60" => "\xe9\xf5", +"\x87\x61" => "\x8f\xdb\xb1", +"\x87\x63" => "\xea\xa2", +"\x87\x64" => "\x8f\xdb\xb2", +"\x87\x65" => "\x8f\xdb\xb3", +"\x87\x66" => "\xb2\xdc", +"\x87\x68" => "\xe9\xfc", +"\x87\x6a" => "\xea\xa3", +"\x87\x6e" => "\xe9\xfd", +"\x87\x6f" => "\x8f\xdb\xb4", +"\x87\x71" => "\x8f\xdb\xb5", +"\x87\x72" => "\x8f\xdb\xb6", +"\x87\x74" => "\xe9\xfa", +"\x87\x76" => "\xc4\xb3", +"\x87\x78" => "\xe9\xf7", +"\x87\x7b" => "\x8f\xdb\xb7", +"\x87\x7f" => "\xc7\xe8", +"\x87\x82" => "\xea\xa7", +"\x87\x83" => "\x8f\xdb\xb8", +"\x87\x84" => "\x8f\xdb\xb9", +"\x87\x85" => "\x8f\xdb\xba", +"\x87\x86" => "\x8f\xdb\xbb", +"\x87\x87" => "\x8f\xdb\xbc", +"\x87\x88" => "\x8f\xdb\xbd", +"\x87\x89" => "\x8f\xdb\xbe", +"\x87\x8b" => "\x8f\xdb\xbf", +"\x87\x8c" => "\x8f\xdb\xc0", +"\x87\x8d" => "\xcd\xbb", +"\x87\x90" => "\x8f\xdb\xc1", +"\x87\x93" => "\x8f\xdb\xc2", +"\x87\x95" => "\x8f\xdb\xc3", +"\x87\x97" => "\x8f\xdb\xc4", +"\x87\x98" => "\x8f\xdb\xc5", +"\x87\x99" => "\x8f\xdb\xc6", +"\x87\x9e" => "\x8f\xdb\xc7", +"\x87\x9f" => "\xea\xa6", +"\x87\xa0" => "\x8f\xdb\xc8", +"\x87\xa2" => "\xea\xa5", +"\x87\xa3" => "\x8f\xdb\xc9", +"\x87\xa7" => "\x8f\xdb\xca", +"\x87\xab" => "\xea\xae", +"\x87\xac" => "\x8f\xdb\xcb", +"\x87\xad" => "\x8f\xdb\xcc", +"\x87\xae" => "\x8f\xdb\xcd", +"\x87\xaf" => "\xea\xa8", +"\x87\xb1" => "\x8f\xdb\xce", +"\x87\xb3" => "\xea\xb0", +"\x87\xb5" => "\x8f\xdb\xcf", +"\x87\xba" => "\xcd\xe6", +"\x87\xbb" => "\xea\xb3", +"\x87\xbd" => "\xea\xaa", +"\x87\xbe" => "\x8f\xdb\xd0", +"\x87\xbf" => "\x8f\xdb\xd1", +"\x87\xc0" => "\xea\xab", +"\x87\xc1" => "\x8f\xdb\xd2", +"\x87\xc4" => "\xea\xaf", +"\x87\xc6" => "\xea\xb2", +"\x87\xc7" => "\xea\xb1", +"\x87\xc8" => "\x8f\xdb\xd3", +"\x87\xc9" => "\x8f\xdb\xd4", +"\x87\xca" => "\x8f\xdb\xd5", +"\x87\xcb" => "\xea\xa9", +"\x87\xce" => "\x8f\xdb\xd6", +"\x87\xd0" => "\xea\xac", +"\x87\xd2" => "\xea\xbd", +"\x87\xd5" => "\x8f\xdb\xd7", +"\x87\xd6" => "\x8f\xdb\xd8", +"\x87\xd9" => "\x8f\xdb\xd9", +"\x87\xda" => "\x8f\xdb\xda", +"\x87\xdc" => "\x8f\xdb\xdb", +"\x87\xdf" => "\x8f\xdb\xdc", +"\x87\xe0" => "\xea\xb6", +"\x87\xe2" => "\x8f\xdb\xdd", +"\x87\xe3" => "\x8f\xdb\xde", +"\x87\xe4" => "\x8f\xdb\xdf", +"\x87\xea" => "\x8f\xdb\xe0", +"\x87\xeb" => "\x8f\xdb\xe1", +"\x87\xed" => "\x8f\xdb\xe2", +"\x87\xef" => "\xea\xb4", +"\x87\xf1" => "\x8f\xdb\xe3", +"\x87\xf2" => "\xea\xb5", +"\x87\xf3" => "\x8f\xdb\xe4", +"\x87\xf6" => "\xea\xba", +"\x87\xf7" => "\xea\xbb", +"\x87\xf8" => "\x8f\xdb\xe5", +"\x87\xf9" => "\xb3\xaa", +"\x87\xfa" => "\x8f\xdb\xe6", +"\x87\xfb" => "\xb5\xc2", +"\x87\xfe" => "\xea\xb9", +"\x87\xff" => "\x8f\xdb\xe7", +"\x88\x01" => "\x8f\xdb\xe8", +"\x88\x03" => "\x8f\xdb\xe9", +"\x88\x05" => "\xea\xa4", +"\x88\x06" => "\x8f\xdb\xea", +"\x88\x09" => "\x8f\xdb\xeb", +"\x88\x0a" => "\x8f\xdb\xec", +"\x88\x0b" => "\x8f\xdb\xed", +"\x88\x0d" => "\xea\xb8", +"\x88\x0e" => "\xea\xbc", +"\x88\x0f" => "\xea\xb7", +"\x88\x10" => "\x8f\xdb\xee", +"\x88\x11" => "\xea\xbe", +"\x88\x12" => "\x8f\xdb\xf0", +"\x88\x13" => "\x8f\xdb\xf1", +"\x88\x14" => "\x8f\xdb\xf2", +"\x88\x15" => "\xea\xc0", +"\x88\x16" => "\xea\xbf", +"\x88\x18" => "\x8f\xdb\xf3", +"\x88\x19" => "\x8f\xdb\xef", +"\x88\x1a" => "\x8f\xdb\xf4", +"\x88\x1b" => "\x8f\xdb\xf5", +"\x88\x1c" => "\x8f\xdb\xf6", +"\x88\x1e" => "\x8f\xdb\xf7", +"\x88\x1f" => "\x8f\xdb\xf8", +"\x88\x21" => "\xea\xc2", +"\x88\x22" => "\xea\xc1", +"\x88\x23" => "\xe9\xda", +"\x88\x27" => "\xea\xc6", +"\x88\x28" => "\x8f\xdb\xf9", +"\x88\x2d" => "\x8f\xdb\xfa", +"\x88\x2e" => "\x8f\xdb\xfb", +"\x88\x30" => "\x8f\xdb\xfc", +"\x88\x31" => "\xea\xc3", +"\x88\x32" => "\x8f\xdb\xfd", +"\x88\x35" => "\x8f\xdb\xfe", +"\x88\x36" => "\xea\xc4", +"\x88\x39" => "\xea\xc5", +"\x88\x3a" => "\x8f\xdc\xa1", +"\x88\x3b" => "\xea\xc7", +"\x88\x3c" => "\x8f\xdc\xa2", +"\x88\x40" => "\xb7\xec", +"\x88\x41" => "\x8f\xdc\xa3", +"\x88\x42" => "\xea\xc9", +"\x88\x43" => "\x8f\xdc\xa4", +"\x88\x44" => "\xea\xc8", +"\x88\x45" => "\x8f\xdc\xa5", +"\x88\x46" => "\xbd\xb0", +"\x88\x48" => "\x8f\xdc\xa6", +"\x88\x49" => "\x8f\xdc\xa7", +"\x88\x4a" => "\x8f\xdc\xa8", +"\x88\x4b" => "\x8f\xdc\xa9", +"\x88\x4c" => "\xb9\xd4", +"\x88\x4d" => "\xde\xa7", +"\x88\x4e" => "\x8f\xdc\xaa", +"\x88\x51" => "\x8f\xdc\xab", +"\x88\x52" => "\xea\xca", +"\x88\x53" => "\xbd\xd1", +"\x88\x55" => "\x8f\xdc\xac", +"\x88\x56" => "\x8f\xdc\xad", +"\x88\x57" => "\xb3\xb9", +"\x88\x58" => "\x8f\xdc\xae", +"\x88\x59" => "\xea\xcb", +"\x88\x5a" => "\x8f\xdc\xaf", +"\x88\x5b" => "\xb1\xd2", +"\x88\x5c" => "\x8f\xdc\xb0", +"\x88\x5d" => "\xbe\xd7", +"\x88\x5e" => "\xea\xcc", +"\x88\x5f" => "\x8f\xdc\xb1", +"\x88\x60" => "\x8f\xdc\xb2", +"\x88\x61" => "\xb9\xd5", +"\x88\x62" => "\xea\xcd", +"\x88\x63" => "\xb0\xe1", +"\x88\x64" => "\x8f\xdc\xb3", +"\x88\x68" => "\xc9\xbd", +"\x88\x69" => "\x8f\xdc\xb4", +"\x88\x6b" => "\xea\xce", +"\x88\x70" => "\xbf\xea", +"\x88\x71" => "\x8f\xdc\xb5", +"\x88\x72" => "\xea\xd5", +"\x88\x75" => "\xea\xd2", +"\x88\x77" => "\xc3\xef", +"\x88\x79" => "\x8f\xdc\xb6", +"\x88\x7b" => "\x8f\xdc\xb7", +"\x88\x7d" => "\xea\xd3", +"\x88\x7e" => "\xea\xd0", +"\x88\x7f" => "\xb6\xde", +"\x88\x80" => "\x8f\xdc\xb8", +"\x88\x81" => "\xea\xcf", +"\x88\x82" => "\xea\xd6", +"\x88\x88" => "\xb7\xb6", +"\x88\x8b" => "\xc2\xde", +"\x88\x8d" => "\xea\xdc", +"\x88\x92" => "\xea\xd8", +"\x88\x96" => "\xc2\xb5", +"\x88\x97" => "\xea\xd7", +"\x88\x98" => "\x8f\xdc\xb9", +"\x88\x99" => "\xea\xda", +"\x88\x9a" => "\x8f\xdc\xba", +"\x88\x9b" => "\x8f\xdc\xbb", +"\x88\x9c" => "\x8f\xdc\xbc", +"\x88\x9e" => "\xea\xd1", +"\x88\x9f" => "\x8f\xdc\xbd", +"\x88\xa0" => "\x8f\xdc\xbe", +"\x88\xa2" => "\xea\xdb", +"\x88\xa4" => "\xea\xdd", +"\x88\xa8" => "\x8f\xdc\xbf", +"\x88\xaa" => "\x8f\xdc\xc0", +"\x88\xab" => "\xc8\xef", +"\x88\xae" => "\xea\xd9", +"\x88\xb0" => "\xea\xde", +"\x88\xb1" => "\xea\xe0", +"\x88\xb4" => "\xb8\xd3", +"\x88\xb5" => "\xea\xd4", +"\x88\xb7" => "\xb0\xc1", +"\x88\xba" => "\x8f\xdc\xc1", +"\x88\xbd" => "\x8f\xdc\xc2", +"\x88\xbe" => "\x8f\xdc\xc3", +"\x88\xbf" => "\xea\xdf", +"\x88\xc0" => "\x8f\xdc\xc4", +"\x88\xc1" => "\xba\xdb", +"\x88\xc2" => "\xce\xf6", +"\x88\xc3" => "\xea\xe1", +"\x88\xc4" => "\xea\xe2", +"\x88\xc5" => "\xc1\xf5", +"\x88\xca" => "\x8f\xdc\xc5", +"\x88\xcb" => "\x8f\xdc\xc6", +"\x88\xcc" => "\x8f\xdc\xc7", +"\x88\xcd" => "\x8f\xdc\xc8", +"\x88\xce" => "\x8f\xdc\xc9", +"\x88\xcf" => "\xce\xa2", +"\x88\xd1" => "\x8f\xdc\xca", +"\x88\xd2" => "\x8f\xdc\xcb", +"\x88\xd3" => "\x8f\xdc\xcc", +"\x88\xd4" => "\xea\xe3", +"\x88\xd5" => "\xcd\xb5", +"\x88\xd8" => "\xea\xe4", +"\x88\xd9" => "\xea\xe5", +"\x88\xdb" => "\x8f\xdc\xcd", +"\x88\xdc" => "\xca\xe4", +"\x88\xdd" => "\xea\xe6", +"\x88\xde" => "\x8f\xdc\xce", +"\x88\xdf" => "\xba\xc0", +"\x88\xe1" => "\xce\xa3", +"\x88\xe7" => "\x8f\xdc\xcf", +"\x88\xe8" => "\xea\xeb", +"\x88\xef" => "\x8f\xdc\xd0", +"\x88\xf0" => "\x8f\xdc\xd1", +"\x88\xf1" => "\x8f\xdc\xd2", +"\x88\xf2" => "\xea\xec", +"\x88\xf3" => "\xbe\xd8", +"\x88\xf4" => "\xea\xea", +"\x88\xf5" => "\x8f\xdc\xd3", +"\x88\xf7" => "\x8f\xdc\xd4", +"\x88\xf8" => "\xcd\xe7", +"\x88\xf9" => "\xea\xe7", +"\x88\xfc" => "\xea\xe9", +"\x88\xfd" => "\xc0\xbd", +"\x88\xfe" => "\xbf\xfe", +"\x89\x01" => "\x8f\xdc\xd5", +"\x89\x02" => "\xea\xe8", +"\x89\x04" => "\xea\xed", +"\x89\x06" => "\x8f\xdc\xd6", +"\x89\x07" => "\xca\xa3", +"\x89\x0a" => "\xea\xef", +"\x89\x0c" => "\xea\xee", +"\x89\x0d" => "\x8f\xdc\xd7", +"\x89\x0e" => "\x8f\xdc\xd8", +"\x89\x0f" => "\x8f\xdc\xd9", +"\x89\x10" => "\xb3\xec", +"\x89\x12" => "\xcb\xab", +"\x89\x13" => "\xea\xf0", +"\x89\x15" => "\x8f\xdc\xda", +"\x89\x16" => "\x8f\xdc\xdb", +"\x89\x18" => "\x8f\xdc\xdc", +"\x89\x19" => "\x8f\xdc\xdd", +"\x89\x1a" => "\x8f\xdc\xde", +"\x89\x1c" => "\x8f\xdc\xdf", +"\x89\x1d" => "\xea\xfc", +"\x89\x1e" => "\xea\xf2", +"\x89\x20" => "\x8f\xdc\xe0", +"\x89\x25" => "\xea\xf3", +"\x89\x26" => "\x8f\xdc\xe1", +"\x89\x27" => "\x8f\xdc\xe2", +"\x89\x28" => "\x8f\xdc\xe3", +"\x89\x2a" => "\xea\xf4", +"\x89\x2b" => "\xea\xf5", +"\x89\x30" => "\x8f\xdc\xe4", +"\x89\x31" => "\x8f\xdc\xe5", +"\x89\x32" => "\x8f\xdc\xe6", +"\x89\x35" => "\x8f\xdc\xe7", +"\x89\x36" => "\xea\xf9", +"\x89\x38" => "\xea\xfa", +"\x89\x39" => "\x8f\xdc\xe8", +"\x89\x3a" => "\x8f\xdc\xe9", +"\x89\x3b" => "\xea\xf8", +"\x89\x3e" => "\x8f\xdc\xea", +"\x89\x40" => "\x8f\xdc\xeb", +"\x89\x41" => "\xea\xf6", +"\x89\x42" => "\x8f\xdc\xec", +"\x89\x43" => "\xea\xf1", +"\x89\x44" => "\xea\xf7", +"\x89\x45" => "\x8f\xdc\xed", +"\x89\x46" => "\x8f\xdc\xee", +"\x89\x49" => "\x8f\xdc\xef", +"\x89\x4c" => "\xea\xfb", +"\x89\x4d" => "\xf0\xb7", +"\x89\x4f" => "\x8f\xdc\xf0", +"\x89\x52" => "\x8f\xdc\xf1", +"\x89\x56" => "\xb2\xa8", +"\x89\x57" => "\x8f\xdc\xf2", +"\x89\x5a" => "\x8f\xdc\xf3", +"\x89\x5b" => "\x8f\xdc\xf4", +"\x89\x5c" => "\x8f\xdc\xf5", +"\x89\x5e" => "\xea\xfe", +"\x89\x5f" => "\xb6\xdf", +"\x89\x60" => "\xea\xfd", +"\x89\x61" => "\x8f\xdc\xf6", +"\x89\x62" => "\x8f\xdc\xf7", +"\x89\x63" => "\x8f\xdc\xf8", +"\x89\x64" => "\xeb\xa2", +"\x89\x66" => "\xeb\xa1", +"\x89\x6a" => "\xeb\xa4", +"\x89\x6b" => "\x8f\xdc\xf9", +"\x89\x6d" => "\xeb\xa3", +"\x89\x6e" => "\x8f\xdc\xfa", +"\x89\x6f" => "\xeb\xa5", +"\x89\x70" => "\x8f\xdc\xfb", +"\x89\x72" => "\xbd\xb1", +"\x89\x73" => "\x8f\xdc\xfc", +"\x89\x74" => "\xeb\xa6", +"\x89\x75" => "\x8f\xdc\xfd", +"\x89\x77" => "\xeb\xa7", +"\x89\x7a" => "\x8f\xdc\xfe", +"\x89\x7b" => "\x8f\xdd\xa1", +"\x89\x7c" => "\x8f\xdd\xa2", +"\x89\x7d" => "\x8f\xdd\xa3", +"\x89\x7e" => "\xeb\xa8", +"\x89\x7f" => "\xc0\xbe", +"\x89\x81" => "\xcd\xd7", +"\x89\x83" => "\xeb\xa9", +"\x89\x86" => "\xca\xa4", +"\x89\x87" => "\xc7\xc6", +"\x89\x88" => "\xeb\xaa", +"\x89\x89" => "\x8f\xdd\xa4", +"\x89\x8a" => "\xeb\xab", +"\x89\x8b" => "\xb8\xab", +"\x89\x8d" => "\x8f\xdd\xa5", +"\x89\x8f" => "\xb5\xac", +"\x89\x90" => "\x8f\xdd\xa6", +"\x89\x93" => "\xeb\xac", +"\x89\x94" => "\x8f\xdd\xa7", +"\x89\x95" => "\x8f\xdd\xa8", +"\x89\x96" => "\xbb\xeb", +"\x89\x97" => "\xc7\xc1", +"\x89\x98" => "\xeb\xad", +"\x89\x9a" => "\xb3\xd0", +"\x89\x9b" => "\x8f\xdd\xa9", +"\x89\x9c" => "\x8f\xdd\xaa", +"\x89\x9f" => "\x8f\xdd\xab", +"\x89\xa0" => "\x8f\xdd\xac", +"\x89\xa1" => "\xeb\xae", +"\x89\xa5" => "\x8f\xdd\xad", +"\x89\xa6" => "\xeb\xb0", +"\x89\xa7" => "\xcd\xf7", +"\x89\xa9" => "\xeb\xaf", +"\x89\xaa" => "\xbf\xc6", +"\x89\xac" => "\xeb\xb1", +"\x89\xaf" => "\xeb\xb2", +"\x89\xb0" => "\x8f\xdd\xae", +"\x89\xb2" => "\xeb\xb3", +"\x89\xb3" => "\xb4\xd1", +"\x89\xb4" => "\x8f\xdd\xaf", +"\x89\xb5" => "\x8f\xdd\xb0", +"\x89\xb6" => "\x8f\xdd\xb1", +"\x89\xb7" => "\x8f\xdd\xb2", +"\x89\xba" => "\xeb\xb4", +"\x89\xbc" => "\x8f\xdd\xb3", +"\x89\xbd" => "\xeb\xb5", +"\x89\xbf" => "\xeb\xb6", +"\x89\xc0" => "\xeb\xb7", +"\x89\xd2" => "\xb3\xd1", +"\x89\xd4" => "\x8f\xdd\xb4", +"\x89\xd5" => "\x8f\xdd\xb5", +"\x89\xd6" => "\x8f\xdd\xb6", +"\x89\xd7" => "\x8f\xdd\xb7", +"\x89\xd8" => "\x8f\xdd\xb8", +"\x89\xda" => "\xeb\xb8", +"\x89\xdc" => "\xeb\xb9", +"\x89\xdd" => "\xeb\xba", +"\x89\xe3" => "\xb2\xf2", +"\x89\xe5" => "\x8f\xdd\xb9", +"\x89\xe6" => "\xbf\xa8", +"\x89\xe7" => "\xeb\xbb", +"\x89\xe9" => "\x8f\xdd\xba", +"\x89\xeb" => "\x8f\xdd\xbb", +"\x89\xed" => "\x8f\xdd\xbc", +"\x89\xf1" => "\x8f\xdd\xbd", +"\x89\xf3" => "\x8f\xdd\xbe", +"\x89\xf4" => "\xeb\xbc", +"\x89\xf6" => "\x8f\xdd\xbf", +"\x89\xf8" => "\xeb\xbd", +"\x89\xf9" => "\x8f\xdd\xc0", +"\x89\xfd" => "\x8f\xdd\xc1", +"\x89\xff" => "\x8f\xdd\xc2", +"\x8a\x00" => "\xb8\xc0", +"\x8a\x02" => "\xc4\xfb", +"\x8a\x03" => "\xeb\xbe", +"\x8a\x04" => "\x8f\xdd\xc3", +"\x8a\x05" => "\x8f\xdd\xc4", +"\x8a\x07" => "\x8f\xdd\xc5", +"\x8a\x08" => "\xb7\xd7", +"\x8a\x0a" => "\xbf\xd6", +"\x8a\x0c" => "\xeb\xc1", +"\x8a\x0e" => "\xc6\xa4", +"\x8a\x0f" => "\x8f\xdd\xc6", +"\x8a\x10" => "\xeb\xc0", +"\x8a\x11" => "\x8f\xdd\xc7", +"\x8a\x12" => "\x8f\xdd\xc8", +"\x8a\x13" => "\xb7\xb1", +"\x8a\x14" => "\x8f\xdd\xc9", +"\x8a\x15" => "\x8f\xdd\xca", +"\x8a\x16" => "\xeb\xbf", +"\x8a\x17" => "\xc2\xf7", +"\x8a\x18" => "\xb5\xad", +"\x8a\x1b" => "\xeb\xc2", +"\x8a\x1d" => "\xeb\xc3", +"\x8a\x1e" => "\x8f\xdd\xcb", +"\x8a\x1f" => "\xbe\xd9", +"\x8a\x20" => "\x8f\xdd\xcc", +"\x8a\x22" => "\x8f\xdd\xcd", +"\x8a\x23" => "\xb7\xed", +"\x8a\x24" => "\x8f\xdd\xce", +"\x8a\x25" => "\xeb\xc4", +"\x8a\x26" => "\x8f\xdd\xcf", +"\x8a\x2a" => "\xcb\xac", +"\x8a\x2b" => "\x8f\xdd\xd0", +"\x8a\x2c" => "\x8f\xdd\xd1", +"\x8a\x2d" => "\xc0\xdf", +"\x8a\x2f" => "\x8f\xdd\xd2", +"\x8a\x31" => "\xb5\xf6", +"\x8a\x33" => "\xcc\xf5", +"\x8a\x34" => "\xc1\xca", +"\x8a\x35" => "\x8f\xdd\xd3", +"\x8a\x36" => "\xeb\xc5", +"\x8a\x37" => "\x8f\xdd\xd4", +"\x8a\x3a" => "\xbf\xc7", +"\x8a\x3b" => "\xc3\xf0", +"\x8a\x3c" => "\xbe\xda", +"\x8a\x3d" => "\x8f\xdd\xd5", +"\x8a\x3e" => "\x8f\xdd\xd6", +"\x8a\x40" => "\x8f\xdd\xd7", +"\x8a\x41" => "\xeb\xc6", +"\x8a\x43" => "\x8f\xdd\xd8", +"\x8a\x45" => "\x8f\xdd\xd9", +"\x8a\x46" => "\xeb\xc9", +"\x8a\x47" => "\x8f\xdd\xda", +"\x8a\x48" => "\xeb\xca", +"\x8a\x49" => "\x8f\xdd\xdb", +"\x8a\x4d" => "\x8f\xdd\xdc", +"\x8a\x4e" => "\x8f\xdd\xdd", +"\x8a\x50" => "\xba\xbe", +"\x8a\x51" => "\xc2\xc2", +"\x8a\x52" => "\xeb\xc8", +"\x8a\x53" => "\x8f\xdd\xde", +"\x8a\x54" => "\xbe\xdb", +"\x8a\x55" => "\xc9\xbe", +"\x8a\x56" => "\x8f\xdd\xdf", +"\x8a\x57" => "\x8f\xdd\xe0", +"\x8a\x58" => "\x8f\xdd\xe1", +"\x8a\x5b" => "\xeb\xc7", +"\x8a\x5c" => "\x8f\xdd\xe2", +"\x8a\x5d" => "\x8f\xdd\xe3", +"\x8a\x5e" => "\xbb\xec", +"\x8a\x60" => "\xb1\xd3", +"\x8a\x61" => "\x8f\xdd\xe4", +"\x8a\x62" => "\xeb\xce", +"\x8a\x63" => "\xb7\xd8", +"\x8a\x65" => "\x8f\xdd\xe5", +"\x8a\x66" => "\xbb\xee", +"\x8a\x67" => "\x8f\xdd\xe6", +"\x8a\x69" => "\xbb\xed", +"\x8a\x6b" => "\xcf\xcd", +"\x8a\x6c" => "\xeb\xcd", +"\x8a\x6d" => "\xeb\xcc", +"\x8a\x6e" => "\xc1\xa7", +"\x8a\x70" => "\xb5\xcd", +"\x8a\x71" => "\xcf\xc3", +"\x8a\x72" => "\xb3\xba", +"\x8a\x73" => "\xbe\xdc", +"\x8a\x75" => "\x8f\xdd\xe7", +"\x8a\x76" => "\x8f\xdd\xe8", +"\x8a\x77" => "\x8f\xdd\xe9", +"\x8a\x79" => "\x8f\xdd\xea", +"\x8a\x7a" => "\x8f\xdd\xeb", +"\x8a\x7b" => "\x8f\xdd\xec", +"\x8a\x7c" => "\xeb\xcb", +"\x8a\x7e" => "\x8f\xdd\xed", +"\x8a\x7f" => "\x8f\xdd\xee", +"\x8a\x80" => "\x8f\xdd\xef", +"\x8a\x82" => "\xeb\xd0", +"\x8a\x83" => "\x8f\xdd\xf0", +"\x8a\x84" => "\xeb\xd1", +"\x8a\x85" => "\xeb\xcf", +"\x8a\x86" => "\x8f\xdd\xf1", +"\x8a\x87" => "\xb8\xd8", +"\x8a\x89" => "\xcd\xc0", +"\x8a\x8b" => "\x8f\xdd\xf2", +"\x8a\x8c" => "\xbb\xef", +"\x8a\x8d" => "\xc7\xa7", +"\x8a\x8f" => "\x8f\xdd\xf3", +"\x8a\x90" => "\x8f\xdd\xf4", +"\x8a\x91" => "\xeb\xd4", +"\x8a\x92" => "\x8f\xdd\xf5", +"\x8a\x93" => "\xc0\xc0", +"\x8a\x95" => "\xc3\xc2", +"\x8a\x96" => "\x8f\xdd\xf6", +"\x8a\x97" => "\x8f\xdd\xf7", +"\x8a\x98" => "\xcd\xb6", +"\x8a\x99" => "\x8f\xdd\xf8", +"\x8a\x9a" => "\xeb\xd7", +"\x8a\x9e" => "\xb8\xec", +"\x8a\x9f" => "\x8f\xdd\xf9", +"\x8a\xa0" => "\xc0\xbf", +"\x8a\xa1" => "\xeb\xd3", +"\x8a\xa3" => "\xeb\xd8", +"\x8a\xa4" => "\xb8\xed", +"\x8a\xa5" => "\xeb\xd5", +"\x8a\xa6" => "\xeb\xd6", +"\x8a\xa7" => "\x8f\xdd\xfa", +"\x8a\xa8" => "\xeb\xd2", +"\x8a\xa9" => "\x8f\xdd\xfb", +"\x8a\xac" => "\xc0\xe2", +"\x8a\xad" => "\xc6\xc9", +"\x8a\xae" => "\x8f\xdd\xfc", +"\x8a\xaf" => "\x8f\xdd\xfd", +"\x8a\xb0" => "\xc3\xaf", +"\x8a\xb2" => "\xb2\xdd", +"\x8a\xb3" => "\x8f\xdd\xfe", +"\x8a\xb6" => "\x8f\xde\xa1", +"\x8a\xb7" => "\x8f\xde\xa2", +"\x8a\xb9" => "\xc8\xf0", +"\x8a\xbb" => "\x8f\xde\xa3", +"\x8a\xbc" => "\xb5\xc3", +"\x8a\xbe" => "\x8f\xde\xa4", +"\x8a\xbf" => "\xc4\xb4", +"\x8a\xc2" => "\xeb\xdb", +"\x8a\xc3" => "\x8f\xde\xa5", +"\x8a\xc4" => "\xeb\xd9", +"\x8a\xc6" => "\x8f\xde\xa6", +"\x8a\xc7" => "\xc3\xcc", +"\x8a\xc8" => "\x8f\xde\xa7", +"\x8a\xc9" => "\x8f\xde\xa8", +"\x8a\xca" => "\x8f\xde\xa9", +"\x8a\xcb" => "\xc0\xc1", +"\x8a\xcc" => "\xb4\xd2", +"\x8a\xcd" => "\xeb\xda", +"\x8a\xcf" => "\xbf\xdb", +"\x8a\xd1" => "\x8f\xde\xaa", +"\x8a\xd2" => "\xce\xca", +"\x8a\xd3" => "\x8f\xde\xab", +"\x8a\xd4" => "\x8f\xde\xac", +"\x8a\xd5" => "\x8f\xde\xad", +"\x8a\xd6" => "\xcf\xc0", +"\x8a\xd7" => "\x8f\xde\xae", +"\x8a\xda" => "\xeb\xdc", +"\x8a\xdb" => "\xeb\xe7", +"\x8a\xdc" => "\xc4\xb5", +"\x8a\xdd" => "\x8f\xde\xaf", +"\x8a\xde" => "\xeb\xe6", +"\x8a\xdf" => "\x8f\xde\xb0", +"\x8a\xe0" => "\xeb\xe3", +"\x8a\xe1" => "\xeb\xeb", +"\x8a\xe2" => "\xeb\xe4", +"\x8a\xe4" => "\xeb\xe0", +"\x8a\xe6" => "\xc4\xfc", +"\x8a\xe7" => "\xeb\xdf", +"\x8a\xeb" => "\xeb\xdd", +"\x8a\xec" => "\x8f\xde\xb1", +"\x8a\xed" => "\xcd\xa1", +"\x8a\xee" => "\xbb\xf0", +"\x8a\xf0" => "\x8f\xde\xb2", +"\x8a\xf1" => "\xeb\xe1", +"\x8a\xf3" => "\xeb\xde", +"\x8a\xf4" => "\x8f\xde\xb3", +"\x8a\xf5" => "\x8f\xde\xb4", +"\x8a\xf6" => "\x8f\xde\xb5", +"\x8a\xf7" => "\xeb\xe5", +"\x8a\xf8" => "\xbd\xf4", +"\x8a\xfa" => "\xb8\xc1", +"\x8a\xfc" => "\x8f\xde\xb6", +"\x8a\xfe" => "\xc2\xfa", +"\x8a\xff" => "\x8f\xde\xb7", +"\x8b\x00" => "\xcb\xc5", +"\x8b\x01" => "\xb1\xda", +"\x8b\x02" => "\xb0\xe2", +"\x8b\x04" => "\xc6\xa5", +"\x8b\x05" => "\x8f\xde\xb8", +"\x8b\x06" => "\x8f\xde\xb9", +"\x8b\x07" => "\xeb\xe9", +"\x8b\x0a" => "\x8f\xde\xbf", +"\x8b\x0b" => "\x8f\xde\xba", +"\x8b\x0c" => "\xeb\xe8", +"\x8b\x0e" => "\xc6\xe6", +"\x8b\x10" => "\xeb\xed", +"\x8b\x11" => "\x8f\xde\xbb", +"\x8b\x14" => "\xeb\xe2", +"\x8b\x16" => "\xeb\xec", +"\x8b\x17" => "\xeb\xee", +"\x8b\x19" => "\xb8\xac", +"\x8b\x1a" => "\xeb\xea", +"\x8b\x1b" => "\xb9\xd6", +"\x8b\x1c" => "\x8f\xde\xbc", +"\x8b\x1d" => "\xbc\xd5", +"\x8b\x1e" => "\x8f\xde\xbd", +"\x8b\x1f" => "\x8f\xde\xbe", +"\x8b\x20" => "\xeb\xef", +"\x8b\x21" => "\xcd\xd8", +"\x8b\x26" => "\xeb\xf2", +"\x8b\x28" => "\xeb\xf5", +"\x8b\x2b" => "\xeb\xf3", +"\x8b\x2c" => "\xc9\xb5", +"\x8b\x2d" => "\x8f\xde\xc0", +"\x8b\x30" => "\x8f\xde\xc1", +"\x8b\x33" => "\xeb\xf0", +"\x8b\x37" => "\x8f\xde\xc2", +"\x8b\x39" => "\xb6\xe0", +"\x8b\x3c" => "\x8f\xde\xc3", +"\x8b\x3e" => "\xeb\xf4", +"\x8b\x41" => "\xeb\xf6", +"\x8b\x42" => "\x8f\xde\xc4", +"\x8b\x43" => "\x8f\xde\xc5", +"\x8b\x44" => "\x8f\xde\xc6", +"\x8b\x45" => "\x8f\xde\xc7", +"\x8b\x46" => "\x8f\xde\xc8", +"\x8b\x48" => "\x8f\xde\xc9", +"\x8b\x49" => "\xeb\xfa", +"\x8b\x4c" => "\xeb\xf7", +"\x8b\x4d" => "\x8f\xde\xce", +"\x8b\x4e" => "\xeb\xf9", +"\x8b\x4f" => "\xeb\xf8", +"\x8b\x52" => "\x8f\xde\xca", +"\x8b\x53" => "\x8f\xde\xcb", +"\x8b\x54" => "\x8f\xde\xcc", +"\x8b\x56" => "\xeb\xfb", +"\x8b\x58" => "\xbc\xb1", +"\x8b\x59" => "\x8f\xde\xcd", +"\x8b\x5a" => "\xeb\xfd", +"\x8b\x5b" => "\xeb\xfc", +"\x8b\x5c" => "\xc9\xe8", +"\x8b\x5e" => "\x8f\xde\xcf", +"\x8b\x5f" => "\xec\xa1", +"\x8b\x63" => "\x8f\xde\xd0", +"\x8b\x66" => "\xb7\xd9", +"\x8b\x6b" => "\xeb\xfe", +"\x8b\x6c" => "\xec\xa2", +"\x8b\x6d" => "\x8f\xde\xd1", +"\x8b\x6f" => "\xec\xa3", +"\x8b\x70" => "\xb5\xc4", +"\x8b\x71" => "\xe6\xc1", +"\x8b\x72" => "\xbe\xf9", +"\x8b\x74" => "\xec\xa4", +"\x8b\x76" => "\x8f\xde\xd2", +"\x8b\x77" => "\xb8\xee", +"\x8b\x78" => "\x8f\xde\xd3", +"\x8b\x79" => "\x8f\xde\xd4", +"\x8b\x7c" => "\x8f\xde\xd5", +"\x8b\x7d" => "\xec\xa5", +"\x8b\x7e" => "\x8f\xde\xd6", +"\x8b\x80" => "\xec\xa6", +"\x8b\x81" => "\x8f\xde\xd7", +"\x8b\x83" => "\xbb\xbe", +"\x8b\x84" => "\x8f\xde\xd8", +"\x8b\x85" => "\x8f\xde\xd9", +"\x8b\x8a" => "\xda\xce", +"\x8b\x8b" => "\x8f\xde\xda", +"\x8b\x8c" => "\xec\xa7", +"\x8b\x8d" => "\x8f\xde\xdb", +"\x8b\x8e" => "\xec\xa8", +"\x8b\x8f" => "\x8f\xde\xdc", +"\x8b\x90" => "\xbd\xb2", +"\x8b\x92" => "\xec\xa9", +"\x8b\x93" => "\xec\xaa", +"\x8b\x94" => "\x8f\xde\xdd", +"\x8b\x95" => "\x8f\xde\xde", +"\x8b\x96" => "\xec\xab", +"\x8b\x99" => "\xec\xac", +"\x8b\x9a" => "\xec\xad", +"\x8b\x9c" => "\x8f\xde\xdf", +"\x8b\x9e" => "\x8f\xde\xe0", +"\x8b\x9f" => "\x8f\xde\xe1", +"\x8c\x37" => "\xc3\xab", +"\x8c\x38" => "\x8f\xde\xe2", +"\x8c\x39" => "\x8f\xde\xe3", +"\x8c\x3a" => "\xec\xae", +"\x8c\x3d" => "\x8f\xde\xe4", +"\x8c\x3e" => "\x8f\xde\xe5", +"\x8c\x3f" => "\xec\xb0", +"\x8c\x41" => "\xec\xaf", +"\x8c\x45" => "\x8f\xde\xe6", +"\x8c\x46" => "\xc6\xa6", +"\x8c\x47" => "\x8f\xde\xe7", +"\x8c\x48" => "\xec\xb1", +"\x8c\x49" => "\x8f\xde\xe8", +"\x8c\x4a" => "\xcb\xad", +"\x8c\x4b" => "\x8f\xde\xe9", +"\x8c\x4c" => "\xec\xb2", +"\x8c\x4e" => "\xec\xb3", +"\x8c\x4f" => "\x8f\xde\xea", +"\x8c\x50" => "\xec\xb4", +"\x8c\x51" => "\x8f\xde\xeb", +"\x8c\x53" => "\x8f\xde\xec", +"\x8c\x54" => "\x8f\xde\xed", +"\x8c\x55" => "\xec\xb5", +"\x8c\x57" => "\x8f\xde\xee", +"\x8c\x58" => "\x8f\xde\xef", +"\x8c\x59" => "\x8f\xde\xf2", +"\x8c\x5a" => "\xc6\xda", +"\x8c\x5b" => "\x8f\xde\xf0", +"\x8c\x5d" => "\x8f\xde\xf1", +"\x8c\x61" => "\xbe\xdd", +"\x8c\x62" => "\xec\xb6", +"\x8c\x63" => "\x8f\xde\xf3", +"\x8c\x64" => "\x8f\xde\xf4", +"\x8c\x66" => "\x8f\xde\xf5", +"\x8c\x68" => "\x8f\xde\xf6", +"\x8c\x69" => "\x8f\xde\xf7", +"\x8c\x6a" => "\xb9\xeb", +"\x8c\x6b" => "\xd0\xae", +"\x8c\x6c" => "\xec\xb7", +"\x8c\x6d" => "\x8f\xde\xf8", +"\x8c\x73" => "\x8f\xde\xf9", +"\x8c\x75" => "\x8f\xde\xfa", +"\x8c\x76" => "\x8f\xde\xfb", +"\x8c\x78" => "\xec\xb8", +"\x8c\x79" => "\xc9\xbf", +"\x8c\x7a" => "\xec\xb9", +"\x8c\x7b" => "\x8f\xde\xfc", +"\x8c\x7c" => "\xec\xc1", +"\x8c\x7e" => "\x8f\xde\xfd", +"\x8c\x82" => "\xec\xba", +"\x8c\x85" => "\xec\xbc", +"\x8c\x86" => "\x8f\xde\xfe", +"\x8c\x87" => "\x8f\xdf\xa1", +"\x8c\x89" => "\xec\xbb", +"\x8c\x8a" => "\xec\xbd", +"\x8c\x8b" => "\x8f\xdf\xa2", +"\x8c\x8c" => "\xcb\xc6", +"\x8c\x8d" => "\xec\xbe", +"\x8c\x8e" => "\xec\xbf", +"\x8c\x90" => "\x8f\xdf\xa3", +"\x8c\x92" => "\x8f\xdf\xa4", +"\x8c\x93" => "\x8f\xdf\xa5", +"\x8c\x94" => "\xec\xc0", +"\x8c\x98" => "\xec\xc2", +"\x8c\x99" => "\x8f\xdf\xa6", +"\x8c\x9b" => "\x8f\xdf\xa7", +"\x8c\x9c" => "\x8f\xdf\xa8", +"\x8c\x9d" => "\xb3\xad", +"\x8c\x9e" => "\xc4\xe7", +"\x8c\xa0" => "\xc9\xe9", +"\x8c\xa1" => "\xba\xe2", +"\x8c\xa2" => "\xb9\xd7", +"\x8c\xa4" => "\x8f\xdf\xa9", +"\x8c\xa7" => "\xc9\xcf", +"\x8c\xa8" => "\xb2\xdf", +"\x8c\xa9" => "\xc8\xce", +"\x8c\xaa" => "\xec\xc5", +"\x8c\xab" => "\xb4\xd3", +"\x8c\xac" => "\xc0\xd5", +"\x8c\xad" => "\xec\xc4", +"\x8c\xae" => "\xec\xc9", +"\x8c\xaf" => "\xc3\xf9", +"\x8c\xb0" => "\xcc\xe3", +"\x8c\xb2" => "\xec\xc7", +"\x8c\xb3" => "\xec\xc8", +"\x8c\xb4" => "\xb5\xae", +"\x8c\xb6" => "\xec\xca", +"\x8c\xb7" => "\xc7\xe3", +"\x8c\xb8" => "\xc2\xdf", +"\x8c\xb9" => "\x8f\xdf\xaa", +"\x8c\xba" => "\x8f\xdf\xab", +"\x8c\xbb" => "\xc8\xf1", +"\x8c\xbc" => "\xc5\xbd", +"\x8c\xbd" => "\xec\xc6", +"\x8c\xbf" => "\xcb\xc7", +"\x8c\xc0" => "\xb2\xec", +"\x8c\xc1" => "\xec\xcc", +"\x8c\xc2" => "\xcf\xa8", +"\x8c\xc3" => "\xc4\xc2", +"\x8c\xc4" => "\xcf\xc5", +"\x8c\xc5" => "\x8f\xdf\xac", +"\x8c\xc6" => "\x8f\xdf\xad", +"\x8c\xc7" => "\xbb\xf1", +"\x8c\xc8" => "\xec\xcb", +"\x8c\xc9" => "\x8f\xdf\xae", +"\x8c\xca" => "\xc2\xb1", +"\x8c\xcb" => "\x8f\xdf\xaf", +"\x8c\xcd" => "\xec\xdc", +"\x8c\xce" => "\xc1\xa8", +"\x8c\xcf" => "\x8f\xdf\xb0", +"\x8c\xd1" => "\xc6\xf8", +"\x8c\xd3" => "\xc9\xd0", +"\x8c\xd5" => "\x8f\xdf\xb2", +"\x8c\xd6" => "\x8f\xdf\xb1", +"\x8c\xd9" => "\x8f\xdf\xb3", +"\x8c\xda" => "\xec\xcf", +"\x8c\xdb" => "\xbb\xbf", +"\x8c\xdc" => "\xbb\xf2", +"\x8c\xdd" => "\x8f\xdf\xb4", +"\x8c\xde" => "\xbe\xde", +"\x8c\xe0" => "\xc7\xe5", +"\x8c\xe1" => "\x8f\xdf\xb5", +"\x8c\xe2" => "\xb8\xad", +"\x8c\xe3" => "\xec\xce", +"\x8c\xe4" => "\xec\xcd", +"\x8c\xe6" => "\xc9\xea", +"\x8c\xe8" => "\x8f\xdf\xb6", +"\x8c\xea" => "\xbc\xc1", +"\x8c\xec" => "\x8f\xdf\xb7", +"\x8c\xed" => "\xc5\xd2", +"\x8c\xef" => "\x8f\xdf\xb8", +"\x8c\xf0" => "\x8f\xdf\xb9", +"\x8c\xf2" => "\x8f\xdf\xba", +"\x8c\xf5" => "\x8f\xdf\xbb", +"\x8c\xf7" => "\x8f\xdf\xbc", +"\x8c\xf8" => "\x8f\xdf\xbd", +"\x8c\xfa" => "\xec\xd1", +"\x8c\xfb" => "\xec\xd2", +"\x8c\xfc" => "\xb9\xd8", +"\x8c\xfd" => "\xec\xd0", +"\x8c\xfe" => "\x8f\xdf\xbe", +"\x8c\xff" => "\x8f\xdf\xbf", +"\x8d\x01" => "\x8f\xdf\xc0", +"\x8d\x03" => "\x8f\xdf\xc1", +"\x8d\x04" => "\xec\xd3", +"\x8d\x05" => "\xec\xd4", +"\x8d\x07" => "\xec\xd6", +"\x8d\x08" => "\xc2\xa3", +"\x8d\x09" => "\x8f\xdf\xc2", +"\x8d\x0a" => "\xec\xd5", +"\x8d\x0b" => "\xb4\xe6", +"\x8d\x0d" => "\xec\xd8", +"\x8d\x0f" => "\xec\xd7", +"\x8d\x10" => "\xec\xd9", +"\x8d\x12" => "\x8f\xdf\xc3", +"\x8d\x13" => "\xec\xdb", +"\x8d\x14" => "\xec\xdd", +"\x8d\x16" => "\xec\xde", +"\x8d\x17" => "\x8f\xdf\xc4", +"\x8d\x1b" => "\x8f\xdf\xc5", +"\x8d\x64" => "\xc0\xd6", +"\x8d\x65" => "\x8f\xdf\xc6", +"\x8d\x66" => "\xbc\xcf", +"\x8d\x67" => "\xec\xdf", +"\x8d\x69" => "\x8f\xdf\xc7", +"\x8d\x6b" => "\xb3\xd2", +"\x8d\x6c" => "\x8f\xdf\xc8", +"\x8d\x6d" => "\xec\xe0", +"\x8d\x6e" => "\x8f\xdf\xc9", +"\x8d\x70" => "\xc1\xf6", +"\x8d\x71" => "\xec\xe1", +"\x8d\x73" => "\xec\xe2", +"\x8d\x74" => "\xc9\xeb", +"\x8d\x77" => "\xb5\xaf", +"\x8d\x7f" => "\x8f\xdf\xca", +"\x8d\x81" => "\xec\xe3", +"\x8d\x82" => "\x8f\xdf\xcb", +"\x8d\x84" => "\x8f\xdf\xcc", +"\x8d\x85" => "\xc4\xb6", +"\x8d\x88" => "\x8f\xdf\xcd", +"\x8d\x8a" => "\xb1\xdb", +"\x8d\x8d" => "\x8f\xdf\xce", +"\x8d\x90" => "\x8f\xdf\xcf", +"\x8d\x91" => "\x8f\xdf\xd0", +"\x8d\x95" => "\x8f\xdf\xd1", +"\x8d\x99" => "\xec\xe4", +"\x8d\x9e" => "\x8f\xdf\xd2", +"\x8d\x9f" => "\x8f\xdf\xd3", +"\x8d\xa0" => "\x8f\xdf\xd4", +"\x8d\xa3" => "\xbc\xf1", +"\x8d\xa6" => "\x8f\xdf\xd5", +"\x8d\xa8" => "\xbf\xf6", +"\x8d\xab" => "\x8f\xdf\xd6", +"\x8d\xac" => "\x8f\xdf\xd7", +"\x8d\xaf" => "\x8f\xdf\xd8", +"\x8d\xb2" => "\x8f\xdf\xd9", +"\x8d\xb3" => "\xc2\xad", +"\x8d\xb5" => "\x8f\xdf\xda", +"\x8d\xb7" => "\x8f\xdf\xdb", +"\x8d\xb9" => "\x8f\xdf\xdc", +"\x8d\xba" => "\xec\xe7", +"\x8d\xbb" => "\x8f\xdf\xdd", +"\x8d\xbc" => "\x8f\xdf\xef", +"\x8d\xbe" => "\xec\xe6", +"\x8d\xc0" => "\x8f\xdf\xde", +"\x8d\xc2" => "\xec\xe5", +"\x8d\xc5" => "\x8f\xdf\xdf", +"\x8d\xc6" => "\x8f\xdf\xe0", +"\x8d\xc7" => "\x8f\xdf\xe1", +"\x8d\xc8" => "\x8f\xdf\xe2", +"\x8d\xca" => "\x8f\xdf\xe3", +"\x8d\xcb" => "\xec\xed", +"\x8d\xcc" => "\xec\xeb", +"\x8d\xce" => "\x8f\xdf\xe4", +"\x8d\xcf" => "\xec\xe8", +"\x8d\xd1" => "\x8f\xdf\xe5", +"\x8d\xd4" => "\x8f\xdf\xe6", +"\x8d\xd5" => "\x8f\xdf\xe7", +"\x8d\xd6" => "\xec\xea", +"\x8d\xd7" => "\x8f\xdf\xe8", +"\x8d\xd9" => "\x8f\xdf\xe9", +"\x8d\xda" => "\xec\xe9", +"\x8d\xdb" => "\xec\xec", +"\x8d\xdd" => "\xb5\xf7", +"\x8d\xdf" => "\xec\xf0", +"\x8d\xe1" => "\xc0\xd7", +"\x8d\xe3" => "\xec\xf1", +"\x8d\xe4" => "\x8f\xdf\xea", +"\x8d\xe5" => "\x8f\xdf\xeb", +"\x8d\xe7" => "\x8f\xdf\xec", +"\x8d\xe8" => "\xb8\xd9", +"\x8d\xea" => "\xec\xee", +"\x8d\xeb" => "\xec\xef", +"\x8d\xec" => "\x8f\xdf\xed", +"\x8d\xef" => "\xcf\xa9", +"\x8d\xf0" => "\x8f\xdf\xee", +"\x8d\xf1" => "\x8f\xdf\xf0", +"\x8d\xf2" => "\x8f\xdf\xf1", +"\x8d\xf3" => "\xc4\xb7", +"\x8d\xf4" => "\x8f\xdf\xf2", +"\x8d\xf5" => "\xc1\xa9", +"\x8d\xfc" => "\xec\xf2", +"\x8d\xfd" => "\x8f\xdf\xf3", +"\x8d\xff" => "\xec\xf5", +"\x8e\x01" => "\x8f\xdf\xf4", +"\x8e\x04" => "\x8f\xdf\xf5", +"\x8e\x05" => "\x8f\xdf\xf6", +"\x8e\x06" => "\x8f\xdf\xf7", +"\x8e\x08" => "\xec\xf3", +"\x8e\x09" => "\xec\xf4", +"\x8e\x0a" => "\xcd\xd9", +"\x8e\x0b" => "\x8f\xdf\xf8", +"\x8e\x0f" => "\xc6\xa7", +"\x8e\x10" => "\xec\xf8", +"\x8e\x11" => "\x8f\xdf\xf9", +"\x8e\x14" => "\x8f\xdf\xfa", +"\x8e\x16" => "\x8f\xdf\xfb", +"\x8e\x1d" => "\xec\xf6", +"\x8e\x1e" => "\xec\xf7", +"\x8e\x1f" => "\xec\xf9", +"\x8e\x20" => "\x8f\xdf\xfc", +"\x8e\x21" => "\x8f\xdf\xfd", +"\x8e\x22" => "\x8f\xdf\xfe", +"\x8e\x23" => "\x8f\xe0\xa1", +"\x8e\x26" => "\x8f\xe0\xa2", +"\x8e\x27" => "\x8f\xe0\xa3", +"\x8e\x2a" => "\xed\xa9", +"\x8e\x30" => "\xec\xfc", +"\x8e\x31" => "\x8f\xe0\xa4", +"\x8e\x33" => "\x8f\xe0\xa5", +"\x8e\x34" => "\xec\xfd", +"\x8e\x35" => "\xec\xfb", +"\x8e\x36" => "\x8f\xe0\xa6", +"\x8e\x37" => "\x8f\xe0\xa7", +"\x8e\x38" => "\x8f\xe0\xa8", +"\x8e\x39" => "\x8f\xe0\xa9", +"\x8e\x3d" => "\x8f\xe0\xaa", +"\x8e\x40" => "\x8f\xe0\xab", +"\x8e\x41" => "\x8f\xe0\xac", +"\x8e\x42" => "\xec\xfa", +"\x8e\x44" => "\xc4\xfd", +"\x8e\x47" => "\xed\xa1", +"\x8e\x48" => "\xed\xa5", +"\x8e\x49" => "\xed\xa2", +"\x8e\x4a" => "\xec\xfe", +"\x8e\x4b" => "\x8f\xe0\xad", +"\x8e\x4c" => "\xed\xa3", +"\x8e\x4d" => "\x8f\xe0\xae", +"\x8e\x4e" => "\x8f\xe0\xaf", +"\x8e\x4f" => "\x8f\xe0\xb0", +"\x8e\x50" => "\xed\xa4", +"\x8e\x54" => "\x8f\xe0\xb1", +"\x8e\x55" => "\xed\xab", +"\x8e\x59" => "\xed\xa6", +"\x8e\x5b" => "\x8f\xe0\xb2", +"\x8e\x5c" => "\x8f\xe0\xb3", +"\x8e\x5d" => "\x8f\xe0\xb4", +"\x8e\x5e" => "\x8f\xe0\xb5", +"\x8e\x5f" => "\xc0\xd8", +"\x8e\x60" => "\xed\xa8", +"\x8e\x61" => "\x8f\xe0\xb6", +"\x8e\x62" => "\x8f\xe0\xb7", +"\x8e\x63" => "\xed\xaa", +"\x8e\x64" => "\xed\xa7", +"\x8e\x69" => "\x8f\xe0\xb8", +"\x8e\x6c" => "\x8f\xe0\xb9", +"\x8e\x6d" => "\x8f\xe0\xba", +"\x8e\x6f" => "\x8f\xe0\xbb", +"\x8e\x70" => "\x8f\xe0\xbc", +"\x8e\x71" => "\x8f\xe0\xbd", +"\x8e\x72" => "\xed\xad", +"\x8e\x74" => "\xbd\xb3", +"\x8e\x76" => "\xed\xac", +"\x8e\x79" => "\x8f\xe0\xbe", +"\x8e\x7a" => "\x8f\xe0\xbf", +"\x8e\x7b" => "\x8f\xe0\xc0", +"\x8e\x7c" => "\xed\xae", +"\x8e\x81" => "\xed\xaf", +"\x8e\x82" => "\x8f\xe0\xc1", +"\x8e\x83" => "\x8f\xe0\xc2", +"\x8e\x84" => "\xed\xb2", +"\x8e\x85" => "\xed\xb1", +"\x8e\x87" => "\xed\xb0", +"\x8e\x89" => "\x8f\xe0\xc3", +"\x8e\x8a" => "\xed\xb4", +"\x8e\x8b" => "\xed\xb3", +"\x8e\x8d" => "\xcc\xf6", +"\x8e\x90" => "\x8f\xe0\xc4", +"\x8e\x91" => "\xed\xb6", +"\x8e\x92" => "\x8f\xe0\xc5", +"\x8e\x93" => "\xed\xb5", +"\x8e\x94" => "\xed\xb7", +"\x8e\x95" => "\x8f\xe0\xc6", +"\x8e\x99" => "\xed\xb8", +"\x8e\x9a" => "\x8f\xe0\xc7", +"\x8e\x9b" => "\x8f\xe0\xc8", +"\x8e\x9d" => "\x8f\xe0\xc9", +"\x8e\x9e" => "\x8f\xe0\xca", +"\x8e\xa1" => "\xed\xba", +"\x8e\xa2" => "\x8f\xe0\xcb", +"\x8e\xa7" => "\x8f\xe0\xcc", +"\x8e\xa9" => "\x8f\xe0\xcd", +"\x8e\xaa" => "\xed\xb9", +"\x8e\xab" => "\xbf\xc8", +"\x8e\xac" => "\xed\xbb", +"\x8e\xad" => "\x8f\xe0\xce", +"\x8e\xae" => "\x8f\xe0\xcf", +"\x8e\xaf" => "\xb6\xed", +"\x8e\xb0" => "\xed\xbc", +"\x8e\xb1" => "\xed\xbe", +"\x8e\xb3" => "\x8f\xe0\xd0", +"\x8e\xb5" => "\x8f\xe0\xd1", +"\x8e\xba" => "\x8f\xe0\xd2", +"\x8e\xbb" => "\x8f\xe0\xd3", +"\x8e\xbe" => "\xed\xbf", +"\x8e\xc0" => "\x8f\xe0\xd4", +"\x8e\xc1" => "\x8f\xe0\xd5", +"\x8e\xc3" => "\x8f\xe0\xd6", +"\x8e\xc4" => "\x8f\xe0\xd7", +"\x8e\xc5" => "\xed\xc0", +"\x8e\xc6" => "\xed\xbd", +"\x8e\xc7" => "\x8f\xe0\xd8", +"\x8e\xc8" => "\xed\xc1", +"\x8e\xca" => "\xbc\xd6", +"\x8e\xcb" => "\xed\xc2", +"\x8e\xcc" => "\xb5\xb0", +"\x8e\xcd" => "\xb7\xb3", +"\x8e\xcf" => "\x8f\xe0\xd9", +"\x8e\xd1" => "\x8f\xe0\xda", +"\x8e\xd2" => "\xb8\xae", +"\x8e\xd4" => "\x8f\xe0\xdb", +"\x8e\xdb" => "\xed\xc3", +"\x8e\xdc" => "\x8f\xe0\xdc", +"\x8e\xdf" => "\xc6\xf0", +"\x8e\xe2" => "\xc5\xbe", +"\x8e\xe3" => "\xed\xc4", +"\x8e\xe8" => "\x8f\xe0\xdd", +"\x8e\xeb" => "\xed\xc7", +"\x8e\xed" => "\x8f\xe0\xe4", +"\x8e\xee" => "\x8f\xe0\xde", +"\x8e\xf0" => "\x8f\xe0\xdf", +"\x8e\xf1" => "\x8f\xe0\xe0", +"\x8e\xf7" => "\x8f\xe0\xe1", +"\x8e\xf8" => "\xbc\xb4", +"\x8e\xf9" => "\x8f\xe0\xe2", +"\x8e\xfa" => "\x8f\xe0\xe3", +"\x8e\xfb" => "\xed\xc6", +"\x8e\xfc" => "\xed\xc5", +"\x8e\xfd" => "\xb7\xda", +"\x8e\xfe" => "\xed\xc8", +"\x8f\x00" => "\x8f\xe0\xe5", +"\x8f\x02" => "\x8f\xe0\xe6", +"\x8f\x03" => "\xb3\xd3", +"\x8f\x05" => "\xed\xca", +"\x8f\x07" => "\x8f\xe0\xe7", +"\x8f\x08" => "\x8f\xe0\xe8", +"\x8f\x09" => "\xba\xdc", +"\x8f\x0a" => "\xed\xc9", +"\x8f\x0c" => "\xed\xd2", +"\x8f\x0f" => "\x8f\xe0\xe9", +"\x8f\x10" => "\x8f\xe0\xea", +"\x8f\x12" => "\xed\xcc", +"\x8f\x13" => "\xed\xce", +"\x8f\x14" => "\xca\xe5", +"\x8f\x15" => "\xed\xcb", +"\x8f\x16" => "\x8f\xe0\xeb", +"\x8f\x17" => "\x8f\xe0\xec", +"\x8f\x18" => "\x8f\xe0\xed", +"\x8f\x19" => "\xed\xcd", +"\x8f\x1b" => "\xed\xd1", +"\x8f\x1c" => "\xed\xcf", +"\x8f\x1d" => "\xb5\xb1", +"\x8f\x1e" => "\x8f\xe0\xee", +"\x8f\x1f" => "\xed\xd0", +"\x8f\x20" => "\x8f\xe0\xef", +"\x8f\x21" => "\x8f\xe0\xf0", +"\x8f\x23" => "\x8f\xe0\xf1", +"\x8f\x25" => "\x8f\xe0\xf2", +"\x8f\x26" => "\xed\xd3", +"\x8f\x27" => "\x8f\xe0\xf3", +"\x8f\x28" => "\x8f\xe0\xf4", +"\x8f\x29" => "\xc7\xda", +"\x8f\x2a" => "\xce\xd8", +"\x8f\x2c" => "\x8f\xe0\xf5", +"\x8f\x2d" => "\x8f\xe0\xf6", +"\x8f\x2e" => "\x8f\xe0\xf7", +"\x8f\x2f" => "\xbd\xb4", +"\x8f\x33" => "\xed\xd4", +"\x8f\x34" => "\x8f\xe0\xf8", +"\x8f\x35" => "\x8f\xe0\xf9", +"\x8f\x36" => "\x8f\xe0\xfa", +"\x8f\x37" => "\x8f\xe0\xfb", +"\x8f\x38" => "\xcd\xa2", +"\x8f\x39" => "\xed\xd6", +"\x8f\x3a" => "\x8f\xe0\xfc", +"\x8f\x3b" => "\xed\xd5", +"\x8f\x3e" => "\xed\xd9", +"\x8f\x3f" => "\xcd\xc1", +"\x8f\x40" => "\x8f\xe0\xfd", +"\x8f\x41" => "\x8f\xe0\xfe", +"\x8f\x42" => "\xed\xd8", +"\x8f\x43" => "\x8f\xe1\xa1", +"\x8f\x44" => "\xb3\xed", +"\x8f\x45" => "\xed\xd7", +"\x8f\x46" => "\xed\xdc", +"\x8f\x47" => "\x8f\xe1\xa2", +"\x8f\x49" => "\xed\xdb", +"\x8f\x4c" => "\xed\xda", +"\x8f\x4d" => "\xc5\xb2", +"\x8f\x4e" => "\xed\xdd", +"\x8f\x4f" => "\x8f\xe1\xa3", +"\x8f\x51" => "\x8f\xe1\xa4", +"\x8f\x52" => "\x8f\xe1\xa5", +"\x8f\x53" => "\x8f\xe1\xa6", +"\x8f\x54" => "\x8f\xe1\xa7", +"\x8f\x55" => "\x8f\xe1\xa8", +"\x8f\x57" => "\xed\xde", +"\x8f\x58" => "\x8f\xe1\xa9", +"\x8f\x5c" => "\xed\xdf", +"\x8f\x5d" => "\x8f\xe1\xaa", +"\x8f\x5e" => "\x8f\xe1\xab", +"\x8f\x5f" => "\xb9\xec", +"\x8f\x61" => "\xb7\xa5", +"\x8f\x62" => "\xed\xe0", +"\x8f\x63" => "\xed\xe1", +"\x8f\x64" => "\xed\xe2", +"\x8f\x65" => "\x8f\xe1\xac", +"\x8f\x9b" => "\xbf\xc9", +"\x8f\x9c" => "\xed\xe3", +"\x8f\x9d" => "\x8f\xe1\xad", +"\x8f\x9e" => "\xbc\xad", +"\x8f\x9f" => "\xed\xe4", +"\x8f\xa0" => "\x8f\xe1\xae", +"\x8f\xa1" => "\x8f\xe1\xaf", +"\x8f\xa3" => "\xed\xe5", +"\x8f\xa4" => "\x8f\xe1\xb0", +"\x8f\xa5" => "\x8f\xe1\xb1", +"\x8f\xa6" => "\x8f\xe1\xb2", +"\x8f\xa7" => "\xd2\xa1", +"\x8f\xa8" => "\xd1\xfe", +"\x8f\xad" => "\xed\xe6", +"\x8f\xae" => "\xe5\xf0", +"\x8f\xaf" => "\xed\xe7", +"\x8f\xb0" => "\xc3\xa4", +"\x8f\xb1" => "\xbf\xab", +"\x8f\xb2" => "\xc7\xc0", +"\x8f\xb5" => "\x8f\xe1\xb3", +"\x8f\xb6" => "\x8f\xe1\xb4", +"\x8f\xb7" => "\xed\xe8", +"\x8f\xb8" => "\x8f\xe1\xb5", +"\x8f\xba" => "\xca\xd5", +"\x8f\xbb" => "\xc4\xd4", +"\x8f\xbc" => "\xb9\xfe", +"\x8f\xbe" => "\x8f\xe1\xb6", +"\x8f\xbf" => "\xc3\xa9", +"\x8f\xc0" => "\x8f\xe1\xb7", +"\x8f\xc1" => "\x8f\xe1\xb8", +"\x8f\xc2" => "\xb1\xaa", +"\x8f\xc4" => "\xcb\xf8", +"\x8f\xc5" => "\xbf\xd7", +"\x8f\xc6" => "\x8f\xe1\xb9", +"\x8f\xca" => "\x8f\xe1\xba", +"\x8f\xcb" => "\x8f\xe1\xbb", +"\x8f\xcd" => "\x8f\xe1\xbc", +"\x8f\xce" => "\xb7\xde", +"\x8f\xd0" => "\x8f\xe1\xbd", +"\x8f\xd1" => "\xb6\xe1", +"\x8f\xd2" => "\x8f\xe1\xbe", +"\x8f\xd3" => "\x8f\xe1\xbf", +"\x8f\xd4" => "\xca\xd6", +"\x8f\xd5" => "\x8f\xe1\xc0", +"\x8f\xda" => "\xed\xe9", +"\x8f\xe0" => "\x8f\xe1\xc1", +"\x8f\xe2" => "\xed\xeb", +"\x8f\xe3" => "\x8f\xe1\xc2", +"\x8f\xe4" => "\x8f\xe1\xc3", +"\x8f\xe5" => "\xed\xea", +"\x8f\xe6" => "\xb2\xe0", +"\x8f\xe8" => "\x8f\xe1\xc4", +"\x8f\xe9" => "\xc6\xf6", +"\x8f\xea" => "\xed\xec", +"\x8f\xeb" => "\xc7\xf7", +"\x8f\xed" => "\xc5\xb3", +"\x8f\xee" => "\x8f\xe1\xc5", +"\x8f\xef" => "\xed\xed", +"\x8f\xf0" => "\xbd\xd2", +"\x8f\xf1" => "\x8f\xe1\xc6", +"\x8f\xf4" => "\xed\xef", +"\x8f\xf5" => "\x8f\xe1\xc7", +"\x8f\xf6" => "\x8f\xe1\xc8", +"\x8f\xf7" => "\xcc\xc2", +"\x8f\xf8" => "\xed\xfe", +"\x8f\xf9" => "\xed\xf1", +"\x8f\xfa" => "\xed\xf2", +"\x8f\xfb" => "\x8f\xe1\xc9", +"\x8f\xfd" => "\xc4\xc9", +"\x8f\xfe" => "\x8f\xe1\xca", +"\x90\x00" => "\xc2\xe0", +"\x90\x01" => "\xc1\xf7", +"\x90\x02" => "\x8f\xe1\xcb", +"\x90\x03" => "\xc6\xa8", +"\x90\x04" => "\x8f\xe1\xcc", +"\x90\x05" => "\xed\xf0", +"\x90\x06" => "\xb5\xd5", +"\x90\x08" => "\x8f\xe1\xcd", +"\x90\x0b" => "\xed\xf9", +"\x90\x0c" => "\x8f\xe1\xce", +"\x90\x0d" => "\xed\xf6", +"\x90\x0e" => "\xee\xa5", +"\x90\x0f" => "\xc6\xa9", +"\x90\x10" => "\xc3\xe0", +"\x90\x11" => "\xed\xf3", +"\x90\x13" => "\xc4\xfe", +"\x90\x14" => "\xc5\xd3", +"\x90\x15" => "\xed\xf4", +"\x90\x16" => "\xed\xf8", +"\x90\x17" => "\xbf\xe0", +"\x90\x18" => "\x8f\xe1\xcf", +"\x90\x19" => "\xc7\xe7", +"\x90\x1a" => "\xc4\xcc", +"\x90\x1b" => "\x8f\xe1\xd0", +"\x90\x1d" => "\xc0\xc2", +"\x90\x1e" => "\xed\xf7", +"\x90\x1f" => "\xc2\xae", +"\x90\x20" => "\xc2\xa4", +"\x90\x21" => "\xed\xf5", +"\x90\x22" => "\xb0\xa9", +"\x90\x23" => "\xcf\xa2", +"\x90\x27" => "\xed\xfa", +"\x90\x28" => "\x8f\xe1\xd1", +"\x90\x29" => "\x8f\xe1\xd2", +"\x90\x2a" => "\x8f\xe1\xd4", +"\x90\x2c" => "\x8f\xe1\xd5", +"\x90\x2d" => "\x8f\xe1\xd6", +"\x90\x2e" => "\xc2\xe1", +"\x90\x2f" => "\x8f\xe1\xd3", +"\x90\x31" => "\xbd\xb5", +"\x90\x32" => "\xbf\xca", +"\x90\x33" => "\x8f\xe1\xd7", +"\x90\x34" => "\x8f\xe1\xd8", +"\x90\x35" => "\xed\xfc", +"\x90\x36" => "\xed\xfb", +"\x90\x37" => "\x8f\xe1\xd9", +"\x90\x38" => "\xb0\xef", +"\x90\x39" => "\xed\xfd", +"\x90\x3c" => "\xc9\xaf", +"\x90\x3e" => "\xee\xa7", +"\x90\x3f" => "\x8f\xe1\xda", +"\x90\x41" => "\xc6\xdb", +"\x90\x42" => "\xbf\xeb", +"\x90\x43" => "\x8f\xe1\xdb", +"\x90\x44" => "\x8f\xe1\xdc", +"\x90\x45" => "\xc3\xd9", +"\x90\x47" => "\xb6\xf8", +"\x90\x49" => "\xee\xa6", +"\x90\x4a" => "\xcd\xb7", +"\x90\x4b" => "\xb1\xbf", +"\x90\x4c" => "\x8f\xe1\xdd", +"\x90\x4d" => "\xca\xd7", +"\x90\x4e" => "\xb2\xe1", +"\x90\x4f" => "\xee\xa1", +"\x90\x50" => "\xee\xa2", +"\x90\x51" => "\xee\xa3", +"\x90\x52" => "\xee\xa4", +"\x90\x53" => "\xc6\xbb", +"\x90\x54" => "\xc3\xa3", +"\x90\x55" => "\xb0\xe3", +"\x90\x56" => "\xee\xa8", +"\x90\x58" => "\xee\xa9", +"\x90\x59" => "\xf4\xa3", +"\x90\x5b" => "\x8f\xe1\xde", +"\x90\x5c" => "\xc2\xbd", +"\x90\x5d" => "\x8f\xe1\xdf", +"\x90\x5e" => "\xee\xaa", +"\x90\x60" => "\xb1\xf3", +"\x90\x61" => "\xc1\xcc", +"\x90\x62" => "\x8f\xe1\xe0", +"\x90\x63" => "\xb8\xaf", +"\x90\x65" => "\xcd\xda", +"\x90\x66" => "\x8f\xe1\xe1", +"\x90\x67" => "\x8f\xe1\xe2", +"\x90\x68" => "\xee\xab", +"\x90\x69" => "\xc5\xac", +"\x90\x6c" => "\x8f\xe1\xe3", +"\x90\x6d" => "\xc1\xf8", +"\x90\x6e" => "\xbc\xd7", +"\x90\x6f" => "\xee\xac", +"\x90\x70" => "\x8f\xe1\xe4", +"\x90\x72" => "\xee\xaf", +"\x90\x74" => "\x8f\xe1\xe5", +"\x90\x75" => "\xbd\xe5", +"\x90\x76" => "\xee\xad", +"\x90\x77" => "\xc1\xab", +"\x90\x78" => "\xc1\xaa", +"\x90\x79" => "\x8f\xe1\xe6", +"\x90\x7a" => "\xb0\xe4", +"\x90\x7c" => "\xce\xcb", +"\x90\x7d" => "\xee\xb1", +"\x90\x7f" => "\xc8\xf2", +"\x90\x80" => "\xee\xb3", +"\x90\x81" => "\xee\xb2", +"\x90\x82" => "\xee\xb0", +"\x90\x83" => "\xe3\xe4", +"\x90\x84" => "\xb4\xd4", +"\x90\x85" => "\x8f\xe1\xe7", +"\x90\x87" => "\xed\xee", +"\x90\x88" => "\x8f\xe1\xe8", +"\x90\x89" => "\xee\xb5", +"\x90\x8a" => "\xee\xb4", +"\x90\x8b" => "\x8f\xe1\xe9", +"\x90\x8c" => "\x8f\xe1\xea", +"\x90\x8e" => "\x8f\xe1\xeb", +"\x90\x8f" => "\xee\xb6", +"\x90\x90" => "\x8f\xe1\xec", +"\x90\x91" => "\xcd\xb8", +"\x90\x95" => "\x8f\xe1\xed", +"\x90\x97" => "\x8f\xe1\xee", +"\x90\x98" => "\x8f\xe1\xef", +"\x90\x99" => "\x8f\xe1\xf0", +"\x90\x9b" => "\x8f\xe1\xf1", +"\x90\xa0" => "\x8f\xe1\xf2", +"\x90\xa1" => "\x8f\xe1\xf3", +"\x90\xa2" => "\x8f\xe1\xf4", +"\x90\xa3" => "\xc6\xe1", +"\x90\xa5" => "\x8f\xe1\xf5", +"\x90\xa6" => "\xcb\xae", +"\x90\xa8" => "\xee\xb7", +"\x90\xaa" => "\xbc\xd9", +"\x90\xaf" => "\xee\xb8", +"\x90\xb0" => "\x8f\xe1\xf6", +"\x90\xb1" => "\xee\xb9", +"\x90\xb2" => "\x8f\xe1\xf7", +"\x90\xb3" => "\x8f\xe1\xf8", +"\x90\xb4" => "\x8f\xe1\xf9", +"\x90\xb5" => "\xee\xba", +"\x90\xb6" => "\x8f\xe1\xfa", +"\x90\xb8" => "\xc5\xa1", +"\x90\xbd" => "\x8f\xe1\xfb", +"\x90\xbe" => "\x8f\xe1\xfd", +"\x90\xc1" => "\xb0\xea", +"\x90\xc3" => "\x8f\xe1\xfe", +"\x90\xc4" => "\x8f\xe2\xa1", +"\x90\xc5" => "\x8f\xe2\xa2", +"\x90\xc7" => "\x8f\xe2\xa3", +"\x90\xc8" => "\x8f\xe2\xa4", +"\x90\xca" => "\xb9\xd9", +"\x90\xcc" => "\x8f\xe1\xfc", +"\x90\xce" => "\xcf\xba", +"\x90\xd2" => "\x8f\xe2\xad", +"\x90\xd5" => "\x8f\xe2\xa5", +"\x90\xd7" => "\x8f\xe2\xa6", +"\x90\xd8" => "\x8f\xe2\xa7", +"\x90\xd9" => "\x8f\xe2\xa8", +"\x90\xdb" => "\xee\xbe", +"\x90\xdc" => "\x8f\xe2\xa9", +"\x90\xdd" => "\x8f\xe2\xaa", +"\x90\xdf" => "\x8f\xe2\xab", +"\x90\xe1" => "\xb7\xb4", +"\x90\xe2" => "\xee\xbb", +"\x90\xe4" => "\xee\xbc", +"\x90\xe5" => "\x8f\xe2\xac", +"\x90\xe8" => "\xc9\xf4", +"\x90\xeb" => "\x8f\xe2\xaf", +"\x90\xed" => "\xb3\xd4", +"\x90\xef" => "\x8f\xe2\xb0", +"\x90\xf0" => "\x8f\xe2\xb1", +"\x90\xf4" => "\x8f\xe2\xb2", +"\x90\xf5" => "\xcd\xb9", +"\x90\xf6" => "\x8f\xe2\xae", +"\x90\xf7" => "\xb6\xbf", +"\x90\xfd" => "\xc5\xd4", +"\x90\xfe" => "\x8f\xe2\xb3", +"\x90\xff" => "\x8f\xe2\xb4", +"\x91\x00" => "\x8f\xe2\xb5", +"\x91\x02" => "\xee\xbf", +"\x91\x04" => "\x8f\xe2\xb6", +"\x91\x05" => "\x8f\xe2\xb7", +"\x91\x06" => "\x8f\xe2\xb8", +"\x91\x08" => "\x8f\xe2\xb9", +"\x91\x0d" => "\x8f\xe2\xba", +"\x91\x10" => "\x8f\xe2\xbb", +"\x91\x12" => "\xee\xc0", +"\x91\x14" => "\x8f\xe2\xbc", +"\x91\x16" => "\x8f\xe2\xbd", +"\x91\x17" => "\x8f\xe2\xbe", +"\x91\x18" => "\x8f\xe2\xbf", +"\x91\x19" => "\xee\xc1", +"\x91\x1a" => "\x8f\xe2\xc0", +"\x91\x1c" => "\x8f\xe2\xc1", +"\x91\x1e" => "\x8f\xe2\xc2", +"\x91\x20" => "\x8f\xe2\xc3", +"\x91\x22" => "\x8f\xe2\xc5", +"\x91\x23" => "\x8f\xe2\xc6", +"\x91\x25" => "\x8f\xe2\xc4", +"\x91\x27" => "\x8f\xe2\xc7", +"\x91\x29" => "\x8f\xe2\xc8", +"\x91\x2d" => "\xc5\xa2", +"\x91\x2e" => "\x8f\xe2\xc9", +"\x91\x2f" => "\x8f\xe2\xca", +"\x91\x30" => "\xee\xc3", +"\x91\x31" => "\x8f\xe2\xcb", +"\x91\x32" => "\xee\xc2", +"\x91\x34" => "\x8f\xe2\xcc", +"\x91\x36" => "\x8f\xe2\xcd", +"\x91\x37" => "\x8f\xe2\xce", +"\x91\x39" => "\x8f\xe2\xcf", +"\x91\x3a" => "\x8f\xe2\xd0", +"\x91\x3c" => "\x8f\xe2\xd1", +"\x91\x3d" => "\x8f\xe2\xd2", +"\x91\x43" => "\x8f\xe2\xd3", +"\x91\x47" => "\x8f\xe2\xd4", +"\x91\x48" => "\x8f\xe2\xd5", +"\x91\x49" => "\xc6\xd3", +"\x91\x4a" => "\xee\xc4", +"\x91\x4b" => "\xbd\xb6", +"\x91\x4c" => "\xbc\xe0", +"\x91\x4d" => "\xc7\xdb", +"\x91\x4e" => "\xc3\xf1", +"\x91\x4f" => "\x8f\xe2\xd6", +"\x91\x52" => "\xbc\xf2", +"\x91\x53" => "\x8f\xe2\xd7", +"\x91\x54" => "\xbf\xec", +"\x91\x56" => "\xee\xc5", +"\x91\x57" => "\x8f\xe2\xd8", +"\x91\x58" => "\xee\xc6", +"\x91\x59" => "\x8f\xe2\xd9", +"\x91\x5a" => "\x8f\xe2\xda", +"\x91\x5b" => "\x8f\xe2\xdb", +"\x91\x61" => "\x8f\xe2\xdc", +"\x91\x62" => "\xbf\xdd", +"\x91\x63" => "\xee\xc7", +"\x91\x64" => "\x8f\xe2\xdd", +"\x91\x65" => "\xee\xc8", +"\x91\x67" => "\x8f\xe2\xde", +"\x91\x69" => "\xee\xc9", +"\x91\x6a" => "\xcd\xef", +"\x91\x6c" => "\xbd\xb7", +"\x91\x6d" => "\x8f\xe2\xdf", +"\x91\x72" => "\xee\xcb", +"\x91\x73" => "\xee\xca", +"\x91\x74" => "\x8f\xe2\xe0", +"\x91\x75" => "\xb9\xda", +"\x91\x77" => "\xb9\xf3", +"\x91\x78" => "\xbb\xc0", +"\x91\x79" => "\x8f\xe2\xe1", +"\x91\x7a" => "\x8f\xe2\xe2", +"\x91\x7b" => "\x8f\xe2\xe3", +"\x91\x81" => "\x8f\xe2\xe4", +"\x91\x82" => "\xee\xce", +"\x91\x83" => "\x8f\xe2\xe5", +"\x91\x85" => "\x8f\xe2\xe6", +"\x91\x86" => "\x8f\xe2\xe7", +"\x91\x87" => "\xbd\xe6", +"\x91\x89" => "\xee\xcd", +"\x91\x8a" => "\x8f\xe2\xe8", +"\x91\x8b" => "\xee\xcc", +"\x91\x8d" => "\xc2\xe9", +"\x91\x8e" => "\x8f\xe2\xe9", +"\x91\x90" => "\xb8\xef", +"\x91\x91" => "\x8f\xe2\xea", +"\x91\x92" => "\xc0\xc3", +"\x91\x93" => "\x8f\xe2\xeb", +"\x91\x94" => "\x8f\xe2\xec", +"\x91\x95" => "\x8f\xe2\xed", +"\x91\x97" => "\xc8\xb0", +"\x91\x98" => "\x8f\xe2\xee", +"\x91\x9c" => "\xbd\xb9", +"\x91\x9e" => "\x8f\xe2\xef", +"\x91\xa1" => "\x8f\xe2\xf0", +"\x91\xa2" => "\xee\xcf", +"\x91\xa4" => "\xbe\xdf", +"\x91\xa6" => "\x8f\xe2\xf1", +"\x91\xa8" => "\x8f\xe2\xf2", +"\x91\xaa" => "\xee\xd2", +"\x91\xab" => "\xee\xd0", +"\x91\xac" => "\x8f\xe2\xf3", +"\x91\xad" => "\x8f\xe2\xf4", +"\x91\xae" => "\x8f\xe2\xf5", +"\x91\xaf" => "\xee\xd1", +"\x91\xb0" => "\x8f\xe2\xf6", +"\x91\xb1" => "\x8f\xe2\xf7", +"\x91\xb2" => "\x8f\xe2\xf8", +"\x91\xb3" => "\x8f\xe2\xf9", +"\x91\xb4" => "\xee\xd4", +"\x91\xb5" => "\xee\xd3", +"\x91\xb6" => "\x8f\xe2\xfa", +"\x91\xb8" => "\xbe\xfa", +"\x91\xba" => "\xee\xd5", +"\x91\xbb" => "\x8f\xe2\xfb", +"\x91\xbc" => "\x8f\xe2\xfc", +"\x91\xbd" => "\x8f\xe2\xfd", +"\x91\xbf" => "\x8f\xe2\xfe", +"\x91\xc0" => "\xee\xd6", +"\x91\xc1" => "\xee\xd7", +"\x91\xc2" => "\x8f\xe3\xa1", +"\x91\xc3" => "\x8f\xe3\xa2", +"\x91\xc5" => "\x8f\xe3\xa3", +"\x91\xc6" => "\xc8\xd0", +"\x91\xc7" => "\xba\xd3", +"\x91\xc8" => "\xbc\xe1", +"\x91\xc9" => "\xee\xd8", +"\x91\xcb" => "\xee\xd9", +"\x91\xcc" => "\xce\xa4", +"\x91\xcd" => "\xbd\xc5", +"\x91\xce" => "\xcc\xee", +"\x91\xcf" => "\xce\xcc", +"\x91\xd0" => "\xee\xda", +"\x91\xd1" => "\xb6\xe2", +"\x91\xd3" => "\x8f\xe3\xa4", +"\x91\xd4" => "\x8f\xe3\xa5", +"\x91\xd6" => "\xee\xdb", +"\x91\xd7" => "\x8f\xe3\xa6", +"\x91\xd8" => "\xc5\xa3", +"\x91\xd9" => "\x8f\xe3\xa7", +"\x91\xda" => "\x8f\xe3\xa8", +"\x91\xdb" => "\xee\xde", +"\x91\xdc" => "\xb3\xf8", +"\x91\xdd" => "\xbf\xcb", +"\x91\xde" => "\x8f\xe3\xa9", +"\x91\xdf" => "\xee\xdc", +"\x91\xe1" => "\xee\xdd", +"\x91\xe3" => "\xc4\xe0", +"\x91\xe4" => "\x8f\xe3\xaa", +"\x91\xe5" => "\x8f\xe3\xab", +"\x91\xe6" => "\xcb\xd5", +"\x91\xe7" => "\xb6\xfc", +"\x91\xe9" => "\x8f\xe3\xac", +"\x91\xea" => "\x8f\xe3\xad", +"\x91\xec" => "\x8f\xe3\xae", +"\x91\xed" => "\x8f\xe3\xaf", +"\x91\xee" => "\x8f\xe3\xb0", +"\x91\xef" => "\x8f\xe3\xb1", +"\x91\xf0" => "\x8f\xe3\xb2", +"\x91\xf1" => "\x8f\xe3\xb3", +"\x91\xf5" => "\xee\xe0", +"\x91\xf6" => "\xee\xe1", +"\x91\xf7" => "\x8f\xe3\xb4", +"\x91\xf9" => "\x8f\xe3\xb5", +"\x91\xfb" => "\x8f\xe3\xb6", +"\x91\xfc" => "\xee\xdf", +"\x91\xfd" => "\x8f\xe3\xb7", +"\x91\xff" => "\xee\xe3", +"\x92\x00" => "\x8f\xe3\xb8", +"\x92\x01" => "\x8f\xe3\xb9", +"\x92\x04" => "\x8f\xe3\xba", +"\x92\x05" => "\x8f\xe3\xbb", +"\x92\x06" => "\x8f\xe3\xbc", +"\x92\x07" => "\x8f\xe3\xbd", +"\x92\x09" => "\x8f\xe3\xbe", +"\x92\x0a" => "\x8f\xe3\xbf", +"\x92\x0c" => "\x8f\xe3\xc0", +"\x92\x0d" => "\xc6\xdf", +"\x92\x0e" => "\xb3\xc3", +"\x92\x10" => "\x8f\xe3\xc1", +"\x92\x11" => "\xee\xe7", +"\x92\x12" => "\x8f\xe3\xc2", +"\x92\x13" => "\x8f\xe3\xc3", +"\x92\x14" => "\xee\xe4", +"\x92\x15" => "\xee\xe6", +"\x92\x16" => "\x8f\xe3\xc4", +"\x92\x18" => "\x8f\xe3\xc5", +"\x92\x1c" => "\x8f\xe3\xc6", +"\x92\x1d" => "\x8f\xe3\xc7", +"\x92\x1e" => "\xee\xe2", +"\x92\x23" => "\x8f\xe3\xc8", +"\x92\x24" => "\x8f\xe3\xc9", +"\x92\x25" => "\x8f\xe3\xca", +"\x92\x26" => "\x8f\xe3\xcb", +"\x92\x28" => "\x8f\xe3\xcc", +"\x92\x29" => "\xef\xcf", +"\x92\x2c" => "\xee\xe5", +"\x92\x2e" => "\x8f\xe3\xcd", +"\x92\x2f" => "\x8f\xe3\xce", +"\x92\x30" => "\x8f\xe3\xcf", +"\x92\x33" => "\x8f\xe3\xd0", +"\x92\x34" => "\xce\xeb", +"\x92\x35" => "\x8f\xe3\xd1", +"\x92\x36" => "\x8f\xe3\xd2", +"\x92\x37" => "\xb8\xda", +"\x92\x38" => "\x8f\xe3\xd3", +"\x92\x39" => "\x8f\xe3\xd4", +"\x92\x3a" => "\x8f\xe3\xd5", +"\x92\x3c" => "\x8f\xe3\xd6", +"\x92\x3e" => "\x8f\xe3\xd7", +"\x92\x3f" => "\xee\xef", +"\x92\x40" => "\x8f\xe3\xd8", +"\x92\x42" => "\x8f\xe3\xd9", +"\x92\x43" => "\x8f\xe3\xda", +"\x92\x44" => "\xc5\xb4", +"\x92\x45" => "\xee\xea", +"\x92\x46" => "\x8f\xe3\xdb", +"\x92\x47" => "\x8f\xe3\xdc", +"\x92\x48" => "\xee\xed", +"\x92\x49" => "\xee\xeb", +"\x92\x4a" => "\x8f\xe3\xdd", +"\x92\x4b" => "\xee\xf0", +"\x92\x4d" => "\x8f\xe3\xde", +"\x92\x4e" => "\x8f\xe3\xdf", +"\x92\x4f" => "\x8f\xe3\xe0", +"\x92\x50" => "\xee\xf1", +"\x92\x51" => "\x8f\xe3\xe1", +"\x92\x57" => "\xee\xe9", +"\x92\x58" => "\x8f\xe3\xe2", +"\x92\x59" => "\x8f\xe3\xe3", +"\x92\x5a" => "\xee\xf6", +"\x92\x5b" => "\xb1\xf4", +"\x92\x5c" => "\x8f\xe3\xe4", +"\x92\x5d" => "\x8f\xe3\xe5", +"\x92\x5e" => "\xee\xe8", +"\x92\x60" => "\x8f\xe3\xe6", +"\x92\x61" => "\x8f\xe3\xe7", +"\x92\x62" => "\xc8\xad", +"\x92\x64" => "\xee\xec", +"\x92\x65" => "\x8f\xe3\xe8", +"\x92\x66" => "\xbe\xe0", +"\x92\x67" => "\x8f\xe3\xe9", +"\x92\x68" => "\x8f\xe3\xea", +"\x92\x69" => "\x8f\xe3\xeb", +"\x92\x6e" => "\x8f\xe3\xec", +"\x92\x6f" => "\x8f\xe3\xed", +"\x92\x70" => "\x8f\xe3\xee", +"\x92\x71" => "\xb9\xdb", +"\x92\x75" => "\x8f\xe3\xef", +"\x92\x76" => "\x8f\xe3\xf0", +"\x92\x77" => "\x8f\xe3\xf1", +"\x92\x78" => "\x8f\xe3\xf2", +"\x92\x79" => "\x8f\xe3\xf3", +"\x92\x7b" => "\x8f\xe3\xf4", +"\x92\x7c" => "\x8f\xe3\xf5", +"\x92\x7d" => "\x8f\xe3\xf6", +"\x92\x7e" => "\xcb\xc8", +"\x92\x7f" => "\x8f\xe3\xf7", +"\x92\x80" => "\xb6\xe4", +"\x92\x83" => "\xbd\xc6", +"\x92\x85" => "\xc6\xbc", +"\x92\x88" => "\x8f\xe3\xf8", +"\x92\x89" => "\x8f\xe3\xf9", +"\x92\x8a" => "\x8f\xe3\xfa", +"\x92\x8d" => "\x8f\xe3\xfb", +"\x92\x8e" => "\x8f\xe3\xfc", +"\x92\x91" => "\xc1\xad", +"\x92\x92" => "\x8f\xe3\xfd", +"\x92\x93" => "\xee\xf4", +"\x92\x95" => "\xee\xee", +"\x92\x96" => "\xee\xf3", +"\x92\x97" => "\x8f\xe3\xfe", +"\x92\x98" => "\xcc\xc3", +"\x92\x99" => "\x8f\xe4\xa1", +"\x92\x9a" => "\xc4\xb8", +"\x92\x9b" => "\xee\xf5", +"\x92\x9c" => "\xee\xf2", +"\x92\x9f" => "\x8f\xe4\xa2", +"\x92\xa0" => "\x8f\xe4\xa3", +"\x92\xa4" => "\x8f\xe4\xa4", +"\x92\xa5" => "\x8f\xe4\xa5", +"\x92\xa7" => "\x8f\xe4\xa6", +"\x92\xa8" => "\x8f\xe4\xa7", +"\x92\xab" => "\x8f\xe4\xa8", +"\x92\xad" => "\xc1\xac", +"\x92\xaf" => "\x8f\xe4\xa9", +"\x92\xb2" => "\x8f\xe4\xaa", +"\x92\xb6" => "\x8f\xe4\xab", +"\x92\xb7" => "\xee\xf9", +"\x92\xb8" => "\x8f\xe4\xac", +"\x92\xb9" => "\xee\xf8", +"\x92\xba" => "\x8f\xe4\xad", +"\x92\xbb" => "\x8f\xe4\xae", +"\x92\xbc" => "\x8f\xe4\xaf", +"\x92\xbd" => "\x8f\xe4\xb0", +"\x92\xbf" => "\x8f\xe4\xb1", +"\x92\xc0" => "\x8f\xe4\xb2", +"\x92\xc1" => "\x8f\xe4\xb3", +"\x92\xc2" => "\x8f\xe4\xb4", +"\x92\xc3" => "\x8f\xe4\xb5", +"\x92\xc5" => "\x8f\xe4\xb6", +"\x92\xc6" => "\x8f\xe4\xb7", +"\x92\xc7" => "\x8f\xe4\xb8", +"\x92\xc8" => "\x8f\xe4\xb9", +"\x92\xcb" => "\x8f\xe4\xba", +"\x92\xcc" => "\x8f\xe4\xbb", +"\x92\xcd" => "\x8f\xe4\xbc", +"\x92\xce" => "\x8f\xe4\xbd", +"\x92\xcf" => "\xee\xf7", +"\x92\xd0" => "\x8f\xe4\xbe", +"\x92\xd2" => "\xcb\xaf", +"\x92\xd3" => "\x8f\xe4\xbf", +"\x92\xd5" => "\x8f\xe4\xc0", +"\x92\xd7" => "\x8f\xe4\xc1", +"\x92\xd8" => "\x8f\xe4\xc2", +"\x92\xd9" => "\x8f\xe4\xc3", +"\x92\xdc" => "\x8f\xe4\xc4", +"\x92\xdd" => "\x8f\xe4\xc5", +"\x92\xdf" => "\x8f\xe4\xc6", +"\x92\xe0" => "\x8f\xe4\xc7", +"\x92\xe1" => "\x8f\xe4\xc8", +"\x92\xe3" => "\x8f\xe4\xc9", +"\x92\xe4" => "\xbd\xfb", +"\x92\xe5" => "\x8f\xe4\xca", +"\x92\xe7" => "\x8f\xe4\xcb", +"\x92\xe8" => "\x8f\xe4\xcc", +"\x92\xe9" => "\xee\xfa", +"\x92\xea" => "\xca\xdf", +"\x92\xec" => "\x8f\xe4\xcd", +"\x92\xed" => "\xb1\xd4", +"\x92\xee" => "\x8f\xe4\xce", +"\x92\xf0" => "\x8f\xe4\xcf", +"\x92\xf2" => "\xc9\xc6", +"\x92\xf3" => "\xc3\xf2", +"\x92\xf8" => "\xb5\xf8", +"\x92\xf9" => "\x8f\xe4\xd0", +"\x92\xfa" => "\xee\xfc", +"\x92\xfb" => "\x8f\xe4\xd1", +"\x92\xfc" => "\xb9\xdd", +"\x92\xff" => "\x8f\xe4\xd2", +"\x93\x00" => "\x8f\xe4\xd3", +"\x93\x02" => "\x8f\xe4\xd4", +"\x93\x06" => "\xbb\xac", +"\x93\x08" => "\x8f\xe4\xd5", +"\x93\x0d" => "\x8f\xe4\xd6", +"\x93\x0f" => "\xee\xfb", +"\x93\x10" => "\xbf\xed", +"\x93\x11" => "\x8f\xe4\xd7", +"\x93\x14" => "\x8f\xe4\xd8", +"\x93\x15" => "\x8f\xe4\xd9", +"\x93\x18" => "\xbf\xee", +"\x93\x19" => "\xef\xa1", +"\x93\x1a" => "\xef\xa3", +"\x93\x1c" => "\x8f\xe4\xda", +"\x93\x1d" => "\x8f\xe4\xdb", +"\x93\x1e" => "\x8f\xe4\xdc", +"\x93\x1f" => "\x8f\xe4\xdd", +"\x93\x20" => "\xbe\xfb", +"\x93\x21" => "\x8f\xe4\xde", +"\x93\x22" => "\xef\xa2", +"\x93\x23" => "\xef\xa4", +"\x93\x24" => "\x8f\xe4\xdf", +"\x93\x25" => "\x8f\xe4\xe0", +"\x93\x26" => "\xb6\xd3", +"\x93\x27" => "\x8f\xe4\xe1", +"\x93\x28" => "\xc9\xc5", +"\x93\x29" => "\x8f\xe4\xe2", +"\x93\x2a" => "\x8f\xe4\xe3", +"\x93\x2b" => "\xbc\xe2", +"\x93\x2c" => "\xcf\xa3", +"\x93\x2e" => "\xee\xfe", +"\x93\x2f" => "\xba\xf8", +"\x93\x32" => "\xcf\xbf", +"\x93\x33" => "\x8f\xe4\xe4", +"\x93\x34" => "\x8f\xe4\xe5", +"\x93\x35" => "\xef\xa6", +"\x93\x36" => "\x8f\xe4\xe6", +"\x93\x37" => "\x8f\xe4\xe7", +"\x93\x3a" => "\xef\xa5", +"\x93\x3b" => "\xef\xa7", +"\x93\x44" => "\xee\xfd", +"\x93\x47" => "\x8f\xe4\xe8", +"\x93\x48" => "\x8f\xe4\xe9", +"\x93\x49" => "\x8f\xe4\xea", +"\x93\x4b" => "\xc6\xe9", +"\x93\x4d" => "\xc5\xd5", +"\x93\x50" => "\x8f\xe4\xeb", +"\x93\x51" => "\x8f\xe4\xec", +"\x93\x52" => "\x8f\xe4\xed", +"\x93\x54" => "\xc4\xd7", +"\x93\x55" => "\x8f\xe4\xee", +"\x93\x56" => "\xef\xac", +"\x93\x57" => "\x8f\xe4\xef", +"\x93\x58" => "\x8f\xe4\xf0", +"\x93\x5a" => "\x8f\xe4\xf1", +"\x93\x5b" => "\xc3\xc3", +"\x93\x5c" => "\xef\xa8", +"\x93\x5e" => "\x8f\xe4\xf2", +"\x93\x60" => "\xef\xa9", +"\x93\x64" => "\x8f\xe4\xf3", +"\x93\x65" => "\x8f\xe4\xf4", +"\x93\x67" => "\x8f\xe4\xf5", +"\x93\x69" => "\x8f\xe4\xf6", +"\x93\x6a" => "\x8f\xe4\xf7", +"\x93\x6c" => "\xb7\xad", +"\x93\x6d" => "\x8f\xe4\xf8", +"\x93\x6e" => "\xef\xab", +"\x93\x6f" => "\x8f\xe4\xf9", +"\x93\x70" => "\x8f\xe4\xfa", +"\x93\x71" => "\x8f\xe4\xfb", +"\x93\x73" => "\x8f\xe4\xfc", +"\x93\x74" => "\x8f\xe4\xfd", +"\x93\x75" => "\xb8\xb0", +"\x93\x76" => "\x8f\xe4\xfe", +"\x93\x7a" => "\x8f\xe5\xa1", +"\x93\x7c" => "\xef\xaa", +"\x93\x7d" => "\x8f\xe5\xa2", +"\x93\x7e" => "\xbe\xe1", +"\x93\x7f" => "\x8f\xe5\xa3", +"\x93\x80" => "\x8f\xe5\xa4", +"\x93\x81" => "\x8f\xe5\xa5", +"\x93\x82" => "\x8f\xe5\xa6", +"\x93\x88" => "\x8f\xe5\xa7", +"\x93\x8a" => "\x8f\xe5\xa8", +"\x93\x8b" => "\x8f\xe5\xa9", +"\x93\x8c" => "\xb3\xf9", +"\x93\x8d" => "\x8f\xe5\xaa", +"\x93\x8f" => "\x8f\xe5\xab", +"\x93\x92" => "\x8f\xe5\xac", +"\x93\x94" => "\xef\xb0", +"\x93\x95" => "\x8f\xe5\xad", +"\x93\x96" => "\xba\xbf", +"\x93\x97" => "\xc1\xf9", +"\x93\x98" => "\x8f\xe5\xae", +"\x93\x9a" => "\xc4\xca", +"\x93\x9b" => "\x8f\xe5\xaf", +"\x93\x9e" => "\x8f\xe5\xb0", +"\x93\xa1" => "\x8f\xe5\xb1", +"\x93\xa3" => "\x8f\xe5\xb2", +"\x93\xa4" => "\x8f\xe5\xb3", +"\x93\xa6" => "\x8f\xe5\xb4", +"\x93\xa7" => "\xb3\xbb", +"\x93\xa8" => "\x8f\xe5\xb5", +"\x93\xa9" => "\x8f\xe5\xbb", +"\x93\xab" => "\x8f\xe5\xb6", +"\x93\xac" => "\xef\xae", +"\x93\xad" => "\xef\xaf", +"\x93\xae" => "\xc4\xc3", +"\x93\xb0" => "\xef\xad", +"\x93\xb4" => "\x8f\xe5\xb7", +"\x93\xb5" => "\x8f\xe5\xb8", +"\x93\xb6" => "\x8f\xe5\xb9", +"\x93\xb9" => "\xef\xb1", +"\x93\xba" => "\x8f\xe5\xba", +"\x93\xc1" => "\x8f\xe5\xbc", +"\x93\xc3" => "\xef\xb7", +"\x93\xc4" => "\x8f\xe5\xbd", +"\x93\xc5" => "\x8f\xe5\xbe", +"\x93\xc6" => "\x8f\xe5\xbf", +"\x93\xc7" => "\x8f\xe5\xc0", +"\x93\xc8" => "\xef\xba", +"\x93\xc9" => "\x8f\xe5\xc1", +"\x93\xca" => "\x8f\xe5\xc2", +"\x93\xcb" => "\x8f\xe5\xc3", +"\x93\xcc" => "\x8f\xe5\xc4", +"\x93\xcd" => "\x8f\xe5\xc5", +"\x93\xd0" => "\xef\xb9", +"\x93\xd1" => "\xc5\xad", +"\x93\xd3" => "\x8f\xe5\xc6", +"\x93\xd6" => "\xef\xb2", +"\x93\xd7" => "\xef\xb3", +"\x93\xd8" => "\xef\xb6", +"\x93\xd9" => "\x8f\xe5\xc7", +"\x93\xdc" => "\x8f\xe5\xc8", +"\x93\xdd" => "\xef\xb8", +"\x93\xde" => "\x8f\xe5\xc9", +"\x93\xdf" => "\x8f\xe5\xca", +"\x93\xe1" => "\xb6\xc0", +"\x93\xe2" => "\x8f\xe5\xcb", +"\x93\xe4" => "\xef\xbb", +"\x93\xe5" => "\xef\xb5", +"\x93\xe6" => "\x8f\xe5\xcc", +"\x93\xe7" => "\x8f\xe5\xcd", +"\x93\xe8" => "\xef\xb4", +"\x93\xf7" => "\x8f\xe5\xcf", +"\x93\xf8" => "\x8f\xe5\xd0", +"\x93\xf9" => "\x8f\xe5\xce", +"\x93\xfa" => "\x8f\xe5\xd1", +"\x93\xfb" => "\x8f\xe5\xd2", +"\x93\xfd" => "\x8f\xe5\xd3", +"\x94\x01" => "\x8f\xe5\xd4", +"\x94\x02" => "\x8f\xe5\xd5", +"\x94\x03" => "\xef\xbf", +"\x94\x04" => "\x8f\xe5\xd6", +"\x94\x07" => "\xef\xc0", +"\x94\x08" => "\x8f\xe5\xd7", +"\x94\x09" => "\x8f\xe5\xd8", +"\x94\x0d" => "\x8f\xe5\xd9", +"\x94\x0e" => "\x8f\xe5\xda", +"\x94\x0f" => "\x8f\xe5\xdb", +"\x94\x10" => "\xef\xc1", +"\x94\x13" => "\xef\xbe", +"\x94\x14" => "\xef\xbd", +"\x94\x15" => "\x8f\xe5\xdc", +"\x94\x16" => "\x8f\xe5\xdd", +"\x94\x17" => "\x8f\xe5\xde", +"\x94\x18" => "\xbe\xe2", +"\x94\x19" => "\xc6\xaa", +"\x94\x1a" => "\xef\xbc", +"\x94\x1f" => "\x8f\xe5\xdf", +"\x94\x21" => "\xef\xc5", +"\x94\x2b" => "\xef\xc3", +"\x94\x2e" => "\x8f\xe5\xe0", +"\x94\x2f" => "\x8f\xe5\xe1", +"\x94\x31" => "\x8f\xe5\xe2", +"\x94\x32" => "\x8f\xe5\xe3", +"\x94\x33" => "\x8f\xe5\xe4", +"\x94\x34" => "\x8f\xe5\xe5", +"\x94\x35" => "\xef\xc4", +"\x94\x36" => "\xef\xc2", +"\x94\x38" => "\xc2\xf8", +"\x94\x3a" => "\xef\xc6", +"\x94\x3b" => "\x8f\xe5\xe6", +"\x94\x3d" => "\x8f\xe5\xe8", +"\x94\x3f" => "\x8f\xe5\xe7", +"\x94\x41" => "\xef\xc7", +"\x94\x43" => "\x8f\xe5\xe9", +"\x94\x44" => "\xef\xc9", +"\x94\x45" => "\x8f\xe5\xea", +"\x94\x48" => "\x8f\xe5\xeb", +"\x94\x4a" => "\x8f\xe5\xec", +"\x94\x4c" => "\x8f\xe5\xed", +"\x94\x51" => "\xb4\xd5", +"\x94\x52" => "\xef\xc8", +"\x94\x53" => "\xcc\xfa", +"\x94\x55" => "\x8f\xe5\xee", +"\x94\x59" => "\x8f\xe5\xef", +"\x94\x5a" => "\xef\xd4", +"\x94\x5b" => "\xef\xca", +"\x94\x5c" => "\x8f\xe5\xf0", +"\x94\x5e" => "\xef\xcd", +"\x94\x5f" => "\x8f\xe5\xf1", +"\x94\x60" => "\xef\xcb", +"\x94\x61" => "\x8f\xe5\xf2", +"\x94\x62" => "\xef\xcc", +"\x94\x63" => "\x8f\xe5\xf3", +"\x94\x68" => "\x8f\xe5\xf4", +"\x94\x6a" => "\xef\xce", +"\x94\x6b" => "\x8f\xe5\xf5", +"\x94\x6d" => "\x8f\xe5\xf6", +"\x94\x6e" => "\x8f\xe5\xf7", +"\x94\x6f" => "\x8f\xe5\xf8", +"\x94\x70" => "\xef\xd0", +"\x94\x71" => "\x8f\xe5\xf9", +"\x94\x72" => "\x8f\xe5\xfa", +"\x94\x75" => "\xef\xd1", +"\x94\x77" => "\xef\xd2", +"\x94\x7c" => "\xef\xd5", +"\x94\x7d" => "\xef\xd3", +"\x94\x7e" => "\xef\xd6", +"\x94\x7f" => "\xef\xd8", +"\x94\x81" => "\xef\xd7", +"\x94\x83" => "\x8f\xe5\xfc", +"\x94\x84" => "\x8f\xe5\xfb", +"\x95\x77" => "\xc4\xb9", +"\x95\x78" => "\x8f\xe5\xfd", +"\x95\x79" => "\x8f\xe5\xfe", +"\x95\x7e" => "\x8f\xe6\xa1", +"\x95\x80" => "\xcc\xe7", +"\x95\x82" => "\xef\xd9", +"\x95\x83" => "\xc1\xae", +"\x95\x84" => "\x8f\xe6\xa2", +"\x95\x87" => "\xef\xda", +"\x95\x88" => "\x8f\xe6\xa3", +"\x95\x89" => "\xca\xc4", +"\x95\x8a" => "\xef\xdb", +"\x95\x8b" => "\xb3\xab", +"\x95\x8c" => "\x8f\xe6\xa4", +"\x95\x8d" => "\x8f\xe6\xa5", +"\x95\x8e" => "\x8f\xe6\xa6", +"\x95\x8f" => "\xb1\xbc", +"\x95\x91" => "\xb4\xd7", +"\x95\x93" => "\xb4\xd6", +"\x95\x94" => "\xef\xdc", +"\x95\x96" => "\xef\xdd", +"\x95\x98" => "\xef\xde", +"\x95\x99" => "\xef\xdf", +"\x95\x9d" => "\x8f\xe6\xa7", +"\x95\x9e" => "\x8f\xe6\xa8", +"\x95\x9f" => "\x8f\xe6\xa9", +"\x95\xa0" => "\xef\xe0", +"\x95\xa1" => "\x8f\xe6\xaa", +"\x95\xa2" => "\xb4\xd8", +"\x95\xa3" => "\xb3\xd5", +"\x95\xa4" => "\xb9\xde", +"\x95\xa5" => "\xc8\xb6", +"\x95\xa6" => "\x8f\xe6\xab", +"\x95\xa7" => "\xef\xe2", +"\x95\xa8" => "\xef\xe1", +"\x95\xa9" => "\x8f\xe6\xac", +"\x95\xab" => "\x8f\xe6\xad", +"\x95\xac" => "\x8f\xe6\xae", +"\x95\xad" => "\xef\xe3", +"\x95\xb2" => "\xb1\xdc", +"\x95\xb4" => "\x8f\xe6\xaf", +"\x95\xb6" => "\x8f\xe6\xb0", +"\x95\xb9" => "\xef\xe6", +"\x95\xba" => "\x8f\xe6\xb1", +"\x95\xbb" => "\xef\xe5", +"\x95\xbc" => "\xef\xe4", +"\x95\xbd" => "\x8f\xe6\xb2", +"\x95\xbe" => "\xef\xe7", +"\x95\xbf" => "\x8f\xe6\xb3", +"\x95\xc3" => "\xef\xea", +"\x95\xc6" => "\x8f\xe6\xb4", +"\x95\xc7" => "\xb0\xc7", +"\x95\xc8" => "\x8f\xe6\xb5", +"\x95\xc9" => "\x8f\xe6\xb6", +"\x95\xca" => "\xef\xe8", +"\x95\xcb" => "\x8f\xe6\xb7", +"\x95\xcc" => "\xef\xec", +"\x95\xcd" => "\xef\xeb", +"\x95\xd0" => "\x8f\xe6\xb8", +"\x95\xd1" => "\x8f\xe6\xb9", +"\x95\xd2" => "\x8f\xe6\xba", +"\x95\xd3" => "\x8f\xe6\xbb", +"\x95\xd4" => "\xef\xee", +"\x95\xd5" => "\xef\xed", +"\x95\xd6" => "\xef\xef", +"\x95\xd8" => "\xc6\xae", +"\x95\xd9" => "\x8f\xe6\xbc", +"\x95\xda" => "\x8f\xe6\xbd", +"\x95\xdc" => "\xef\xf0", +"\x95\xdd" => "\x8f\xe6\xbe", +"\x95\xde" => "\x8f\xe6\xbf", +"\x95\xdf" => "\x8f\xe6\xc0", +"\x95\xe0" => "\x8f\xe6\xc1", +"\x95\xe1" => "\xef\xf1", +"\x95\xe2" => "\xef\xf3", +"\x95\xe4" => "\x8f\xe6\xc2", +"\x95\xe5" => "\xef\xf2", +"\x95\xe6" => "\x8f\xe6\xc3", +"\x96\x1c" => "\xc9\xec", +"\x96\x1d" => "\x8f\xe6\xc4", +"\x96\x1e" => "\x8f\xe6\xc5", +"\x96\x21" => "\xef\xf4", +"\x96\x22" => "\x8f\xe6\xc6", +"\x96\x24" => "\x8f\xe6\xc7", +"\x96\x25" => "\x8f\xe6\xc8", +"\x96\x26" => "\x8f\xe6\xc9", +"\x96\x28" => "\xef\xf5", +"\x96\x2a" => "\xba\xe5", +"\x96\x2c" => "\x8f\xe6\xca", +"\x96\x2e" => "\xef\xf6", +"\x96\x2f" => "\xef\xf7", +"\x96\x31" => "\x8f\xe6\xcb", +"\x96\x32" => "\xcb\xc9", +"\x96\x33" => "\x8f\xe6\xcc", +"\x96\x37" => "\x8f\xe6\xcd", +"\x96\x38" => "\x8f\xe6\xce", +"\x96\x39" => "\x8f\xe6\xcf", +"\x96\x3a" => "\x8f\xe6\xd0", +"\x96\x3b" => "\xc1\xcb", +"\x96\x3c" => "\x8f\xe6\xd1", +"\x96\x3d" => "\x8f\xe6\xd2", +"\x96\x3f" => "\xb0\xa4", +"\x96\x40" => "\xc2\xcb", +"\x96\x41" => "\x8f\xe6\xd3", +"\x96\x42" => "\xef\xf8", +"\x96\x44" => "\xc9\xed", +"\x96\x4b" => "\xef\xfb", +"\x96\x4c" => "\xef\xf9", +"\x96\x4d" => "\xb9\xdf", +"\x96\x4f" => "\xef\xfa", +"\x96\x50" => "\xb8\xc2", +"\x96\x52" => "\x8f\xe6\xd4", +"\x96\x54" => "\x8f\xe6\xd5", +"\x96\x56" => "\x8f\xe6\xd6", +"\x96\x57" => "\x8f\xe6\xd7", +"\x96\x58" => "\x8f\xe6\xd8", +"\x96\x5b" => "\xca\xc5", +"\x96\x5c" => "\xef\xfd", +"\x96\x5d" => "\xf0\xa1", +"\x96\x5e" => "\xef\xfe", +"\x96\x5f" => "\xf0\xa2", +"\x96\x61" => "\x8f\xe6\xd9", +"\x96\x62" => "\xb1\xa1", +"\x96\x63" => "\xbf\xd8", +"\x96\x64" => "\xbd\xfc", +"\x96\x65" => "\xb4\xd9", +"\x96\x66" => "\xf0\xa3", +"\x96\x6a" => "\xc7\xe6", +"\x96\x6c" => "\xf0\xa5", +"\x96\x6e" => "\x8f\xe6\xda", +"\x96\x70" => "\xb1\xa2", +"\x96\x72" => "\xf0\xa4", +"\x96\x73" => "\xc4\xc4", +"\x96\x74" => "\x8f\xe6\xdb", +"\x96\x75" => "\xce\xcd", +"\x96\x76" => "\xc6\xab", +"\x96\x77" => "\xef\xfc", +"\x96\x78" => "\xce\xa6", +"\x96\x7a" => "\xb8\xb1", +"\x96\x7b" => "\x8f\xe6\xdc", +"\x96\x7c" => "\x8f\xe6\xdd", +"\x96\x7d" => "\xcd\xdb", +"\x96\x7e" => "\x8f\xe6\xde", +"\x96\x7f" => "\x8f\xe6\xdf", +"\x96\x81" => "\x8f\xe6\xe0", +"\x96\x82" => "\x8f\xe6\xe1", +"\x96\x83" => "\x8f\xe6\xe2", +"\x96\x84" => "\x8f\xe6\xe3", +"\x96\x85" => "\xb6\xf9", +"\x96\x86" => "\xce\xb4", +"\x96\x88" => "\xb7\xa8", +"\x96\x89" => "\x8f\xe6\xe4", +"\x96\x8a" => "\xc2\xe2", +"\x96\x8b" => "\xe7\xa1", +"\x96\x8d" => "\xf0\xa6", +"\x96\x8e" => "\xb3\xac", +"\x96\x8f" => "\xbf\xef", +"\x96\x91" => "\x8f\xe6\xe5", +"\x96\x94" => "\xb3\xd6", +"\x96\x95" => "\xf0\xa8", +"\x96\x96" => "\x8f\xe6\xe6", +"\x96\x97" => "\xf0\xa9", +"\x96\x98" => "\xf0\xa7", +"\x96\x99" => "\xb7\xe4", +"\x96\x9a" => "\x8f\xe6\xe7", +"\x96\x9b" => "\xba\xdd", +"\x96\x9c" => "\xbe\xe3", +"\x96\x9d" => "\x8f\xe6\xe8", +"\x96\x9f" => "\x8f\xe6\xe9", +"\x96\xa0" => "\xb1\xa3", +"\x96\xa3" => "\xce\xd9", +"\x96\xa4" => "\x8f\xe6\xea", +"\x96\xa5" => "\x8f\xe6\xeb", +"\x96\xa6" => "\x8f\xe6\xec", +"\x96\xa7" => "\xf0\xab", +"\x96\xa8" => "\xee\xae", +"\x96\xa9" => "\x8f\xe6\xed", +"\x96\xaa" => "\xf0\xaa", +"\x96\xae" => "\x8f\xe6\xee", +"\x96\xaf" => "\x8f\xe6\xef", +"\x96\xb0" => "\xf0\xae", +"\x96\xb1" => "\xf0\xac", +"\x96\xb2" => "\xf0\xad", +"\x96\xb3" => "\x8f\xe6\xf0", +"\x96\xb4" => "\xf0\xaf", +"\x96\xb6" => "\xf0\xb0", +"\x96\xb7" => "\xce\xec", +"\x96\xb8" => "\xf0\xb1", +"\x96\xb9" => "\xf0\xb2", +"\x96\xba" => "\x8f\xe6\xf1", +"\x96\xbb" => "\xc0\xc9", +"\x96\xbc" => "\xc8\xbb", +"\x96\xc0" => "\xbf\xfd", +"\x96\xc1" => "\xb4\xe7", +"\x96\xc4" => "\xcd\xba", +"\x96\xc5" => "\xb2\xed", +"\x96\xc6" => "\xbd\xb8", +"\x96\xc7" => "\xb8\xdb", +"\x96\xc9" => "\xf0\xb5", +"\x96\xca" => "\x8f\xe6\xf2", +"\x96\xcb" => "\xf0\xb4", +"\x96\xcc" => "\xbb\xf3", +"\x96\xcd" => "\xf0\xb6", +"\x96\xce" => "\xf0\xb3", +"\x96\xd1" => "\xbb\xa8", +"\x96\xd2" => "\x8f\xe6\xf3", +"\x96\xd5" => "\xf0\xba", +"\x96\xd6" => "\xea\xad", +"\x96\xd8" => "\x8f\xe6\xf5", +"\x96\xd9" => "\xd2\xd6", +"\x96\xda" => "\x8f\xe6\xf6", +"\x96\xdb" => "\xbf\xf7", +"\x96\xdc" => "\xf0\xb8", +"\x96\xdd" => "\x8f\xe6\xf7", +"\x96\xde" => "\x8f\xe6\xf8", +"\x96\xdf" => "\x8f\xe6\xf9", +"\x96\xe2" => "\xce\xa5", +"\x96\xe3" => "\xc6\xf1", +"\x96\xe8" => "\xb1\xab", +"\x96\xe9" => "\x8f\xe6\xfa", +"\x96\xea" => "\xc0\xe3", +"\x96\xeb" => "\xbc\xb6", +"\x96\xef" => "\x8f\xe6\xfb", +"\x96\xf0" => "\xca\xb7", +"\x96\xf1" => "\x8f\xe6\xfc", +"\x96\xf2" => "\xb1\xc0", +"\x96\xf6" => "\xce\xed", +"\x96\xf7" => "\xcd\xeb", +"\x96\xf9" => "\xf0\xbb", +"\x96\xfa" => "\x8f\xe6\xfd", +"\x96\xfb" => "\xc5\xc5", +"\x97\x00" => "\xbc\xfb", +"\x97\x02" => "\x8f\xe6\xfe", +"\x97\x03" => "\x8f\xe7\xa1", +"\x97\x04" => "\xf0\xbc", +"\x97\x05" => "\x8f\xe7\xa2", +"\x97\x06" => "\xf0\xbd", +"\x97\x07" => "\xbf\xcc", +"\x97\x08" => "\xf0\xbe", +"\x97\x09" => "\x8f\xe7\xa3", +"\x97\x0a" => "\xce\xee", +"\x97\x0d" => "\xf0\xb9", +"\x97\x0e" => "\xf0\xc0", +"\x97\x0f" => "\xf0\xc2", +"\x97\x11" => "\xf0\xc1", +"\x97\x13" => "\xf0\xbf", +"\x97\x16" => "\xf0\xc3", +"\x97\x19" => "\xf0\xc4", +"\x97\x1a" => "\x8f\xe7\xa4", +"\x97\x1b" => "\x8f\xe7\xa5", +"\x97\x1c" => "\xc1\xfa", +"\x97\x1d" => "\x8f\xe7\xa6", +"\x97\x1e" => "\xb2\xe2", +"\x97\x21" => "\x8f\xe7\xa7", +"\x97\x22" => "\x8f\xe7\xa8", +"\x97\x23" => "\x8f\xe7\xa9", +"\x97\x24" => "\xf0\xc5", +"\x97\x27" => "\xcc\xb8", +"\x97\x28" => "\x8f\xe7\xaa", +"\x97\x2a" => "\xf0\xc6", +"\x97\x30" => "\xf0\xc7", +"\x97\x31" => "\x8f\xe7\xab", +"\x97\x32" => "\xcf\xaa", +"\x97\x33" => "\x8f\xe7\xac", +"\x97\x38" => "\xdb\xb1", +"\x97\x39" => "\xf0\xc8", +"\x97\x3d" => "\xf0\xc9", +"\x97\x3e" => "\xf0\xca", +"\x97\x41" => "\x8f\xe7\xad", +"\x97\x42" => "\xf0\xce", +"\x97\x43" => "\x8f\xe7\xae", +"\x97\x44" => "\xf0\xcb", +"\x97\x46" => "\xf0\xcc", +"\x97\x48" => "\xf0\xcd", +"\x97\x49" => "\xf0\xcf", +"\x97\x4a" => "\x8f\xe7\xaf", +"\x97\x4e" => "\x8f\xe7\xb0", +"\x97\x4f" => "\x8f\xe7\xb1", +"\x97\x52" => "\xc0\xc4", +"\x97\x55" => "\x8f\xe7\xb2", +"\x97\x56" => "\xcc\xf7", +"\x97\x57" => "\x8f\xe7\xb3", +"\x97\x58" => "\x8f\xe7\xb4", +"\x97\x59" => "\xc0\xc5", +"\x97\x5a" => "\x8f\xe7\xb5", +"\x97\x5b" => "\x8f\xe7\xb6", +"\x97\x5c" => "\xf0\xd0", +"\x97\x5e" => "\xc8\xf3", +"\x97\x60" => "\xf0\xd1", +"\x97\x61" => "\xf3\xd3", +"\x97\x62" => "\xcc\xcc", +"\x97\x63" => "\x8f\xe7\xb7", +"\x97\x64" => "\xf0\xd2", +"\x97\x66" => "\xf0\xd3", +"\x97\x67" => "\x8f\xe7\xb8", +"\x97\x68" => "\xf0\xd4", +"\x97\x69" => "\xb3\xd7", +"\x97\x6a" => "\x8f\xe7\xb9", +"\x97\x6b" => "\xf0\xd6", +"\x97\x6d" => "\xbf\xd9", +"\x97\x6e" => "\x8f\xe7\xba", +"\x97\x71" => "\xf0\xd7", +"\x97\x73" => "\x8f\xe7\xbb", +"\x97\x74" => "\xb7\xa4", +"\x97\x76" => "\x8f\xe7\xbc", +"\x97\x77" => "\x8f\xe7\xbd", +"\x97\x78" => "\x8f\xe7\xbe", +"\x97\x79" => "\xf0\xd8", +"\x97\x7a" => "\xf0\xdc", +"\x97\x7b" => "\x8f\xe7\xbf", +"\x97\x7c" => "\xf0\xda", +"\x97\x7d" => "\x8f\xe7\xc0", +"\x97\x7f" => "\x8f\xe7\xc1", +"\x97\x80" => "\x8f\xe7\xc2", +"\x97\x81" => "\xf0\xdb", +"\x97\x84" => "\xb3\xf3", +"\x97\x85" => "\xf0\xd9", +"\x97\x86" => "\xf0\xdd", +"\x97\x89" => "\x8f\xe7\xc3", +"\x97\x8b" => "\xf0\xde", +"\x97\x8d" => "\xb0\xc8", +"\x97\x8f" => "\xf0\xdf", +"\x97\x90" => "\xf0\xe0", +"\x97\x95" => "\x8f\xe7\xc4", +"\x97\x96" => "\x8f\xe7\xc5", +"\x97\x97" => "\x8f\xe7\xc6", +"\x97\x98" => "\xbe\xe4", +"\x97\x99" => "\x8f\xe7\xc7", +"\x97\x9a" => "\x8f\xe7\xc8", +"\x97\x9c" => "\xf0\xe1", +"\x97\x9e" => "\x8f\xe7\xc9", +"\x97\x9f" => "\x8f\xe7\xca", +"\x97\xa0" => "\xb5\xc7", +"\x97\xa2" => "\x8f\xe7\xcb", +"\x97\xa3" => "\xf0\xe4", +"\x97\xa6" => "\xf0\xe3", +"\x97\xa8" => "\xf0\xe2", +"\x97\xab" => "\xeb\xf1", +"\x97\xac" => "\x8f\xe7\xcc", +"\x97\xad" => "\xca\xdc", +"\x97\xae" => "\x8f\xe7\xcd", +"\x97\xb1" => "\x8f\xe7\xce", +"\x97\xb2" => "\x8f\xe7\xcf", +"\x97\xb3" => "\xf0\xe5", +"\x97\xb4" => "\xf0\xe6", +"\x97\xb5" => "\x8f\xe7\xd0", +"\x97\xb6" => "\x8f\xe7\xd1", +"\x97\xb8" => "\x8f\xe7\xd2", +"\x97\xb9" => "\x8f\xe7\xd3", +"\x97\xba" => "\x8f\xe7\xd4", +"\x97\xbc" => "\x8f\xe7\xd5", +"\x97\xbe" => "\x8f\xe7\xd6", +"\x97\xbf" => "\x8f\xe7\xd7", +"\x97\xc1" => "\x8f\xe7\xd8", +"\x97\xc3" => "\xf0\xe7", +"\x97\xc4" => "\x8f\xe7\xd9", +"\x97\xc5" => "\x8f\xe7\xda", +"\x97\xc6" => "\xf0\xe8", +"\x97\xc7" => "\x8f\xe7\xdb", +"\x97\xc8" => "\xf0\xe9", +"\x97\xc9" => "\x8f\xe7\xdc", +"\x97\xca" => "\x8f\xe7\xdd", +"\x97\xcb" => "\xf0\xea", +"\x97\xcc" => "\x8f\xe7\xde", +"\x97\xcd" => "\x8f\xe7\xdf", +"\x97\xce" => "\x8f\xe7\xe0", +"\x97\xd0" => "\x8f\xe7\xe1", +"\x97\xd1" => "\x8f\xe7\xe2", +"\x97\xd3" => "\xb4\xda", +"\x97\xd4" => "\x8f\xe7\xe3", +"\x97\xd7" => "\x8f\xe7\xe4", +"\x97\xd8" => "\x8f\xe7\xe5", +"\x97\xd9" => "\x8f\xe7\xe6", +"\x97\xdb" => "\x8f\xe7\xea", +"\x97\xdc" => "\xf0\xeb", +"\x97\xdd" => "\x8f\xe7\xe7", +"\x97\xde" => "\x8f\xe7\xe8", +"\x97\xe0" => "\x8f\xe7\xe9", +"\x97\xe1" => "\x8f\xe7\xeb", +"\x97\xe4" => "\x8f\xe7\xec", +"\x97\xed" => "\xf0\xec", +"\x97\xee" => "\xc7\xa3", +"\x97\xef" => "\x8f\xe7\xed", +"\x97\xf1" => "\x8f\xe7\xee", +"\x97\xf2" => "\xf0\xee", +"\x97\xf3" => "\xb2\xbb", +"\x97\xf4" => "\x8f\xe7\xef", +"\x97\xf5" => "\xf0\xf1", +"\x97\xf6" => "\xf0\xf0", +"\x97\xf7" => "\x8f\xe7\xf0", +"\x97\xf8" => "\x8f\xe7\xf1", +"\x97\xfa" => "\x8f\xe7\xf2", +"\x97\xfb" => "\xb1\xa4", +"\x97\xff" => "\xb6\xc1", +"\x98\x01" => "\xca\xc7", +"\x98\x02" => "\xc4\xba", +"\x98\x03" => "\xba\xa2", +"\x98\x05" => "\xb9\xe0", +"\x98\x06" => "\xbd\xe7", +"\x98\x07" => "\x8f\xe7\xf3", +"\x98\x08" => "\xbf\xdc", +"\x98\x0a" => "\x8f\xe7\xf4", +"\x98\x0c" => "\xf0\xf3", +"\x98\x0d" => "\x8f\xe7\xf6", +"\x98\x0e" => "\x8f\xe7\xf7", +"\x98\x0f" => "\xf0\xf2", +"\x98\x10" => "\xcd\xc2", +"\x98\x11" => "\xb4\xe8", +"\x98\x12" => "\xc8\xd2", +"\x98\x13" => "\xc6\xdc", +"\x98\x14" => "\x8f\xe7\xf8", +"\x98\x16" => "\x8f\xe7\xf9", +"\x98\x17" => "\xbf\xfc", +"\x98\x18" => "\xce\xce", +"\x98\x19" => "\x8f\xe7\xf5", +"\x98\x1a" => "\xb7\xdb", +"\x98\x1c" => "\x8f\xe7\xfa", +"\x98\x1e" => "\x8f\xe7\xfb", +"\x98\x20" => "\x8f\xe7\xfc", +"\x98\x21" => "\xf0\xf6", +"\x98\x23" => "\x8f\xe7\xfd", +"\x98\x24" => "\xf0\xf5", +"\x98\x25" => "\x8f\xe8\xa8", +"\x98\x26" => "\x8f\xe7\xfe", +"\x98\x2b" => "\x8f\xe8\xa1", +"\x98\x2c" => "\xcb\xcb", +"\x98\x2d" => "\xc6\xac", +"\x98\x2e" => "\x8f\xe8\xa2", +"\x98\x2f" => "\x8f\xe8\xa3", +"\x98\x30" => "\x8f\xe8\xa4", +"\x98\x32" => "\x8f\xe8\xa5", +"\x98\x33" => "\x8f\xe8\xa6", +"\x98\x34" => "\xb1\xd0", +"\x98\x35" => "\x8f\xe8\xa7", +"\x98\x37" => "\xf0\xf7", +"\x98\x38" => "\xf0\xf4", +"\x98\x3b" => "\xc9\xd1", +"\x98\x3c" => "\xcd\xea", +"\x98\x3d" => "\xf0\xf8", +"\x98\x3e" => "\x8f\xe8\xa9", +"\x98\x44" => "\x8f\xe8\xaa", +"\x98\x46" => "\xf0\xf9", +"\x98\x47" => "\x8f\xe8\xab", +"\x98\x4a" => "\x8f\xe8\xac", +"\x98\x4b" => "\xf0\xfb", +"\x98\x4c" => "\xc2\xea", +"\x98\x4d" => "\xb3\xdb", +"\x98\x4e" => "\xb3\xdc", +"\x98\x4f" => "\xf0\xfa", +"\x98\x51" => "\x8f\xe8\xad", +"\x98\x52" => "\x8f\xe8\xae", +"\x98\x53" => "\x8f\xe8\xaf", +"\x98\x54" => "\xb4\xe9", +"\x98\x55" => "\xb8\xb2", +"\x98\x56" => "\x8f\xe8\xb0", +"\x98\x57" => "\x8f\xe8\xb1", +"\x98\x58" => "\xb4\xea", +"\x98\x59" => "\x8f\xe8\xb2", +"\x98\x5a" => "\x8f\xe8\xb3", +"\x98\x5b" => "\xc5\xbf", +"\x98\x5e" => "\xce\xe0", +"\x98\x62" => "\x8f\xe8\xb4", +"\x98\x63" => "\x8f\xe8\xb5", +"\x98\x65" => "\x8f\xe8\xb6", +"\x98\x66" => "\x8f\xe8\xb7", +"\x98\x67" => "\xb8\xdc", +"\x98\x6a" => "\x8f\xe8\xb8", +"\x98\x6b" => "\xf0\xfc", +"\x98\x6c" => "\x8f\xe8\xb9", +"\x98\x6f" => "\xf0\xfd", +"\x98\x70" => "\xf0\xfe", +"\x98\x71" => "\xf1\xa1", +"\x98\x73" => "\xf1\xa3", +"\x98\x74" => "\xf1\xa2", +"\x98\xa8" => "\xc9\xf7", +"\x98\xaa" => "\xf1\xa4", +"\x98\xab" => "\x8f\xe8\xba", +"\x98\xad" => "\x8f\xe8\xbb", +"\x98\xae" => "\x8f\xe8\xbc", +"\x98\xaf" => "\xf1\xa5", +"\x98\xb0" => "\x8f\xe8\xbd", +"\x98\xb1" => "\xf1\xa6", +"\x98\xb4" => "\x8f\xe8\xbe", +"\x98\xb6" => "\xf1\xa7", +"\x98\xb7" => "\x8f\xe8\xbf", +"\x98\xb8" => "\x8f\xe8\xc0", +"\x98\xba" => "\x8f\xe8\xc1", +"\x98\xbb" => "\x8f\xe8\xc2", +"\x98\xbf" => "\x8f\xe8\xc3", +"\x98\xc2" => "\x8f\xe8\xc4", +"\x98\xc3" => "\xf1\xa9", +"\x98\xc4" => "\xf1\xa8", +"\x98\xc5" => "\x8f\xe8\xc5", +"\x98\xc6" => "\xf1\xaa", +"\x98\xc8" => "\x8f\xe8\xc6", +"\x98\xcc" => "\x8f\xe8\xc7", +"\x98\xdb" => "\xc8\xf4", +"\x98\xdc" => "\xe6\xcc", +"\x98\xdf" => "\xbf\xa9", +"\x98\xe1" => "\x8f\xe8\xc8", +"\x98\xe2" => "\xb5\xb2", +"\x98\xe3" => "\x8f\xe8\xc9", +"\x98\xe5" => "\x8f\xe8\xca", +"\x98\xe6" => "\x8f\xe8\xcb", +"\x98\xe7" => "\x8f\xe8\xcc", +"\x98\xe9" => "\xf1\xab", +"\x98\xea" => "\x8f\xe8\xcd", +"\x98\xeb" => "\xf1\xac", +"\x98\xed" => "\xd2\xac", +"\x98\xee" => "\xdd\xbb", +"\x98\xef" => "\xc8\xd3", +"\x98\xf2" => "\xb0\xfb", +"\x98\xf3" => "\x8f\xe8\xce", +"\x98\xf4" => "\xb0\xbb", +"\x98\xf6" => "\x8f\xe8\xcf", +"\x98\xfc" => "\xbb\xf4", +"\x98\xfd" => "\xcb\xb0", +"\x98\xfe" => "\xbe\xfe", +"\x99\x02" => "\x8f\xe8\xd0", +"\x99\x03" => "\xf1\xad", +"\x99\x05" => "\xcc\xdf", +"\x99\x07" => "\x8f\xe8\xd1", +"\x99\x08" => "\x8f\xe8\xd2", +"\x99\x09" => "\xf1\xae", +"\x99\x0a" => "\xcd\xdc", +"\x99\x0c" => "\xb1\xc2", +"\x99\x10" => "\xbb\xc1", +"\x99\x11" => "\x8f\xe8\xd3", +"\x99\x12" => "\xf1\xaf", +"\x99\x13" => "\xb2\xee", +"\x99\x14" => "\xf1\xb0", +"\x99\x15" => "\x8f\xe8\xd4", +"\x99\x16" => "\x8f\xe8\xd5", +"\x99\x17" => "\x8f\xe8\xd6", +"\x99\x18" => "\xf1\xb1", +"\x99\x1a" => "\x8f\xe8\xd7", +"\x99\x1b" => "\x8f\xe8\xd8", +"\x99\x1c" => "\x8f\xe8\xd9", +"\x99\x1d" => "\xf1\xb3", +"\x99\x1e" => "\xf1\xb4", +"\x99\x1f" => "\x8f\xe8\xda", +"\x99\x20" => "\xf1\xb6", +"\x99\x21" => "\xf1\xb2", +"\x99\x22" => "\x8f\xe8\xdb", +"\x99\x24" => "\xf1\xb5", +"\x99\x26" => "\x8f\xe8\xdc", +"\x99\x27" => "\x8f\xe8\xdd", +"\x99\x28" => "\xb4\xdb", +"\x99\x2b" => "\x8f\xe8\xde", +"\x99\x2c" => "\xf1\xb7", +"\x99\x2e" => "\xf1\xb8", +"\x99\x31" => "\x8f\xe8\xdf", +"\x99\x32" => "\x8f\xe8\xe0", +"\x99\x33" => "\x8f\xe8\xe1", +"\x99\x34" => "\x8f\xe8\xe2", +"\x99\x35" => "\x8f\xe8\xe3", +"\x99\x39" => "\x8f\xe8\xe4", +"\x99\x3a" => "\x8f\xe8\xe5", +"\x99\x3b" => "\x8f\xe8\xe6", +"\x99\x3c" => "\x8f\xe8\xe7", +"\x99\x3d" => "\xf1\xb9", +"\x99\x3e" => "\xf1\xba", +"\x99\x40" => "\x8f\xe8\xe8", +"\x99\x41" => "\x8f\xe8\xe9", +"\x99\x42" => "\xf1\xbb", +"\x99\x45" => "\xf1\xbd", +"\x99\x46" => "\x8f\xe8\xea", +"\x99\x47" => "\x8f\xe8\xeb", +"\x99\x48" => "\x8f\xe8\xec", +"\x99\x49" => "\xf1\xbc", +"\x99\x4b" => "\xf1\xbf", +"\x99\x4c" => "\xf1\xc2", +"\x99\x4d" => "\x8f\xe8\xed", +"\x99\x4e" => "\x8f\xe8\xee", +"\x99\x50" => "\xf1\xbe", +"\x99\x51" => "\xf1\xc0", +"\x99\x52" => "\xf1\xc1", +"\x99\x54" => "\x8f\xe8\xef", +"\x99\x55" => "\xf1\xc3", +"\x99\x57" => "\xb6\xc2", +"\x99\x58" => "\x8f\xe8\xf0", +"\x99\x59" => "\x8f\xe8\xf1", +"\x99\x5b" => "\x8f\xe8\xf2", +"\x99\x5c" => "\x8f\xe8\xf3", +"\x99\x5e" => "\x8f\xe8\xf4", +"\x99\x5f" => "\x8f\xe8\xf5", +"\x99\x60" => "\x8f\xe8\xf6", +"\x99\x96" => "\xbc\xf3", +"\x99\x97" => "\xf1\xc4", +"\x99\x98" => "\xf1\xc5", +"\x99\x99" => "\xb9\xe1", +"\x99\x9b" => "\x8f\xe8\xf7", +"\x99\x9d" => "\x8f\xe8\xf8", +"\x99\x9f" => "\x8f\xe8\xf9", +"\x99\xa5" => "\xf1\xc6", +"\x99\xa6" => "\x8f\xe8\xfa", +"\x99\xa8" => "\xb3\xbe", +"\x99\xac" => "\xc7\xcf", +"\x99\xad" => "\xf1\xc7", +"\x99\xae" => "\xf1\xc8", +"\x99\xb0" => "\x8f\xe8\xfb", +"\x99\xb1" => "\x8f\xe8\xfc", +"\x99\xb2" => "\x8f\xe8\xfd", +"\x99\xb3" => "\xc3\xda", +"\x99\xb4" => "\xc6\xeb", +"\x99\xb5" => "\x8f\xe8\xfe", +"\x99\xb9" => "\x8f\xe9\xa1", +"\x99\xba" => "\x8f\xe9\xa2", +"\x99\xbc" => "\xf1\xc9", +"\x99\xbd" => "\x8f\xe9\xa3", +"\x99\xbf" => "\x8f\xe9\xa4", +"\x99\xc1" => "\xc7\xfd", +"\x99\xc3" => "\x8f\xe9\xa5", +"\x99\xc4" => "\xc2\xcc", +"\x99\xc5" => "\xb1\xd8", +"\x99\xc6" => "\xb6\xee", +"\x99\xc8" => "\xb6\xef", +"\x99\xc9" => "\x8f\xe9\xa6", +"\x99\xd0" => "\xc3\xf3", +"\x99\xd1" => "\xf1\xce", +"\x99\xd2" => "\xb6\xf0", +"\x99\xd3" => "\x8f\xe9\xa7", +"\x99\xd4" => "\x8f\xe9\xa8", +"\x99\xd5" => "\xb2\xef", +"\x99\xd8" => "\xf1\xcd", +"\x99\xd9" => "\x8f\xe9\xa9", +"\x99\xda" => "\x8f\xe9\xaa", +"\x99\xdb" => "\xf1\xcb", +"\x99\xdc" => "\x8f\xe9\xab", +"\x99\xdd" => "\xf1\xcc", +"\x99\xde" => "\x8f\xe9\xac", +"\x99\xdf" => "\xf1\xca", +"\x99\xe2" => "\xf1\xd8", +"\x99\xe7" => "\x8f\xe9\xad", +"\x99\xea" => "\x8f\xe9\xae", +"\x99\xeb" => "\x8f\xe9\xaf", +"\x99\xec" => "\x8f\xe9\xb0", +"\x99\xed" => "\xf1\xcf", +"\x99\xee" => "\xf1\xd0", +"\x99\xf0" => "\x8f\xe9\xb1", +"\x99\xf1" => "\xf1\xd1", +"\x99\xf2" => "\xf1\xd2", +"\x99\xf4" => "\x8f\xe9\xb2", +"\x99\xf5" => "\x8f\xe9\xb3", +"\x99\xf8" => "\xf1\xd4", +"\x99\xf9" => "\x8f\xe9\xb4", +"\x99\xfb" => "\xf1\xd3", +"\x99\xfd" => "\x8f\xe9\xb5", +"\x99\xfe" => "\x8f\xe9\xb6", +"\x99\xff" => "\xbd\xd9", +"\x9a\x01" => "\xf1\xd5", +"\x9a\x02" => "\x8f\xe9\xb7", +"\x9a\x03" => "\x8f\xe9\xb8", +"\x9a\x04" => "\x8f\xe9\xb9", +"\x9a\x05" => "\xf1\xd7", +"\x9a\x0b" => "\x8f\xe9\xba", +"\x9a\x0c" => "\x8f\xe9\xbb", +"\x9a\x0e" => "\xb5\xb3", +"\x9a\x0f" => "\xf1\xd6", +"\x9a\x10" => "\x8f\xe9\xbc", +"\x9a\x11" => "\x8f\xe9\xbd", +"\x9a\x12" => "\xc1\xfb", +"\x9a\x13" => "\xb8\xb3", +"\x9a\x16" => "\x8f\xe9\xbe", +"\x9a\x19" => "\xf1\xd9", +"\x9a\x1e" => "\x8f\xe9\xbf", +"\x9a\x20" => "\x8f\xe9\xc0", +"\x9a\x22" => "\x8f\xe9\xc1", +"\x9a\x23" => "\x8f\xe9\xc2", +"\x9a\x24" => "\x8f\xe9\xc3", +"\x9a\x27" => "\x8f\xe9\xc4", +"\x9a\x28" => "\xc2\xcd", +"\x9a\x2b" => "\xf1\xda", +"\x9a\x2d" => "\x8f\xe9\xc5", +"\x9a\x2e" => "\x8f\xe9\xc6", +"\x9a\x30" => "\xc6\xad", +"\x9a\x33" => "\x8f\xe9\xc7", +"\x9a\x35" => "\x8f\xe9\xc8", +"\x9a\x36" => "\x8f\xe9\xc9", +"\x9a\x37" => "\xf1\xdb", +"\x9a\x38" => "\x8f\xe9\xca", +"\x9a\x3e" => "\xf1\xe0", +"\x9a\x40" => "\xf1\xde", +"\x9a\x41" => "\x8f\xe9\xcc", +"\x9a\x42" => "\xf1\xdd", +"\x9a\x43" => "\xf1\xdf", +"\x9a\x44" => "\x8f\xe9\xcd", +"\x9a\x45" => "\xf1\xdc", +"\x9a\x47" => "\x8f\xe9\xcb", +"\x9a\x4a" => "\x8f\xe9\xce", +"\x9a\x4b" => "\x8f\xe9\xcf", +"\x9a\x4c" => "\x8f\xe9\xd0", +"\x9a\x4d" => "\xf1\xe2", +"\x9a\x4e" => "\x8f\xe9\xd1", +"\x9a\x51" => "\x8f\xe9\xd2", +"\x9a\x54" => "\x8f\xe9\xd3", +"\x9a\x55" => "\xf1\xe1", +"\x9a\x56" => "\x8f\xe9\xd4", +"\x9a\x57" => "\xf1\xe4", +"\x9a\x5a" => "\xb6\xc3", +"\x9a\x5b" => "\xf1\xe3", +"\x9a\x5d" => "\x8f\xe9\xd5", +"\x9a\x5f" => "\xf1\xe5", +"\x9a\x62" => "\xf1\xe6", +"\x9a\x64" => "\xf1\xe8", +"\x9a\x65" => "\xf1\xe7", +"\x9a\x69" => "\xf1\xe9", +"\x9a\x6a" => "\xf1\xeb", +"\x9a\x6b" => "\xf1\xea", +"\x9a\xa8" => "\xb9\xfc", +"\x9a\xaa" => "\x8f\xe9\xd6", +"\x9a\xac" => "\x8f\xe9\xd7", +"\x9a\xad" => "\xf1\xec", +"\x9a\xae" => "\x8f\xe9\xd8", +"\x9a\xaf" => "\x8f\xe9\xd9", +"\x9a\xb0" => "\xf1\xed", +"\x9a\xb2" => "\x8f\xe9\xda", +"\x9a\xb4" => "\x8f\xe9\xdb", +"\x9a\xb5" => "\x8f\xe9\xdc", +"\x9a\xb6" => "\x8f\xe9\xdd", +"\x9a\xb8" => "\xb3\xbc", +"\x9a\xb9" => "\x8f\xe9\xde", +"\x9a\xbb" => "\x8f\xe9\xdf", +"\x9a\xbc" => "\xf1\xee", +"\x9a\xbe" => "\x8f\xe9\xe0", +"\x9a\xbf" => "\x8f\xe9\xe1", +"\x9a\xc0" => "\xf1\xef", +"\x9a\xc1" => "\x8f\xe9\xe2", +"\x9a\xc3" => "\x8f\xe9\xe3", +"\x9a\xc4" => "\xbf\xf1", +"\x9a\xc6" => "\x8f\xe9\xe4", +"\x9a\xc8" => "\x8f\xe9\xe5", +"\x9a\xce" => "\x8f\xe9\xe6", +"\x9a\xcf" => "\xf1\xf0", +"\x9a\xd0" => "\x8f\xe9\xe7", +"\x9a\xd1" => "\xf1\xf1", +"\x9a\xd2" => "\x8f\xe9\xe8", +"\x9a\xd3" => "\xf1\xf2", +"\x9a\xd4" => "\xf1\xf3", +"\x9a\xd5" => "\x8f\xe9\xe9", +"\x9a\xd6" => "\x8f\xe9\xea", +"\x9a\xd7" => "\x8f\xe9\xeb", +"\x9a\xd8" => "\xb9\xe2", +"\x9a\xdb" => "\x8f\xe9\xec", +"\x9a\xdc" => "\x8f\xe9\xed", +"\x9a\xde" => "\xf1\xf4", +"\x9a\xdf" => "\xf1\xf5", +"\x9a\xe0" => "\x8f\xe9\xee", +"\x9a\xe2" => "\xf1\xf6", +"\x9a\xe3" => "\xf1\xf7", +"\x9a\xe4" => "\x8f\xe9\xef", +"\x9a\xe5" => "\x8f\xe9\xf0", +"\x9a\xe6" => "\xf1\xf8", +"\x9a\xe7" => "\x8f\xe9\xf1", +"\x9a\xe9" => "\x8f\xe9\xf2", +"\x9a\xea" => "\xc8\xb1", +"\x9a\xeb" => "\xf1\xfa", +"\x9a\xec" => "\x8f\xe9\xf3", +"\x9a\xed" => "\xc9\xa6", +"\x9a\xee" => "\xf1\xfb", +"\x9a\xef" => "\xf1\xf9", +"\x9a\xf1" => "\xf1\xfd", +"\x9a\xf2" => "\x8f\xe9\xf4", +"\x9a\xf3" => "\x8f\xe9\xf5", +"\x9a\xf4" => "\xf1\xfc", +"\x9a\xf5" => "\x8f\xe9\xf6", +"\x9a\xf7" => "\xf1\xfe", +"\x9a\xf9" => "\x8f\xe9\xf7", +"\x9a\xfa" => "\x8f\xe9\xf8", +"\x9a\xfb" => "\xf2\xa1", +"\x9a\xfd" => "\x8f\xe9\xf9", +"\x9a\xff" => "\x8f\xe9\xfa", +"\x9b\x00" => "\x8f\xe9\xfb", +"\x9b\x01" => "\x8f\xe9\xfc", +"\x9b\x02" => "\x8f\xe9\xfd", +"\x9b\x03" => "\x8f\xe9\xfe", +"\x9b\x04" => "\x8f\xea\xa1", +"\x9b\x05" => "\x8f\xea\xa2", +"\x9b\x06" => "\xf2\xa2", +"\x9b\x08" => "\x8f\xea\xa3", +"\x9b\x09" => "\x8f\xea\xa4", +"\x9b\x0b" => "\x8f\xea\xa5", +"\x9b\x0c" => "\x8f\xea\xa6", +"\x9b\x0d" => "\x8f\xea\xa7", +"\x9b\x0e" => "\x8f\xea\xa8", +"\x9b\x10" => "\x8f\xea\xa9", +"\x9b\x12" => "\x8f\xea\xaa", +"\x9b\x16" => "\x8f\xea\xab", +"\x9b\x18" => "\xf2\xa3", +"\x9b\x19" => "\x8f\xea\xac", +"\x9b\x1a" => "\xf2\xa4", +"\x9b\x1b" => "\x8f\xea\xad", +"\x9b\x1c" => "\x8f\xea\xae", +"\x9b\x1f" => "\xf2\xa5", +"\x9b\x20" => "\x8f\xea\xaf", +"\x9b\x22" => "\xf2\xa6", +"\x9b\x23" => "\xf2\xa7", +"\x9b\x25" => "\xf2\xa8", +"\x9b\x26" => "\x8f\xea\xb0", +"\x9b\x27" => "\xf2\xa9", +"\x9b\x28" => "\xf2\xaa", +"\x9b\x29" => "\xf2\xab", +"\x9b\x2a" => "\xf2\xac", +"\x9b\x2b" => "\x8f\xea\xb1", +"\x9b\x2d" => "\x8f\xea\xb2", +"\x9b\x2e" => "\xf2\xad", +"\x9b\x2f" => "\xf2\xae", +"\x9b\x31" => "\xdd\xb5", +"\x9b\x32" => "\xf2\xaf", +"\x9b\x33" => "\x8f\xea\xb3", +"\x9b\x34" => "\x8f\xea\xb4", +"\x9b\x35" => "\x8f\xea\xb5", +"\x9b\x37" => "\x8f\xea\xb6", +"\x9b\x39" => "\x8f\xea\xb7", +"\x9b\x3a" => "\x8f\xea\xb8", +"\x9b\x3b" => "\xe4\xf8", +"\x9b\x3c" => "\xb5\xb4", +"\x9b\x3d" => "\x8f\xea\xb9", +"\x9b\x41" => "\xb3\xa1", +"\x9b\x42" => "\xba\xb2", +"\x9b\x43" => "\xf2\xb1", +"\x9b\x44" => "\xf2\xb0", +"\x9b\x45" => "\xcc\xa5", +"\x9b\x48" => "\x8f\xea\xba", +"\x9b\x4b" => "\x8f\xea\xbb", +"\x9b\x4c" => "\x8f\xea\xbc", +"\x9b\x4d" => "\xf2\xb3", +"\x9b\x4e" => "\xf2\xb4", +"\x9b\x4f" => "\xf2\xb2", +"\x9b\x51" => "\xf2\xb5", +"\x9b\x54" => "\xcb\xe2", +"\x9b\x55" => "\x8f\xea\xbd", +"\x9b\x56" => "\x8f\xea\xbe", +"\x9b\x57" => "\x8f\xea\xbf", +"\x9b\x58" => "\xf2\xb6", +"\x9b\x5a" => "\xb5\xfb", +"\x9b\x5b" => "\x8f\xea\xc0", +"\x9b\x5e" => "\x8f\xea\xc1", +"\x9b\x61" => "\x8f\xea\xc2", +"\x9b\x63" => "\x8f\xea\xc3", +"\x9b\x65" => "\x8f\xea\xc4", +"\x9b\x66" => "\x8f\xea\xc5", +"\x9b\x68" => "\x8f\xea\xc6", +"\x9b\x6a" => "\x8f\xea\xc7", +"\x9b\x6b" => "\x8f\xea\xc8", +"\x9b\x6c" => "\x8f\xea\xc9", +"\x9b\x6d" => "\x8f\xea\xca", +"\x9b\x6e" => "\x8f\xea\xcb", +"\x9b\x6f" => "\xcf\xa5", +"\x9b\x73" => "\x8f\xea\xcc", +"\x9b\x74" => "\xf2\xb7", +"\x9b\x75" => "\x8f\xea\xcd", +"\x9b\x77" => "\x8f\xea\xce", +"\x9b\x78" => "\x8f\xea\xcf", +"\x9b\x79" => "\x8f\xea\xd0", +"\x9b\x7f" => "\x8f\xea\xd1", +"\x9b\x80" => "\x8f\xea\xd2", +"\x9b\x83" => "\xf2\xb9", +"\x9b\x84" => "\x8f\xea\xd3", +"\x9b\x85" => "\x8f\xea\xd4", +"\x9b\x86" => "\x8f\xea\xd5", +"\x9b\x87" => "\x8f\xea\xd6", +"\x9b\x89" => "\x8f\xea\xd7", +"\x9b\x8a" => "\x8f\xea\xd8", +"\x9b\x8b" => "\x8f\xea\xd9", +"\x9b\x8d" => "\x8f\xea\xda", +"\x9b\x8e" => "\xb0\xbe", +"\x9b\x8f" => "\x8f\xea\xdb", +"\x9b\x90" => "\x8f\xea\xdc", +"\x9b\x91" => "\xf2\xba", +"\x9b\x92" => "\xca\xab", +"\x9b\x93" => "\xf2\xb8", +"\x9b\x94" => "\x8f\xea\xdd", +"\x9b\x96" => "\xf2\xbb", +"\x9b\x97" => "\xf2\xbc", +"\x9b\x9a" => "\x8f\xea\xde", +"\x9b\x9d" => "\x8f\xea\xdf", +"\x9b\x9e" => "\x8f\xea\xe0", +"\x9b\x9f" => "\xf2\xbd", +"\x9b\xa0" => "\xf2\xbe", +"\x9b\xa6" => "\x8f\xea\xe1", +"\x9b\xa7" => "\x8f\xea\xe2", +"\x9b\xa8" => "\xf2\xbf", +"\x9b\xa9" => "\x8f\xea\xe3", +"\x9b\xaa" => "\xcb\xee", +"\x9b\xab" => "\xbb\xad", +"\x9b\xac" => "\x8f\xea\xe4", +"\x9b\xad" => "\xba\xfa", +"\x9b\xae" => "\xc1\xaf", +"\x9b\xb0" => "\x8f\xea\xe5", +"\x9b\xb1" => "\x8f\xea\xe6", +"\x9b\xb2" => "\x8f\xea\xe7", +"\x9b\xb4" => "\xf2\xc0", +"\x9b\xb7" => "\x8f\xea\xe8", +"\x9b\xb8" => "\x8f\xea\xe9", +"\x9b\xb9" => "\xf2\xc3", +"\x9b\xbb" => "\x8f\xea\xea", +"\x9b\xbc" => "\x8f\xea\xeb", +"\x9b\xbe" => "\x8f\xea\xec", +"\x9b\xbf" => "\x8f\xea\xed", +"\x9b\xc0" => "\xf2\xc1", +"\x9b\xc1" => "\x8f\xea\xee", +"\x9b\xc6" => "\xf2\xc4", +"\x9b\xc7" => "\x8f\xea\xef", +"\x9b\xc8" => "\x8f\xea\xf0", +"\x9b\xc9" => "\xb8\xf1", +"\x9b\xca" => "\xf2\xc2", +"\x9b\xce" => "\x8f\xea\xf1", +"\x9b\xcf" => "\xf2\xc5", +"\x9b\xd0" => "\x8f\xea\xf2", +"\x9b\xd1" => "\xf2\xc6", +"\x9b\xd2" => "\xf2\xc7", +"\x9b\xd4" => "\xf2\xcb", +"\x9b\xd6" => "\xbb\xaa", +"\x9b\xd7" => "\x8f\xea\xf3", +"\x9b\xd8" => "\x8f\xea\xf4", +"\x9b\xdb" => "\xc2\xe4", +"\x9b\xdd" => "\x8f\xea\xf5", +"\x9b\xdf" => "\x8f\xea\xf6", +"\x9b\xe1" => "\xf2\xcc", +"\x9b\xe2" => "\xf2\xc9", +"\x9b\xe3" => "\xf2\xc8", +"\x9b\xe4" => "\xf2\xca", +"\x9b\xe5" => "\x8f\xea\xf7", +"\x9b\xe7" => "\x8f\xea\xf8", +"\x9b\xe8" => "\xb7\xdf", +"\x9b\xea" => "\x8f\xea\xf9", +"\x9b\xeb" => "\x8f\xea\xfa", +"\x9b\xef" => "\x8f\xea\xfb", +"\x9b\xf0" => "\xf2\xd0", +"\x9b\xf1" => "\xf2\xcf", +"\x9b\xf2" => "\xf2\xce", +"\x9b\xf3" => "\x8f\xea\xfc", +"\x9b\xf5" => "\xb0\xb3", +"\x9b\xf7" => "\x8f\xea\xfd", +"\x9b\xf8" => "\x8f\xea\xfe", +"\x9b\xf9" => "\x8f\xeb\xa1", +"\x9b\xfa" => "\x8f\xeb\xa2", +"\x9b\xfd" => "\x8f\xeb\xa3", +"\x9b\xff" => "\x8f\xeb\xa4", +"\x9c\x00" => "\x8f\xeb\xa5", +"\x9c\x02" => "\x8f\xeb\xa6", +"\x9c\x04" => "\xf2\xda", +"\x9c\x06" => "\xf2\xd6", +"\x9c\x08" => "\xf2\xd7", +"\x9c\x09" => "\xf2\xd3", +"\x9c\x0a" => "\xf2\xd9", +"\x9c\x0b" => "\x8f\xeb\xa7", +"\x9c\x0c" => "\xf2\xd5", +"\x9c\x0d" => "\xb3\xe2", +"\x9c\x0f" => "\x8f\xeb\xa8", +"\x9c\x10" => "\xcf\xcc", +"\x9c\x11" => "\x8f\xeb\xa9", +"\x9c\x12" => "\xf2\xd8", +"\x9c\x13" => "\xf2\xd4", +"\x9c\x14" => "\xf2\xd2", +"\x9c\x15" => "\xf2\xd1", +"\x9c\x16" => "\x8f\xeb\xaa", +"\x9c\x18" => "\x8f\xeb\xab", +"\x9c\x19" => "\x8f\xeb\xac", +"\x9c\x1a" => "\x8f\xeb\xad", +"\x9c\x1b" => "\xf2\xdc", +"\x9c\x1c" => "\x8f\xeb\xae", +"\x9c\x1e" => "\x8f\xeb\xaf", +"\x9c\x21" => "\xf2\xdf", +"\x9c\x22" => "\x8f\xeb\xb0", +"\x9c\x23" => "\x8f\xeb\xb1", +"\x9c\x24" => "\xf2\xde", +"\x9c\x25" => "\xf2\xdd", +"\x9c\x26" => "\x8f\xeb\xb2", +"\x9c\x27" => "\x8f\xeb\xb3", +"\x9c\x28" => "\x8f\xeb\xb4", +"\x9c\x29" => "\x8f\xeb\xb5", +"\x9c\x2a" => "\x8f\xeb\xb6", +"\x9c\x2d" => "\xc9\xc9", +"\x9c\x2e" => "\xf2\xdb", +"\x9c\x2f" => "\xb0\xf3", +"\x9c\x30" => "\xf2\xe0", +"\x9c\x31" => "\x8f\xeb\xb7", +"\x9c\x32" => "\xf2\xe2", +"\x9c\x35" => "\x8f\xeb\xb8", +"\x9c\x36" => "\x8f\xeb\xb9", +"\x9c\x37" => "\x8f\xeb\xba", +"\x9c\x39" => "\xb3\xef", +"\x9c\x3a" => "\xf2\xcd", +"\x9c\x3b" => "\xb1\xb7", +"\x9c\x3d" => "\x8f\xeb\xbb", +"\x9c\x3e" => "\xf2\xe4", +"\x9c\x41" => "\x8f\xeb\xbc", +"\x9c\x43" => "\x8f\xeb\xbd", +"\x9c\x44" => "\x8f\xeb\xbe", +"\x9c\x45" => "\x8f\xeb\xbf", +"\x9c\x46" => "\xf2\xe3", +"\x9c\x47" => "\xf2\xe1", +"\x9c\x48" => "\xc3\xad", +"\x9c\x49" => "\x8f\xeb\xc0", +"\x9c\x4a" => "\x8f\xeb\xc1", +"\x9c\x4e" => "\x8f\xeb\xc2", +"\x9c\x4f" => "\x8f\xeb\xc3", +"\x9c\x50" => "\x8f\xeb\xc4", +"\x9c\x52" => "\xcb\xf0", +"\x9c\x53" => "\x8f\xeb\xc5", +"\x9c\x54" => "\x8f\xeb\xc6", +"\x9c\x56" => "\x8f\xeb\xc7", +"\x9c\x57" => "\xce\xda", +"\x9c\x58" => "\x8f\xeb\xc8", +"\x9c\x5a" => "\xf2\xe5", +"\x9c\x5b" => "\x8f\xeb\xc9", +"\x9c\x5c" => "\x8f\xeb\xd0", +"\x9c\x5d" => "\x8f\xeb\xca", +"\x9c\x5e" => "\x8f\xeb\xcb", +"\x9c\x5f" => "\x8f\xeb\xcc", +"\x9c\x60" => "\xf2\xe6", +"\x9c\x63" => "\x8f\xeb\xcd", +"\x9c\x67" => "\xf2\xe7", +"\x9c\x68" => "\x8f\xeb\xd2", +"\x9c\x69" => "\x8f\xeb\xce", +"\x9c\x6a" => "\x8f\xeb\xcf", +"\x9c\x6b" => "\x8f\xeb\xd1", +"\x9c\x6e" => "\x8f\xeb\xd3", +"\x9c\x70" => "\x8f\xeb\xd4", +"\x9c\x72" => "\x8f\xeb\xd5", +"\x9c\x75" => "\x8f\xeb\xd6", +"\x9c\x76" => "\xf2\xe8", +"\x9c\x77" => "\x8f\xeb\xd7", +"\x9c\x78" => "\xf2\xe9", +"\x9c\x7b" => "\x8f\xeb\xd8", +"\x9c\xe5" => "\xc4\xbb", +"\x9c\xe6" => "\x8f\xeb\xd9", +"\x9c\xe7" => "\xf2\xea", +"\x9c\xe9" => "\xc8\xb7", +"\x9c\xeb" => "\xf2\xef", +"\x9c\xec" => "\xf2\xeb", +"\x9c\xf0" => "\xf2\xec", +"\x9c\xf2" => "\x8f\xeb\xda", +"\x9c\xf3" => "\xcb\xb1", +"\x9c\xf4" => "\xcc\xc4", +"\x9c\xf6" => "\xc6\xd0", +"\x9c\xf7" => "\x8f\xeb\xdb", +"\x9c\xf9" => "\x8f\xeb\xdc", +"\x9d\x02" => "\x8f\xeb\xde", +"\x9d\x03" => "\xf2\xf0", +"\x9d\x06" => "\xf2\xf1", +"\x9d\x07" => "\xc6\xbe", +"\x9d\x08" => "\xf2\xee", +"\x9d\x09" => "\xf2\xed", +"\x9d\x0b" => "\x8f\xeb\xdd", +"\x9d\x0e" => "\xb2\xaa", +"\x9d\x11" => "\x8f\xeb\xdf", +"\x9d\x12" => "\xf2\xf9", +"\x9d\x15" => "\xf2\xf8", +"\x9d\x17" => "\x8f\xeb\xe0", +"\x9d\x18" => "\x8f\xeb\xe1", +"\x9d\x1b" => "\xb1\xf5", +"\x9d\x1c" => "\x8f\xeb\xe2", +"\x9d\x1d" => "\x8f\xeb\xe3", +"\x9d\x1e" => "\x8f\xeb\xe4", +"\x9d\x1f" => "\xf2\xf6", +"\x9d\x23" => "\xf2\xf5", +"\x9d\x26" => "\xf2\xf3", +"\x9d\x28" => "\xb3\xfb", +"\x9d\x2a" => "\xf2\xf2", +"\x9d\x2b" => "\xbc\xb2", +"\x9d\x2c" => "\xb2\xa9", +"\x9d\x2f" => "\x8f\xeb\xe5", +"\x9d\x30" => "\x8f\xeb\xe6", +"\x9d\x32" => "\x8f\xeb\xe7", +"\x9d\x33" => "\x8f\xeb\xe8", +"\x9d\x34" => "\x8f\xeb\xe9", +"\x9d\x3a" => "\x8f\xeb\xea", +"\x9d\x3b" => "\xb9\xe3", +"\x9d\x3c" => "\x8f\xeb\xeb", +"\x9d\x3d" => "\x8f\xeb\xed", +"\x9d\x3e" => "\xf2\xfc", +"\x9d\x3f" => "\xf2\xfb", +"\x9d\x41" => "\xf2\xfa", +"\x9d\x42" => "\x8f\xeb\xee", +"\x9d\x43" => "\x8f\xeb\xef", +"\x9d\x44" => "\xf2\xf7", +"\x9d\x45" => "\x8f\xeb\xec", +"\x9d\x46" => "\xf2\xfd", +"\x9d\x47" => "\x8f\xeb\xf0", +"\x9d\x48" => "\xf2\xfe", +"\x9d\x4a" => "\x8f\xeb\xf1", +"\x9d\x50" => "\xf3\xa5", +"\x9d\x51" => "\xf3\xa4", +"\x9d\x53" => "\x8f\xeb\xf2", +"\x9d\x54" => "\x8f\xeb\xf3", +"\x9d\x59" => "\xf3\xa6", +"\x9d\x5c" => "\xb1\xad", +"\x9d\x5d" => "\xf3\xa1", +"\x9d\x5e" => "\xf3\xa2", +"\x9d\x5f" => "\x8f\xeb\xf4", +"\x9d\x60" => "\xb9\xf4", +"\x9d\x61" => "\xcc\xb9", +"\x9d\x62" => "\x8f\xeb\xf6", +"\x9d\x63" => "\x8f\xeb\xf5", +"\x9d\x64" => "\xf3\xa3", +"\x9d\x65" => "\x8f\xeb\xf7", +"\x9d\x69" => "\x8f\xeb\xf8", +"\x9d\x6a" => "\x8f\xeb\xf9", +"\x9d\x6b" => "\x8f\xeb\xfa", +"\x9d\x6c" => "\xcb\xb2", +"\x9d\x6f" => "\xf3\xab", +"\x9d\x70" => "\x8f\xeb\xfb", +"\x9d\x72" => "\xf3\xa7", +"\x9d\x76" => "\x8f\xeb\xfc", +"\x9d\x77" => "\x8f\xeb\xfd", +"\x9d\x7a" => "\xf3\xac", +"\x9d\x7b" => "\x8f\xeb\xfe", +"\x9d\x7c" => "\x8f\xec\xa1", +"\x9d\x7e" => "\x8f\xec\xa2", +"\x9d\x83" => "\x8f\xec\xa3", +"\x9d\x84" => "\x8f\xec\xa4", +"\x9d\x86" => "\x8f\xec\xa5", +"\x9d\x87" => "\xf3\xa9", +"\x9d\x89" => "\xf3\xa8", +"\x9d\x8a" => "\x8f\xec\xa6", +"\x9d\x8d" => "\x8f\xec\xa7", +"\x9d\x8e" => "\x8f\xec\xa8", +"\x9d\x8f" => "\xb7\xdc", +"\x9d\x92" => "\x8f\xec\xa9", +"\x9d\x93" => "\x8f\xec\xaa", +"\x9d\x95" => "\x8f\xec\xab", +"\x9d\x96" => "\x8f\xec\xac", +"\x9d\x97" => "\x8f\xec\xad", +"\x9d\x98" => "\x8f\xec\xae", +"\x9d\x9a" => "\xf3\xad", +"\x9d\xa1" => "\x8f\xec\xaf", +"\x9d\xa4" => "\xf3\xae", +"\x9d\xa9" => "\xf3\xaf", +"\x9d\xaa" => "\x8f\xec\xb0", +"\x9d\xab" => "\xf3\xaa", +"\x9d\xac" => "\x8f\xec\xb1", +"\x9d\xae" => "\x8f\xec\xb2", +"\x9d\xaf" => "\xf2\xf4", +"\x9d\xb1" => "\x8f\xec\xb3", +"\x9d\xb2" => "\xf3\xb0", +"\x9d\xb4" => "\xc4\xe1", +"\x9d\xb5" => "\x8f\xec\xb4", +"\x9d\xb8" => "\xf3\xb4", +"\x9d\xb9" => "\x8f\xec\xb5", +"\x9d\xba" => "\xf3\xb5", +"\x9d\xbb" => "\xf3\xb3", +"\x9d\xbc" => "\x8f\xec\xb6", +"\x9d\xbf" => "\x8f\xec\xb7", +"\x9d\xc1" => "\xf3\xb2", +"\x9d\xc2" => "\xf3\xb8", +"\x9d\xc3" => "\x8f\xec\xb8", +"\x9d\xc4" => "\xf3\xb1", +"\x9d\xc6" => "\xf3\xb6", +"\x9d\xc7" => "\x8f\xec\xb9", +"\x9d\xc9" => "\x8f\xec\xba", +"\x9d\xca" => "\x8f\xec\xbb", +"\x9d\xcf" => "\xf3\xb7", +"\x9d\xd3" => "\xf3\xba", +"\x9d\xd4" => "\x8f\xec\xbc", +"\x9d\xd5" => "\x8f\xec\xbd", +"\x9d\xd6" => "\x8f\xec\xbe", +"\x9d\xd7" => "\x8f\xec\xbf", +"\x9d\xd9" => "\xf3\xb9", +"\x9d\xda" => "\x8f\xec\xc0", +"\x9d\xde" => "\x8f\xec\xc1", +"\x9d\xdf" => "\x8f\xec\xc2", +"\x9d\xe0" => "\x8f\xec\xc3", +"\x9d\xe5" => "\x8f\xec\xc4", +"\x9d\xe6" => "\xf3\xbc", +"\x9d\xe7" => "\x8f\xec\xc5", +"\x9d\xe9" => "\x8f\xec\xc6", +"\x9d\xeb" => "\x8f\xec\xc7", +"\x9d\xed" => "\xf3\xbd", +"\x9d\xee" => "\x8f\xec\xc8", +"\x9d\xef" => "\xf3\xbe", +"\x9d\xf0" => "\x8f\xec\xc9", +"\x9d\xf2" => "\xcf\xc9", +"\x9d\xf3" => "\x8f\xec\xca", +"\x9d\xf4" => "\x8f\xec\xcb", +"\x9d\xf8" => "\xf3\xbb", +"\x9d\xf9" => "\xc2\xeb", +"\x9d\xfa" => "\xba\xed", +"\x9d\xfd" => "\xf3\xbf", +"\x9d\xfe" => "\x8f\xec\xcc", +"\x9e\x02" => "\x8f\xec\xce", +"\x9e\x07" => "\x8f\xec\xcf", +"\x9e\x0a" => "\x8f\xec\xcd", +"\x9e\x0e" => "\x8f\xec\xd0", +"\x9e\x10" => "\x8f\xec\xd1", +"\x9e\x11" => "\x8f\xec\xd2", +"\x9e\x12" => "\x8f\xec\xd3", +"\x9e\x15" => "\x8f\xec\xd4", +"\x9e\x16" => "\x8f\xec\xd5", +"\x9e\x19" => "\x8f\xec\xd6", +"\x9e\x1a" => "\xf3\xc0", +"\x9e\x1b" => "\xf3\xc1", +"\x9e\x1c" => "\x8f\xec\xd7", +"\x9e\x1d" => "\x8f\xec\xd8", +"\x9e\x1e" => "\xf3\xc2", +"\x9e\x75" => "\xf3\xc3", +"\x9e\x78" => "\xb8\xb4", +"\x9e\x79" => "\xf3\xc4", +"\x9e\x7a" => "\x8f\xec\xd9", +"\x9e\x7b" => "\x8f\xec\xda", +"\x9e\x7c" => "\x8f\xec\xdb", +"\x9e\x7d" => "\xf3\xc5", +"\x9e\x7f" => "\xbc\xaf", +"\x9e\x80" => "\x8f\xec\xdc", +"\x9e\x81" => "\xf3\xc6", +"\x9e\x82" => "\x8f\xec\xdd", +"\x9e\x83" => "\x8f\xec\xde", +"\x9e\x84" => "\x8f\xec\xdf", +"\x9e\x85" => "\x8f\xec\xe0", +"\x9e\x87" => "\x8f\xec\xe1", +"\x9e\x88" => "\xf3\xc7", +"\x9e\x8b" => "\xf3\xc8", +"\x9e\x8c" => "\xf3\xc9", +"\x9e\x8e" => "\x8f\xec\xe2", +"\x9e\x8f" => "\x8f\xec\xe3", +"\x9e\x91" => "\xf3\xcc", +"\x9e\x92" => "\xf3\xca", +"\x9e\x93" => "\xcf\xbc", +"\x9e\x95" => "\xf3\xcb", +"\x9e\x96" => "\x8f\xec\xe4", +"\x9e\x97" => "\xce\xef", +"\x9e\x98" => "\x8f\xec\xe5", +"\x9e\x9b" => "\x8f\xec\xe6", +"\x9e\x9d" => "\xf3\xcd", +"\x9e\x9e" => "\x8f\xec\xe7", +"\x9e\x9f" => "\xce\xdb", +"\x9e\xa4" => "\x8f\xec\xe8", +"\x9e\xa5" => "\xf3\xce", +"\x9e\xa6" => "\xc7\xfe", +"\x9e\xa8" => "\x8f\xec\xe9", +"\x9e\xa9" => "\xf3\xcf", +"\x9e\xaa" => "\xf3\xd1", +"\x9e\xac" => "\x8f\xec\xea", +"\x9e\xad" => "\xf3\xd2", +"\x9e\xae" => "\x8f\xec\xeb", +"\x9e\xaf" => "\x8f\xec\xec", +"\x9e\xb0" => "\x8f\xec\xed", +"\x9e\xb3" => "\x8f\xec\xee", +"\x9e\xb4" => "\x8f\xec\xef", +"\x9e\xb5" => "\x8f\xec\xf0", +"\x9e\xb8" => "\xf3\xd0", +"\x9e\xb9" => "\xb9\xed", +"\x9e\xba" => "\xcc\xcd", +"\x9e\xbb" => "\xcb\xe3", +"\x9e\xbc" => "\xd6\xf7", +"\x9e\xbe" => "\xdd\xe0", +"\x9e\xbf" => "\xcb\xfb", +"\x9e\xc4" => "\xb2\xab", +"\x9e\xc6" => "\x8f\xec\xf1", +"\x9e\xc8" => "\x8f\xec\xf2", +"\x9e\xcb" => "\x8f\xec\xf3", +"\x9e\xcc" => "\xf3\xd4", +"\x9e\xcd" => "\xb5\xd0", +"\x9e\xce" => "\xf3\xd5", +"\x9e\xcf" => "\xf3\xd6", +"\x9e\xd0" => "\xf3\xd7", +"\x9e\xd2" => "\xb9\xf5", +"\x9e\xd4" => "\xf3\xd8", +"\x9e\xd5" => "\x8f\xec\xf4", +"\x9e\xd8" => "\xe0\xd4", +"\x9e\xd9" => "\xcc\xdb", +"\x9e\xdb" => "\xc2\xe3", +"\x9e\xdc" => "\xf3\xd9", +"\x9e\xdd" => "\xf3\xdb", +"\x9e\xde" => "\xf3\xda", +"\x9e\xdf" => "\x8f\xec\xf5", +"\x9e\xe0" => "\xf3\xdc", +"\x9e\xe4" => "\x8f\xec\xf6", +"\x9e\xe5" => "\xf3\xdd", +"\x9e\xe7" => "\x8f\xec\xf7", +"\x9e\xe8" => "\xf3\xde", +"\x9e\xec" => "\x8f\xec\xf8", +"\x9e\xed" => "\x8f\xec\xf9", +"\x9e\xee" => "\x8f\xec\xfa", +"\x9e\xef" => "\xf3\xdf", +"\x9e\xf0" => "\x8f\xec\xfb", +"\x9e\xf1" => "\x8f\xec\xfc", +"\x9e\xf2" => "\x8f\xec\xfd", +"\x9e\xf4" => "\xf3\xe0", +"\x9e\xf5" => "\x8f\xec\xfe", +"\x9e\xf6" => "\xf3\xe1", +"\x9e\xf7" => "\xf3\xe2", +"\x9e\xf8" => "\x8f\xed\xa1", +"\x9e\xf9" => "\xf3\xe3", +"\x9e\xfb" => "\xf3\xe4", +"\x9e\xfc" => "\xf3\xe5", +"\x9e\xfd" => "\xf3\xe6", +"\x9e\xff" => "\x8f\xed\xa2", +"\x9f\x02" => "\x8f\xed\xa3", +"\x9f\x03" => "\x8f\xed\xa4", +"\x9f\x07" => "\xf3\xe7", +"\x9f\x08" => "\xf3\xe8", +"\x9f\x09" => "\x8f\xed\xa5", +"\x9f\x0e" => "\xc5\xa4", +"\x9f\x0f" => "\x8f\xed\xa6", +"\x9f\x10" => "\x8f\xed\xa7", +"\x9f\x11" => "\x8f\xed\xa8", +"\x9f\x12" => "\x8f\xed\xa9", +"\x9f\x13" => "\xb8\xdd", +"\x9f\x14" => "\x8f\xed\xaa", +"\x9f\x15" => "\xf3\xea", +"\x9f\x16" => "\x8f\xed\xab", +"\x9f\x17" => "\x8f\xed\xac", +"\x9f\x19" => "\x8f\xed\xad", +"\x9f\x1a" => "\x8f\xed\xae", +"\x9f\x1b" => "\x8f\xed\xaf", +"\x9f\x1f" => "\x8f\xed\xb0", +"\x9f\x20" => "\xc1\xcd", +"\x9f\x21" => "\xf3\xeb", +"\x9f\x22" => "\x8f\xed\xb1", +"\x9f\x26" => "\x8f\xed\xb2", +"\x9f\x2a" => "\x8f\xed\xb3", +"\x9f\x2b" => "\x8f\xed\xb4", +"\x9f\x2c" => "\xf3\xec", +"\x9f\x2f" => "\x8f\xed\xb5", +"\x9f\x31" => "\x8f\xed\xb6", +"\x9f\x32" => "\x8f\xed\xb7", +"\x9f\x34" => "\x8f\xed\xb8", +"\x9f\x37" => "\x8f\xed\xb9", +"\x9f\x39" => "\x8f\xed\xba", +"\x9f\x3a" => "\x8f\xed\xbb", +"\x9f\x3b" => "\xc9\xa1", +"\x9f\x3c" => "\x8f\xed\xbc", +"\x9f\x3d" => "\x8f\xed\xbd", +"\x9f\x3e" => "\xf3\xed", +"\x9f\x3f" => "\x8f\xed\xbe", +"\x9f\x41" => "\x8f\xed\xbf", +"\x9f\x43" => "\x8f\xed\xc0", +"\x9f\x44" => "\x8f\xed\xc1", +"\x9f\x45" => "\x8f\xed\xc2", +"\x9f\x46" => "\x8f\xed\xc3", +"\x9f\x47" => "\x8f\xed\xc4", +"\x9f\x4a" => "\xf3\xee", +"\x9f\x4b" => "\xe3\xb7", +"\x9f\x4e" => "\xec\xda", +"\x9f\x4f" => "\xf0\xed", +"\x9f\x52" => "\xf3\xef", +"\x9f\x53" => "\x8f\xed\xc5", +"\x9f\x54" => "\xf3\xf0", +"\x9f\x55" => "\x8f\xed\xc6", +"\x9f\x56" => "\x8f\xed\xc7", +"\x9f\x57" => "\x8f\xed\xc8", +"\x9f\x58" => "\x8f\xed\xc9", +"\x9f\x5a" => "\x8f\xed\xca", +"\x9f\x5d" => "\x8f\xed\xcb", +"\x9f\x5e" => "\x8f\xed\xcc", +"\x9f\x5f" => "\xf3\xf2", +"\x9f\x60" => "\xf3\xf3", +"\x9f\x61" => "\xf3\xf4", +"\x9f\x62" => "\xce\xf0", +"\x9f\x63" => "\xf3\xf1", +"\x9f\x66" => "\xf3\xf5", +"\x9f\x67" => "\xf3\xf6", +"\x9f\x68" => "\x8f\xed\xcd", +"\x9f\x69" => "\x8f\xed\xce", +"\x9f\x6a" => "\xf3\xf8", +"\x9f\x6c" => "\xf3\xf7", +"\x9f\x6d" => "\x8f\xed\xcf", +"\x9f\x6e" => "\x8f\xed\xd0", +"\x9f\x6f" => "\x8f\xed\xd1", +"\x9f\x70" => "\x8f\xed\xd2", +"\x9f\x71" => "\x8f\xed\xd3", +"\x9f\x72" => "\xf3\xfa", +"\x9f\x73" => "\x8f\xed\xd4", +"\x9f\x75" => "\x8f\xed\xd5", +"\x9f\x76" => "\xf3\xfb", +"\x9f\x77" => "\xf3\xf9", +"\x9f\x7a" => "\x8f\xed\xd6", +"\x9f\x7d" => "\x8f\xed\xd7", +"\x9f\x8d" => "\xce\xb6", +"\x9f\x8f" => "\x8f\xed\xd8", +"\x9f\x90" => "\x8f\xed\xd9", +"\x9f\x91" => "\x8f\xed\xda", +"\x9f\x92" => "\x8f\xed\xdb", +"\x9f\x94" => "\x8f\xed\xdc", +"\x9f\x95" => "\xf3\xfc", +"\x9f\x96" => "\x8f\xed\xdd", +"\x9f\x97" => "\x8f\xed\xde", +"\x9f\x9c" => "\xf3\xfd", +"\x9f\x9d" => "\xe3\xd4", +"\x9f\x9e" => "\x8f\xed\xdf", +"\x9f\xa0" => "\xf3\xfe", +"\x9f\xa1" => "\x8f\xed\xe0", +"\x9f\xa2" => "\x8f\xed\xe1", +"\x9f\xa3" => "\x8f\xed\xe2", +"\x9f\xa5" => "\x8f\xed\xe3", +"\xff\x01" => "\xa1\xaa", +"\xff\x03" => "\xa1\xf4", +"\xff\x04" => "\xa1\xf0", +"\xff\x05" => "\xa1\xf3", +"\xff\x06" => "\xa1\xf5", +"\xff\x08" => "\xa1\xca", +"\xff\x09" => "\xa1\xcb", +"\xff\x0a" => "\xa1\xf6", +"\xff\x0b" => "\xa1\xdc", +"\xff\x0c" => "\xa1\xa4", +"\xff\x0e" => "\xa1\xa5", +"\xff\x0f" => "\xa1\xbf", +"\xff\x10" => "\xa3\xb0", +"\xff\x11" => "\xa3\xb1", +"\xff\x12" => "\xa3\xb2", +"\xff\x13" => "\xa3\xb3", +"\xff\x14" => "\xa3\xb4", +"\xff\x15" => "\xa3\xb5", +"\xff\x16" => "\xa3\xb6", +"\xff\x17" => "\xa3\xb7", +"\xff\x18" => "\xa3\xb8", +"\xff\x19" => "\xa3\xb9", +"\xff\x1a" => "\xa1\xa7", +"\xff\x1b" => "\xa1\xa8", +"\xff\x1c" => "\xa1\xe3", +"\xff\x1d" => "\xa1\xe1", +"\xff\x1e" => "\xa1\xe4", +"\xff\x1f" => "\xa1\xa9", +"\xff\x20" => "\xa1\xf7", +"\xff\x21" => "\xa3\xc1", +"\xff\x22" => "\xa3\xc2", +"\xff\x23" => "\xa3\xc3", +"\xff\x24" => "\xa3\xc4", +"\xff\x25" => "\xa3\xc5", +"\xff\x26" => "\xa3\xc6", +"\xff\x27" => "\xa3\xc7", +"\xff\x28" => "\xa3\xc8", +"\xff\x29" => "\xa3\xc9", +"\xff\x2a" => "\xa3\xca", +"\xff\x2b" => "\xa3\xcb", +"\xff\x2c" => "\xa3\xcc", +"\xff\x2d" => "\xa3\xcd", +"\xff\x2e" => "\xa3\xce", +"\xff\x2f" => "\xa3\xcf", +"\xff\x30" => "\xa3\xd0", +"\xff\x31" => "\xa3\xd1", +"\xff\x32" => "\xa3\xd2", +"\xff\x33" => "\xa3\xd3", +"\xff\x34" => "\xa3\xd4", +"\xff\x35" => "\xa3\xd5", +"\xff\x36" => "\xa3\xd6", +"\xff\x37" => "\xa3\xd7", +"\xff\x38" => "\xa3\xd8", +"\xff\x39" => "\xa3\xd9", +"\xff\x3a" => "\xa3\xda", +"\xff\x3b" => "\xa1\xce", +"\xff\x3d" => "\xa1\xcf", +"\xff\x3e" => "\xa1\xb0", +"\xff\x3f" => "\xa1\xb2", +"\xff\x40" => "\xa1\xae", +"\xff\x41" => "\xa3\xe1", +"\xff\x42" => "\xa3\xe2", +"\xff\x43" => "\xa3\xe3", +"\xff\x44" => "\xa3\xe4", +"\xff\x45" => "\xa3\xe5", +"\xff\x46" => "\xa3\xe6", +"\xff\x47" => "\xa3\xe7", +"\xff\x48" => "\xa3\xe8", +"\xff\x49" => "\xa3\xe9", +"\xff\x4a" => "\xa3\xea", +"\xff\x4b" => "\xa3\xeb", +"\xff\x4c" => "\xa3\xec", +"\xff\x4d" => "\xa3\xed", +"\xff\x4e" => "\xa3\xee", +"\xff\x4f" => "\xa3\xef", +"\xff\x50" => "\xa3\xf0", +"\xff\x51" => "\xa3\xf1", +"\xff\x52" => "\xa3\xf2", +"\xff\x53" => "\xa3\xf3", +"\xff\x54" => "\xa3\xf4", +"\xff\x55" => "\xa3\xf5", +"\xff\x56" => "\xa3\xf6", +"\xff\x57" => "\xa3\xf7", +"\xff\x58" => "\xa3\xf8", +"\xff\x59" => "\xa3\xf9", +"\xff\x5a" => "\xa3\xfa", +"\xff\x5b" => "\xa1\xd0", +"\xff\x5c" => "\xa1\xc3", +"\xff\x5d" => "\xa1\xd1", +"\xff\x61" => "\x8e\xa1", +"\xff\x62" => "\x8e\xa2", +"\xff\x63" => "\x8e\xa3", +"\xff\x64" => "\x8e\xa4", +"\xff\x65" => "\x8e\xa5", +"\xff\x66" => "\x8e\xa6", +"\xff\x67" => "\x8e\xa7", +"\xff\x68" => "\x8e\xa8", +"\xff\x69" => "\x8e\xa9", +"\xff\x6a" => "\x8e\xaa", +"\xff\x6b" => "\x8e\xab", +"\xff\x6c" => "\x8e\xac", +"\xff\x6d" => "\x8e\xad", +"\xff\x6e" => "\x8e\xae", +"\xff\x6f" => "\x8e\xaf", +"\xff\x70" => "\x8e\xb0", +"\xff\x71" => "\x8e\xb1", +"\xff\x72" => "\x8e\xb2", +"\xff\x73" => "\x8e\xb3", +"\xff\x74" => "\x8e\xb4", +"\xff\x75" => "\x8e\xb5", +"\xff\x76" => "\x8e\xb6", +"\xff\x77" => "\x8e\xb7", +"\xff\x78" => "\x8e\xb8", +"\xff\x79" => "\x8e\xb9", +"\xff\x7a" => "\x8e\xba", +"\xff\x7b" => "\x8e\xbb", +"\xff\x7c" => "\x8e\xbc", +"\xff\x7d" => "\x8e\xbd", +"\xff\x7e" => "\x8e\xbe", +"\xff\x7f" => "\x8e\xbf", +"\xff\x80" => "\x8e\xc0", +"\xff\x81" => "\x8e\xc1", +"\xff\x82" => "\x8e\xc2", +"\xff\x83" => "\x8e\xc3", +"\xff\x84" => "\x8e\xc4", +"\xff\x85" => "\x8e\xc5", +"\xff\x86" => "\x8e\xc6", +"\xff\x87" => "\x8e\xc7", +"\xff\x88" => "\x8e\xc8", +"\xff\x89" => "\x8e\xc9", +"\xff\x8a" => "\x8e\xca", +"\xff\x8b" => "\x8e\xcb", +"\xff\x8c" => "\x8e\xcc", +"\xff\x8d" => "\x8e\xcd", +"\xff\x8e" => "\x8e\xce", +"\xff\x8f" => "\x8e\xcf", +"\xff\x90" => "\x8e\xd0", +"\xff\x91" => "\x8e\xd1", +"\xff\x92" => "\x8e\xd2", +"\xff\x93" => "\x8e\xd3", +"\xff\x94" => "\x8e\xd4", +"\xff\x95" => "\x8e\xd5", +"\xff\x96" => "\x8e\xd6", +"\xff\x97" => "\x8e\xd7", +"\xff\x98" => "\x8e\xd8", +"\xff\x99" => "\x8e\xd9", +"\xff\x9a" => "\x8e\xda", +"\xff\x9b" => "\x8e\xdb", +"\xff\x9c" => "\x8e\xdc", +"\xff\x9d" => "\x8e\xdd", +"\xff\x9e" => "\x8e\xde", +"\xff\x9f" => "\x8e\xdf", +"\xff\xe3" => "\xa1\xb1", +"\xff\xe5" => "\xa1\xef", +); + +# fill the blank with ascii + +for my $c (0x00..0x7f){ + next if exists $_U2E{"\x00" . chr($c)}; + $_U2E{"\x00" . chr($c)} = chr($c); +} + +%_E2U = (); + +1; + + +=head1 NAME + +Jcode::Unicode::Constants -- UCS2-EUC conversion table + +=head1 SYNOPSIS + +NONE + +=head1 DESCRIPTION + +This module just contains a huge hash that converts UCS2 from/to EUC. + +=head1 SEE ALSO + +=item ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/ + +Unicode mapping data + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +Unicode conversion table here is based on files at +ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/, +Copyright (c) 1991-1994 Unicode, Inc. + +=cut diff --git a/cpan/lib/Jcode/Jcode/Unicode/NoXS.pm b/cpan/lib/Jcode/Jcode/Unicode/NoXS.pm new file mode 100644 index 00000000..f0f0b57e --- /dev/null +++ b/cpan/lib/Jcode/Jcode/Unicode/NoXS.pm @@ -0,0 +1,218 @@ +# +# $Id: NoXS.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $ +# + +package Jcode::Unicode::NoXS; + +use strict; +use vars qw($RCSID $VERSION); + +$RCSID = q$Id: NoXS.pm,v 0.61 2000/11/15 05:45:25 dankogai Exp $; +$VERSION = do { my @r = (q$Revision: 0.61 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +use Carp; + +use Jcode::Constants qw(:all); +use Jcode::Unicode::Constants; + +use vars qw(*_E2U *_U2E $PEDANTIC); + +$PEDANTIC = 0; + +# Quick and dirty import + +*_E2U = *Jcode::Unicode::Constants::_E2U; +*_U2E = *Jcode::Unicode::Constants::_U2E; + +sub _init_u2e{ + unless ($PEDANTIC){ + $_U2E{"\xff\x3c"} = "\xa1\xc0"; # ¡À + }else{ + delete $_U2E{"\xff\x3c"}; + $_U2E{"\x00\x5c"} = "\xa1\xc0"; #\ + $_U2E{"\x00\x7e"} = "\x8f\xa2\xb7"; # ~ + } +} + +sub _init_e2u{ + unless (%_E2U){ + %_E2U = + reverse %_U2E; + } + unless ($PEDANTIC){ + $_E2U{"\xa1\xc0"} = "\xff\x3c"; # ¡À + }else{ + delete $_E2U{"\xa1\xc0"}; + $_E2U{"\xa1\xc0"} = "\x00\x5c"; #\ + $_E2U{"\x8f\xa2\xb7"} = "\x00\x7e"; # ~ + } +} + + +# Yuck! but this is necessary because this module is 'require'd +# instead of being 'use'd (No package export done) subs below +# belong to Jcode, not Jcode::Unicode + +sub Jcode::ucs2_euc{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + _init_u2e(); + + $$r_str =~ s( + ([\x00-\xff][\x00-\xff]) + ) + { + exists $_U2E{$1} ? $_U2E{$1} : $CHARCODE{UNDEF_JIS}; + }geox; + + $$r_str; +} + +sub Jcode::euc_ucs2{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + _init_e2u(); + + # 3 bytes + $$r_str =~ s( + ($RE{EUC_0212}|$RE{EUC_C}|$RE{EUC_KANA}|[\x00-\xff]) + ) + { + exists $_E2U{$1} ? $_E2U{$1} : $CHARCODE{UNDEF_UNICODE}; + }geox; + + $$r_str; +} + +sub Jcode::euc_utf8{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + &Jcode::euc_ucs2($r_str); + &Jcode::ucs2_utf8($r_str); +} + +sub Jcode::utf8_euc{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + &Jcode::utf8_ucs2($r_str); + &Jcode::ucs2_euc($r_str); +} + +sub Jcode::ucs2_utf8{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my $result; + for my $uc (unpack("n*", $$r_str)) { + if ($uc < 0x80) { + # 1 byte representation + $result .= chr($uc); + } elsif ($uc < 0x800) { + # 2 byte representation + $result .= chr(0xC0 | ($uc >> 6)) . + chr(0x80 | ($uc & 0x3F)); + } else { + # 3 byte representation + $result .= chr(0xE0 | ($uc >> 12)) . + chr(0x80 | (($uc >> 6) & 0x3F)) . + chr(0x80 | ($uc & 0x3F)); + } + + } + $$r_str = $result; +} + +sub Jcode::utf8_ucs2{ + my $thingy = shift; + my $r_str = _mkbuf($thingy); + my $result; + $$r_str =~ s/^[\200-\277]+//o; # can't start with 10xxxxxx + $$r_str =~ + s[ + ($RE{ASCII} | $RE{UTF8}) + ]{ + my $str = $1; + if (length($str) == 1){ + pack("n", unpack("C", $str)); + }elsif(length($str) == 2){ + my ($c1,$c2) = unpack("C2", $str); + pack("n", (($c1 & 0x1F)<<6)|($c2 & 0x3F)); + }else{ + my ($c1,$c2,$c3) = unpack("C3", $str); + pack("n", + (($c1 & 0x0F)<<12)|(($c2 & 0x3F)<<6)|($c3 & 0x3F)); + } + }egox; + $$r_str; +} + +1; +__END__ + +=head1 NAME + +Jcode::Unicode::NoXS - Non-XS version of Jcode::Unicode + +=head1 SYNOPSIS + +NONE + +=head1 DESCRIPTION + +This module is called by Jcode.pm on demand. This module is not intended for +direct use by users. This modules implements functions related to Unicode. +Following functions are defined here; + +=item Jcode::ucs2_euc(); + +=item Jcode::euc_ucs2(); + +=item Jcode::ucs2_utf8(); + +=item Jcode::utf8_ucs2(); + +=item Jcode::euc_utf8(); + +=item Jcode::utf8_euc(); + +=cut + +=head1 VARIABLES + +=item B<$Jcode::Unicode::PEDANTIC> + +When set to non-zero, x-to-unicode conversion becomes pedantic. +That is, '\' (chr(0x5c)) is converted to zenkaku backslash and +'~" (chr(0x7e)) to JIS-x0212 tilde. + +By Default, Jcode::Unicode leaves ascii ([0x00-0x7f]) as it is. + +=head1 MODULES + +=item Jcode::Unicode::Constants + +Jumbo hash that contains UCS2-EUC conversion table is there. + +=head1 BUGS + + * It's very slow to initialize, due to the size of the conversion + table it has to load. Once loaded, however, the perfomance is not + too bad (But still much slower than XS version). + * Besides that, that is Unicode, Inc. to Blame (Especially JIS0201.TXT). + +=head1 SEE ALSO + +=item http://www.unicode.org/ + +=head1 COPYRIGHT + +Copyright 1999 Dan Kogai <dankogai@dan.co.jp> + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +Unicode conversion table used here are based uponon files at +ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/, +Copyright (c) 1991-1994 Unicode, Inc. + +=cut + diff --git a/cpan/lib/MIME/Base64.pm b/cpan/lib/MIME/Base64.pm new file mode 100644 index 00000000..b1258b4c --- /dev/null +++ b/cpan/lib/MIME/Base64.pm @@ -0,0 +1,198 @@ +# +# $Id: Base64.pm,v 2.14 1999/02/27 20:40:04 gisle Exp $ + +package MIME::Base64; + +=head1 NAME + +MIME::Base64 - Encoding and decoding of base64 strings + +=head1 SYNOPSIS + + use MIME::Base64; + + $encoded = encode_base64('Aladdin:open sesame'); + $decoded = decode_base64($encoded); + +=head1 DESCRIPTION + +This module provides functions to encode and decode strings into the +Base64 encoding specified in RFC 2045 - I<MIME (Multipurpose Internet +Mail Extensions)>. The Base64 encoding is designed to represent +arbitrary sequences of octets in a form that need not be humanly +readable. A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, +enabling 6 bits to be represented per printable character. + +The following functions are provided: + +=over 4 + +=item encode_base64($str, [$eol]) + +Encode data by calling the encode_base64() function. The first +argument is the string to encode. The second argument is the line +ending sequence to use (it is optional and defaults to C<"\n">). The +returned encoded string is broken into lines of no more than 76 +characters each and it will end with $eol unless it is empty. Pass an +empty string as second argument if you do not want the encoded string +broken into lines. + +=item decode_base64($str) + +Decode a base64 string by calling the decode_base64() function. This +function takes a single argument which is the string to decode and +returns the decoded data. + +Any character not part of the 65-character base64 subset set is +silently ignored. Characters occuring after a '=' padding character +are never decoded. + +If the length of the string to decode (after ignoring +non-base64 chars) is not a multiple of 4 or padding occurs too ealy, +then a warning is generated if perl is running under C<-w>. + +=back + +If you prefer not to import these routines into your namespace you can +call them as: + + use MIME::Base64 (); + $encoded = MIME::Base64::encode($decoded); + $decoded = MIME::Base64::decode($encoded); + +=head1 DIAGNOSTICS + +The following warnings might be generated if perl is invoked with the +C<-w> switch: + +=over 4 + +=item Premature end of base64 data + +The number of characters to decode is not a multiple of 4. Legal +base64 data should be padded with one or two "=" characters to make +its length a multiple of 4. The decoded result will anyway be as if +the padding was there. + +=item Premature padding of base64 data + +The '=' padding character occurs as the first or second character +in a base64 quartet. + +=back + +=head1 EXAMPLES + +If you want to encode a large file, you should encode it in chunks +that are a multiple of 57 bytes. This ensures that the base64 lines +line up and that you do not end up with padding in the middle. 57 +bytes of data fills one complete base64 line (76 == 57*4/3): + + use MIME::Base64 qw(encode_base64); + + open(FILE, "/var/log/wtmp") or die "$!"; + while (read(FILE, $buf, 60*57)) { + print encode_base64($buf); + } + +or if you know you have enough memory + + use MIME::Base64 qw(encode_base64); + local($/) = undef; # slurp + print encode_base64(<STDIN>); + +=head1 COPYRIGHT + +Copyright 1995-1999 Gisle Aas. + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +Distantly based on LWP::Base64 written by Martijn Koster +<m.koster@nexor.co.uk> and Joerg Reichelt <j.reichelt@nexor.co.uk> and +code posted to comp.lang.perl <3pd2lp$6gf@wsinti07.win.tue.nl> by Hans +Mulder <hansm@wsinti07.win.tue.nl> + +The XS implementation use code from metamail. Copyright 1991 Bell +Communications Research, Inc. (Bellcore) + +=cut + +use strict; +use vars qw(@ISA @EXPORT $VERSION $OLD_CODE); + +require Exporter; +require DynaLoader; +@ISA = qw(Exporter DynaLoader); +@EXPORT = qw(encode_base64 decode_base64); + +$VERSION = '2.11'; + +eval { bootstrap MIME::Base64 $VERSION; }; +if ($@) { + # can't bootstrap XS implementation, use perl implementation + *encode_base64 = \&old_encode_base64; + *decode_base64 = \&old_decode_base64; + + $OLD_CODE = $@; + #warn $@ if $^W; +} + +# Historically this module has been implemented as pure perl code. +# The XS implementation runs about 20 times faster, but the Perl +# code might be more portable, so it is still here. + +use integer; + +sub old_encode_base64 ($;$) +{ + my $res = ""; + my $eol = $_[1]; + $eol = "\n" unless defined $eol; + pos($_[0]) = 0; # ensure start at the beginning + while ($_[0] =~ /(.{1,45})/gs) { + $res .= substr(pack('u', $1), 1); + chop($res); + } + $res =~ tr|` -_|AA-Za-z0-9+/|; # `# help emacs + # fix padding at the end + my $padding = (3 - length($_[0]) % 3) % 3; + $res =~ s/.{$padding}$/'=' x $padding/e if $padding; + # break encoded string into lines of no more than 76 characters each + if (length $eol) { + $res =~ s/(.{1,76})/$1$eol/g; + } + $res; +} + + +sub old_decode_base64 ($) +{ + local($^W) = 0; # unpack("u",...) gives bogus warning in 5.00[123] + + my $str = shift; + my $res = ""; + + $str =~ tr|A-Za-z0-9+=/||cd; # remove non-base64 chars + if (length($str) % 4) { + require Carp; + Carp::carp("Length of base64 data not a multiple of 4") + } + $str =~ s/=+$//; # remove padding + $str =~ tr|A-Za-z0-9+/| -_|; # convert to uuencoded format + while ($str =~ /(.{1,60})/gs) { + my $len = chr(32 + length($1)*3/4); # compute length byte + $res .= unpack("u", $len . $1 ); # uudecode + } + $res; +} + +# Set up aliases so that these functions also can be called as +# +# MIME::Base64::encode(); +# MIME::Base64::decode(); + +*encode = \&encode_base64; +*decode = \&decode_base64; + +1; diff --git a/cpan/lib/MIME/QuotedPrint.pm b/cpan/lib/MIME/QuotedPrint.pm new file mode 100644 index 00000000..ccdee2bb --- /dev/null +++ b/cpan/lib/MIME/QuotedPrint.pm @@ -0,0 +1,115 @@ +# +# $Id: QuotedPrint.pm,v 2.3 1997/12/02 10:24:27 aas Exp $ + +package MIME::QuotedPrint; + +=head1 NAME + +MIME::QuotedPrint - Encoding and decoding of quoted-printable strings + +=head1 SYNOPSIS + + use MIME::QuotedPrint; + + $encoded = encode_qp($decoded); + $decoded = decode_qp($encoded); + +=head1 DESCRIPTION + +This module provides functions to encode and decode strings into the +Quoted-Printable encoding specified in RFC 2045 - I<MIME (Multipurpose +Internet Mail Extensions)>. The Quoted-Printable encoding is intended +to represent data that largely consists of bytes that correspond to +printable characters in the ASCII character set. Non-printable +characters (as defined by english americans) are represented by a +triplet consisting of the character "=" followed by two hexadecimal +digits. + +The following functions are provided: + +=over 4 + +=item encode_qp($str) + +This function will return an encoded version of the string given as +argument. + +Note that encode_qp() does not change newlines C<"\n"> to the CRLF +sequence even though this might be considered the right thing to do +(RFC 2045 (Q-P Rule #4)). + +=item decode_qp($str); + +This function will return the plain text version of the string given +as argument. + +=back + + +If you prefer not to import these routines into your namespace you can +call them as: + + use MIME::QuotedPrint (); + $encoded = MIME::QuotedPrint::encode($decoded); + $decoded = MIME::QuotedPrint::decode($encoded); + +=head1 COPYRIGHT + +Copyright 1995-1997 Gisle Aas. + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +=cut + +use strict; +use vars qw(@ISA @EXPORT $VERSION); + +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(encode_qp decode_qp); + +$VERSION = sprintf("%d.%02d", q$Revision: 2.3 $ =~ /(\d+)\.(\d+)/); + + +sub encode_qp ($) +{ + my $res = shift; + $res =~ s/([^ \t\n!-<>-~])/sprintf("=%02X", ord($1))/eg; # rule #2,#3 + $res =~ s/([ \t]+)$/ + join('', map { sprintf("=%02X", ord($_)) } + split('', $1) + )/egm; # rule #3 (encode whitespace at eol) + + # rule #5 (lines must be shorter than 76 chars, but we are not allowed + # to break =XX escapes. This makes things complicated :-( ) + my $brokenlines = ""; + $brokenlines .= "$1=\n" + while $res =~ s/(.*?^[^\n]{73} (?: + [^=\n]{2} (?! [^=\n]{0,1} $) # 75 not followed by .?\n + |[^=\n] (?! [^=\n]{0,2} $) # 74 not followed by .?.?\n + | (?! [^=\n]{0,3} $) # 73 not followed by .?.?.?\n + ))//xsm; + + "$brokenlines$res"; +} + + +sub decode_qp ($) +{ + my $res = shift; + $res =~ s/[ \t]+?(\r?\n)/$1/g; # rule #3 (trailing space must be deleted) + $res =~ s/=\r?\n//g; # rule #5 (soft line breaks) + $res =~ s/=([\da-fA-F]{2})/pack("C", hex($1))/ge; + $res; +} + +# Set up aliases so that these functions also can be called as +# +# MIME::QuotedPrint::encode(); +# MIME::QuotedPrint::decode(); + +*encode = \&encode_qp; +*decode = \&decode_qp; + +1; |
